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
|
{% extends "base.html" %}
{% block body %}
<div class="ui container text">
<h1 class="ui header centered">Welcome to fatcat!</h1>
<img class="ui fluid bordered image" src="/static/fatcat.jpg" title="CC0 photo of an oversized feline" alt="">
<div class="ui message">
<div class="header">Current Status: Prototype</div>
<ul class="list">
<li>No authentication or accounts
<li>Any edits will be lost
<li>Most creation/edit forms don't work
<li>Any data was bulk-imported, and may not be up to date
<li>Search results are from Crossref, not local API/database
</ul>
</div>
<p>This is versioned, user-editable catalog of research publications: journal
articles, conference proceedings, pre-prints, etc. Features include archival
file-level metadata (verified digests and long-term copies, in addition to
URLs), a <a href="https://api.{{ config.FATCAT_DOMAIN }}">documented API</a>, and work/release
indexing (aka, linking together of pre-prints and final copies).
<a href="/about">Read more...</a>
<br><br>
<table class="ui single line table">
<thead>
<tr><th>Entity
<th>Actions
<th>Examples
<th>Lookup
</thead>
<tr><td><b>Release</b>
<br>journal article, pre-print, book
<br>published version of a Work
<td><a href="/release/create">Create</a>
<td><a href="/release/aaaaaaaaaaaaarceaaaaaaaaai">Dummy</a>
<br><a href="/release/aaaaaaaaaaaaarceaaaaaaaaam">Realistic</a>
<td><form class="" role="lookup" action="/release/lookup" method="get">
<div class="ui icon input">
<i class="search icon"></i>
<input type="text" placeholder="DOI" name="doi">
</div>
</form>
<tr><td><b>Container</b>
<br>journal or serial
<td><a href="/container/create">Create</a>
<td><a href="/container/aaaaaaaaaaaaaeiraaaaaaaaai">Dummy</a>
<br><a href="/container/aaaaaaaaaaaaaeiraaaaaaaaam">Realistic</a>
<td><form class="" role="lookup" action="/container/lookup" method="get">
<div class="ui icon input">
<i class="search icon"></i>
<input type="text" placeholder="ISSN-L" name="issnl">
</div>
</form>
<tr><td><b>Creator</b>
<br>authors, editors, translators
<td><!-- <a href="/creator/create">Create</a> -->
<td><a href="/creator/aaaaaaaaaaaaaircaaaaaaaaai">Dummy</a>
<br><a href="/creator/aaaaaaaaaaaaaircaaaaaaaaam">Realistic</a>
<td><form class="" role="lookup" action="/creator/lookup" method="get">
<div class="ui icon input">
<i class="search icon"></i>
<input type="text" placeholder="ORCID" name="orcid">
</div>
</form>
<tr><td><b>File</b>
<br>specific digital blobs (immutable)
<td>
<td><a href="/file/aaaaaaaaaaaaamztaaaaaaaaai">Dummy</a>
<br><a href="/file/aaaaaaaaaaaaamztaaaaaaaaam">Realistic</a>
<td><form class="" role="lookup" action="/file/lookup" method="get">
<div class="ui icon input">
<i class="search icon"></i>
<input type="text" placeholder="SHA-1" name="sha1">
</div>
</form>
<tr><td><b>Work</b>
<br>for grouping Releases
<td>
<td><a href="/work/aaaaaaaaaaaaavkvaaaaaaaaai">Dummy</a>
<br><a href="/work/aaaaaaaaaaaaavkvaaaaaaaaam">Realistic</a>
<td>
</table>
</div>
{% endblock %}
|