changeset 4476:c1f36fd13730

migrate remaining links to issues in bitbucket to mercurial server
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 26 Jan 2021 18:25:52 +0100
parents a24d2126efd2
children 0a2c9790cb41
files OrthancFramework/Resources/CMake/BoostConfiguration.cmake OrthancFramework/Resources/Graveyard/FromDcmtkBridge.cpp OrthancFramework/Sources/DicomNetworking/DicomControlUserConnection.cpp OrthancFramework/Sources/DicomNetworking/Internals/CommandDispatcher.cpp OrthancFramework/Sources/DicomNetworking/Internals/MoveScp.cpp OrthancFramework/Sources/DicomParsing/FromDcmtkBridge.cpp OrthancFramework/Sources/Endianness.h OrthancFramework/Sources/HttpServer/HttpOutput.cpp OrthancFramework/Sources/HttpServer/MultipartStreamReader.cpp OrthancFramework/Sources/SystemToolbox.cpp OrthancServer/Plugins/Engine/OrthancPlugins.cpp OrthancServer/Sources/OrthancFindRequestHandler.cpp OrthancServer/Sources/OrthancMoveRequestHandler.cpp
diffstat 13 files changed, 15 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/OrthancFramework/Resources/CMake/BoostConfiguration.cmake	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancFramework/Resources/CMake/BoostConfiguration.cmake	Tue Jan 26 18:25:52 2021 +0100
@@ -53,7 +53,7 @@
   
   # Patch by xnox to fix issue #166 (CMake find_boost version is now
   # broken with newer boost/cmake)
-  # https://bitbucket.org/sjodogne/orthanc/issues/166/
+  # https://bugs.orthanc-server.com/show_bug.cgi?id=166
   if (POLICY CMP0093)
     set(BOOST144 1.44)
   else()
