diff Sphinx/source/users/advanced-rest.rst @ 860:3e8a3a900e9e

Orthanc 1.11.1
author Alain Mazy <am@osimis.io>
date Thu, 30 Jun 2022 16:48:08 +0200
parents 12f8932ee3a7
children f72b2dd172da
line wrap: on
line diff
--- a/Sphinx/source/users/advanced-rest.rst	Thu Jun 23 15:12:56 2022 +0200
+++ b/Sphinx/source/users/advanced-rest.rst	Thu Jun 30 16:48:08 2022 +0200
@@ -89,7 +89,7 @@
 the ``MediaArchiveSize`` configuration that defines the maximum
 number of ZIP/media archives that are maintained by Orthanc, as a 
 response to the asynchronous creation of archive.  As of Orthanc
-1.11.0, this value is ``1`` by default !
+1.11.1, this value is ``1`` by default !
 
 .. _jobs-monitoring:
 
@@ -139,7 +139,7 @@
   ``ErrorCode`` and ``ErrorDescription`` fields for more information.
 * ``Paused``: The job has been paused.
 * ``Retry``: The job has failed internally, and has been scheduled for
-  re-submission after a delay. As of Orthanc 1.11.0, this feature is not
+  re-submission after a delay. As of Orthanc 1.11.1, this feature is not
   used by any type of job.
 
 In order to wait for the end of an asynchronous call, the caller will
@@ -148,7 +148,7 @@
 ``Failure``.
 
 Note that the `integration tests of Orthanc
-<https://hg.orthanc-server.com/orthanc-tests/file/Orthanc-1.11.0/Tests/Toolbox.py>`__
+<https://hg.orthanc-server.com/orthanc-tests/file/Orthanc-1.11.1/Tests/Toolbox.py>`__
 give an example about how to monitor a job in Python using the REST
 API (cf. function ``MonitorJob()``).
 
@@ -221,7 +221,7 @@
 Note how we retrieve the content of the archive by accessing the
 ``archive`` output of the job (check out the virtual method
 ``IJob::GetOutput()`` from the `source code
-<https://hg.orthanc-server.com/orthanc/file/Orthanc-1.11.0/OrthancServer/Sources/ServerJobs/ArchiveJob.cpp>`__
+<https://hg.orthanc-server.com/orthanc/file/Orthanc-1.11.1/OrthancServer/Sources/ServerJobs/ArchiveJob.cpp>`__
 of Orthanc).
 
 Here is the corresponding sequence of commands to generate a DICOMDIR
@@ -230,7 +230,7 @@
   $ curl http://localhost:8042/studies/27f7126f-4f66fb14-03f4081b-f9341db2-53925988/media -d '{"Asynchronous":true}'
   $ curl http://localhost:8042/jobs/6332be8a-0052-44fb-8cc2-ac959aeccad9/archive > a.zip
 
-As of Orthanc 1.11.0, only the creation of a ZIP or a DICOMDIR archive
+As of Orthanc 1.11.1, only the creation of a ZIP or a DICOMDIR archive
 produces such "outputs".