Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDaniel Molkentin <daniel@molkentin.de>2015-01-07 17:36:09 +0300
committerDaniel Molkentin <daniel@molkentin.de>2015-01-07 17:36:09 +0300
commit6e4da53e3120219551a7393874b71dde37090945 (patch)
treebc4abde2517933a289337eaf7840c7c117ce16d6 /doc
parent8e3dbcb7c0d7ebf415bce794f54634f305ec28b2 (diff)
parente250153204306c3caac6ccbd46aef12a61243914 (diff)
Merge pull request #2638 from owncloud/add-slash-as-ignored-character
fix link and add slash as bad character
Diffstat (limited to 'doc')
-rw-r--r--doc/architecture.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/architecture.rst b/doc/architecture.rst
index 3315ccec6..a8f279e1d 100644
--- a/doc/architecture.rst
+++ b/doc/architecture.rst
@@ -152,7 +152,7 @@ ownCloud Client provides the ability to add custom patterns.
By default, the ownCloud Client ignores the following files:
- Files matched by one of the patterns defined in :ref:`ignoredFilesEditor-label`.
-- Files containing characters that do not work on certain file systems (`\, :, ?, *, ", >, <, |`).
+- Files containing characters that do not work on certain file systems (`\, /, :, ?, *, ", >, <, |`).
* Files starting in ``.csync_journal.db*``, as these files are reserved for journalling.
If a pattern selected using a checkbox in the `ignoredFilesEditor-label` (or if
@@ -170,7 +170,7 @@ To match filenames against the exclude patterns, the unix standard C library
function fnmatch is used. This procesx checks the filename against the
specified pattern using standard shell wildcard pattern matching. For more
information, please refer to `The opengroup website
-<http://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_13_01>`.
+<http://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_13_01>`_.
The path that is checked is the relative path under the sync root directory.