--- a/OrthancFramework/Resources/Graveyard/FromDcmtkBridge.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancFramework/Resources/Graveyard/FromDcmtkBridge.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -28,7 +28,7 @@
     {
       // This raises BitBucket issue 140 (Modifying private tags with
       // REST API changes VR from LO to UN)
-      // https://bitbucket.org/sjodogne/orthanc/issues/140
+      // https://bugs.orthanc-server.com/show_bug.cgi?id=140
       LOG(WARNING) << "You are using DCMTK < 3.6.1: All the private tags "
         "are considered as having a binary value representation";
       return new DcmOtherByteOtherWord(key);
--- a/OrthancFramework/Sources/DicomNetworking/DicomControlUserConnection.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancFramework/Sources/DicomNetworking/DicomControlUserConnection.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -188,7 +188,7 @@
     // same fix is required for Agfa Impax. This was generalized for
     // generic manufacturer since it seems to affect PhilipsADW,
     // GEWAServer as well:
-    // https://bitbucket.org/sjodogne/orthanc/issues/31/
+    // https://bugs.orthanc-server.com/show_bug.cgi?id=31
 
     switch (manufacturer)
     {
--- a/OrthancFramework/Sources/DicomNetworking/Internals/CommandDispatcher.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancFramework/Sources/DicomNetworking/Internals/CommandDispatcher.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -480,7 +480,7 @@
 #if DCMTK_VERSION_NUMBER >= 362
           // The global variable "numberOfDcmAllStorageSOPClassUIDs" is
           // only published if DCMTK >= 3.6.2:
-          // https://bitbucket.org/sjodogne/orthanc/issues/137
+          // https://bugs.orthanc-server.com/show_bug.cgi?id=137
           assert(static_cast<int>(count) == numberOfDcmAllStorageSOPClassUIDs);
 #endif
       
--- a/OrthancFramework/Sources/DicomNetworking/Internals/MoveScp.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancFramework/Sources/DicomNetworking/Internals/MoveScp.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -85,7 +85,7 @@
 /**
  * Macro specifying whether to apply the patch suggested in issue 66:
  * "Orthanc responses C-MOVE with zero Move Originator Message ID"
- * https://bitbucket.org/sjodogne/orthanc/issues/66/
+ * https://bugs.orthanc-server.com/show_bug.cgi?id=66
  **/
 
 #define APPLY_FIX_ISSUE_66   1
--- a/OrthancFramework/Sources/DicomParsing/FromDcmtkBridge.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancFramework/Sources/DicomParsing/FromDcmtkBridge.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -1482,7 +1482,7 @@
     {
       // This solves issue 140 (Modifying private tags with REST API
       // changes VR from LO to UN)
-      // https://bitbucket.org/sjodogne/orthanc/issues/140
+      // https://bugs.orthanc-server.com/show_bug.cgi?id=140
       LOG(WARNING) << "Private creator should not be empty while creating a private tag: " << tag.Format();
     }
     
--- a/OrthancFramework/Sources/Endianness.h	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancFramework/Sources/Endianness.h	Tue Jan 26 18:25:52 2021 +0100
@@ -143,7 +143,7 @@
    * This alternative implementation only hid an underlying problem
    * with pointer alignment on some architectures, and was thus
    * reverted. Check out issue #99:
-   * https://bitbucket.org/sjodogne/orthanc/issues/99
+   * https://bugs.orthanc-server.com/show_bug.cgi?id=99
    **/
   return (a << 8) | (a >> 8);
 }
--- a/OrthancFramework/Sources/HttpServer/HttpOutput.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancFramework/Sources/HttpServer/HttpOutput.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -538,7 +538,7 @@
      * Full history is available at the following locations:
      * - In changeset 2248:69b0f4e8a49b:
      *   # hg history -v -r 2248
-     * - https://bitbucket.org/sjodogne/orthanc/issues/54/
+     * - https://bugs.orthanc-server.com/show_bug.cgi?id=54
      * - https://groups.google.com/d/msg/orthanc-users/65zhIM5xbKI/TU5Q1_LhAwAJ
      **/
     std::string tmp;
@@ -560,7 +560,7 @@
      * within the encapsulations, and must be no longer than 70
      * characters, not counting the two leading hyphens."
      * https://tools.ietf.org/html/rfc1521
-     * https://bitbucket.org/sjodogne/orthanc/issues/165/
+     * https://bugs.orthanc-server.com/show_bug.cgi?id=165
      **/
     if (boundary.size() != 36 + 1 + 36)  // one UUID contains 36 characters
     {
--- a/OrthancFramework/Sources/HttpServer/MultipartStreamReader.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancFramework/Sources/HttpServer/MultipartStreamReader.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -354,7 +354,7 @@
           subType = Toolbox::StripSpaces(items[1]);
           Toolbox::ToLowerCase(subType);
 
-          // https://bitbucket.org/sjodogne/orthanc/issues/54/decide-what-to-do-wrt-quoting-of-multipart
+          // https://bugs.orthanc-server.com/show_bug.cgi?id=54
           // https://tools.ietf.org/html/rfc7231#section-3.1.1.1
           RemoveSurroundingQuotes(subType);
         }
--- a/OrthancFramework/Sources/SystemToolbox.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancFramework/Sources/SystemToolbox.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -502,7 +502,7 @@
   {
     // This is an adapted version of the patch proposed in issue #64
     // without an explicit call to "malloc()" to prevent memory leak
-    // https://bitbucket.org/sjodogne/orthanc/issues/64/add-openbsd-support
+    // https://bugs.orthanc-server.com/show_bug.cgi?id=64
     // https://stackoverflow.com/q/31494901/881731
 
     const int mib[4] = { CTL_KERN, KERN_PROC_ARGS, getpid(), KERN_PROC_ARGV };
--- a/OrthancServer/Plugins/Engine/OrthancPlugins.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancServer/Plugins/Engine/OrthancPlugins.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -3604,7 +3604,7 @@
     {
       // Fix issue 168 (Plugins can't read private tags from the
       // configuration file)
-      // https://bitbucket.org/sjodogne/orthanc/issues/168/
+      // https://bugs.orthanc-server.com/show_bug.cgi?id=168
       std::string privateCreator;
       {
         OrthancConfiguration::ReaderLock lock;
@@ -3793,7 +3793,7 @@
     {
       // Fix issue 168 (Plugins can't read private tags from the
       // configuration file)
-      // https://bitbucket.org/sjodogne/orthanc/issues/168/
+      // https://bugs.orthanc-server.com/show_bug.cgi?id=168
       std::string privateCreator;
       {
         OrthancConfiguration::ReaderLock lock;
--- a/OrthancServer/Sources/OrthancFindRequestHandler.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancServer/Sources/OrthancFindRequestHandler.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -438,7 +438,7 @@
   {
     // Whatever the manufacturer, remove the GenericGroupLength tags
     // http://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_7.2.html
-    // https://bitbucket.org/sjodogne/orthanc/issues/31/
+    // https://bugs.orthanc-server.com/show_bug.cgi?id=31
     if (tag.GetElement() == 0x0000)
     {
       return false;
--- a/OrthancServer/Sources/OrthancMoveRequestHandler.cpp	Tue Jan 26 17:57:09 2021 +0100
+++ b/OrthancServer/Sources/OrthancMoveRequestHandler.cpp	Tue Jan 26 18:25:52 2021 +0100
@@ -276,7 +276,7 @@
       /**
        * This tokenization fixes issue 154 ("Matching against list of
        * UID-s by C-MOVE").
-       * https://bitbucket.org/sjodogne/orthanc/issues/154/
+       * https://bugs.orthanc-server.com/show_bug.cgi?id=154
        **/
 
       std::vector<std::string> tokens;