diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 12:24:46 -0700 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 12:24:46 -0700 | 
| commit | 7d90315279d02b0d02d566a2b84231986bc43e59 (patch) | |
| tree | c384d89c6445946cbe4e4f6b16c08955610652e4 /python/fatcat_web | |
| parent | 8409128c47a287ccdf4d5092f094648495367e5a (diff) | |
| download | fatcat-7d90315279d02b0d02d566a2b84231986bc43e59.tar.gz fatcat-7d90315279d02b0d02d566a2b84231986bc43e59.zip | |
more citation styles, and tests
Diffstat (limited to 'python/fatcat_web')
| -rw-r--r-- | python/fatcat_web/routes.py | 2 | ||||
| -rw-r--r-- | python/fatcat_web/templates/release_view.html | 3 | 
2 files changed, 5 insertions, 0 deletions
| diff --git a/python/fatcat_web/routes.py b/python/fatcat_web/routes.py index 8e07aff0..32a1837d 100644 --- a/python/fatcat_web/routes.py +++ b/python/fatcat_web/routes.py @@ -570,6 +570,8 @@ def release_citeproc(ident):      cite = citeproc_csl(csl, style, is_html)      if is_html:          return Response(cite) +    elif style == "csl-json": +        return jsonify(json.loads(cite))      else:          return Response(cite, mimetype="text/plain") diff --git a/python/fatcat_web/templates/release_view.html b/python/fatcat_web/templates/release_view.html index ef77360f..ff044c49 100644 --- a/python/fatcat_web/templates/release_view.html +++ b/python/fatcat_web/templates/release_view.html @@ -415,6 +415,9 @@    </div>    <div class="content">      <a href="/release/{{ release.ident }}.bib">BibTeX</a> +    <br><a href="/release/{{ release.ident }}/citeproc?style=csl-json">CSL-JSON</a> +    <br><a href="/release/{{ release.ident }}/citeproc?style=modern-language-association">MLA</a> +    <br><a href="/release/{{ release.ident }}/citeproc?style=elsevier-harvard">Harvard</a>    </div>  </div>  {% endif %} | 
