blob: f11ca820844e488c63a6a2c859106202528f45c7 (
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
|
{% extends "base.html" %}
{% block body %}
<h1>Stats</h1>
You can also fetch these numbers <a href="./stats.json">as JSON</a>.
<h3>Changelog</h3>
<p>Latest changelog index is {{ stats.changelog.latest.index }} ({{ stats.changelog.latest.timestamp[:10] }}).
<h3>Entities</h3>
<table class="ui structured table">
<tbody>
<tr><td rowspan="5" class="active top aligned center aligned"><b>"Papers"</b></td>
<td>Total</td>
<td class="right aligned">{{ "{:,}".format(stats.papers.total) }}</td>
<tr>
<td>Fulltext on web</td>
<td class="right aligned">{{ "{:,}".format(stats.papers.in_web) }}</td>
<tr>
<td>"Gold" Open Access</td>
<td class="right aligned">{{ "{:,}".format(stats.papers.is_oa) }}</td>
<tr>
<td>In a Keepers/KBART archive</td>
<td class="right aligned">{{ "{:,}".format(stats.papers.in_kbart) }}</td>
<tr>
<td>On web, not in Keepers</td>
<td class="right aligned">{{ "{:,}".format(stats.papers.in_web_not_kbart) }}</td>
<tr><td rowspan="2" class="active top aligned center aligned"><b>Releases</b></td>
<td>Total</td>
<td class="right aligned">{{ "{:,}".format(stats.release.total) }}</td>
<tr>
<td>References (raw, unlinked)</td>
<td class="right aligned">{{ "{:,}".format(stats.release.refs_total) }}</td>
<tr><td rowspan="1" class="active top aligned center aligned"><b>Containers</b></td>
<td>Total</td>
<td class="right aligned">{{ "{:,}".format(stats.container.total) }}</td>
</tbody>
</table>
<br>
<i>"Papers" are journal articles and conference proceedings, a subset of Releases</i>
{% endblock %}
|