* Small refactor into Table Class setting events as static object into class * feature(STOW-SR) : Initial changes to stow when we have Server. * Improvements into requests and small fix into style * Small fix for jumpToRow without refheshing page * Handling STOW-SR once we don't have server * feature(STOW-SR) Refactor * Merge request with makeRequest and delete old file * Expose wadoproxy to client and update measurement-table to start using wadoproxy.getServerUrl * Move WADOProxy.getServerUrl to Measurement-table package. Fix querystring issue. * Remove proxy:enabled in favour of requestOptions.requestFromBrowser * Bcrypt 2.0.0 to fix Travis
29 lines
687 B
JavaScript
Executable File
29 lines
687 B
JavaScript
Executable File
Package.describe({
|
|
name: 'ohif:wadoproxy',
|
|
summary: 'WADO-URI Proxy',
|
|
version: '0.0.1'
|
|
});
|
|
|
|
Npm.depends({
|
|
'query-string': '5.1.1',
|
|
'performance-now': '2.1.0'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.versionsFrom('1.4');
|
|
|
|
api.use('ecmascript');
|
|
api.use('clinical:router@2.0.19');
|
|
|
|
api.use('ohif:core');
|
|
api.use('ohif:servers');
|
|
|
|
api.addFiles('both/namespace.js', ['client', 'server']);
|
|
api.addFiles('both/convertURL.js', ['client', 'server']);
|
|
api.addFiles('both/initialize.js', ['client', 'server']);
|
|
api.addFiles('server/routes.js', 'server');
|
|
|
|
// Global exports
|
|
api.export('WADOProxy');
|
|
});
|