invenio-previewer 3.5.1__py2.py3-none-any.whl → 3.7.0__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- invenio_previewer/__init__.py +1 -1
- invenio_previewer/static/css/pdfjs.css +5 -0
- invenio_previewer/static/images/pdfjs/download.svg +5 -0
- invenio_previewer/static/js/open_pdf.js +59 -0
- invenio_previewer/templates/invenio_previewer/pdfjs.html +8 -2
- invenio_previewer/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/fi/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- {invenio_previewer-3.5.1.dist-info → invenio_previewer-3.7.0.dist-info}/METADATA +10 -1
- {invenio_previewer-3.5.1.dist-info → invenio_previewer-3.7.0.dist-info}/RECORD +42 -41
- {invenio_previewer-3.5.1.dist-info → invenio_previewer-3.7.0.dist-info}/WHEEL +1 -1
- {invenio_previewer-3.5.1.dist-info → invenio_previewer-3.7.0.dist-info}/entry_points.txt +0 -0
- {invenio_previewer-3.5.1.dist-info → invenio_previewer-3.7.0.dist-info}/licenses/AUTHORS.rst +0 -0
- {invenio_previewer-3.5.1.dist-info → invenio_previewer-3.7.0.dist-info}/licenses/LICENSE +0 -0
- {invenio_previewer-3.5.1.dist-info → invenio_previewer-3.7.0.dist-info}/top_level.txt +0 -0
invenio_previewer/__init__.py
CHANGED
|
@@ -352,6 +352,6 @@ Now define the priority for all previewers by adding the newly created
|
|
|
352
352
|
from .ext import InvenioPreviewer
|
|
353
353
|
from .proxies import current_previewer
|
|
354
354
|
|
|
355
|
-
__version__ = "3.
|
|
355
|
+
__version__ = "3.7.0"
|
|
356
356
|
|
|
357
357
|
__all__ = ("__version__", "current_previewer", "InvenioPreviewer")
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/* Copyright 2014 Mozilla Foundation
|
|
2
2
|
* Copyright 2024 TU Wien
|
|
3
|
+
* Copyright 2026 CERN
|
|
3
4
|
*
|
|
4
5
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
6
|
* you may not use this file except in compliance with the License.
|
|
@@ -76,6 +77,7 @@
|
|
|
76
77
|
--toolbarButton-pageUp-icon: url("/static/images/pdfjs/previous.svg");
|
|
77
78
|
--toolbarButton-pageDown-icon: url("/static/images/pdfjs/next.svg");
|
|
78
79
|
--toolbarButton-fullScreenMode-icon: url("/static/images/pdfjs/fullscreen.svg");
|
|
80
|
+
--toolbarButton-download-icon: url("/static/images/pdfjs/download.svg");
|
|
79
81
|
}
|
|
80
82
|
:root:dir(rtl) {
|
|
81
83
|
--dir-factor: -1;
|
|
@@ -298,6 +300,9 @@ body {
|
|
|
298
300
|
#fullScreenMode::before {
|
|
299
301
|
mask-image: var(--toolbarButton-fullScreenMode-icon);
|
|
300
302
|
}
|
|
303
|
+
#downloadButton::before {
|
|
304
|
+
mask-image: var(--toolbarButton-download-icon);
|
|
305
|
+
}
|
|
301
306
|
.toolbarField {
|
|
302
307
|
padding: 4px 7px;
|
|
303
308
|
margin: 3px 0;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M9.79407 7.31811H7.86307C7.41807 7.31811 7.19407 7.85711 7.50907 8.17211L10.1911 10.8541C10.3861 11.0491 10.7031 11.0491 10.8981 10.8541L13.5801 8.17211C13.8951 7.85711 13.6721 7.31811 13.2261 7.31811H11.2941V4.38211H11.2961V3.13211H11.2941V2.30811H9.79407V3.13211H9.79107V4.38211H9.79507V7.31811H9.79407Z" fill="black"/>
|
|
4
|
+
<path d="M14 3.13208H12.796V4.38208H14C14.345 4.38208 14.625 4.66208 14.625 5.00708V13.0071C14.625 13.3521 14.345 13.6321 14 13.6321H2C1.655 13.6321 1.375 13.3521 1.375 13.0071V3.00708C1.375 2.66208 1.655 2.38208 2 2.38208H5.643C5.82 2.38208 5.989 2.45808 6.108 2.58908L7.536 4.17508C7.654 4.30708 7.823 4.38208 8 4.38208H8.291V3.13208H8.278L7.036 1.75208C6.681 1.35808 6.173 1.13208 5.642 1.13208H2C0.966 1.13208 0.125 1.97308 0.125 3.00708V13.0071C0.125 14.0411 0.966 14.8821 2 14.8821H14C15.034 14.8821 15.875 14.0411 15.875 13.0071V5.00708C15.875 3.97308 15.034 3.13208 14 3.13208Z" fill="black"/>
|
|
5
|
+
</svg>
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/* Copyright 2014 Mozilla Foundation
|
|
2
2
|
* Copyright 2024 TU Wien
|
|
3
|
+
* Copyright 2026 CERN
|
|
3
4
|
*
|
|
4
5
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
6
|
* you may not use this file except in compliance with the License.
|
|
@@ -16,6 +17,32 @@
|
|
|
16
17
|
|
|
17
18
|
"use strict";
|
|
18
19
|
|
|
20
|
+
function getPageFromHash() {
|
|
21
|
+
let hash = window.location.hash || "";
|
|
22
|
+
// check if the parent window has a hash
|
|
23
|
+
if (window.parent && window.parent !== window) {
|
|
24
|
+
hash = window.parent.location.hash || "";
|
|
25
|
+
}
|
|
26
|
+
const match = hash.match(/page=(\d+)/);
|
|
27
|
+
if (match) {
|
|
28
|
+
return parseInt(match[1], 10);
|
|
29
|
+
}
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function applyPageFromHash(pdfViewer, pageNumberField) {
|
|
34
|
+
if (!pdfViewer.pagesCount) return;
|
|
35
|
+
const pageFromHash = getPageFromHash();
|
|
36
|
+
if (
|
|
37
|
+
pageFromHash &&
|
|
38
|
+
pageFromHash >= 1 &&
|
|
39
|
+
pageFromHash <= pdfViewer.pagesCount
|
|
40
|
+
) {
|
|
41
|
+
pdfViewer.currentPageNumber = pageFromHash;
|
|
42
|
+
pageNumberField.value = pageFromHash;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
19
46
|
document.addEventListener("DOMContentLoaded", () => {
|
|
20
47
|
const { pdfjsLib, pdfjsViewer } = window;
|
|
21
48
|
|
|
@@ -50,6 +77,7 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
50
77
|
const zoomInButton = document.getElementById("zoomInButton");
|
|
51
78
|
const zoomOutButton = document.getElementById("zoomOutButton");
|
|
52
79
|
const scaleSelect = document.getElementById("scaleSelect");
|
|
80
|
+
const downloadButton = document.getElementById("downloadButton");
|
|
53
81
|
|
|
54
82
|
const eventBus = new pdfjsViewer.EventBus();
|
|
55
83
|
|
|
@@ -118,6 +146,22 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
118
146
|
pdfViewer.currentScaleValue = e.target.value;
|
|
119
147
|
});
|
|
120
148
|
|
|
149
|
+
downloadButton.addEventListener("click", async function() {
|
|
150
|
+
const pdfUrl = new URL(window.location.origin + PDF_URL);
|
|
151
|
+
pdfUrl.searchParams.append("download", "1");
|
|
152
|
+
|
|
153
|
+
const pathComponents = pdfUrl.pathname.split("/");
|
|
154
|
+
const filename = pathComponents[pathComponents.length - 1];
|
|
155
|
+
|
|
156
|
+
// Create and click an invisible link to trigger the download dialog
|
|
157
|
+
const a = document.createElement("a");
|
|
158
|
+
a.href = pdfUrl;
|
|
159
|
+
a.download = filename;
|
|
160
|
+
document.body.appendChild(a);
|
|
161
|
+
a.click();
|
|
162
|
+
document.body.removeChild(a);
|
|
163
|
+
});
|
|
164
|
+
|
|
121
165
|
// Register event handlers on the event bus
|
|
122
166
|
eventBus.on("pagechanging", function(e) {
|
|
123
167
|
pageNumberField.value = e.pageNumber;
|
|
@@ -144,7 +188,22 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
144
188
|
|
|
145
189
|
// Display the number of pages
|
|
146
190
|
pageNumberLabel.textContent = `of ${pdfViewer.pagesCount}`;
|
|
191
|
+
applyPageFromHash(pdfViewer, pageNumberField);
|
|
192
|
+
});
|
|
193
|
+
|
|
194
|
+
window.addEventListener("hashchange", function () {
|
|
195
|
+
applyPageFromHash(pdfViewer, pageNumberField);
|
|
147
196
|
});
|
|
197
|
+
// Listen to hash changes in the parent window
|
|
198
|
+
try {
|
|
199
|
+
if (window.parent && window.parent !== window) {
|
|
200
|
+
window.parent.addEventListener("hashchange", function () {
|
|
201
|
+
applyPageFromHash(pdfViewer, pageNumberField);
|
|
202
|
+
});
|
|
203
|
+
}
|
|
204
|
+
} catch (error) {
|
|
205
|
+
// Ignore.
|
|
206
|
+
}
|
|
148
207
|
|
|
149
208
|
// Loading document
|
|
150
209
|
const loadingTask = pdfjsLib.getDocument({
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
under the terms of the MIT License; see LICENSE file for more details.
|
|
9
9
|
#}
|
|
10
10
|
|
|
11
|
-
{%- extends config.
|
|
11
|
+
{%- extends config.PREVIEWER_ABSTRACT_TEMPLATE %}
|
|
12
12
|
|
|
13
13
|
{%- block html_tags %}
|
|
14
14
|
{{ html_tags|safe }}
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
<script src="{{ url_for('static', filename='js/fullscreen.js') }}" defer></script>
|
|
27
27
|
{%- endblock %}
|
|
28
28
|
|
|
29
|
-
{%- block
|
|
29
|
+
{%- block panel %}
|
|
30
|
+
|
|
30
31
|
<input id="pdf-file-uri" type="hidden" value="{{ file.uri }}" />
|
|
31
32
|
<input id="pdf-enable-scripting" type="hidden" value="{{ config.PREVIEWER_PDF_JS_ENABLE_SCRIPTING|default(false)|lower }}" />
|
|
32
33
|
<input id="pdf-document-init-params" type="hidden" value='{{ config.PREVIEWER_PDF_JS_DOCUMENT_INIT_PARAMS|default({})|tojson }}' />
|
|
@@ -91,6 +92,11 @@
|
|
|
91
92
|
</div>
|
|
92
93
|
|
|
93
94
|
<div id="toolbarViewerRight" class="toolbarHorizontalGroup">
|
|
95
|
+
<div id="downloadContainer" class="toolbarHorizontalGroup">
|
|
96
|
+
<button id="downloadButton" class="toolbarButton presentationMode" title="{{ _("Download PDF file") }}">
|
|
97
|
+
<span>{{ _("Download PDF file") }}</span>
|
|
98
|
+
</button>
|
|
99
|
+
</div>
|
|
94
100
|
<div id="fullScreenModeContainer" class="toolbarHorizontalGroup">
|
|
95
101
|
<button id="fullScreenMode" class="toolbarButton presentationMode visibleLargeView" title="Toggle Fullscreen Mode" tabindex="0">
|
|
96
102
|
<span>{{ _("Toggle Fullscreen Mode") }}</span>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-previewer
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.7.0
|
|
4
4
|
Summary: Invenio module for previewing files.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-previewer
|
|
6
6
|
Author: CERN
|
|
@@ -96,6 +96,15 @@ available at: https://github.com/webrecorder/replayweb.page
|
|
|
96
96
|
Changes
|
|
97
97
|
=======
|
|
98
98
|
|
|
99
|
+
Version v3.7.0 (released 2026-02-06)
|
|
100
|
+
|
|
101
|
+
- feat(pdfjs): open pdf at page from URL parameter
|
|
102
|
+
|
|
103
|
+
Version v3.6.0 (released 2026-01-15)
|
|
104
|
+
|
|
105
|
+
- feat(pdfjs): add download button
|
|
106
|
+
- fix(pdfjs): change inherited template for pdfjs
|
|
107
|
+
|
|
99
108
|
Version v3.5.1 (released 2025-11-20)
|
|
100
109
|
|
|
101
110
|
- fix(pdfjs): use single quotes for passing init config
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_previewer/__init__.py,sha256=
|
|
1
|
+
invenio_previewer/__init__.py,sha256=xOTSekmXisBppknGLTngQJ34Bzrou2ZvBNrUATkaWFA,12292
|
|
2
2
|
invenio_previewer/api.py,sha256=ntblD3P-nAlVmL6gTx4tJHJmoJp4tOFwoVz8gMh6T5U,1708
|
|
3
3
|
invenio_previewer/config.py,sha256=7QCbs8zJhVGyaBFo0UPW-w9HX_nPxsEqdltv-eTQt1Q,2627
|
|
4
4
|
invenio_previewer/ext.py,sha256=lWGOZXP78qv2PaA0lnrWkEGZ6C0kz9Mx1ioxcpnKfho,4559
|
|
@@ -44,14 +44,15 @@ invenio_previewer/extensions/video_videojs.py,sha256=O1JjhT-t8XLiTw1ii1WLzF5o9Qy
|
|
|
44
44
|
invenio_previewer/extensions/web_archive.py,sha256=dfrBOFY973ifHWL_Ynp6iQ24mYtdxkv4m8OE-xyWDPY,980
|
|
45
45
|
invenio_previewer/extensions/xml_prismjs.py,sha256=WO1_wyjO9NxthMDOscTQbEeiF1i0hcNOReNJGOZw9Ao,1908
|
|
46
46
|
invenio_previewer/extensions/zip.py,sha256=DJQusuk8o7V0fDw3xB0D82-pTFne4IBpnSgTw0MFtUk,3306
|
|
47
|
-
invenio_previewer/static/css/pdfjs.css,sha256=
|
|
47
|
+
invenio_previewer/static/css/pdfjs.css,sha256=iIkHusfVZYE-H0cZfjjxuUmJdJ_m8sk2Qgyuop7WNK0,19327
|
|
48
|
+
invenio_previewer/static/images/pdfjs/download.svg,sha256=X2_9DnNFAwKL6KEUkRaYWV81aPmS8pyfirSLjnZKRnQ,1091
|
|
48
49
|
invenio_previewer/static/images/pdfjs/fullscreen.svg,sha256=31XHxh4f5WFFX19sPv78qdzlraLuy86XdEnGjiZ_LN4,2304
|
|
49
50
|
invenio_previewer/static/images/pdfjs/minus.svg,sha256=W6wdyHKtb3SBRK-ljhbyK4afyS3HWJ180FYTu3gSYCg,1466
|
|
50
51
|
invenio_previewer/static/images/pdfjs/next.svg,sha256=s8cVHIiKmueVrJclJ-guEFe_76t_Tq70VMWSW1xqrVA,577
|
|
51
52
|
invenio_previewer/static/images/pdfjs/plus.svg,sha256=jHVi4RtaGnJAeMHeTZ6fsysRx568VzbFFvraL9PmCyY,1490
|
|
52
53
|
invenio_previewer/static/images/pdfjs/previous.svg,sha256=zC_FFUD9qeGmieo3UwaekoU3L8aTgxp2WTHLOT3HvDE,577
|
|
53
54
|
invenio_previewer/static/js/fullscreen.js,sha256=1FIvn_zJSgCkrzy8NZTQ3jNUrnaCUfzZOyaFCFzY_vc,1845
|
|
54
|
-
invenio_previewer/static/js/open_pdf.js,sha256=
|
|
55
|
+
invenio_previewer/static/js/open_pdf.js,sha256=LVRHKMMAQQoL-AIjTFDMgpcVYmjEPeS5p5UhsSgtPug,7605
|
|
55
56
|
invenio_previewer/templates/invenio_previewer/abstract_previewer.html,sha256=oeiYsCclUn_uu_NXa42IifG63ilhOYxPXWXOa1J-C-A,563
|
|
56
57
|
invenio_previewer/templates/invenio_previewer/base.html,sha256=SnDtG7ru1USS6ihU9By_VN-Lv1SW5Wu_Z1rAdUFGTL8,803
|
|
57
58
|
invenio_previewer/templates/invenio_previewer/bottom.html,sha256=TcHhwCwyhMJKISw1FG7kzhJxw5qlyQdTfkvJncGhu7k,2190
|
|
@@ -61,7 +62,7 @@ invenio_previewer/templates/invenio_previewer/ipynb.html,sha256=UACHV9vaGYnnZ5gu
|
|
|
61
62
|
invenio_previewer/templates/invenio_previewer/json_prismjs.html,sha256=RT54rrIgDUltgm6Ud0zz3QhgBU1ruZg4cKkABmVOe1Q,387
|
|
62
63
|
invenio_previewer/templates/invenio_previewer/macros.html,sha256=_ES1RvdaXYhOnIUBVn-YFhbuW4KhRduZrSOpez6PR_0,2519
|
|
63
64
|
invenio_previewer/templates/invenio_previewer/mistune.html,sha256=DPWzm079QlLhmw1l6mtvGsggznwYoton43oJBQItTs0,483
|
|
64
|
-
invenio_previewer/templates/invenio_previewer/pdfjs.html,sha256=
|
|
65
|
+
invenio_previewer/templates/invenio_previewer/pdfjs.html,sha256=IiHn-YAarZE3jMc11r-JxF3iFXKm6pwcKKWgcSO20dE,7421
|
|
65
66
|
invenio_previewer/templates/invenio_previewer/simple_image.html,sha256=yCbmWrGgrZ--I8ZbKWSJvlNLzzEqV2ay4_Klzon-cBw,391
|
|
66
67
|
invenio_previewer/templates/invenio_previewer/top.html,sha256=8Ry8B0BXv2hxLjPCp1XwJssL7M0r7ENwZTzMb29vC5Q,682
|
|
67
68
|
invenio_previewer/templates/invenio_previewer/txt.html,sha256=yiStQx2nGoVvNpFWXW3SihjwyleL8ffu1HFTWIIBePE,511
|
|
@@ -86,70 +87,70 @@ invenio_previewer/templates/semantic-ui/invenio_previewer/web_archive.html,sha25
|
|
|
86
87
|
invenio_previewer/templates/semantic-ui/invenio_previewer/xml_prismjs.html,sha256=YBltdqj9vrSed3Qv4aIJcuLPwRR08FYUNjEC_4CtSG0,383
|
|
87
88
|
invenio_previewer/templates/semantic-ui/invenio_previewer/zip.html,sha256=EMrw8sLFvC4C2xOFspcLtuuH0Bb9E8-Mh17KEH78SCM,2238
|
|
88
89
|
invenio_previewer/translations/messages.pot,sha256=ABh0oAMr9_K9yt_Lvh9UkhW6P2bHefzAkgp3yoERzZE,15236
|
|
89
|
-
invenio_previewer/translations/ar/LC_MESSAGES/messages.mo,sha256=
|
|
90
|
+
invenio_previewer/translations/ar/LC_MESSAGES/messages.mo,sha256=EWt027F4zWs-s0xbuwbrcZkVAk9kaJZe3OV1v0AhBXo,4555
|
|
90
91
|
invenio_previewer/translations/ar/LC_MESSAGES/messages.po,sha256=wMNmuUGfTf6KLaD43JOilRMCPFElp4bobqOeeOpdv3k,17374
|
|
91
|
-
invenio_previewer/translations/bg/LC_MESSAGES/messages.mo,sha256=
|
|
92
|
+
invenio_previewer/translations/bg/LC_MESSAGES/messages.mo,sha256=l4ZhjUsNlLZ9AxSZ59BOSDoG6GQZ-aJq_uqG0neUm5k,848
|
|
92
93
|
invenio_previewer/translations/bg/LC_MESSAGES/messages.po,sha256=QmQQVcpFq6MmIx8NPtn6oY0Wp33WXo3vZP-Au2bpCmw,15526
|
|
93
|
-
invenio_previewer/translations/ca/LC_MESSAGES/messages.mo,sha256=
|
|
94
|
+
invenio_previewer/translations/ca/LC_MESSAGES/messages.mo,sha256=4lcJYpm82jxUVk_s5lQ5TWzIYfBLrSbz_ySmgR3NNSs,1254
|
|
94
95
|
invenio_previewer/translations/ca/LC_MESSAGES/messages.po,sha256=UeE10IPDe8zxKvNsL_IwCoMUfuUI6D8p_OgmJFzvQys,15684
|
|
95
|
-
invenio_previewer/translations/cs/LC_MESSAGES/messages.mo,sha256=
|
|
96
|
+
invenio_previewer/translations/cs/LC_MESSAGES/messages.mo,sha256=FabIaJauwl5vAGwL_3_Jc5VeW6mvh4fNekpgz2JGygo,4101
|
|
96
97
|
invenio_previewer/translations/cs/LC_MESSAGES/messages.po,sha256=tLDXQg5g8P0a3m3BRnTLnkZI1EDQj55nqc-bqj0GNiU,16953
|
|
97
|
-
invenio_previewer/translations/da/LC_MESSAGES/messages.mo,sha256=
|
|
98
|
+
invenio_previewer/translations/da/LC_MESSAGES/messages.mo,sha256=64CqFb-apFhfIKqbz9sS0YQcqkB9rx2ceEqlrBPdFiQ,562
|
|
98
99
|
invenio_previewer/translations/da/LC_MESSAGES/messages.po,sha256=A-B8vv2hkDLBRKDnBqJZyB02T2esK0_i9JuX-1ZmLmQ,15430
|
|
99
|
-
invenio_previewer/translations/de/LC_MESSAGES/messages.mo,sha256=
|
|
100
|
+
invenio_previewer/translations/de/LC_MESSAGES/messages.mo,sha256=JO5VbGld0Y15MzfzUrHK20WNyWdLcsPt27bwrHrJkUc,3984
|
|
100
101
|
invenio_previewer/translations/de/LC_MESSAGES/messages.po,sha256=xk0UmHOhkZn30VD54oWlXDp5lgEh751RYR9em1cJIw0,16961
|
|
101
|
-
invenio_previewer/translations/el/LC_MESSAGES/messages.mo,sha256=
|
|
102
|
+
invenio_previewer/translations/el/LC_MESSAGES/messages.mo,sha256=fr_NKLe6SkAvCm8Z0iaDeN4xXklzSR6RrkFBpLNXPpQ,905
|
|
102
103
|
invenio_previewer/translations/el/LC_MESSAGES/messages.po,sha256=oN3P5U9vhoRlyX296KCj-wzkovKIskZ4LJNIITkUkKc,15557
|
|
103
|
-
invenio_previewer/translations/es/LC_MESSAGES/messages.mo,sha256=
|
|
104
|
+
invenio_previewer/translations/es/LC_MESSAGES/messages.mo,sha256=Dlb9YVcD6VdRRWj26sivQFaacZEeVkeGULxxX0_mdIw,4115
|
|
104
105
|
invenio_previewer/translations/es/LC_MESSAGES/messages.po,sha256=vPnRgH7nZSbqNPTAvenFQ3p2f2oNdXrBXiImG-xgj0A,16947
|
|
105
|
-
invenio_previewer/translations/et/LC_MESSAGES/messages.mo,sha256=
|
|
106
|
+
invenio_previewer/translations/et/LC_MESSAGES/messages.mo,sha256=x1I7NgroEMRRCHoyvnV6hZRaar8v5LxzvnmXtkbT6Pg,3518
|
|
106
107
|
invenio_previewer/translations/et/LC_MESSAGES/messages.po,sha256=J3wBMBfxC8Qlnel9u9ruK-9ulZnCIJvo6W3TggtZ5vs,16432
|
|
107
|
-
invenio_previewer/translations/fa/LC_MESSAGES/messages.mo,sha256=
|
|
108
|
+
invenio_previewer/translations/fa/LC_MESSAGES/messages.mo,sha256=G_H8eRx9C1e0_iDnt93ARO9U8ZoDmM4-u-EFTpusxPc,757
|
|
108
109
|
invenio_previewer/translations/fa/LC_MESSAGES/messages.po,sha256=4Iktxwq2y8M9GkWoKnOVtF0saj1mLij5B6zyRq77RSk,15484
|
|
109
|
-
invenio_previewer/translations/fi/LC_MESSAGES/messages.mo,sha256=
|
|
110
|
+
invenio_previewer/translations/fi/LC_MESSAGES/messages.mo,sha256=XtpWtKeRQwat7CTpT69lhGG60_zDPO7Sy6GT19EP2U0,3899
|
|
110
111
|
invenio_previewer/translations/fi/LC_MESSAGES/messages.po,sha256=1Pc5eXTbTINNXaWnEY-lznRRaMl9r3ocFU56sYsPUQk,16619
|
|
111
|
-
invenio_previewer/translations/fr/LC_MESSAGES/messages.mo,sha256=
|
|
112
|
+
invenio_previewer/translations/fr/LC_MESSAGES/messages.mo,sha256=gfSQ0RvlqtA9yCUKBkbE2PmG02wzaS9QNDmTjWguNBc,4057
|
|
112
113
|
invenio_previewer/translations/fr/LC_MESSAGES/messages.po,sha256=kJye0gSfY0iSsLD3ZMO-3ceBkjB9RlmiH34rE0gVFIc,16846
|
|
113
|
-
invenio_previewer/translations/hr/LC_MESSAGES/messages.mo,sha256=
|
|
114
|
+
invenio_previewer/translations/hr/LC_MESSAGES/messages.mo,sha256=z2HlzvSyBL5vavma_qAmQ8Ugc9DPKB5AyJDd0-fKJdU,877
|
|
114
115
|
invenio_previewer/translations/hr/LC_MESSAGES/messages.po,sha256=vqz-RVu0iGvjx0e6Lm_0axNhEPAXUtyCiAbwLejGMB4,15555
|
|
115
|
-
invenio_previewer/translations/hu/LC_MESSAGES/messages.mo,sha256=
|
|
116
|
+
invenio_previewer/translations/hu/LC_MESSAGES/messages.mo,sha256=7ep_BV5LAnVfPPVKXWoR-ZTEdYQN3lKm1aY1paH9ZKc,3992
|
|
116
117
|
invenio_previewer/translations/hu/LC_MESSAGES/messages.po,sha256=HrRSXug0ON_siw_kzLn_XyGzWL5lEu-WZMCo0xAZOWw,16752
|
|
117
|
-
invenio_previewer/translations/it/LC_MESSAGES/messages.mo,sha256=
|
|
118
|
+
invenio_previewer/translations/it/LC_MESSAGES/messages.mo,sha256=qLjnk119aPRdouP6PUoGDjRB1pubzUy3YkWXpX-1-p4,1348
|
|
118
119
|
invenio_previewer/translations/it/LC_MESSAGES/messages.po,sha256=sPYNOV-3hU_HfWcbrXRIM34nVbKbGDWHykwlIY7sJVk,15791
|
|
119
|
-
invenio_previewer/translations/ja/LC_MESSAGES/messages.mo,sha256=
|
|
120
|
+
invenio_previewer/translations/ja/LC_MESSAGES/messages.mo,sha256=V7b72bDImKIyUNFFWfKR0swgYIZb8AJtnrcuE4KmMPA,806
|
|
120
121
|
invenio_previewer/translations/ja/LC_MESSAGES/messages.po,sha256=ddluKHDXIf9mAYlbB-XT8rtLNi3qdKNV73W1JdeZp4A,15484
|
|
121
|
-
invenio_previewer/translations/ka/LC_MESSAGES/messages.mo,sha256=
|
|
122
|
+
invenio_previewer/translations/ka/LC_MESSAGES/messages.mo,sha256=3AP3cQO1k65_RyiKahxhL_Ejy3on8kcLasosKrItZjU,969
|
|
122
123
|
invenio_previewer/translations/ka/LC_MESSAGES/messages.po,sha256=lRuIrHqTrNoPMRVPdH1beaxfuCBYKW8H1VySBkv2DqY,15621
|
|
123
|
-
invenio_previewer/translations/ko/LC_MESSAGES/messages.mo,sha256=
|
|
124
|
+
invenio_previewer/translations/ko/LC_MESSAGES/messages.mo,sha256=1vDlsszeA_ceWQBAx188I4Li827bF3LZsdtYM2jrlWc,529
|
|
124
125
|
invenio_previewer/translations/ko/LC_MESSAGES/messages.po,sha256=ax-CiTLFte9vjliBPu7OmW1EN7IuXiapRTGspxAK0bQ,15375
|
|
125
|
-
invenio_previewer/translations/lt/LC_MESSAGES/messages.mo,sha256=
|
|
126
|
+
invenio_previewer/translations/lt/LC_MESSAGES/messages.mo,sha256=L4_kGWXbd8WEIpNQ4Uiv8pXsBhql9WrcFxhli3GAheQ,989
|
|
126
127
|
invenio_previewer/translations/lt/LC_MESSAGES/messages.po,sha256=96OoiPLIeUJVPJMX-b7I-PF_d_FlnvG0TW7XncwpmQ8,15641
|
|
127
|
-
invenio_previewer/translations/no/LC_MESSAGES/messages.mo,sha256=
|
|
128
|
+
invenio_previewer/translations/no/LC_MESSAGES/messages.mo,sha256=PoWZEu6jMgpexGEM_ijVk6YR4Q027aTovCElNJynHM4,796
|
|
128
129
|
invenio_previewer/translations/no/LC_MESSAGES/messages.po,sha256=sUrSXs5r4nV7RFg3cebPOxS3O3fa6rFTuAXEvgjf6Yk,15474
|
|
129
|
-
invenio_previewer/translations/pl/LC_MESSAGES/messages.mo,sha256=
|
|
130
|
+
invenio_previewer/translations/pl/LC_MESSAGES/messages.mo,sha256=U7NCLhYZl3VEnodb05IhAf_tUU_Dfuy118XMYHSFd8U,945
|
|
130
131
|
invenio_previewer/translations/pl/LC_MESSAGES/messages.po,sha256=dyEydAwuNnqxELnsmPhmSD1ZSy6egDtUnkpsWe9XMGA,15623
|
|
131
|
-
invenio_previewer/translations/pt/LC_MESSAGES/messages.mo,sha256=
|
|
132
|
+
invenio_previewer/translations/pt/LC_MESSAGES/messages.mo,sha256=8XH5_FgupwbPraIuanbkvO1PyhYZJpwKLFzhid_Om14,823
|
|
132
133
|
invenio_previewer/translations/pt/LC_MESSAGES/messages.po,sha256=tpMw2SL4XBspCYj9AgcxpFuX6Y0CjVOQGBNfgHwAxiM,15527
|
|
133
|
-
invenio_previewer/translations/ro/LC_MESSAGES/messages.mo,sha256=
|
|
134
|
+
invenio_previewer/translations/ro/LC_MESSAGES/messages.mo,sha256=zxy-haMlBRzMl7ohnsTJhkApbFVL-b7Yhej4rXMMNEE,3762
|
|
134
135
|
invenio_previewer/translations/ro/LC_MESSAGES/messages.po,sha256=BH1RjEEf6kMAynX-4XXkWjNBZmNch1i7y4E30KjzKxU,16678
|
|
135
|
-
invenio_previewer/translations/ru/LC_MESSAGES/messages.mo,sha256=
|
|
136
|
+
invenio_previewer/translations/ru/LC_MESSAGES/messages.mo,sha256=KdEhrWbdZO0Vg_mhDge0ENmNXxN7wlnxP9la9Jcsq34,4969
|
|
136
137
|
invenio_previewer/translations/ru/LC_MESSAGES/messages.po,sha256=jRaE_XRZyINNlLmrL4wU1-D3R4Hpm4vwYgzaR_5ps58,17800
|
|
137
|
-
invenio_previewer/translations/sk/LC_MESSAGES/messages.mo,sha256=
|
|
138
|
+
invenio_previewer/translations/sk/LC_MESSAGES/messages.mo,sha256=m9WUPT5i2OhxGJUHw2lPYEzqcCpopkpqVwdOvbFgnns,1354
|
|
138
139
|
invenio_previewer/translations/sk/LC_MESSAGES/messages.po,sha256=XuJhl6tP9ZIrFzFfkSsTxmkG7KJnrXnvxwKOLWLQuAE,15781
|
|
139
|
-
invenio_previewer/translations/sv/LC_MESSAGES/messages.mo,sha256=
|
|
140
|
+
invenio_previewer/translations/sv/LC_MESSAGES/messages.mo,sha256=zSYuSmtEFsLUB_EP6OUL1hkRttfmJUFfQluC42Qk1zQ,3833
|
|
140
141
|
invenio_previewer/translations/sv/LC_MESSAGES/messages.po,sha256=LtHsHPfs7to8AT7RqmCE2VUW1ZIbrrw2hpfdufzQuaQ,16611
|
|
141
|
-
invenio_previewer/translations/tr/LC_MESSAGES/messages.mo,sha256=
|
|
142
|
+
invenio_previewer/translations/tr/LC_MESSAGES/messages.mo,sha256=hEh95tgsqqzmZaIcVS3T44a7gVrqkiYRkaBnGpe6sns,3940
|
|
142
143
|
invenio_previewer/translations/tr/LC_MESSAGES/messages.po,sha256=Pt7IVWtOC2BPmr9CIcwpnIQuneKT5EjyQOyiM_cbMZo,16755
|
|
143
|
-
invenio_previewer/translations/uk/LC_MESSAGES/messages.mo,sha256=
|
|
144
|
+
invenio_previewer/translations/uk/LC_MESSAGES/messages.mo,sha256=StfMyuF0A-ufJfOjdvB4EZuMyUnPoF0ig71J335tU9w,1014
|
|
144
145
|
invenio_previewer/translations/uk/LC_MESSAGES/messages.po,sha256=Gtbrhy8MsH60LGSQTjcNjE3uRQd3xTwyxC7w_THsjwg,15766
|
|
145
|
-
invenio_previewer/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=
|
|
146
|
+
invenio_previewer/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=CJDnxT2p-q-oUz9mu_yejFwbEzQMHJW2YcjQV9PICZ8,3266
|
|
146
147
|
invenio_previewer/translations/zh_CN/LC_MESSAGES/messages.po,sha256=YKEqdgACVuwj7DroAVz4b60ZeiDx3nLfB5RzXHpTF74,16227
|
|
147
|
-
invenio_previewer/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=
|
|
148
|
+
invenio_previewer/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=kv7SShoJRphr1HFxMl7cpcYO30SgHoAGcLIgyd6yHK4,807
|
|
148
149
|
invenio_previewer/translations/zh_TW/LC_MESSAGES/messages.po,sha256=S8o0foNsG4pLH8VwXu8Fq51ngLQIBkhpJ1Nfa3CEZbU,15485
|
|
149
|
-
invenio_previewer-3.
|
|
150
|
-
invenio_previewer-3.
|
|
151
|
-
invenio_previewer-3.
|
|
152
|
-
invenio_previewer-3.
|
|
153
|
-
invenio_previewer-3.
|
|
154
|
-
invenio_previewer-3.
|
|
155
|
-
invenio_previewer-3.
|
|
150
|
+
invenio_previewer-3.7.0.dist-info/licenses/AUTHORS.rst,sha256=wcFhv9iJlZPq0MkvNHDVBEn5iXZGsVfC32yjS2jW9CQ,486
|
|
151
|
+
invenio_previewer-3.7.0.dist-info/licenses/LICENSE,sha256=p3bBZtg1gwhzibgFe4OuiiUStzewJS5TD6MC5Vu1uSM,1067
|
|
152
|
+
invenio_previewer-3.7.0.dist-info/METADATA,sha256=ZKQSow-u7eGJianapqpzuasUaxEyFz0XVcm-5KS-Bgw,9812
|
|
153
|
+
invenio_previewer-3.7.0.dist-info/WHEEL,sha256=Mk1ST5gDzEO5il5kYREiBnzzM469m5sI8ESPl7TRhJY,110
|
|
154
|
+
invenio_previewer-3.7.0.dist-info/entry_points.txt,sha256=gYe4eWC5Pul52jSjV_sdeIffYCm6KzwHhNkUsxrm7vc,916
|
|
155
|
+
invenio_previewer-3.7.0.dist-info/top_level.txt,sha256=BwA4Jo3Wv0rLjDkEuCEIR2W-lz1EXRc7h9jzDwaMK3o,18
|
|
156
|
+
invenio_previewer-3.7.0.dist-info/RECORD,,
|
|
File without changes
|
{invenio_previewer-3.5.1.dist-info → invenio_previewer-3.7.0.dist-info}/licenses/AUTHORS.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|