invenio-previewer 3.6.0__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/js/open_pdf.js +41 -0
- 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.6.0.dist-info → invenio_previewer-3.7.0.dist-info}/METADATA +5 -1
- {invenio_previewer-3.6.0.dist-info → invenio_previewer-3.7.0.dist-info}/RECORD +39 -39
- {invenio_previewer-3.6.0.dist-info → invenio_previewer-3.7.0.dist-info}/WHEEL +1 -1
- {invenio_previewer-3.6.0.dist-info → invenio_previewer-3.7.0.dist-info}/entry_points.txt +0 -0
- {invenio_previewer-3.6.0.dist-info → invenio_previewer-3.7.0.dist-info}/licenses/AUTHORS.rst +0 -0
- {invenio_previewer-3.6.0.dist-info → invenio_previewer-3.7.0.dist-info}/licenses/LICENSE +0 -0
- {invenio_previewer-3.6.0.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")
|
|
@@ -17,6 +17,32 @@
|
|
|
17
17
|
|
|
18
18
|
"use strict";
|
|
19
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
|
+
|
|
20
46
|
document.addEventListener("DOMContentLoaded", () => {
|
|
21
47
|
const { pdfjsLib, pdfjsViewer } = window;
|
|
22
48
|
|
|
@@ -162,8 +188,23 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
162
188
|
|
|
163
189
|
// Display the number of pages
|
|
164
190
|
pageNumberLabel.textContent = `of ${pdfViewer.pagesCount}`;
|
|
191
|
+
applyPageFromHash(pdfViewer, pageNumberField);
|
|
165
192
|
});
|
|
166
193
|
|
|
194
|
+
window.addEventListener("hashchange", function () {
|
|
195
|
+
applyPageFromHash(pdfViewer, pageNumberField);
|
|
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
|
+
}
|
|
207
|
+
|
|
167
208
|
// Loading document
|
|
168
209
|
const loadingTask = pdfjsLib.getDocument({
|
|
169
210
|
url: PDF_URL,
|
|
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,10 @@ 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
|
+
|
|
99
103
|
Version v3.6.0 (released 2026-01-15)
|
|
100
104
|
|
|
101
105
|
- feat(pdfjs): add download button
|
|
@@ -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
|
|
@@ -52,7 +52,7 @@ invenio_previewer/static/images/pdfjs/next.svg,sha256=s8cVHIiKmueVrJclJ-guEFe_76
|
|
|
52
52
|
invenio_previewer/static/images/pdfjs/plus.svg,sha256=jHVi4RtaGnJAeMHeTZ6fsysRx568VzbFFvraL9PmCyY,1490
|
|
53
53
|
invenio_previewer/static/images/pdfjs/previous.svg,sha256=zC_FFUD9qeGmieo3UwaekoU3L8aTgxp2WTHLOT3HvDE,577
|
|
54
54
|
invenio_previewer/static/js/fullscreen.js,sha256=1FIvn_zJSgCkrzy8NZTQ3jNUrnaCUfzZOyaFCFzY_vc,1845
|
|
55
|
-
invenio_previewer/static/js/open_pdf.js,sha256=
|
|
55
|
+
invenio_previewer/static/js/open_pdf.js,sha256=LVRHKMMAQQoL-AIjTFDMgpcVYmjEPeS5p5UhsSgtPug,7605
|
|
56
56
|
invenio_previewer/templates/invenio_previewer/abstract_previewer.html,sha256=oeiYsCclUn_uu_NXa42IifG63ilhOYxPXWXOa1J-C-A,563
|
|
57
57
|
invenio_previewer/templates/invenio_previewer/base.html,sha256=SnDtG7ru1USS6ihU9By_VN-Lv1SW5Wu_Z1rAdUFGTL8,803
|
|
58
58
|
invenio_previewer/templates/invenio_previewer/bottom.html,sha256=TcHhwCwyhMJKISw1FG7kzhJxw5qlyQdTfkvJncGhu7k,2190
|
|
@@ -87,70 +87,70 @@ invenio_previewer/templates/semantic-ui/invenio_previewer/web_archive.html,sha25
|
|
|
87
87
|
invenio_previewer/templates/semantic-ui/invenio_previewer/xml_prismjs.html,sha256=YBltdqj9vrSed3Qv4aIJcuLPwRR08FYUNjEC_4CtSG0,383
|
|
88
88
|
invenio_previewer/templates/semantic-ui/invenio_previewer/zip.html,sha256=EMrw8sLFvC4C2xOFspcLtuuH0Bb9E8-Mh17KEH78SCM,2238
|
|
89
89
|
invenio_previewer/translations/messages.pot,sha256=ABh0oAMr9_K9yt_Lvh9UkhW6P2bHefzAkgp3yoERzZE,15236
|
|
90
|
-
invenio_previewer/translations/ar/LC_MESSAGES/messages.mo,sha256=
|
|
90
|
+
invenio_previewer/translations/ar/LC_MESSAGES/messages.mo,sha256=EWt027F4zWs-s0xbuwbrcZkVAk9kaJZe3OV1v0AhBXo,4555
|
|
91
91
|
invenio_previewer/translations/ar/LC_MESSAGES/messages.po,sha256=wMNmuUGfTf6KLaD43JOilRMCPFElp4bobqOeeOpdv3k,17374
|
|
92
|
-
invenio_previewer/translations/bg/LC_MESSAGES/messages.mo,sha256=
|
|
92
|
+
invenio_previewer/translations/bg/LC_MESSAGES/messages.mo,sha256=l4ZhjUsNlLZ9AxSZ59BOSDoG6GQZ-aJq_uqG0neUm5k,848
|
|
93
93
|
invenio_previewer/translations/bg/LC_MESSAGES/messages.po,sha256=QmQQVcpFq6MmIx8NPtn6oY0Wp33WXo3vZP-Au2bpCmw,15526
|
|
94
|
-
invenio_previewer/translations/ca/LC_MESSAGES/messages.mo,sha256=
|
|
94
|
+
invenio_previewer/translations/ca/LC_MESSAGES/messages.mo,sha256=4lcJYpm82jxUVk_s5lQ5TWzIYfBLrSbz_ySmgR3NNSs,1254
|
|
95
95
|
invenio_previewer/translations/ca/LC_MESSAGES/messages.po,sha256=UeE10IPDe8zxKvNsL_IwCoMUfuUI6D8p_OgmJFzvQys,15684
|
|
96
|
-
invenio_previewer/translations/cs/LC_MESSAGES/messages.mo,sha256=
|
|
96
|
+
invenio_previewer/translations/cs/LC_MESSAGES/messages.mo,sha256=FabIaJauwl5vAGwL_3_Jc5VeW6mvh4fNekpgz2JGygo,4101
|
|
97
97
|
invenio_previewer/translations/cs/LC_MESSAGES/messages.po,sha256=tLDXQg5g8P0a3m3BRnTLnkZI1EDQj55nqc-bqj0GNiU,16953
|
|
98
|
-
invenio_previewer/translations/da/LC_MESSAGES/messages.mo,sha256=
|
|
98
|
+
invenio_previewer/translations/da/LC_MESSAGES/messages.mo,sha256=64CqFb-apFhfIKqbz9sS0YQcqkB9rx2ceEqlrBPdFiQ,562
|
|
99
99
|
invenio_previewer/translations/da/LC_MESSAGES/messages.po,sha256=A-B8vv2hkDLBRKDnBqJZyB02T2esK0_i9JuX-1ZmLmQ,15430
|
|
100
|
-
invenio_previewer/translations/de/LC_MESSAGES/messages.mo,sha256=
|
|
100
|
+
invenio_previewer/translations/de/LC_MESSAGES/messages.mo,sha256=JO5VbGld0Y15MzfzUrHK20WNyWdLcsPt27bwrHrJkUc,3984
|
|
101
101
|
invenio_previewer/translations/de/LC_MESSAGES/messages.po,sha256=xk0UmHOhkZn30VD54oWlXDp5lgEh751RYR9em1cJIw0,16961
|
|
102
|
-
invenio_previewer/translations/el/LC_MESSAGES/messages.mo,sha256=
|
|
102
|
+
invenio_previewer/translations/el/LC_MESSAGES/messages.mo,sha256=fr_NKLe6SkAvCm8Z0iaDeN4xXklzSR6RrkFBpLNXPpQ,905
|
|
103
103
|
invenio_previewer/translations/el/LC_MESSAGES/messages.po,sha256=oN3P5U9vhoRlyX296KCj-wzkovKIskZ4LJNIITkUkKc,15557
|
|
104
|
-
invenio_previewer/translations/es/LC_MESSAGES/messages.mo,sha256=
|
|
104
|
+
invenio_previewer/translations/es/LC_MESSAGES/messages.mo,sha256=Dlb9YVcD6VdRRWj26sivQFaacZEeVkeGULxxX0_mdIw,4115
|
|
105
105
|
invenio_previewer/translations/es/LC_MESSAGES/messages.po,sha256=vPnRgH7nZSbqNPTAvenFQ3p2f2oNdXrBXiImG-xgj0A,16947
|
|
106
|
-
invenio_previewer/translations/et/LC_MESSAGES/messages.mo,sha256=
|
|
106
|
+
invenio_previewer/translations/et/LC_MESSAGES/messages.mo,sha256=x1I7NgroEMRRCHoyvnV6hZRaar8v5LxzvnmXtkbT6Pg,3518
|
|
107
107
|
invenio_previewer/translations/et/LC_MESSAGES/messages.po,sha256=J3wBMBfxC8Qlnel9u9ruK-9ulZnCIJvo6W3TggtZ5vs,16432
|
|
108
|
-
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
|
|
109
109
|
invenio_previewer/translations/fa/LC_MESSAGES/messages.po,sha256=4Iktxwq2y8M9GkWoKnOVtF0saj1mLij5B6zyRq77RSk,15484
|
|
110
|
-
invenio_previewer/translations/fi/LC_MESSAGES/messages.mo,sha256=
|
|
110
|
+
invenio_previewer/translations/fi/LC_MESSAGES/messages.mo,sha256=XtpWtKeRQwat7CTpT69lhGG60_zDPO7Sy6GT19EP2U0,3899
|
|
111
111
|
invenio_previewer/translations/fi/LC_MESSAGES/messages.po,sha256=1Pc5eXTbTINNXaWnEY-lznRRaMl9r3ocFU56sYsPUQk,16619
|
|
112
|
-
invenio_previewer/translations/fr/LC_MESSAGES/messages.mo,sha256=
|
|
112
|
+
invenio_previewer/translations/fr/LC_MESSAGES/messages.mo,sha256=gfSQ0RvlqtA9yCUKBkbE2PmG02wzaS9QNDmTjWguNBc,4057
|
|
113
113
|
invenio_previewer/translations/fr/LC_MESSAGES/messages.po,sha256=kJye0gSfY0iSsLD3ZMO-3ceBkjB9RlmiH34rE0gVFIc,16846
|
|
114
|
-
invenio_previewer/translations/hr/LC_MESSAGES/messages.mo,sha256=
|
|
114
|
+
invenio_previewer/translations/hr/LC_MESSAGES/messages.mo,sha256=z2HlzvSyBL5vavma_qAmQ8Ugc9DPKB5AyJDd0-fKJdU,877
|
|
115
115
|
invenio_previewer/translations/hr/LC_MESSAGES/messages.po,sha256=vqz-RVu0iGvjx0e6Lm_0axNhEPAXUtyCiAbwLejGMB4,15555
|
|
116
|
-
invenio_previewer/translations/hu/LC_MESSAGES/messages.mo,sha256=
|
|
116
|
+
invenio_previewer/translations/hu/LC_MESSAGES/messages.mo,sha256=7ep_BV5LAnVfPPVKXWoR-ZTEdYQN3lKm1aY1paH9ZKc,3992
|
|
117
117
|
invenio_previewer/translations/hu/LC_MESSAGES/messages.po,sha256=HrRSXug0ON_siw_kzLn_XyGzWL5lEu-WZMCo0xAZOWw,16752
|
|
118
|
-
invenio_previewer/translations/it/LC_MESSAGES/messages.mo,sha256=
|
|
118
|
+
invenio_previewer/translations/it/LC_MESSAGES/messages.mo,sha256=qLjnk119aPRdouP6PUoGDjRB1pubzUy3YkWXpX-1-p4,1348
|
|
119
119
|
invenio_previewer/translations/it/LC_MESSAGES/messages.po,sha256=sPYNOV-3hU_HfWcbrXRIM34nVbKbGDWHykwlIY7sJVk,15791
|
|
120
|
-
invenio_previewer/translations/ja/LC_MESSAGES/messages.mo,sha256=
|
|
120
|
+
invenio_previewer/translations/ja/LC_MESSAGES/messages.mo,sha256=V7b72bDImKIyUNFFWfKR0swgYIZb8AJtnrcuE4KmMPA,806
|
|
121
121
|
invenio_previewer/translations/ja/LC_MESSAGES/messages.po,sha256=ddluKHDXIf9mAYlbB-XT8rtLNi3qdKNV73W1JdeZp4A,15484
|
|
122
|
-
invenio_previewer/translations/ka/LC_MESSAGES/messages.mo,sha256=
|
|
122
|
+
invenio_previewer/translations/ka/LC_MESSAGES/messages.mo,sha256=3AP3cQO1k65_RyiKahxhL_Ejy3on8kcLasosKrItZjU,969
|
|
123
123
|
invenio_previewer/translations/ka/LC_MESSAGES/messages.po,sha256=lRuIrHqTrNoPMRVPdH1beaxfuCBYKW8H1VySBkv2DqY,15621
|
|
124
|
-
invenio_previewer/translations/ko/LC_MESSAGES/messages.mo,sha256=
|
|
124
|
+
invenio_previewer/translations/ko/LC_MESSAGES/messages.mo,sha256=1vDlsszeA_ceWQBAx188I4Li827bF3LZsdtYM2jrlWc,529
|
|
125
125
|
invenio_previewer/translations/ko/LC_MESSAGES/messages.po,sha256=ax-CiTLFte9vjliBPu7OmW1EN7IuXiapRTGspxAK0bQ,15375
|
|
126
|
-
invenio_previewer/translations/lt/LC_MESSAGES/messages.mo,sha256=
|
|
126
|
+
invenio_previewer/translations/lt/LC_MESSAGES/messages.mo,sha256=L4_kGWXbd8WEIpNQ4Uiv8pXsBhql9WrcFxhli3GAheQ,989
|
|
127
127
|
invenio_previewer/translations/lt/LC_MESSAGES/messages.po,sha256=96OoiPLIeUJVPJMX-b7I-PF_d_FlnvG0TW7XncwpmQ8,15641
|
|
128
|
-
invenio_previewer/translations/no/LC_MESSAGES/messages.mo,sha256=
|
|
128
|
+
invenio_previewer/translations/no/LC_MESSAGES/messages.mo,sha256=PoWZEu6jMgpexGEM_ijVk6YR4Q027aTovCElNJynHM4,796
|
|
129
129
|
invenio_previewer/translations/no/LC_MESSAGES/messages.po,sha256=sUrSXs5r4nV7RFg3cebPOxS3O3fa6rFTuAXEvgjf6Yk,15474
|
|
130
|
-
invenio_previewer/translations/pl/LC_MESSAGES/messages.mo,sha256=
|
|
130
|
+
invenio_previewer/translations/pl/LC_MESSAGES/messages.mo,sha256=U7NCLhYZl3VEnodb05IhAf_tUU_Dfuy118XMYHSFd8U,945
|
|
131
131
|
invenio_previewer/translations/pl/LC_MESSAGES/messages.po,sha256=dyEydAwuNnqxELnsmPhmSD1ZSy6egDtUnkpsWe9XMGA,15623
|
|
132
|
-
invenio_previewer/translations/pt/LC_MESSAGES/messages.mo,sha256=
|
|
132
|
+
invenio_previewer/translations/pt/LC_MESSAGES/messages.mo,sha256=8XH5_FgupwbPraIuanbkvO1PyhYZJpwKLFzhid_Om14,823
|
|
133
133
|
invenio_previewer/translations/pt/LC_MESSAGES/messages.po,sha256=tpMw2SL4XBspCYj9AgcxpFuX6Y0CjVOQGBNfgHwAxiM,15527
|
|
134
|
-
invenio_previewer/translations/ro/LC_MESSAGES/messages.mo,sha256=
|
|
134
|
+
invenio_previewer/translations/ro/LC_MESSAGES/messages.mo,sha256=zxy-haMlBRzMl7ohnsTJhkApbFVL-b7Yhej4rXMMNEE,3762
|
|
135
135
|
invenio_previewer/translations/ro/LC_MESSAGES/messages.po,sha256=BH1RjEEf6kMAynX-4XXkWjNBZmNch1i7y4E30KjzKxU,16678
|
|
136
|
-
invenio_previewer/translations/ru/LC_MESSAGES/messages.mo,sha256=
|
|
136
|
+
invenio_previewer/translations/ru/LC_MESSAGES/messages.mo,sha256=KdEhrWbdZO0Vg_mhDge0ENmNXxN7wlnxP9la9Jcsq34,4969
|
|
137
137
|
invenio_previewer/translations/ru/LC_MESSAGES/messages.po,sha256=jRaE_XRZyINNlLmrL4wU1-D3R4Hpm4vwYgzaR_5ps58,17800
|
|
138
|
-
invenio_previewer/translations/sk/LC_MESSAGES/messages.mo,sha256=
|
|
138
|
+
invenio_previewer/translations/sk/LC_MESSAGES/messages.mo,sha256=m9WUPT5i2OhxGJUHw2lPYEzqcCpopkpqVwdOvbFgnns,1354
|
|
139
139
|
invenio_previewer/translations/sk/LC_MESSAGES/messages.po,sha256=XuJhl6tP9ZIrFzFfkSsTxmkG7KJnrXnvxwKOLWLQuAE,15781
|
|
140
|
-
invenio_previewer/translations/sv/LC_MESSAGES/messages.mo,sha256=
|
|
140
|
+
invenio_previewer/translations/sv/LC_MESSAGES/messages.mo,sha256=zSYuSmtEFsLUB_EP6OUL1hkRttfmJUFfQluC42Qk1zQ,3833
|
|
141
141
|
invenio_previewer/translations/sv/LC_MESSAGES/messages.po,sha256=LtHsHPfs7to8AT7RqmCE2VUW1ZIbrrw2hpfdufzQuaQ,16611
|
|
142
|
-
invenio_previewer/translations/tr/LC_MESSAGES/messages.mo,sha256=
|
|
142
|
+
invenio_previewer/translations/tr/LC_MESSAGES/messages.mo,sha256=hEh95tgsqqzmZaIcVS3T44a7gVrqkiYRkaBnGpe6sns,3940
|
|
143
143
|
invenio_previewer/translations/tr/LC_MESSAGES/messages.po,sha256=Pt7IVWtOC2BPmr9CIcwpnIQuneKT5EjyQOyiM_cbMZo,16755
|
|
144
|
-
invenio_previewer/translations/uk/LC_MESSAGES/messages.mo,sha256=
|
|
144
|
+
invenio_previewer/translations/uk/LC_MESSAGES/messages.mo,sha256=StfMyuF0A-ufJfOjdvB4EZuMyUnPoF0ig71J335tU9w,1014
|
|
145
145
|
invenio_previewer/translations/uk/LC_MESSAGES/messages.po,sha256=Gtbrhy8MsH60LGSQTjcNjE3uRQd3xTwyxC7w_THsjwg,15766
|
|
146
|
-
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
|
|
147
147
|
invenio_previewer/translations/zh_CN/LC_MESSAGES/messages.po,sha256=YKEqdgACVuwj7DroAVz4b60ZeiDx3nLfB5RzXHpTF74,16227
|
|
148
|
-
invenio_previewer/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=
|
|
148
|
+
invenio_previewer/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=kv7SShoJRphr1HFxMl7cpcYO30SgHoAGcLIgyd6yHK4,807
|
|
149
149
|
invenio_previewer/translations/zh_TW/LC_MESSAGES/messages.po,sha256=S8o0foNsG4pLH8VwXu8Fq51ngLQIBkhpJ1Nfa3CEZbU,15485
|
|
150
|
-
invenio_previewer-3.
|
|
151
|
-
invenio_previewer-3.
|
|
152
|
-
invenio_previewer-3.
|
|
153
|
-
invenio_previewer-3.
|
|
154
|
-
invenio_previewer-3.
|
|
155
|
-
invenio_previewer-3.
|
|
156
|
-
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.6.0.dist-info → invenio_previewer-3.7.0.dist-info}/licenses/AUTHORS.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|