changeset 947:0b89127439b1

new orthanc-setup-samples repo
author Alain Mazy <am@osimis.io>
date Thu, 01 Jun 2023 12:24:22 +0200
parents d7f03f325544
children 20a369cc2823
files Sphinx/source/faq/debugging-encodings.rst Sphinx/source/faq/https.rst Sphinx/source/faq/scalability.rst Sphinx/source/integrations/dcm4chee.rst Sphinx/source/plugins/dicomweb.rst Sphinx/source/plugins/object-storage.rst Sphinx/source/plugins/python.rst Sphinx/source/users/advanced-rest.rst Sphinx/source/users/docker-osimis.rst
diffstat 9 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/Sphinx/source/faq/debugging-encodings.rst	Mon May 22 18:01:31 2023 +0200
+++ b/Sphinx/source/faq/debugging-encodings.rst	Thu Jun 01 12:24:22 2023 +0200
@@ -29,6 +29,6 @@
 
 How to solve it ?  It is highly recommended to fix it before Orthanc: in your RIS, worklist server or modality.
 However, if you can not fix it there, you may still try to fix it once the file has been stored in Orthanc.
-You can get inspiration from this `lua script <https://bitbucket.org/osimis/orthanc-setup-samples/src/master/lua-samples/sanitizeInvalidUtf8TagValues.lua>`__ 
+You can get inspiration from this `lua script <https://github.com/orthanc-server/orthanc-setup-samples/src/master/lua-samples/sanitizeInvalidUtf8TagValues.lua>`__ 
 that is fixing invalid UTF-8 characters
 
--- a/Sphinx/source/faq/https.rst	Mon May 22 18:01:31 2023 +0200
+++ b/Sphinx/source/faq/https.rst	Thu Jun 01 12:24:22 2023 +0200
@@ -221,7 +221,7 @@
 
 An example of such a setup with instructions to generate the
 certificates is available `here
-<https://bitbucket.org/osimis/orthanc-setup-samples/src/master/docker/tls-mutual-auth/>`__.
+<https://github.com/orthanc-server/orthanc-setup-samples/src/master/docker/tls-mutual-auth/>`__.
 
 
 .. _client-certificate-web-browser:
--- a/Sphinx/source/faq/scalability.rst	Mon May 22 18:01:31 2023 +0200
+++ b/Sphinx/source/faq/scalability.rst	Thu Jun 01 12:24:22 2023 +0200
@@ -242,7 +242,7 @@
 One solution to avoid this limitation was to have multiple Orthanc
 accessing the same DB (works only for MySQL and PostgreSQL) as
 presented in this `sample
-<https://bitbucket.org/osimis/orthanc-setup-samples/src/master/docker/multiple-orthancs-on-same-db/>`__.
+<https://github.com/orthanc-server/orthanc-setup-samples/src/master/docker/multiple-orthancs-on-same-db/>`__.
 However, this solution was only robust if there was **one single
 "writer" Orthanc server** (i.e. only one Orthanc was modifying the
 database).  Indeed, the core of Orthanc <= 1.9.1 did not support the
--- a/Sphinx/source/integrations/dcm4chee.rst	Mon May 22 18:01:31 2023 +0200
+++ b/Sphinx/source/integrations/dcm4chee.rst	Thu Jun 01 12:24:22 2023 +0200
@@ -4,6 +4,6 @@
 ==============================
 
 A Docker Compose environment is part of the `Orthanc setup samples
-<https://bitbucket.org/osimis/orthanc-setup-samples/src/master/docker/dcm4chee5/>`__
+<https://github.com/orthanc-server/orthanc-setup-samples/src/master/docker/dcm4chee5/>`__
 in order to illustrate how to interface Orthanc with Dcm4Chee 5, using
 either the DICOM protocol or the DICOMweb protocol.
--- a/Sphinx/source/plugins/dicomweb.rst	Mon May 22 18:01:31 2023 +0200
+++ b/Sphinx/source/plugins/dicomweb.rst	Thu Jun 01 12:24:22 2023 +0200
@@ -213,7 +213,7 @@
   in a setup where performance and accuracy are both important, you
   should configure :ref:`ExtraMainDicomTags <main-dicom-tags>` and configure
   ``StudiesMetadata`` to ``MainDicomTags`` and ``SeriesMetadata`` to ``MainDicomTags``
