gui, man: Update docs & translations
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SYNCTHING-REST-API" "7" "June 03, 2016" "v0.12" "Syncthing"
|
||||
.TH "SYNCTHING-REST-API" "7" "June 08, 2016" "v0.12" "Syncthing"
|
||||
.SH NAME
|
||||
syncthing-rest-api \- REST API
|
||||
.
|
||||
@@ -458,16 +458,46 @@ Returns information about current system status and resource usage.
|
||||
.ft C
|
||||
{
|
||||
"alloc": 30618136,
|
||||
"cpuPercent": 0.006944836512046966,
|
||||
"extAnnounceOK": {
|
||||
"udp4://announce.syncthing.net:22026": true,
|
||||
"udp6://announce\-v6.syncthing.net:22026": true
|
||||
"connectionServiceStatus": {
|
||||
"dynamic+https://relays.syncthing.net/endpoint": {
|
||||
"lanAddresses": [
|
||||
"relay://23.92.71.120:443/?id=53STGR7\-YBM6FCX\-PAZ2RHM\-YPY6OEJ\-WYHVZO7\-PCKQRCK\-PZLTP7T\-434XCAD&pingInterval=1m0s&networkTimeout=2m0s&sessionLimitBps=0&globalLimitBps=0&statusAddr=:22070&providedBy=canton7"
|
||||
],
|
||||
"wanAddresses": [
|
||||
"relay://23.92.71.120:443/?id=53STGR7\-YBM6FCX\-PAZ2RHM\-YPY6OEJ\-WYHVZO7\-PCKQRCK\-PZLTP7T\-434XCAD&pingInterval=1m0s&networkTimeout=2m0s&sessionLimitBps=0&globalLimitBps=0&statusAddr=:22070&providedBy=canton7"
|
||||
]
|
||||
},
|
||||
"tcp://0.0.0.0:22000": {
|
||||
"lanAddresses": [
|
||||
"tcp://0.0.0.0:22000"
|
||||
],
|
||||
"wanAddresses": [
|
||||
"tcp://0.0.0.0:22000"
|
||||
]
|
||||
}
|
||||
},
|
||||
"cpuPercent": 0.006944836512046966,
|
||||
"discoveryEnabled": true,
|
||||
"discoveryErrors": {
|
||||
"global@https://discovery\-v4\-1.syncthing.net/v2/": "500 Internal Server Error",
|
||||
"global@https://discovery\-v4\-2.syncthing.net/v2/": "Post https://discovery\-v4\-2.syncthing.net/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)",
|
||||
"global@https://discovery\-v4\-3.syncthing.net/v2/": "Post https://discovery\-v4\-3.syncthing.net/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)",
|
||||
"global@https://discovery\-v6\-1.syncthing.net/v2/": "Post https://discovery\-v6\-1.syncthing.net/v2/: dial tcp [2001:470:28:4d6::5]:443: connect: no route to host",
|
||||
"global@https://discovery\-v6\-2.syncthing.net/v2/": "Post https://discovery\-v6\-2.syncthing.net/v2/: dial tcp [2604:a880:800:10::182:a001]:443: connect: no route to host",
|
||||
"global@https://discovery\-v6\-3.syncthing.net/v2/": "Post https://discovery\-v6\-3.syncthing.net/v2/: dial tcp [2400:6180:0:d0::d9:d001]:443: connect: no route to host"
|
||||
},
|
||||
"discoveryMethods": 8,
|
||||
"goroutines": 49,
|
||||
"myID": "P56IOI7\-MZJNU2Y\-IQGDREY\-DM2MGTI\-MGL3BXN\-PQ6W5BM\-TBBZ4TJ\-XZWICQ2",
|
||||
"pathSeparator": "/",
|
||||
"startTime": "2016\-06\-06T19:41:43.039284753+02:00",
|
||||
"sys": 42092792,
|
||||
"tilde": "/Users/jb"
|
||||
"themes": [
|
||||
"default",
|
||||
"dark"
|
||||
],
|
||||
"tilde": "/Users/jb",
|
||||
"uptime": 2635
|
||||
}
|
||||
.ft P
|
||||
.fi
|
||||
@@ -644,10 +674,8 @@ availability. Takes \fBfolder\fP and \fBfile\fP parameters.
|
||||
.SS GET /rest/db/ignores
|
||||
.sp
|
||||
Takes one parameter, \fBfolder\fP, and returns the content of the
|
||||
\fB\&.stignore\fP as the \fBignore\fP field. A second field, \fBpatterns\fP,
|
||||
provides a compiled version of all included ignore patterns in the form
|
||||
of regular expressions. Excluded items in the \fBpatterns\fP field have a
|
||||
nonstandard \fB(?exclude)\fP marker in front of the regular expression.
|
||||
\fB\&.stignore\fP as the \fBignore\fP field. A second field, \fBexpanded\fP,
|
||||
provides a list of strings which represent globbing patterns described by gobwas/glob (based on standard wildcards) that match the patterns in \fB\&.stignore\fP and all the includes. If appropriate these globs are prepended by the following modifiers: \fB!\fP to negate the glob, \fB(?i)\fP to do case insensitive matching and \fB(?d)\fP to enable removing of ignored files in an otherwise empty directory.
|
||||
.INDENT 0.0
|
||||
.INDENT 3.5
|
||||
.sp
|
||||
@@ -655,11 +683,11 @@ nonstandard \fB(?exclude)\fP marker in front of the regular expression.
|
||||
.ft C
|
||||
{
|
||||
"ignore": [
|
||||
"/Backups"
|
||||
"(?i)/Backups"
|
||||
],
|
||||
"patterns": [
|
||||
"(?i)^Backups$",
|
||||
"(?i)^Backups/.*$"
|
||||
"expanded": [
|
||||
"(?i)Backups",
|
||||
"(?i)Backups/**"
|
||||
]
|
||||
}
|
||||
.ft P
|
||||
|
||||
Reference in New Issue
Block a user