diff OrthancServer/Sources/OrthancRestApi/OrthancRestApi.cpp @ 4698:d16c3c7f11ef

new route "/tools/bulk-content" to get the content of a set of resources
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 18 Jun 2021 16:37:12 +0200
parents 569d9ef165b1
children f0038043fb97 71fbdee4b832
line wrap: on
line diff
--- a/OrthancServer/Sources/OrthancRestApi/OrthancRestApi.cpp	Fri Jun 18 16:08:35 2021 +0200
+++ b/OrthancServer/Sources/OrthancRestApi/OrthancRestApi.cpp	Fri Jun 18 16:37:12 2021 +0200
@@ -471,11 +471,10 @@
   static const std::string POST_SHORT = "Short";
 
   static const std::string DOCUMENT_SIMPLIFY =
-    "report the DICOM tags indexed in human-readable format "
-    "(using the symbolic name of the tags)";
+    "report the DICOM tags in human-readable format (using the symbolic name of the tags)";
 
   static const std::string DOCUMENT_SHORT =
-    "report the DICOM tags indexed in hexadecimal format";
+    "report the DICOM tags in hexadecimal format";
 
   static const std::string DOCUMENT_FULL =
     "report the DICOM tags in full format (tags indexed by their hexadecimal "
@@ -564,13 +563,13 @@
     if (defaultFormat != DicomToJsonFormat_Short)
     {
       call.GetDocumentation().SetRequestField(POST_SHORT, RestApiCallDocumentation::Type_Boolean,
-                                              "If set to `true`, " + DOCUMENT_SIMPLIFY, false);
+                                              "If set to `true`, " + DOCUMENT_SHORT, false);
     }
     
     if (defaultFormat != DicomToJsonFormat_Full)
     {
       call.GetDocumentation().SetRequestField(POST_FULL, RestApiCallDocumentation::Type_Boolean,
-                                              "If set to `true`, " + DOCUMENT_SIMPLIFY, false);
+                                              "If set to `true`, " + DOCUMENT_FULL, false);
     }
   }
 }