aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-01-21 12:03:42 -0800
committerBryan Newbold <bnewbold@robocracy.org>2019-01-21 12:03:42 -0800
commitbdb1e6c42317c8ea9d2152896e308203ecd3ac3e (patch)
treed06b1d166569167a8d2ac0ca86e4eebd6ad7324c
parent7f6cb7fbe480d349d5ed5c705c5cfadff3453229 (diff)
downloadfatcat-bdb1e6c42317c8ea9d2152896e308203ecd3ac3e.tar.gz
fatcat-bdb1e6c42317c8ea9d2152896e308203ecd3ac3e.zip
remove coden and abbrev from python tools
-rw-r--r--python/fatcat_tools/importers/journal_metadata.py2
-rw-r--r--python/fatcat_web/templates/container_view.html6
2 files changed, 0 insertions, 8 deletions
diff --git a/python/fatcat_tools/importers/journal_metadata.py b/python/fatcat_tools/importers/journal_metadata.py
index aa75ad5b..cd058889 100644
--- a/python/fatcat_tools/importers/journal_metadata.py
+++ b/python/fatcat_tools/importers/journal_metadata.py
@@ -69,8 +69,6 @@ class JournalMetadataImporter(FatcatImporter):
issnl=issnl,
name=title,
publisher=or_none(row['publisher']),
- abbrev=None,
- coden=None,
extra=extra)
return ce
diff --git a/python/fatcat_web/templates/container_view.html b/python/fatcat_web/templates/container_view.html
index 29f0b9d9..4a175a5d 100644
--- a/python/fatcat_web/templates/container_view.html
+++ b/python/fatcat_web/templates/container_view.html
@@ -15,12 +15,6 @@
<p><b>Publisher:</b>
{% if container.publisher != None %}{{ container.publisher }}{% else %}<i>Unknown</i>{% endif %}
-{% if container.coden != None %}
-<br><b>CODEN<sup><a href="https://en.wikipedia.org/wiki/CODEN">?</a></sup>:</b> &nbsp;<code>{{ container.coden }}</code>
-{% endif %}
-{% if container.abbrev != None %}
-<br><b>Abbrev.:</b> &nbsp;<code>{{ container.abbrev }}</code>
-{% endif %}
{% if (container.extra != None) and (container.extra['url'] != None) and (container.extra['url']|length > 0) %}
<br><b>Homepage:</b> <a href="{{ container.extra['url'] }}">&nbsp;<code>{{ container.extra['url'] }}</code></a>
{% endif %}