Sphinx uses .. code-block:: directives to enable highlighting:
http://sphinx-doc.org/markup/code.html#directive-code-block
Use
for i in *.rst; do
sed -i 's/code::/code-block::/g' $i
done
to update these strings to enable proper highlighting.
Note: A have disabled the windows "bash" one, because the highlighting
is broken anyway...
35 lines
956 B
ReStructuredText
35 lines
956 B
ReStructuredText
FolderSummary
|
|
-------------
|
|
|
|
The FolderSummary event is emitted when folder contents have changed
|
|
locally. This can be used to calculate the current local completion
|
|
state.
|
|
|
|
.. code-block:: json
|
|
|
|
{
|
|
"id": 16,
|
|
"type": "FolderSummary",
|
|
"time": "2015-04-17T14:12:20.460121585+09:00",
|
|
"data": {
|
|
"folder": "default",
|
|
"summary": {
|
|
"globalBytes": 0,
|
|
"globalDeleted": 0,
|
|
"globalFiles": 0,
|
|
"ignorePatterns": false,
|
|
"inSyncBytes": 0,
|
|
"inSyncFiles": 0,
|
|
"invalid": "",
|
|
"localBytes": 0,
|
|
"localDeleted": 0,
|
|
"localFiles": 0,
|
|
"needBytes": 0,
|
|
"needFiles": 0,
|
|
"state": "idle",
|
|
"stateChanged": "2015-04-17T14:12:12.455224687+09:00",
|
|
"version": 0
|
|
}
|
|
}
|
|
}
|