aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/release_view.html
blob: a5fb0962c56336960d7a19077b772757d7739500 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
{% set entity = release %}
{% set entity_view = "overview" %}
{% import "entity_macros.html" as entity_macros %}
{% extends "entity_base.html" %}

{# HTML metadata embeddings #}
{% if release and release.status == "active" %}
  {% block extra_head %}
    <link rel="canonical" href="https://{{ config.FATCAT_DOMAIN }}/release/{{ entity.ident }}">
    <meta name="twitter:card" content="summary">

    <meta name="description" content="Editable catalog of bibliographic and fulltext file metadata">
    <meta name="title" content="{{ release.title }}">
    <meta name="DC.title" content="{{ release.title }}">
    <meta name="citation_title" content="{{ release.title }}">
    <meta name="twitter:title" content="{{ release.title }}">
    <meta name="DC.type" content="{{ release.release_type }}">
    {% if release.abstracts %}
      <meta name="abstract" content="{{ release.abstracts[0].content }}">
      <meta name="DC.description" content="{{ release.abstracts[0].content }}">
      <meta name="twitter:description" content="{{ release.abstracts[0].content }}">
    {% endif %}
    {% for author in authors %}
      <meta name="DC.creator" content="{{ author.raw_name }}">
      <meta name="citation_author" content="{{ author.raw_name }}">
    {% endfor %}
    {% if release.release_date or release.release_year %}
      <meta name="DC.issued" content="{{ release.release_date or release.release_year }}">
      <meta name="citation_publication_date" content="{{ release.release_date or release.release_year }}">
    {% endif %}
    {% if release.language %}
      <meta name="DC.language" content="isbn:{{ release.language }}">
      <meta name="citation_language" content="{{ release.language }}">
    {% endif %}
    {% if release.container and release.container.issnl %}{# only want actual journals/conferences #}
      <meta name="DC.relation.ispartof" content="{{ release.container.name }}">
      <meta name="citation_journal_title" content="{{ release.container.name }}">
      <meta name="DC.publisher" content="{{ release.container.publisher }}">
      <meta name="citation_publisher" content="{{ release.container.publisher  }}">
      {% if release.container.issnl %}
        <meta name="citation_issn" content="{{ release.container.issnl }}">
      {% endif %}
    {% elif release.publisher %}
      <meta name="DC.publisher" content="{{ release.publisher }}">
      <meta name="citation_publisher" content="{{ release.publisher  }}">
    {% endif %}
    {% if release.volume %}
      <meta name="DC.citation.volume" content="{{ release.volume }}">
      <meta name="citation_volume" content="{{ release.volume }}">
    {% endif %}
    {% if release.issue %}
      <meta name="DC.citation.issue" content="{{ release.issue }}">
      <meta name="citation_issue" content="{{ release.issue }}">
    {% endif %}
    {% if release.pages %}
      <meta name="DC.citation.spage" content="{{ release.pages }}">
      <meta name="citation_first_page" content="{{ release.pages }}">
    {% endif %}
    {% if release.ext_ids.doi %}
      <meta name="DC.identifier" content="doi:{{ release.ext_ids.doi }}">
      <meta name="citation_doi" content="{{ release.ext_ids.doi }}">
    {% endif %}
    {% if release.ext_ids.isbn13 %}
      <meta name="DC.identifier" content="isbn:{{ release.ext_ids.isbn13}}">
      <meta name="citation_isbn" content="{{ release.ext_ids.isbn13}}">
    {% endif %}
    {% for file in (entity.files or [])[:10] %}{% for url in (file.urls or [])[:10] %}
      {% if '//web.archive.org/web/' in url.url %}
        <meta name="DC.identifier" content="{{ url.url }}">
        <meta name="citation_pdf_url" content="{{ url.url }}">
      {% endif %}
    {% endfor %}{% endfor %}
  {% endblock %}
{% endif %}

{% block main_extra_attr %}itemscope itemtype="http://schema.org/ScholarlyArticle" itemid="#release"{% endblock %}

{% block fullbody %}

<div class="ui stackable mobile reversed grid centered">
<div class="one wide column"></div>
<div class="fifteen wide column">
  <h1 class="ui header">
    <span itemprop="headline"><span itemprop="name">{{ release.title }}</span></span>
    {% if release.subtitle %}
      <br><span style="font-size: smaller; font-weight: normal;">{{ release.subtitle }}</span>
    {% endif %}
    <span class="sub header">
      <code>release {{ release.ident }}</code>
    </span>
  </h1>
  <p style="font-size: larger;">
  {% if authors != [] %} by {% endif %}
  {% for contrib in authors[:12] %}
    {% if contrib.creator_id %}
      <b><a href="/creator/{{contrib.creator_id}}">{{ contrib.raw_name }}</a></b>{% if not loop.last %}, {% endif %}
    {% else %}
      {% if contrib.raw_name != None %}{{ contrib.raw_name }}{% else %}<i>Unknown</i>{% endif %}{% if not loop.last %}, {% endif %}
    {% endif %}
  {% endfor %}
  {% if authors|count > 12 %} <b>(+{{ authors|length - 12 }} others)</b>
  {% endif %}
</div>
</div>

<div class="ui stackable mobile reversed grid centered">
<div class="one wide column"></div>
<div class="ten wide column" style="font-size: 16px;">

{% if release.abstracts != [] %}
<h3>Abstract</h3>
<p><span itemprop="description">{{ release.abstracts[0].content }}</span>
<br><small><i>In <code>{{ release.abstracts[0].mimetype }}</code> format</i></small>
{% endif %}

<div class="ui accordion">
<div class="title" itemprop="isPartOf" itemscope itemtype="http://schema.org/Periodical" itemid="#container">
  {% if release.release_stage == 'published' %}
    <i class="dropdown icon"></i>Published in <a href="/container/{{ container.ident }}"><span itemprop="name">{{ container.name }}</span></a>
  {% else %}
    <i class="dropdown icon"></i>Released as a <i>{{ release.release_type }}</i>
    {% if container %} in <a href="/container/{{ container.ident }}"><span itemprop="name">{{ container.name }}</span></a> {% endif %}
  {% endif %}
  {% if release.publisher %}
    by <span itemprop="publisher">{{ release.publisher }}</span>
  {% endif %}
</div><div class="content" itemscope itemtype="http://schema.org/Periodical" itemid="#container">
  <table class="ui definition single line fixed compact small collapsing unstackable table">
  <tbody>
    {% if release.number != None %}
      <tr><td class="right aligned">Number</td>
          <td class="">{{ release.number }}
    {% endif %}
    {% if release.version != None %}
      <tr><td class="right aligned">Version</td>
          <td class="">{{ release.version }}
    {% endif %}
    {% if container != None and container.issnl != None %}
      <tr><td class="right aligned">ISSN-L</td>
          <td class="" itemprop="issn">{{ container.issnl }}
    {% endif %}
    {% if release.volume != None %}
      <tr itemprop="isPartOf" itemscope itemtype="http://schema.org/PublicationVolume">
          <td class="right aligned">Volume</td>
          <td class="" itemprop="volumeNumber">{{ release.volume }}
    {% endif %}
    {% if release.issue != None %}
      <tr itemprop="isPartOf" itemscope itemtype="http://schema.org/PublicationIssue">
          <td class="right aligned">Issue</td>
          <td class="" itemprop="issueNumber">{{ release.issue }}
    {% endif %}
    {% if release.pages != None %}
      <tr itemprop="isPartOf" itemscope itemtype="http://schema.org/PublicationIssue">
          <td class="right aligned">Page(s)</td>
          <td class="" itemprop="pagination">{{ release.pages }}
    {% endif %}
    {% if release.release_date != None %}
      <tr><td class="right aligned">Release Date</td>
          <td class="">{{ release.release_date }}
    {% elif release.release_year != None %}
      <tr><td class="right aligned">Release Year</td>
          <td class="">{{ release.release_year }}
    {% endif %}
    {% if container != None and container.container_type != None %}
      <tr><td class="right aligned">Container Type</td>
          <td class="">{{ container.container_type }}
    {% endif %}
    {% if release.publisher != None %}
      <tr><td class="right aligned">Publisher</td>
          <td class="">{{ release.publisher }}
    {% endif %}
    {% if release.language != None %}
      <tr><td class="right aligned">Primary Language</td>
          <td class=""><code>{{ release.language }}</code>
          (<a href="https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1={{ release.language }}">lookup</a>)
    {% endif %}

  </tbody>
  </table>
</div>
</div>

{% if release.contribs|length > 0 %}
<div class="ui accordion">
<div class="title">
  <i class="dropdown icon"></i>All Contributors ({{ release.contribs|length }})
</div><div class="content">
<table class="ui basic compact table">
<tbody>
{% for contrib in release.contribs %}
  <tr><td class="collapsing">{% if contrib.index or contrib.index == 0 %} {{ contrib.index + 1 }}{% endif %}
      <td><span itemprop="author">
      {% if contrib.creator_id %}
        <a href="/creator/{{contrib.creator_id}}">{{ contrib.raw_name or 'unknown' }}</a> 
      {% else %}
        {{ contrib.raw_name or '' }}
      {% endif %}
      {% if contrib.surname %}
        <code>&nbsp;
          ({{ contrib.surname }}{% if contrib.given_name %}, {{ contrib.given_name }}{% endif %})
        </code>
      {% endif %}
      </span><br><i>{{ contrib.role or 'unknown' }}</i>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% else %}
<p>No known contributors (authors, translators, etc).
{% endif %}

<h3>Known Files and URLs</h3>
{% if entity.files != [] %}
<table class="ui compact fixed table">
<!--
  <thead>
    <tr><th>SHA-1
        <th>Size (bytes)
        <th>File Type
        <th>Links
  </thead>
-->
  <tbody>
  {% for file in entity.files %}
  <tr><td>{% if file.mimetype != None %}{{ file.mimetype }}&nbsp;&nbsp;{% endif %}
          {% if file.size != None %}{{ file.size|filesizeformat }}{% endif %}
      <br><small><code><a href="/file/{{ file.ident }}">
            {% if file.sha1 != None %}sha1:{{ file.sha1[:20] + "..." }}
            {% elif file.sha256!= None %}sha256:{{ file.md5[:20] + "..." }}
            {% elif file.md5 != None %}md5:{{ file.md5[:20] + "..." }}
            {% endif %}
        </a></code></small>
      <td class="single line">
        {% for url in file.urls[:5] %}
          <a href="{{ url.url }}">{{ url.url.split('/')[2] }}</a> ({{ url.rel }})<br>
        {% endfor %}
        {% if file.urls|length > 5 %}
          <a href="/file/{{ file.ident }}">+ {{ file.urls|length - 5 }} more URLs</a>
        {% endif %}
  {% endfor %}
  </tbody>
</table>
{% else %}
<p>There are no known files associated with this release (you could try
<a href="/work/{{ release.work_id }}">other releases for this work?</a>).
{% endif %}


{% if entity.filesets != [] %}
<h3>File Sets</h3>
<table class="ui compact fixed table">
  <tbody>
  {% for fileset in entity.filesets %}
  <tr><td>{{ fileset.manifest|count }} files &nbsp;{{ fileset.total_size|filesizeformat }}
      <br><small><code><a href="/fileset/{{ fileset.ident }}">fileset:{{ fileset.ident }}</a></code></small>
      <td class="single line">
        {% for url in fileset.urls[:5] %}
          {% if url.rel == "dweb" %}
            <a href="{{ url.url }}">{{ url.url }}</a> ({{ url.rel }})<br>
          {% else %}
            <a href="{{ url.url }}">{{ url.url.split('/')[2] }}</a> ({{ url.rel }})<br>
          {% endif %}
        {% endfor %}
        {% if fileset.urls|length > 5 %}
          + {{ file.urls|length - 5 }} more URLs
        {% endif %}
  {% endfor %}
  </tbody>
</table>
{% endif %}


{% if entity.webcaptures != [] %}
<h3>Web Captures</h3>
<table class="ui single line compact fixed table">
  <tbody>
  {% for webcapture in entity.webcaptures %}
  <tr><td><b><a href="{{ webcapture.original_url }}">{{ webcapture.original_url }}</a></b>
      <br>{{ webcapture.timestamp.strftime("%Y-%m-%d %H:%M:%S") }} | {{ webcapture.cdx|count }} resources
      <br><small><code><a href="/webcapture/{{ webcapture.ident }}">webcapture:{{ webcapture.ident }}</a></code></small>
      <td class="single line">
        {% for url in webcapture.archive_urls[:5] %}
          <a href="{{ url.url }}{% if url.rel == "wayback" %}{{ webcapture.wayback_suffix }}{% endif %}">{{ url.url.split('/')[2] }}</a> ({{ url.rel }})<br>
        {% endfor %}
        {% if webcapture.urls|length > 5 %}
          + {{ file.urls|length - 5 }} more URLs
        {% endif %}
  {% endfor %}
  </tbody>
</table>
{% endif %}


</div>
<div class="five wide column">

{% if entity.files != [] and entity.files[0].urls != [] %}
<a href="{{ entity.files[0].urls[0].url }}" class="ui top attached fluid huge green button"><i class="file pdf outline icon"></i>Download Full Text</a>
{% elif entity.webcaptures != [] and entity.webcaptures[0].archive_urls != [] and entity.webcaptures[0].archive_urls[0].rel == "wayback" %}
<a href="{{ entity.webcaptures[0].archive_urls[0].url }}{{ entity.webcaptures[0].wayback_suffix }}" class="ui top attached fluid huge green button"><i class="file archive outline icon"></i>View Web Archive</a>
{% else %}
<span class="ui top attached fluid huge grey button"><i class="file cross icon"></i>No Full Text Available</span>
{% endif %}

{% if release.release_type or release.release_stage or release.release_year %}
  <div class="ui segment attached">
  <b>Type</b> &nbsp;<code>{{ release.release_type or 'unknown' }}</code><br>
  <b>Stage</b> &nbsp; <code>{{ release.release_stage or 'unknown' }}</code><br>
  {% if release.release_date %}
    <meta itemprop="datePublished" content="{{ release.release_date }}">
    <b>Date</b> &nbsp; {{ release.release_date }}<br>
  {% elif release.release_year %}
    <meta itemprop="datePublished" content="{{ release.release_year }}">
    <b>Year</b> &nbsp; {{ release.release_year }}<br>
  {% endif %}
  {% if release.version %}
    <b>Version</b> &nbsp; <code>{{ release.version }}</code><br>
  {% endif %}
  </div>
{% endif %}

{% if release.number or release.ext_ids.doi or release.ext_ids.pmid or release.ext_ids.pmcid or release.ext_ids.wikidata_qid or release.ext_ids.isbn13 or release.ext_ids.arxiv or release.ext_ids.jstor or release.ext_ids.ark %}
<div class="ui segment attached" style="word-wrap: break-word;">
{% if release.number %}
  <b>Number</b> &nbsp;<code>{{ release.number }}</code><br>
{% endif %}
{% if release.ext_ids.doi %}
  <b>DOI</b> &nbsp;<code><a href="https://doi.org/{{ release.ext_ids.doi }}" title="{{ release.ext_ids.doi }}" itemprop="sameAs">{{ release.ext_ids.doi }}</a></code><br>
{% endif %}
{% if release.ext_ids.isbn13 != None %}
  <b>ISBN-13</b> &nbsp;<code>{{ release.ext_ids.isbn13 }}</code><br>
{% endif %}
{% if release.ext_ids.pmid != None %}
  <b>PubMed</b> &nbsp;<a href="https://www.ncbi.nlm.nih.gov/pubmed/{{ release.ext_ids.pmid }}"><code>{{ release.ext_ids.pmid }}</code></a><br>
{% endif %}
{% if release.ext_ids.pmcid != None %}
  <b>PMC</b> &nbsp;<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/{{ release.ext_ids.pmcid }}"><code>{{ release.ext_ids.pmcid }}</code></a><br>
{% endif %}
{% if release.ext_ids.wikidata_qid != None %}
  <b>Wikidata</b> &nbsp;<a href="https://www.wikidata.org/wiki/{{ release.ext_ids.wikidata_qid }}"><code>{{ release.ext_ids.wikidata_qid }}</code></a><br>
{% endif %}
{% if release.ext_ids.arxiv != None %}
  <b>arXiv</b> &nbsp;<a href="https://arxiv.org/abs/{{ release.ext_ids.arxiv }}"><code>{{ release.ext_ids.arxiv }}</code></a><br>
{% endif %}
{% if release.ext_ids.jstor != None %}
  <b>JSTOR</b> &nbsp;<a href="https://jstor.org/stable/{{ release.ext_ids.jstor}}"><code>{{ release.ext_ids.jstor }}</code></a><br>
{% endif %}
{% if release.ext_ids.ark != None %}
  <b>ARK</b> &nbsp;<a href="https://n2t.net/{{ release.ext_ids.ark }}"><code>{{ release.ext_ids.ark }}</code></a><br>
{% endif %}
</div>
{% endif %}

{% if release.extra.is_oa == True %}
<div class="ui segment attached">
<b><i class="ui icon unlock alternate green"></i> Open Access</b>
</div><div class="ui segment attached">
{% elif release.extra.is_oa == False %}
<b><i class="ui icon lock red"></i> Not Open Access</b>
</div>
{% endif %}

{% if container != None and container.es %}
<div class="ui segment attached">
<b>Container Metadata</b><br>
{% if container.es.is_oa == True %}
<i class="icon unlock orange"></i>Open Access Publication<br>
{% elif container.es.is_oa == False  %}
<i class="icon lock black"></i>Not Open Access<br>
{% else %}
<i class="icon question grey"></i>Unknown OA Status<br>
{% endif %}
{% if (container.es != None) %}
  {% if container.es.in_doaj == True %}
    <i class="icon check green"></i> In <a href="https://doaj.org/toc/{{ container.issnl }}">DOAJ</a><br>
  {% elif container.es.in_doaj == False %}
    <i class="icon times grey"></i> Not in <a href="https://doaj.org">DOAJ</a><br>
  {% endif %}
  {% if container.es.in_road == True %}
    <i class="icon check green"></i> In <a href="http://road.issn.org/issn/{{ container.issnl }}">ISSN ROAD</a><br>
  {% elif container.es.in_road == False %}
    <i class="icon times grey"></i> Not in <a href="https://road.issn.org">ISSN ROAD</a><br>
  {% endif %}
  {% if container.es.in_kbart == True %}
    <i class="icon check green"></i> In <a href="https://thekeepers.org/purl/issn/{{ container.issnl }}">Keepers Registery</a><br>
  {% elif container.es.in_kbart == False %} <i class="icon times grey"></i> Not in <a href="https://thekeepers.org/journals?query={{ container.issnl }}">Keepers Registry</a><br>
  {% endif %}
{% endif %}
{% if container.issnl != None %}
  <i class="icon linkify"></i>ISSN-L: &nbsp;<code>{{ container.issnl }}</code><br>
{% endif %}
  <a href="/container/{{ container.ident }}" title="container {{ container.ident }}"><i class="icon share"></i>Fatcat Entry</a>
</div>
{% endif %}

<div class="ui segment attached accordion">
  <b><a href="/work/{{ release.work_id }}" title="work {{ release.work_id }}">Work Entity</a></b>
  <br>grouping other versions (eg, pre-print) and variants of this release
</div>

{# this restriction, for CSL-JSON generation, rules out almost everything #}
{% if release.contribs and release.contribs[0].creator_id %}
<div class="ui segment attached accordion">
  <div class="title" style="padding: 0px;">
    <i class="dropdown icon"></i><b>Cite This Release</b>
  </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 %}

<div class="ui segment attached accordion">
  <div class="title" style="padding: 0px;"><i class="dropdown icon"></i><b>Lookup Links</b></div>
  <div class="content">
  {% if container != None and container.issnl != None %}
    <a href="http://www.sherpa.ac.uk/romeo/issn/{{ container.issnl }}/">SHERPA/RoMEO</a> (journal policies)<br/>
  {% endif %}
  {% if release != None and release.ext_ids.doi != None %}
    <a href="https://oadoi.org/{{ release.ext_ids.doi }}">oaDOI/unpaywall</a><br/>
  {% endif %}
  {% if release.ext_ids.isbn13 != None %}
    <a href="https://openlibrary.org/search?isbn={{ release.ext_ids.isbn13 }}">Open Library</a><br>
    <a href="http://www.worldcat.org/search?q=bn%3A{{ release.ext_ids.isbn13 }}">Worldcat</a><br>
  {% else %}
    <a href="http://www.worldcat.org/search?qt=worldcat_org_art&q={{ release.title|urlencode }}">Worldcat</a><br>
  {% endif %}
  {% if release.ext_ids.doi %}
  <a href="https://api.crossref.org/v1/works/http://dx.doi.org/{{ release.ext_ids.doi }}">Crossref Metadata</a> (via API)<br>
  {% endif %}
  <a href="https://www.wikidata.org/w/index.php?search={{ release.title|urlencode  }}">wikidata.org</a><br>
  <a href="https://core.ac.uk/search?q={{ release.title|urlencode  }}">CORE.ac.uk</a><br>
  <a href="https://www.semanticscholar.org/search?q={{ release.title|urlencode  }}">Semantic Scholar</a> (CS, neuro)<br>
  <a href="https://scholar.google.com/scholar?q={{ release.title|urlencode  }}">Google Scholar</a><br>
</div>
</div>

{{ entity_macros.fatcat_bits(entity, "release", "container,files,filesets,webcaptures") }}

</div>
</div>
{% endblock %}

{% block postscript %}
<script>
  $('.ui.accordion').accordion();
</script>
{% endblock %}