Skip to content

Commit

Permalink
#200 bugfix: Enabling range day limits on study search
Browse files Browse the repository at this point in the history
  • Loading branch information
galelis committed Jul 3, 2018
1 parent e55e2ad commit fb65559
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 11 deletions.
5 changes: 2 additions & 3 deletions config/ClearCanvasDIMSE.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
{
"servers": {

"dimse": [{
"name": "SPRITE PACS",
"wadoUriRoot": "http://localhost:1000/wado/CT",
"requestOptions": {

"logRequests": true,
"logResponses": true,
"logTiming": true
Expand Down Expand Up @@ -33,7 +31,8 @@
"public": {
"verifyEmail": false,
"ui": {
"studyListFunctionsEnabled": true
"studyListFunctionsEnabled": true,
"studyListDateFilterNumDays": 1
}
}
}
3 changes: 2 additions & 1 deletion config/dcm4cheeDICOMWeb.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
"public": {
"verifyEmail": false,
"ui": {
"studyListFunctionsEnabled": true
"studyListFunctionsEnabled": true,
"studyListDateFilterNumDays": 1
}
}
}
3 changes: 2 additions & 1 deletion config/dcm4cheeDIMSE.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
"public": {
"verifyEmail": false,
"ui": {
"studyListFunctionsEnabled": true
"studyListFunctionsEnabled": true,
"studyListDateFilterNumDays": 1
}
}
}
5 changes: 5 additions & 0 deletions config/medkenOrthanc.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,10 @@
"fhir" : {
"host" : "localhost",
"port" : 3937
},
"public": {
"ui": {
"studyListDateFilterNumDays": 1
}
}
}
3 changes: 2 additions & 1 deletion config/orthancDICOMWeb.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"leftSidebarOpen": false,
"displaySetNavigationLoopOverSeries": false,
"displaySetNavigationMultipleViewports": true,
"autoPositionMeasurementsTextCallOuts": "TRLB"
"autoPositionMeasurementsTextCallOuts": "TRLB",
"studyListDateFilterNumDays": 1
}
},
"proxy": {
Expand Down
3 changes: 2 additions & 1 deletion config/orthancDIMSE.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"leftSidebarOpen": false,
"displaySetNavigationLoopOverSeries": false,
"displaySetNavigationMultipleViewports": true,
"autoPositionMeasurementsTextCallOuts": "TRLB"
"autoPositionMeasurementsTextCallOuts": "TRLB",
"studyListDateFilterNumDays": 1
}
}
}
3 changes: 2 additions & 1 deletion config/osirixDIMSE.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
"leftSidebarOpen": false,
"displaySetNavigationLoopOverSeries": false,
"displaySetNavigationMultipleViewports": true,
"autoPositionMeasurementsTextCallOuts": "TRLB"
"autoPositionMeasurementsTextCallOuts": "TRLB",
"studyListDateFilterNumDays": 1
}
}
}
3 changes: 2 additions & 1 deletion config/publicOrthancDICOMWeb.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"leftSidebarOpen": false,
"displaySetNavigationLoopOverSeries": false,
"displaySetNavigationMultipleViewports": true,
"autoPositionMeasurementsTextCallOuts": "TRLB"
"autoPositionMeasurementsTextCallOuts": "TRLB",
"studyListDateFilterNumDays": 1
}
},
"proxy": {
Expand Down
8 changes: 6 additions & 2 deletions dockersupport/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"METEOR_SETTINGS": {
"servers": {
"dicomWeb": [
{
{
"name": "Orthanc",
"wadoUriRoot": "http://pacsIP:8042/wado",
"qidoRoot": "http://pacsIP:8042/dicom-web",
Expand All @@ -27,7 +27,11 @@
]
},
"defaultServiceType": "dicomWeb",
"public": {},
"public": {
"ui": {
"studyListDateFilterNumDays": 1
}
},
"proxy": {
"enabled": true
}
Expand Down

0 comments on commit fb65559

Please sign in to comment.