changeset 1004:17bf6fafb884

added links to uclouvain
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 20 Dec 2023 08:12:21 +0100
parents 5c7838bfb18d
children d9314d6b225b
files Sphinx/source/developers/repositories.rst Sphinx/source/faq/log.rst Sphinx/source/faq/scalability.rst Sphinx/source/faq/troubleshooting.rst Sphinx/source/plugins/authorization.rst Sphinx/source/plugins/odbc.rst Sphinx/source/plugins/transfers.rst Sphinx/source/plugins/worklists-plugin.rst Sphinx/source/users/configuration.rst
diffstat 9 files changed, 42 insertions(+), 38 deletions(-) [+]
line wrap: on
line diff
--- a/Sphinx/source/developers/repositories.rst	Wed Dec 20 08:01:52 2023 +0100
+++ b/Sphinx/source/developers/repositories.rst	Wed Dec 20 08:12:21 2023 +0100
@@ -162,7 +162,7 @@
 * Your code **must follow the C++03 standard** (C++11 is not accepted
   for maximum cross-platform compatibility on older platforms).
 
-* The continuous integration servers of Osimis check that Orthanc
+* The continuous integration servers at UCLouvain check that Orthanc
   properly compiles on Ubuntu 16.04, on `Linux Standard Base systems
   <https://refspecs.linuxfoundation.org/lsb.shtml>`__ using the `LSB
   SDB 5.0.0
--- a/Sphinx/source/faq/log.rst	Wed Dec 20 08:01:52 2023 +0100
+++ b/Sphinx/source/faq/log.rst	Wed Dec 20 08:12:21 2023 +0100
@@ -41,10 +41,10 @@
 to logging. Check out the :ref:`full manpage <manpage>`.
   
 However, if you use packaged versions of Orthanc that starts the
-server in background (such as GNU/Linux packages or the Windows
-installers by Osimis), you will have to manually start Orthanc. The
-sections below explain how to achieve this goal with the officially
-supported packages.
+server in background (such as GNU/Linux packages or the `Windows
+installers <https://www.orthanc-server.com/download-windows.php>`__),
+you will have to manually start Orthanc. The sections below explain
+how to achieve this goal with the officially supported packages.
 
 
 With Orthanc Explorer 2 installed
@@ -66,7 +66,8 @@
 ^^^^^^^^^^^^^
 
 
-if you used the official installer by Osimis:
+if you used the `official Windows installers
+<https://www.orthanc-server.com/download-windows.php>`__:
 
 1. Stop the Orthanc service. The actual process depends on your
    version of Windows.
@@ -177,4 +178,4 @@
 
 * Starting from Orthanc 1.12.2, Orthanc is logging the thread name in the
   logs.  If you need to revert back to the previous format, add the 
-  ``--logs-no-thread`` command line option at startup.
\ No newline at end of file
+  ``--logs-no-thread`` command line option at startup.
--- a/Sphinx/source/faq/scalability.rst	Wed Dec 20 08:01:52 2023 +0100
+++ b/Sphinx/source/faq/scalability.rst	Wed Dec 20 08:12:21 2023 +0100
@@ -63,8 +63,10 @@
 
 * Make sure that :ref:`run-time debug assertions <troubleshooting>`
   are turned off. A warning will show in the logs if this is not the
-  case. Note that all pre-built binaries provided by Osimis are
-  correctly configured in that respect.
+  case. Note that all `pre-compiled binaries
+  <https://orthanc.uclouvain.be/downloads/index.html>`__ provided by
+  the Orthanc project are correctly configured in that respect, except
+  if they are explicitly tagged as "debug".
 
 * We suggest to use the default filesystem storage area. Of course,
   make sure that the filesystem is properly backed up, and that
--- a/Sphinx/source/faq/troubleshooting.rst	Wed Dec 20 08:01:52 2023 +0100
+++ b/Sphinx/source/faq/troubleshooting.rst	Wed Dec 20 08:12:21 2023 +0100
@@ -199,14 +199,14 @@
   elsewhere on Internet).
 
 * If **Orthanc crashes when handling one large DICOM file**, this most
-  probably indicates a memory allocation error. Indeed, the `official
-  Windows binaries
-  <https://www.orthanc-server.com/download-windows.php>`__ are compiled
-  using a 32bit compiler. As a consequence, Orthanc only has access to
-  less than 4GB of RAM. If this is an important limitation for you,
-  precompiled command-line versions of Orthanc for Windows 64bit are
-  available courtesy of `Osimis
-  <https://www.osimis.io/en/download.html>`__.
+  probably indicates a memory allocation error. Indeed, some
+  precompiled `official Windows binaries
+  <https://orthanc.uclouvain.be/downloads/windows-32/orthanc/index.html>`__
+  are compiled using a 32bit compiler. As a consequence, Orthanc only
+  has access to less than 4GB of RAM. If this is an important
+  limitation for you, precompiled command-line versions of Orthanc for
+  Windows 64bit are `also available
+  <https://orthanc.uclouvain.be/downloads/windows-64/orthanc/index.html>`__.
 
 * Avoid installing Orthanc, its database or its storage area in
   folders whose names contain **spaces or special characters**.
