comparison Sphinx/source/plugins/orthanc-explorer-2.rst @ 869:9447f34ff010

exact-match for OE2
author Alain Mazy <am@osimis.io>
date Mon, 08 Aug 2022 08:53:51 +0200
parents 888d6b29245a
children 5a421cfaa9ff
comparison
equal deleted inserted replaced
868:2cb6b69537c6 869:9447f34ff010
73 ----------------- 73 -----------------
74 74
75 You may open the OE2 interface directly on a specific study or patient by specifying DICOM Tags directly in the URL. 75 You may open the OE2 interface directly on a specific study or patient by specifying DICOM Tags directly in the URL.
76 e.g:: 76 e.g::
77 77
78 http://localhost:8042/ui/app/#/filtered-studies?PatientID=00000169 78 http://localhost:8042/ui/app/#/filtered-studies?PatientID="00000169"
79 http://localhost:8042/ui/app/#/filtered-studies?StudyDate=20220512-20220513&ModalitiesInStudy=CR\DX 79 http://localhost:8042/ui/app/#/filtered-studies?StudyDate=20220512-20220513&ModalitiesInStudy=CR\DX
80 http://localhost:8042/ui/app/#/filtered-studies?StudyInstanceUID=1.2.3 80 http://localhost:8042/ui/app/#/filtered-studies?StudyInstanceUID="1.2.3"
81 http://localhost:8042/ui/app/#/filtered-studies?StudyInstanceUID=1.2.3&expand 81 http://localhost:8042/ui/app/#/filtered-studies?StudyInstanceUID="1.2.3"&expand
82 http://localhost:8042/ui/app/#/filtered-studies?StudyInstanceUID=1.2.3&expand=study 82 http://localhost:8042/ui/app/#/filtered-studies?StudyInstanceUID="1.2.3"&expand=study
83 http://localhost:8042/ui/app/#/filtered-studies?StudyInstanceUID=1.2.3&expand=series 83 http://localhost:8042/ui/app/#/filtered-studies?StudyInstanceUID="1.2.3"&expand=series
84
85 By default, OE2 will add a wildcard ``*`` at the beginning and at the end of the search text. Therefore, searching
86 for ``PatientID=1234`` will actually search for ``PatientID=*1234*``. If you do not want to have these extra wildcards
87 added, you should use ``"`` at the beginning and/or at the end of the search text. Therefore, searching for
88 ``PatientID="1234"`` will return only the studies whose ``PatientID`` is exactly ``1234``.
89 These ``"`` can also be used in the User Interface search fields.
84 90
85 91
86 92
87 Roadmap 93 Roadmap
88 ------- 94 -------