Mercurial > hg > orthanc
changeset 2201:307365d0991a
merge
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 06 Dec 2016 14:40:46 +0100 |
parents | af60b784d2b8 (current diff) feabd88c88e4 (diff) |
children | 9b373b7d6713 |
files | |
diffstat | 3 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancExplorer/file-upload.js Tue Dec 06 14:40:34 2016 +0100 +++ b/OrthancExplorer/file-upload.js Tue Dec 06 14:40:46 2016 +0100 @@ -48,6 +48,11 @@ $('#upload').live('pageshow', function() { + alert('WARNING - This page is currently affected by Orthanc issue #21: ' + + '"DICOM files might be missing after uploading with Mozilla Firefox." ' + + 'Do not use this upload feature for clinical uses, or carefully ' + + 'check that all instances have been properly received by Orthanc. ' + + 'Please use the command-line "ImportDicomFiles.py" script to circumvent this issue.'); $('#fileupload').fileupload('enable'); });
--- a/Resources/Samples/WebApplications/DrawingDicomizer.js Tue Dec 06 14:40:34 2016 +0100 +++ b/Resources/Samples/WebApplications/DrawingDicomizer.js Tue Dec 06 14:40:46 2016 +0100 @@ -58,7 +58,7 @@ toolbox.ServeFile('DrawingDicomizer/orthanc.js', response); } else if (req.url == '/jquery.js') { - toolbox.ServeFile('../../../OrthancExplorer/libs/jquery-1.7.2.min.js', response); + toolbox.ServeFile('../../../OrthancExplorer/libs/jquery.min.js', response); } else if (req.url.startsWith('/orthanc')) { toolbox.ForwardGetRequest(orthanc, req.url.substr(8), response); @@ -96,4 +96,6 @@ } }); + +console.log('The demo is running at http://localhost:' + port + '/'); server.listen(port);
--- a/TODO Tue Dec 06 14:40:34 2016 +0100 +++ b/TODO Tue Dec 06 14:40:46 2016 +0100 @@ -82,6 +82,8 @@ * Converter to/from NIfTI * MySQL database plugin * Decode JPEG2k with grok: https://github.com/GrokImageCompression/grok +* Generate dynamic content using Lua: + https://groups.google.com/d/msg/orthanc-users/KompazkxRSs/5Rh03mzgDAAJ ===