# HG changeset patch # User Sebastien Jodogne # Date 1521014294 -3600 # Node ID f2b5773fecf3a5a08923bb39454c12440bd2f536 # Parent 28d017f770a30639088aace2cecc21d1cc4206cc New option: "QidoCaseSensitive" to make queries to QIDO-RS server case insentitive diff -r 28d017f770a3 -r f2b5773fecf3 NEWS --- a/NEWS Thu Jan 11 16:57:23 2018 +0100 +++ b/NEWS Wed Mar 14 08:58:14 2018 +0100 @@ -1,6 +1,7 @@ Pending changes in the mainline =============================== +* New option: "QidoCaseSensitive" to make queries to QIDO-RS server case insentitive * Defaults to JSON answers instead of XML * Use of "application/dicom+json" MIME type instead of "application/json" * Added "?expand" argument to "/servers" route diff -r 28d017f770a3 -r f2b5773fecf3 Plugin/QidoRs.cpp --- a/Plugin/QidoRs.cpp Thu Jan 11 16:57:23 2018 +0100 +++ b/Plugin/QidoRs.cpp Wed Mar 14 08:58:14 2018 +0100 @@ -270,7 +270,7 @@ } result["Expand"] = false; - result["CaseSensitive"] = true; + result["CaseSensitive"] = OrthancPlugins::Configuration::GetBooleanValue("QidoCaseSensitive", true); result["Query"] = Json::objectValue; result["Limit"] = limit_; result["Since"] = offset_;