--- a/Sphinx/source/plugins/authorization.rst	Wed Dec 20 08:01:52 2023 +0100
+++ b/Sphinx/source/plugins/authorization.rst	Wed Dec 20 08:12:21 2023 +0100
@@ -6,7 +6,7 @@
 
 .. contents::
 
-This **official plugin by Osimis** extends Orthanc with an advanced
+This **official plugin** extends Orthanc with an advanced
 authorization mechanism. For each incoming REST request to some URI,
 the plugin will query a Web service to know whether the access is
 granted to the user. If access is not granted, the HTTP status code is
@@ -398,12 +398,13 @@
 Integration with the Orthanc Explorer
 -------------------------------------
 
-Starting from Orthanc 1.5.8, you can pass authorization tokens in the url
-search params when opening the Orthanc explorer i.e. 
-http://localhost:8042/app/explorer.html?token=1234.  This token will be 
-included as an HTTP header in every request sent to the Orthanc Rest API.  
-It will also be included in the url search params when opening the Orthanc 
-or Osimis viewer.  
+Starting from Orthanc 1.5.8, you can pass authorization tokens in the
+url search params when opening the Orthanc explorer, i.e.
+``http://localhost:8042/app/explorer.html?token=1234``.  This token
+will be included as an HTTP header in every request sent to the
+Orthanc Rest API. It will also be included in the URL search params
+when opening the Orthanc or :ref:`Osimis Web viewer
+<osimis_webviewer>`.
 
 Only 3 tokens name will be recognized and forwarded: ``token``, ``auth-token``
 and ``authorization``.
--- a/Sphinx/source/plugins/odbc.rst	Wed Dec 20 08:01:52 2023 +0100
+++ b/Sphinx/source/plugins/odbc.rst	Wed Dec 20 08:12:21 2023 +0100
@@ -138,10 +138,9 @@
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 Pre-compiled binaries for Microsoft Windows 32bit `are also available
-<https://orthanc.uclouvain.be/downloads/windows-32/orthanc-odbc/index.html>`__. A
-package for `Apple's Mac OS X
-<https://www.osimis.io/en/download.html>`__ is available courtesy of
-`Osimis <https://www.osimis.io/>`__.
+<https://orthanc.uclouvain.be/downloads/windows-32/orthanc-odbc/index.html>`__,
+as well as for `Apple macOS
+<https://orthanc.uclouvain.be/downloads/macos/orthanc-odbc/index.html>`__.
 
 
 .. _odbc-ubuntu1604:
--- a/Sphinx/source/plugins/transfers.rst	Wed Dec 20 08:01:52 2023 +0100
+++ b/Sphinx/source/plugins/transfers.rst	Wed Dec 20 08:12:21 2023 +0100
@@ -6,7 +6,7 @@
 
 .. contents::
 
-Osimis provides a `transfers accelerator plugin
+The Orthanc project provides a `transfers accelerator plugin
 <https://orthanc.uclouvain.be/hg/orthanc-transfers/file/default>`__ whose
 purpose is to speed up the transfers of DICOM instances over networks
 (with respect to the native DICOM protocol or to the built-in
--- a/Sphinx/source/plugins/worklists-plugin.rst	Wed Dec 20 08:01:52 2023 +0100
+++ b/Sphinx/source/plugins/worklists-plugin.rst	Wed Dec 20 08:12:21 2023 +0100
@@ -92,7 +92,7 @@
   for Microsoft Windows)::
   
     "Plugins" : [
-      "OsimisWebViewer.dll",
+      "StoneWebViewer.dll",
       "ModalityWorklists.dll"   // On GNU/Linux, use libModalityWorklists.so
     ],
 
--- a/Sphinx/source/users/configuration.rst	Wed Dec 20 08:01:52 2023 +0100
+++ b/Sphinx/source/users/configuration.rst	Wed Dec 20 08:12:21 2023 +0100
@@ -55,15 +55,16 @@
 backslashes (i.e. ``\``) should be either escaped by doubling them (as
 in ``\\``), or replaced by forward slashes (as in ``/``).
 
-**Remark 2:** When installing Orthanc using the Windows installer by
-Osimis, you won't be able to edit your files unless you start your
-editor with ``Run as administrator``. We recommend to edit your
-configuration file with an editor such as `Notepad++
-<https://notepad-plus-plus.org/>`_.  It shall warn you that this file
-can be edited only by an admin, and will suggest you to restart
-Notepad++ as an admin such that you'll be able to save it.
+**Remark 2:** When installing Orthanc using the `official Windows
+installers <https://www.orthanc-server.com/download-windows.php>`__,
+you won't be able to edit your files unless you start your editor with
+``Run as administrator``. We recommend to edit your configuration file
+with an editor such as `Notepad++ <https://notepad-plus-plus.org/>`_.
+It shall warn you that this file can be edited only by an admin, and
+will suggest you to restart Notepad++ as an admin such that you'll be
+able to save it.
 
-**Remark 3:** The Windows installers by Osimis provide a `Windows
+**Remark 3:** The official Windows installers include a `Windows
 service <https://en.wikipedia.org/wiki/Windows_service>`__ that
 automatically starts Orthanc during the startup of Microsoft
 Windows. You can control the parameters of the service by typing