aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-09-03 18:08:41 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-09-03 18:08:41 -0700
commitb93b739314dae0bd9742e7b1273c632e6b466707 (patch)
tree82b722d1b4905b96943bc3c4724c72a5d2315510 /python
parent6955fb200fe9e9c3529db2d0a8fde8c69b430704 (diff)
downloadfatcat-b93b739314dae0bd9742e7b1273c632e6b466707.tar.gz
fatcat-b93b739314dae0bd9742e7b1273c632e6b466707.zip
additional container webface edit fields
Diffstat (limited to 'python')
-rw-r--r--python/fatcat_web/forms.py39
-rw-r--r--python/fatcat_web/templates/container_edit.html6
2 files changed, 36 insertions, 9 deletions
diff --git a/python/fatcat_web/forms.py b/python/fatcat_web/forms.py
index fb7c1116..5dd43601 100644
--- a/python/fatcat_web/forms.py
+++ b/python/fatcat_web/forms.py
@@ -180,12 +180,18 @@ class ReleaseEntityForm(EntityEditForm):
container_type_options = (
('journal', 'Journal'),
- ('proceedings', 'Conference Proceedings'),
+ ('proceedings', 'Proceedings'),
+ ('book-series', 'Book Series'),
('blog', 'Blog'),
+ ('magazine', 'Magazine'),
+ ('trade', 'Trade Magazine'),
+ ('test', 'Test / Dummy'),
+ ('', 'Unknown / Blank'),
)
CONTAINER_SIMPLE_ATTRS = ['name', 'container_type', 'publisher', 'issnl',
'wikidata_qid']
+CONTAINER_EXTRA_ATTRS = ['issne', 'issnp', 'original_name', 'country']
class ContainerEntityForm(EntityEditForm):
name = StringField('Name/Title',
@@ -195,7 +201,11 @@ class ContainerEntityForm(EntityEditForm):
choices=container_type_options,
default='')
publisher = StringField("Publisher")
- issnl = StringField("ISSN-L")
+ issnl = StringField("ISSN-L (linking)")
+ issne = StringField("ISSN (electronic)")
+ issnp = StringField("ISSN (print)")
+ original_name = StringField("Original Name (native language)")
+ country = StringField("Country of Publication (ISO code)")
wikidata_qid = StringField('Wikidata QID')
urls = FieldList(
StringField("Container URLs",
@@ -211,9 +221,14 @@ class ContainerEntityForm(EntityEditForm):
for simple_attr in CONTAINER_SIMPLE_ATTRS:
a = getattr(cef, simple_attr)
a.data = getattr(ce, simple_attr)
- if ce.extra and ce.extra.get('urls'):
- for url in ce.extra['urls']:
- cef.urls.append_entry(url)
+ if ce.extra:
+ for k in CONTAINER_EXTRA_ATTRS:
+ if ce.extra.get(k):
+ a = getattr(cef, k)
+ a.data = ce.extra[k]
+ if ce.extra.get('urls'):
+ for url in ce.extra['urls']:
+ cef.urls.append_entry(url)
return cef
def to_entity(self):
@@ -235,23 +250,31 @@ class ContainerEntityForm(EntityEditForm):
if a == '':
a = None
setattr(ce, simple_attr, a)
+ if not ce.extra:
+ ce.extra = dict()
+ for extra_attr in CONTAINER_EXTRA_ATTRS:
+ a = getattr(self, extra_attr).data
+ if a and a != '':
+ ce.extra[extra_attr] = a
extra_urls = []
for url in self.urls:
extra_urls.append(url.data)
if extra_urls:
- if not ce.extra:
- ce.extra = dict()
ce.extra['urls'] = extra_urls
if self.edit_description.data:
ce.edit_extra = dict(description=self.edit_description.data)
+ if not ce.extra:
+ ce.extra = None
url_rel_options = [
('web', 'Public Web'),
('webarchive', 'Web Archive'),
('repository', 'Repository'),
- ('social', 'Academic Social Network'),
+ ('archive', 'Preservation Archive'),
+ ('academicsocial', 'Academic Social Network'),
('publisher', 'Publisher'),
('dweb', 'Decentralized Web'),
+ ('aggregator', 'Aggregator'),
]
FILE_SIMPLE_ATTRS = ['size', 'md5', 'sha1', 'sha256', 'mimetype']
diff --git a/python/fatcat_web/templates/container_edit.html b/python/fatcat_web/templates/container_edit.html
index 238335b4..965635a4 100644
--- a/python/fatcat_web/templates/container_edit.html
+++ b/python/fatcat_web/templates/container_edit.html
@@ -15,10 +15,14 @@
<h3 class="ui dividing header">The Basics</h3>
<br>
- {{ edit_macros.form_field_inline(form.container_type, "required") }}
+ {{ edit_macros.form_field_inline(form.container_type) }}
{{ edit_macros.form_field_inline(form.name, "required") }}
+ {{ edit_macros.form_field_inline(form.original_name) }}
{{ edit_macros.form_field_inline(form.publisher) }}
+ {{ edit_macros.form_field_inline(form.country) }}
{{ edit_macros.form_field_inline(form.issnl) }}
+ {{ edit_macros.form_field_inline(form.issne) }}
+ {{ edit_macros.form_field_inline(form.issnp) }}
{{ edit_macros.form_field_inline(form.wikidata_qid) }}
<br>