# HG changeset patch # User Sebastien Jodogne # Date 1471339711 -7200 # Node ID 4a151d26c98a10b1eac497cbb045f289894975e8 # Parent 1d7a640c1ddadfec105acbb04ee7b790e8885b71 fix extraction of the symbolic name of the private tags diff -r 1d7a640c1dda -r 4a151d26c98a NEWS --- a/NEWS Fri Jul 15 11:58:11 2016 +0200 +++ b/NEWS Tue Aug 16 11:28:31 2016 +0200 @@ -1,11 +1,23 @@ Pending changes in the mainline =============================== +General +------- + * New configuration options: "DicomScuTimeout" and "DicomScpTimeout" + +REST API +-------- + * "Permissive" flag for URI "/modalities/{...}/store" to ignore C-Store transfer errors * "Asynchronous" flag for URIs "/modalities/{...}/store" and "/peers/{...}/store" to avoid waiting for the completion of image transfers +Maintenance +----------- + +* Fix extraction of the symbolic name of the private tags + Version 1.1.0 (2016/06/27) ========================== diff -r 1d7a640c1dda -r 4a151d26c98a OrthancServer/FromDcmtkBridge.cpp --- a/OrthancServer/FromDcmtkBridge.cpp Fri Jul 15 11:58:11 2016 +0200 +++ b/OrthancServer/FromDcmtkBridge.cpp Tue Aug 16 11:28:31 2016 +0200 @@ -571,8 +571,7 @@ } // This code gives access to the name of the private tags - DcmTag tagbis(element.getTag()); - const std::string tagName(tagbis.getTagName()); + const std::string tagName = FromDcmtkBridge::GetName(tag); switch (format) { @@ -589,6 +588,7 @@ { node["Name"] = tagName; + DcmTag tagbis(tag.GetGroup(), tag.GetElement()); if (tagbis.getPrivateCreator() != NULL) { node["PrivateCreator"] = tagbis.getPrivateCreator();