diff options
author | bnewbold <bnewbold@archive.org> | 2020-03-26 22:35:28 +0000 |
---|---|---|
committer | bnewbold <bnewbold@archive.org> | 2020-03-26 22:35:28 +0000 |
commit | ea241c0718407285774bff85e4b3b99aed0b9186 (patch) | |
tree | f28b9730adc570347ad48b17bb0482d1c9ced3c8 /python/fatcat_web/entity_helpers.py | |
parent | ec82404f0d0ad6b92491a1cb90a823d421857348 (diff) | |
parent | ec15f162706da58c464b5c2b7b623920fcb96d7f (diff) | |
download | fatcat-ea241c0718407285774bff85e4b3b99aed0b9186.tar.gz fatcat-ea241c0718407285774bff85e4b3b99aed0b9186.zip |
Merge branch 'bnewbold-citeproc-fixes' into 'master'
improve citeproc/CSL web interface
See merge request webgroup/fatcat!36
Diffstat (limited to 'python/fatcat_web/entity_helpers.py')
-rw-r--r-- | python/fatcat_web/entity_helpers.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/python/fatcat_web/entity_helpers.py b/python/fatcat_web/entity_helpers.py index 591dda80..009f6160 100644 --- a/python/fatcat_web/entity_helpers.py +++ b/python/fatcat_web/entity_helpers.py @@ -74,8 +74,13 @@ def enrich_release_entity(entity): ref.extra['unstructured'] = strip_extlink_xml(ref.extra['unstructured']) # author list to display; ensure it's sorted by index (any othors with # index=None go to end of list) - authors = [c for c in entity.contribs if c.role in ('author', None)] + authors = [c for c in entity.contribs if + c.role in ('author', None) and + (c.surname or c.raw_name or (c.creator and c.creator.surname)) + ] entity._authors = sorted(authors, key=lambda c: (c.index == None and 99999999) or c.index) + # need authors, title for citeproc to work + entity._can_citeproc = bool(entity._authors) and bool(entity.title) if entity.abstracts: # hack to show plain text instead of latex abstracts if 'latex' in entity.abstracts[0].mimetype: |