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
|
{% extends "base.html" %}
{% block body %}
<div class="ui container text">
<h1 class="ui header centered" style="font-size: 2.5rem;">Welcome to Fatcat!</h1>
<br>
<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: Beta</div>
<ul class="list">
<li>Entity editing only possibly by API; web interface is not implemented
<li>Edits are manually reviewed (not automatically accepted)
<li>API schemas and client libraries not guaranteed to be backwards-compatible
</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>
<br><a href="/release/search">Search</a>
{% if config.FATCAT_DOMAIN == 'fatcat.wiki' %}
<td>
{% else %}
<td><a href="/release/aaaaaaaaaaaaarceaaaaaaaaai">Dummy</a>
<br><a href="/release/aaaaaaaaaaaaarceaaaaaaaaam">Realistic</a>
{% endif %}
<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" aria-label="search by DOI">
</div>
</form>
<tr><td><b>Container</b>
<br>journal or serial
<td><a href="/container/create">Create</a>
<br><a href="/container/search">Search</a>
{% if config.FATCAT_DOMAIN == 'fatcat.wiki' %}
<td>
{% else %}
<td><a href="/container/aaaaaaaaaaaaaeiraaaaaaaaai">Dummy</a>
<br><a href="/container/aaaaaaaaaaaaaeiraaaaaaaaam">Realistic</a>
{% endif %}
<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" aria-label="search by ISSN-L">
</div>
</form>
<tr><td><b>Creator</b>
<br>authors, editors, translators
<td><!-- <a href="/creator/create">Create</a> -->
{% if config.FATCAT_DOMAIN == 'fatcat.wiki' %}
<td>
{% else %}
<td><a href="/creator/aaaaaaaaaaaaaircaaaaaaaaai">Dummy</a>
<br><a href="/creator/aaaaaaaaaaaaaircaaaaaaaaam">Realistic</a>
{% endif %}
<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" aria-label="search by ORCID">
</div>
</form>
<tr><td><b>File</b>
<br>specific digital blobs (immutable)
<td>
{% if config.FATCAT_DOMAIN == 'fatcat.wiki' %}
<td>
{% else %}
<td><a href="/file/aaaaaaaaaaaaamztaaaaaaaaai">Dummy</a>
<br><a href="/file/aaaaaaaaaaaaamztaaaaaaaaam">Realistic</a>
{% endif %}
<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" aria-label="search by SHA1">
</div>
</form>
{% if config.FATCAT_DOMAIN != 'fatcat.wiki' %}
<tr><td><b>Fileset</b>
<br>datasets, suplementary materials
<td>
<td><a href="/fileset/aaaaaaaaaaaaaztgaaaaaaaaai">Dummy</a>
<br><a href="/fileset/aaaaaaaaaaaaaztgaaaaaaaaam">Realistic</a>
<td>
<tr><td><b>Web Capture</b>
<br>HTML and interactive articles, blog posts
<td>
<td><a href="/webcapture/aaaaaaaaaaaaa53xaaaaaaaaai">Dummy</a>
<br><a href="/webcapture/aaaaaaaaaaaaa53xaaaaaaaaam">Realistic</a>
<td>
{% endif %}
<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 %}
|