-  as demonstrated in this `sample <https://bitbucket.org/osimis/orthanc-setup-samples/src/master/docker/stone-viewer/docker-compose.yml>`__.
+  as demonstrated in this `sample <https://github.com/orthanc-server/orthanc-setup-samples/src/master/docker/stone-viewer/docker-compose.yml>`__.
 
 
 If using the ``Extrapolate`` mode, the predefined tags are provided
--- a/Sphinx/source/plugins/object-storage.rst	Mon May 22 18:01:31 2023 +0200
+++ b/Sphinx/source/plugins/object-storage.rst	Thu Jun 01 12:24:22 2023 +0200
@@ -334,12 +334,12 @@
 Sample setups
 -------------
 
-You'll find sample deployments and more info in the `Orthanc Setup Samples repository <https://bitbucket.org/osimis/orthanc-setup-samples/src/master/#markdown-header-for-software-integrators>`__ .
+You'll find sample deployments and more info in the `Orthanc Setup Samples repository <https://github.com/orthanc-server/orthanc-setup-samples/src/master/#markdown-header-for-software-integrators>`__ .
 
 Performances
 ------------
 
-You'll find some performance comparison between VM SSDs and object-storage `here <https://bitbucket.org/osimis/orthanc-setup-samples/src/master/docker/performance-tests/>`__ .
+You'll find some performance comparison between VM SSDs and object-storage `here <https://github.com/orthanc-server/orthanc-setup-samples/src/master/docker/performance-tests/>`__ .
 
 
 .. _client-side-encryption:
--- a/Sphinx/source/plugins/python.rst	Mon May 22 18:01:31 2023 +0200
+++ b/Sphinx/source/plugins/python.rst	Thu Jun 01 12:24:22 2023 +0200
@@ -108,7 +108,7 @@
   Hello world!
 
 
-`Here <https://bitbucket.org/osimis/orthanc-setup-samples/src/master/docker/python/>`__ is a full example
+`Here <https://github.com/orthanc-server/orthanc-setup-samples/src/master/docker/python/>`__ is a full example
 of a more complex setup using the :ref:`osimis/orthanc <docker-osimis>` images.
 
 
--- a/Sphinx/source/users/advanced-rest.rst	Mon May 22 18:01:31 2023 +0200
+++ b/Sphinx/source/users/advanced-rest.rst	Thu Jun 01 12:24:22 2023 +0200
@@ -280,7 +280,7 @@
     Write-Host "The instance can be retrieved in PDF at http://localhost:8042$($reply.Path)/pdf"
 
 And here's another sample  `using python
-<https://bitbucket.org/osimis/orthanc-setup-samples/src/master/python-samples/attach-pdf-to-study.py>`__.
+<https://github.com/orthanc-server/orthanc-setup-samples/src/master/python-samples/attach-pdf-to-study.py>`__.
 
 Please note that the ``/tools/create-dicom`` API call will return the
 Orthanc instance ID of the newly created DICOM resource.
--- a/Sphinx/source/users/docker-osimis.rst	Mon May 22 18:01:31 2023 +0200
+++ b/Sphinx/source/users/docker-osimis.rst	Thu Jun 01 12:24:22 2023 +0200
@@ -52,9 +52,9 @@
 - classical configuration files
 - a mix of these options
 
-This `repository <https://bitbucket.org/osimis/orthanc-setup-samples/src>`__
+This `repository <https://github.com/orthanc-server/orthanc-setup-samples/src>`__
 contains lots of examples on how to use these images.  In particular,
-`this example <https://bitbucket.org/osimis/orthanc-setup-samples/src/master/docker/all-usages/docker-compose.yml>`__ 
+`this example <https://github.com/orthanc-server/orthanc-setup-samples/src/master/docker/all-usages/docker-compose.yml>`__ 
 shows all the way that can be used to generate the same
 configuration in Orthanc.
 
@@ -272,7 +272,7 @@
 
 In version 21.10.0, the `/probes/test-aliveness.py <https://github.com/orthanc-server/orthanc-builder/blob/master/docker/orthanc/test-aliveness.py>`__ 
 script has been added in order to perform healthchecks.  Check the doc in the script itself for more details.
-A sample configuration is also available in `this sample <https://bitbucket.org/osimis/orthanc-setup-samples/src/8016d140a237a892db703aac4782307c46732847/docker/tls-mutual-auth/docker-compose.yml#lines-51>`__
+A sample configuration is also available in `this sample <https://github.com/orthanc-server/orthanc-setup-samples/src/8016d140a237a892db703aac4782307c46732847/docker/tls-mutual-auth/docker-compose.yml#lines-51>`__
 
 
 Plugins