wip to fix jquery-hotkeys

This commit is contained in:
biharck 2019-04-26 11:00:27 -03:00
parent 4821705d68
commit accb4fd2bb
3 changed files with 34 additions and 16 deletions

3
.gitignore vendored
View File

@ -19,6 +19,7 @@ package-lock.json
yarn-error.log
.DS_Store
example/deps/
# Common Example Data Directories
sampledata/
example/deps/
docker/dcm4che/dcm4che-arc

View File

@ -18,6 +18,9 @@ RUN yarn run prepare
WORKDIR /usr/src/app/example
RUN yarn install
RUN yarn run prepare
RUN sed -i "s,http://localhost:5000,http://localhost,g" index.html
RUN sed -i 's,"routerBasename": "/","routerBasename": "/demo",g' index.html

View File

@ -103,6 +103,20 @@
// Try going to:
// http://localhost:5000/viewer/1.3.6.1.4.1.14519.5.2.1.1706.4996.216859690032335293073513900362
props.servers = {
"dicomWeb": [
{
"name": "DCM4CHEE",
"wadoUriRoot": "https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/wado",
"qidoRoot": "https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/rs",
"wadoRoot": "https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/rs",
"qidoSupportsIncludeField": true,
"imageRendering": "wadors",
"thumbnailRendering": "wadors",
"requestOptions": {
"requestFromBrowser": true
}
}
]
// "dicomWeb": [
// {
// "name": "Orthanc",
@ -120,21 +134,21 @@
// }
// }
// ]
"dicomWeb": [
{
"name": "DCM4CHEE",
"wadoUriRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado",
"qidoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs",
"wadoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs",
"qidoSupportsIncludeField": true,
"imageRendering": "wadors",
"thumbnailRendering": "wadors",
"requestOptions": {
"requestFromBrowser": true,
"auth": "admin:admin"
}
}
]
// "dicomWeb": [
// {
// "name": "DCM4CHEE",
// "wadoUriRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado",
// "qidoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs",
// "wadoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs",
// "qidoSupportsIncludeField": true,
// "imageRendering": "wadors",
// "thumbnailRendering": "wadors",
// "requestOptions": {
// "requestFromBrowser": true,
// "auth": "admin:admin"
// }
// }
// ]
};