mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-12-24 10:34:17 +00:00
Some fixes
This commit is contained in:
parent
00238e83c3
commit
e04f3d0ac3
@ -12,8 +12,8 @@ import os
|
|||||||
|
|
||||||
SERVICES = {'corpus_analysis': {'name': 'Corpus analysis'},
|
SERVICES = {'corpus_analysis': {'name': 'Corpus analysis'},
|
||||||
'setup_files': {'name': 'Setup files',
|
'setup_files': {'name': 'Setup files',
|
||||||
'resources': {'mem_mb': 4096, 'n_cores': 4},
|
'resources': {'mem_mb': 4096, 'n_cores': 4},
|
||||||
'add_job_form': AddSetupFilesJobForm},
|
'add_job_form': AddSetupFilesJobForm},
|
||||||
'nlp': {'name': 'Natural Language Processing',
|
'nlp': {'name': 'Natural Language Processing',
|
||||||
'resources': {'mem_mb': 4096, 'n_cores': 2},
|
'resources': {'mem_mb': 4096, 'n_cores': 2},
|
||||||
'add_job_form': AddNLPJobForm},
|
'add_job_form': AddNLPJobForm},
|
||||||
@ -59,7 +59,7 @@ def service(service):
|
|||||||
job.delete()
|
job.delete()
|
||||||
flash('Internal Server Error')
|
flash('Internal Server Error')
|
||||||
return make_response(
|
return make_response(
|
||||||
{'redirect_url': url_for('services.service', service='ocr')},
|
{'redirect_url': url_for('services.service', service=service)},
|
||||||
500)
|
500)
|
||||||
else:
|
else:
|
||||||
for file in add_job_form.files.data:
|
for file in add_job_form.files.data:
|
||||||
|
@ -7,7 +7,7 @@ class RessourceList extends List {
|
|||||||
|
|
||||||
|
|
||||||
_init(ressources) {
|
_init(ressources) {
|
||||||
this.add(Object.values(ressources));
|
this.addRessources(Object.values(ressources));
|
||||||
this.sort("creation_date", {order: "desc"});
|
this.sort("creation_date", {order: "desc"});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ class RessourceList extends List {
|
|||||||
switch(operation.op) {
|
switch(operation.op) {
|
||||||
case "add":
|
case "add":
|
||||||
if (pathArray.includes("results")) {break;}
|
if (pathArray.includes("results")) {break;}
|
||||||
this.add([operation.value]);
|
this.addRessources([operation.value]);
|
||||||
break;
|
break;
|
||||||
case "remove":
|
case "remove":
|
||||||
this.remove("id", pathArray[0]);
|
this.remove("id", pathArray[0]);
|
||||||
@ -42,11 +42,11 @@ class RessourceList extends List {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
add(ressources) {
|
addRessources(ressources) {
|
||||||
if (this.dataMapper) {
|
if (this.dataMapper) {
|
||||||
super.add(ressources.map(x => this.dataMapper(x)));
|
this.add(ressources.map(x => this.dataMapper(x)));
|
||||||
} else {
|
} else {
|
||||||
super.add(ressources);
|
this.add(ressources);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user