Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ale
ngv
Commits
4a7ae1c5
Commit
4a7ae1c5
authored
Sep 13, 2008
by
ale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make the upload server location a configurable parameter
parent
b0b3c26d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
ngv_frontend/ngv_frontend/lib/app_globals.py
ngv_frontend/ngv_frontend/lib/app_globals.py
+1
-0
ngv_frontend/ngv_frontend/templates/video/files.html
ngv_frontend/ngv_frontend/templates/video/files.html
+1
-1
No files found.
ngv_frontend/ngv_frontend/lib/app_globals.py
View file @
4a7ae1c5
...
...
@@ -24,3 +24,4 @@ class Globals(object):
self
.
local_storage
=
LocalStorage
(
config
[
'local_storage_path'
])
self
.
jobserver
=
JobServer
(
server
=
config
[
'jobserver_url'
])
self
.
uploadserver_host
=
config
[
'uploadserver_host'
]
ngv_frontend/ngv_frontend/templates/video/files.html
View file @
4a7ae1c5
...
...
@@ -15,7 +15,7 @@ file_delete_url = '${h.url_for(action='delete_file')}';
file_reprocess_url
=
'
${h.url_for(action=
'
schedule_job
'
, j_action=
'
process
'
)}
'
;
file_identify_url
=
'
${h.url_for(action=
'
schedule_job
'
, j_action=
'
identify
'
)}
'
;
token
=
''
;
uploadserverUrl
=
'
http://
test2a.ngvision.org
/_uploadserver
'
;
uploadserverUrl
=
'
http://
${g.uploadserver_host}
/_uploadserver
'
;
//var username = '${h.logged_author().username}';
$
(
document
).
ready
(
function
()
{
updateTypeGroup
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment