aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-06-30 21:13:16 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-06-30 21:13:16 -0700
commit983271083bd40d12766d38f6dfbf8ea3835670d4 (patch)
tree6554e64d7c6b2a32be49b70cef10564587ff12ac /python/fatcat
parentf481ce4aa987940f5491107b33d3d0988368e7cd (diff)
downloadfatcat-983271083bd40d12766d38f6dfbf8ea3835670d4.tar.gz
fatcat-983271083bd40d12766d38f6dfbf8ea3835670d4.zip
switch from newest to oldest wayback link
Diffstat (limited to 'python/fatcat')
-rw-r--r--python/fatcat/templates/file_view.html4
-rw-r--r--python/fatcat/templates/release_view.html4
2 files changed, 4 insertions, 4 deletions
diff --git a/python/fatcat/templates/file_view.html b/python/fatcat/templates/file_view.html
index c125eff5..7f6cc143 100644
--- a/python/fatcat/templates/file_view.html
+++ b/python/fatcat/templates/file_view.html
@@ -35,7 +35,7 @@ This file is not associated with any fatcat release.
<p>Known locations of this file:
<ul>
<li><a href="{{ file.url }}">{{ file.url.split('/')[2] }}</a>
- (<a href="https://web.archive.org/web/2/{{ file.url }}">Wayback mirror</a>)
+ (<a href="https://web.archive.org/web/1/{{ file.url }}">Wayback mirror</a>)
</ul>
{% else %}
No known public URL, mirror, or archive for this file.
@@ -70,7 +70,7 @@ Raw Object:
<div class="five wide column">
{% if file.url != None %}
-<a href="https://web.archive.org/web/2/{{ file.url }}" class="ui top attached fluid huge green button"><i class="file icon"></i>Download File</a>
+<a href="https://web.archive.org/web/1/{{ file.url }}" class="ui top attached fluid huge green button"><i class="file icon"></i>Download File</a>
{% else %}
<span class="ui top attached fluid huge grey button"><i class="file cross icon"></i>No Download Available</span>
{% endif %}
diff --git a/python/fatcat/templates/release_view.html b/python/fatcat/templates/release_view.html
index 03cd7b93..14889244 100644
--- a/python/fatcat/templates/release_view.html
+++ b/python/fatcat/templates/release_view.html
@@ -82,7 +82,7 @@ Believed to represent this release...
<td>{{ file.size }}
<td>{{ file.mimetype }}
<td><a href="{{ file.url }}">{{ file.url.split('/')[2] }}</a>
- <br><a href="https://web.archive.org/web/2/{{ file.url }}">web.archive.org</a>
+ <br><a href="https://web.archive.org/web/1/{{ file.url }}">web.archive.org</a>
{% endfor %}
</tbody>
</table>
@@ -137,7 +137,7 @@ This release citing other releases.
<div class="five wide column">
{% if files != [] and files[0].url != None %}
-<a href="https://web.archive.org/web/2/{{ files[0].url }}" class="ui top attached fluid huge green button"><i class="file pdf outline icon"></i>Download Full Text</a>
+<a href="https://web.archive.org/web/1/{{ files[0].url }}" class="ui top attached fluid huge green button"><i class="file pdf outline icon"></i>Download Full Text</a>
{% else %}
<span class="ui top attached fluid huge grey button"><i class="file cross icon"></i>No Full Text Available</span>
{% endif %}