changeset 2229:0f09c1d18584

note about backslashes
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 14 Dec 2016 08:44:42 +0100
parents 577888e9ed2f
children 40293e60f224
files Resources/Configuration.json
diffstat 1 files changed, 8 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/Resources/Configuration.json	Tue Dec 13 17:42:06 2016 +0100
+++ b/Resources/Configuration.json	Wed Dec 14 08:44:42 2016 +0100
@@ -7,13 +7,14 @@
   // displayed in Orthanc Explorer and at the URI "/system".
   "Name" : "MyOrthanc",
 
-  // Path to the directory that holds the heavyweight files
-  // (i.e. the raw DICOM instances)
+  // Path to the directory that holds the heavyweight files (i.e. the
+  // raw DICOM instances). Backslashes must be either escaped by
+  // doubling them, or replaced by forward slashes "/".
   "StorageDirectory" : "OrthancStorage",
 
-  // Path to the directory that holds the SQLite index (if unset,
-  // the value of StorageDirectory is used). This index could be
-  // stored on a RAM-drive or a SSD device for performance reasons.
+  // Path to the directory that holds the SQLite index (if unset, the
+  // value of StorageDirectory is used). This index could be stored on
+  // a RAM-drive or a SSD device for performance reasons.
   "IndexDirectory" : "OrthancStorage",
 
   // Enable the transparent compression of the DICOM instances
@@ -37,7 +38,8 @@
   // instance of Orthanc (e.g. "./libPluginTest.so" for Linux, or
   // "./PluginTest.dll" for Windows). These paths can refer to
   // folders, in which case they will be scanned non-recursively to
-  // find shared libraries.
+  // find shared libraries. Backslashes must be either escaped by
+  // doubling them, or replaced by forward slashes "/".
   "Plugins" : [
   ],