invenio-previewer 3.0.1__py2.py3-none-any.whl → 3.1.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 +3 -2
- invenio_previewer/config.py +4 -1
- invenio_previewer/ext.py +5 -5
- invenio_previewer/extensions/csv_papaparsejs.py +11 -1
- invenio_previewer/extensions/simple_image.py +2 -2
- invenio_previewer/webpack.py +2 -0
- {invenio_previewer-3.0.1.dist-info → invenio_previewer-3.1.0.dist-info}/METADATA +15 -4
- {invenio_previewer-3.0.1.dist-info → invenio_previewer-3.1.0.dist-info}/RECORD +13 -49
- {invenio_previewer-3.0.1.dist-info → invenio_previewer-3.1.0.dist-info}/WHEEL +1 -1
- invenio_previewer/translations/af/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/af/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/de_AT/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/de_AT/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/de_DE/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/de_DE/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/en_AT/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/en_AT/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/en_HU/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/en_HU/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/es_CU/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/es_CU/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/es_MX/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/es_MX/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/et_EE/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/et_EE/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/fa_IR/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/fa_IR/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/fr_CI/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/fr_CI/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/fr_FR/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/fr_FR/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/gl/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/gl/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/hi_IN/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/hi_IN/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/hu_HU/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/hu_HU/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/ne/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/ne/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/rw/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/rw/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/sv_SE/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/sv_SE/LC_MESSAGES/messages.po +0 -384
- invenio_previewer/translations/uk_UA/LC_MESSAGES/messages.mo +0 -0
- invenio_previewer/translations/uk_UA/LC_MESSAGES/messages.po +0 -384
- {invenio_previewer-3.0.1.dist-info → invenio_previewer-3.1.0.dist-info}/entry_points.txt +0 -0
- {invenio_previewer-3.0.1.dist-info → invenio_previewer-3.1.0.dist-info/licenses}/AUTHORS.rst +0 -0
- {invenio_previewer-3.0.1.dist-info → invenio_previewer-3.1.0.dist-info/licenses}/LICENSE +0 -0
- {invenio_previewer-3.0.1.dist-info → invenio_previewer-3.1.0.dist-info}/top_level.txt +0 -0
invenio_previewer/__init__.py
CHANGED
|
@@ -21,7 +21,7 @@ It includes previewers for the following file types:
|
|
|
21
21
|
- CSV (using d3.js)
|
|
22
22
|
- Markdown (using Mistune library)
|
|
23
23
|
- XML and JSON (using Prism.js)
|
|
24
|
-
- Simple images (PNG, JPG, GIF)
|
|
24
|
+
- Simple images (PNG, JPG, GIF, WEBP)
|
|
25
25
|
- Jupyter Notebooks
|
|
26
26
|
|
|
27
27
|
Invenio-Previewer only provides the front-end layer for displaying previews
|
|
@@ -169,6 +169,7 @@ We can then add a few demo files into the record:
|
|
|
169
169
|
... 'notebook.ipynb',
|
|
170
170
|
... 'jpgfile.jpg',
|
|
171
171
|
... 'pngfile.png',
|
|
172
|
+
... 'webpfile.webp',
|
|
172
173
|
... )
|
|
173
174
|
|
|
174
175
|
>>> for f in demo_files:
|
|
@@ -319,6 +320,6 @@ Now define the priority for all previewers by adding the newly created
|
|
|
319
320
|
from .ext import InvenioPreviewer
|
|
320
321
|
from .proxies import current_previewer
|
|
321
322
|
|
|
322
|
-
__version__ = "3.0
|
|
323
|
+
__version__ = "3.1.0"
|
|
323
324
|
|
|
324
325
|
__all__ = ("__version__", "current_previewer", "InvenioPreviewer")
|
invenio_previewer/config.py
CHANGED
|
@@ -21,7 +21,7 @@ PREVIEWER_CHARDET_CONFIDENCE = 0.9
|
|
|
21
21
|
"""Confidence threshold for character encoding detection by `cchardet`."""
|
|
22
22
|
|
|
23
23
|
PREVIEWER_MAX_FILE_SIZE_BYTES = 1 * 1024 * 1024
|
|
24
|
-
"""Maximum file size in bytes for JSON/XML
|
|
24
|
+
"""Maximum file size in bytes for JSON/XML files."""
|
|
25
25
|
|
|
26
26
|
PREVIEWER_MAX_IMAGE_SIZE_BYTES = 0.5 * 1024 * 1024
|
|
27
27
|
"""Maximum file size in bytes for image files."""
|
|
@@ -29,6 +29,9 @@ PREVIEWER_MAX_IMAGE_SIZE_BYTES = 0.5 * 1024 * 1024
|
|
|
29
29
|
PREVIEWER_TXT_MAX_BYTES = 1 * 1024 * 1024
|
|
30
30
|
"""Maximum number of .txt file bytes to preview before truncated."""
|
|
31
31
|
|
|
32
|
+
PREVIEWER_CSV_MAX_BYTES = 100 * 1024 * 1024
|
|
33
|
+
"""Maximum file size in bytes for CSV files."""
|
|
34
|
+
|
|
32
35
|
PREVIEWER_ZIP_MAX_FILES = 1000
|
|
33
36
|
"""Max number of files showed in the ZIP previewer."""
|
|
34
37
|
|
invenio_previewer/ext.py
CHANGED
|
@@ -2,15 +2,16 @@
|
|
|
2
2
|
#
|
|
3
3
|
# This file is part of Invenio.
|
|
4
4
|
# Copyright (C) 2016-2019 CERN.
|
|
5
|
+
# Copyright (C) 2025 Graz University of Technology.
|
|
5
6
|
#
|
|
6
7
|
# Invenio is free software; you can redistribute it and/or modify it
|
|
7
8
|
# under the terms of the MIT License; see LICENSE file for more details.
|
|
8
9
|
|
|
9
10
|
"""Invenio module for previewing files."""
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
|
|
12
13
|
from flask import current_app
|
|
13
|
-
from
|
|
14
|
+
from invenio_base.utils import entry_points
|
|
14
15
|
from werkzeug.utils import cached_property, import_string
|
|
15
16
|
|
|
16
17
|
from . import config
|
|
@@ -54,11 +55,10 @@ class _InvenioPreviewerState(object):
|
|
|
54
55
|
def record_file_factory(self):
|
|
55
56
|
"""Load default record file factory."""
|
|
56
57
|
try:
|
|
57
|
-
get_distribution("invenio-records-files")
|
|
58
58
|
from invenio_records_files.utils import record_file_factory
|
|
59
59
|
|
|
60
60
|
default = record_file_factory
|
|
61
|
-
except
|
|
61
|
+
except ImportError:
|
|
62
62
|
|
|
63
63
|
def default(pid, record, filename):
|
|
64
64
|
return None
|
|
@@ -89,7 +89,7 @@ class _InvenioPreviewerState(object):
|
|
|
89
89
|
|
|
90
90
|
def load_entry_point_group(self, entry_point_group):
|
|
91
91
|
"""Load previewers from an entry point group."""
|
|
92
|
-
for ep in
|
|
92
|
+
for ep in entry_points(group=entry_point_group):
|
|
93
93
|
self.register_previewer(ep.name, ep.load())
|
|
94
94
|
|
|
95
95
|
def iter_previewers(self, previewers=None):
|
|
@@ -15,9 +15,19 @@ from ..proxies import current_previewer
|
|
|
15
15
|
previewable_extensions = ["csv", "dsv"]
|
|
16
16
|
|
|
17
17
|
|
|
18
|
+
def validate_csv(file):
|
|
19
|
+
"""Validate a CSV file."""
|
|
20
|
+
max_file_size = current_app.config.get("PREVIEWER_CSV_MAX_BYTES", 100 * 1024 * 1024)
|
|
21
|
+
if file.size > max_file_size:
|
|
22
|
+
return False
|
|
23
|
+
return True
|
|
24
|
+
|
|
25
|
+
|
|
18
26
|
def can_preview(file):
|
|
19
27
|
"""Determine if the given file can be previewed."""
|
|
20
|
-
return
|
|
28
|
+
return (
|
|
29
|
+
file.is_local() and file.has_extensions(".csv", ".dsv") and validate_csv(file)
|
|
30
|
+
)
|
|
21
31
|
|
|
22
32
|
|
|
23
33
|
def preview(file):
|
|
@@ -12,7 +12,7 @@ from flask import current_app, render_template
|
|
|
12
12
|
|
|
13
13
|
from ..proxies import current_previewer
|
|
14
14
|
|
|
15
|
-
previewable_extensions = ["jpg", "jpeg", "png", "gif"]
|
|
15
|
+
previewable_extensions = ["jpg", "jpeg", "png", "gif", "webp"]
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
def validate(file):
|
|
@@ -25,7 +25,7 @@ def validate(file):
|
|
|
25
25
|
|
|
26
26
|
def can_preview(file):
|
|
27
27
|
"""Determine if the given file can be previewed."""
|
|
28
|
-
supported_extensions = (".
|
|
28
|
+
supported_extensions = tuple(f".{ext}" for ext in previewable_extensions)
|
|
29
29
|
return file.has_extensions(*supported_extensions) and validate(file)
|
|
30
30
|
|
|
31
31
|
|
invenio_previewer/webpack.py
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
# Copyright (C) 2016-2022 CERN.
|
|
5
5
|
# Copyright (C) 2022 TU Wien.
|
|
6
6
|
# Copyright (C) 2023 Northwestern University.
|
|
7
|
+
# Copyright (C) 2025 Graz University of Technology.
|
|
7
8
|
#
|
|
8
9
|
# Invenio is free software; you can redistribute it
|
|
9
10
|
# and/or modify it under the terms of the GNU General Public License as
|
|
@@ -85,6 +86,7 @@ previewer = WebpackThemeBundle(
|
|
|
85
86
|
"video_videojs_css": "./scss/invenio_previewer/video_videojs.scss",
|
|
86
87
|
},
|
|
87
88
|
dependencies={
|
|
89
|
+
"ajv": "^8.0.0",
|
|
88
90
|
"flightjs": "~1.5.1",
|
|
89
91
|
"font-awesome": "~4.5.0",
|
|
90
92
|
"jquery": "^3.3.1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-previewer
|
|
3
|
-
Version: 3.0
|
|
3
|
+
Version: 3.1.0
|
|
4
4
|
Summary: Invenio module for previewing files.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-previewer
|
|
6
6
|
Author: CERN
|
|
@@ -14,7 +14,7 @@ License-File: LICENSE
|
|
|
14
14
|
License-File: AUTHORS.rst
|
|
15
15
|
Requires-Dist: charset_normalizer>=3.3.2
|
|
16
16
|
Requires-Dist: invenio-assets<5.0.0,>=4.0.0
|
|
17
|
-
Requires-Dist: invenio-base<3.0.0,>=2.
|
|
17
|
+
Requires-Dist: invenio-base<3.0.0,>=2.3.2
|
|
18
18
|
Requires-Dist: invenio-formatter<4.0.0,>=3.0.0
|
|
19
19
|
Requires-Dist: invenio-i18n<4.0.0,>=3.0.0
|
|
20
20
|
Requires-Dist: invenio-pidstore<3.0.0,>=2.0.0
|
|
@@ -38,6 +38,7 @@ Provides-Extra: docs
|
|
|
38
38
|
Provides-Extra: files
|
|
39
39
|
Requires-Dist: invenio-files-rest>=1.3.2; extra == "files"
|
|
40
40
|
Requires-Dist: invenio-records-files>=1.2.1; extra == "files"
|
|
41
|
+
Dynamic: license-file
|
|
41
42
|
|
|
42
43
|
..
|
|
43
44
|
This file is part of Invenio.
|
|
@@ -69,7 +70,7 @@ Invenio module for previewing files.
|
|
|
69
70
|
Features:
|
|
70
71
|
|
|
71
72
|
- File previewing.
|
|
72
|
-
- Support for PDF, ZIP, CSV, MARKDOWN, XML, JSON, PNG, JPG and
|
|
73
|
+
- Support for PDF, ZIP, CSV, MARKDOWN, XML, JSON, PNG, JPG, GIF, and WEBP out-of-the-box.
|
|
73
74
|
- Extensible API to create new previewers.
|
|
74
75
|
|
|
75
76
|
Further documentation available: https://invenio-previewer.readthedocs.io/
|
|
@@ -86,6 +87,16 @@ Further documentation available: https://invenio-previewer.readthedocs.io/
|
|
|
86
87
|
Changes
|
|
87
88
|
=======
|
|
88
89
|
|
|
90
|
+
Version 3.1.0 (release 2025-07-02)
|
|
91
|
+
|
|
92
|
+
- fix(tests): add missing javascript dep
|
|
93
|
+
- fix: pkg_resources DeprecationWarning
|
|
94
|
+
- docs: add webp to all places formats are listed
|
|
95
|
+
- feat: preview webp images
|
|
96
|
+
- i18n: removed deprecated messages
|
|
97
|
+
- fix: setuptools require underscores instead of dashes
|
|
98
|
+
- csv: add max filesize check
|
|
99
|
+
|
|
89
100
|
Version 3.0.1 (release 2025-02-25)
|
|
90
101
|
|
|
91
102
|
- fix: ModuleWarning: Deprecation Warning
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
invenio_previewer/__init__.py,sha256=
|
|
1
|
+
invenio_previewer/__init__.py,sha256=LlBc-JQNoQjiuhqxTIZIXVs4OyXXAGSrV0ds4TDKiuI,11229
|
|
2
2
|
invenio_previewer/api.py,sha256=ntblD3P-nAlVmL6gTx4tJHJmoJp4tOFwoVz8gMh6T5U,1708
|
|
3
|
-
invenio_previewer/config.py,sha256=
|
|
4
|
-
invenio_previewer/ext.py,sha256=
|
|
3
|
+
invenio_previewer/config.py,sha256=JfKDFMj28TkndQ3IGG8InIrtXG04X6gn50VRcCPb7tQ,1928
|
|
4
|
+
invenio_previewer/ext.py,sha256=yGpjiU5SVfY-wCWHDFY0ud68TOhrG8tOjZCMLF2ru-4,4337
|
|
5
5
|
invenio_previewer/proxies.py,sha256=vzcZDzP4MlKJAXJu2u6Las0o4fxSJ2qOmtREszPkmxM,479
|
|
6
6
|
invenio_previewer/utils.py,sha256=dj1ZAgRLs05Xiali7BHaNJR1oSm_98YbZVuH8gQ_tDw,1970
|
|
7
7
|
invenio_previewer/views.py,sha256=iBgV0UKeOosVkU60CMSnAbN4cTmjTXUQClGl9HWGWJk,2483
|
|
8
|
-
invenio_previewer/webpack.py,sha256=
|
|
8
|
+
invenio_previewer/webpack.py,sha256=AwJrEIdeBRFEX2vzJnJ0BlsupXGTKkraaWKeNq6eZ9Y,4698
|
|
9
9
|
invenio_previewer/assets/bootstrap3/css/invenio_previewer/prismjs/simple.css,sha256=_8CrMr-DmI6-WBFyCZ1g4nMKp__PSVy_avNOyF8PCGs,383
|
|
10
10
|
invenio_previewer/assets/bootstrap3/css/invenio_previewer/simple_image/simple_image.css,sha256=O3QoTQ2n_713PBTbpyGKlr6nHZ5CWF0F2OFA6bS6Gs4,270
|
|
11
11
|
invenio_previewer/assets/bootstrap3/js/invenio_previewer/previewer_theme.js,sha256=cr1o_4KH4lVfA9G5H8bpG6p9V1dACxz9ICUPlWsMLFE,335
|
|
@@ -30,13 +30,13 @@ invenio_previewer/assets/semantic-ui/scss/invenio_previewer/video_videojs.scss,s
|
|
|
30
30
|
invenio_previewer/assets/semantic-ui/scss/invenio_previewer/zip.scss,sha256=8j80NAQa7jLbWxhk4g4_0YWxiHcgr49YpibCNSsMgeI,559
|
|
31
31
|
invenio_previewer/extensions/__init__.py,sha256=SxsPahf2z9BCLZ07uK1COT-fcl6X6ZTcuiCCYdERWIg,279
|
|
32
32
|
invenio_previewer/extensions/audio_videojs.py,sha256=Ebbt-QcFS7PCKiLPiP7HjOuBPcEB3zJ2ZSBV8JMYcRc,1634
|
|
33
|
-
invenio_previewer/extensions/csv_papaparsejs.py,sha256=
|
|
33
|
+
invenio_previewer/extensions/csv_papaparsejs.py,sha256=fzYJ3sN02AVhyx9NIgTXPbqVhbydw3MUJOkg-eywAsM,1108
|
|
34
34
|
invenio_previewer/extensions/default.py,sha256=9l8Vd5DZx0FInrd_vGxtCXss0C9jbynDDQLDR32gDY8,777
|
|
35
35
|
invenio_previewer/extensions/ipynb.py,sha256=xUXSGM9h1VGSXuLvNkxXPQ550ueCXN5edx3lqN0MDqA,2474
|
|
36
36
|
invenio_previewer/extensions/json_prismjs.py,sha256=bKXWhqKqTXJh6l6RFvSYXy861aicpVAsMk4LRtJat-0,1694
|
|
37
37
|
invenio_previewer/extensions/mistune.py,sha256=aMnMufeqL0cgkbDF-jht7MCTqziTKQE06HbtUBNmoYs,1286
|
|
38
38
|
invenio_previewer/extensions/pdfjs.py,sha256=Xr6jmGuw8--55El2w7tml_sHPUfx_iC389FLSTtfAeE,790
|
|
39
|
-
invenio_previewer/extensions/simple_image.py,sha256=
|
|
39
|
+
invenio_previewer/extensions/simple_image.py,sha256=Gfxnhk-3_WJjJh_6Qnh_mMY8Pm8TaJEUDv7wHbJrYvI,1172
|
|
40
40
|
invenio_previewer/extensions/txt.py,sha256=rMEefkhXcjcXt79yasA7kqWfiEN7ast_42fKecLlL8A,1193
|
|
41
41
|
invenio_previewer/extensions/video_videojs.py,sha256=O1JjhT-t8XLiTw1ii1WLzF5o9QyLh_gkyfSaMNYSD2M,1529
|
|
42
42
|
invenio_previewer/extensions/xml_prismjs.py,sha256=WO1_wyjO9NxthMDOscTQbEeiF1i0hcNOReNJGOZw9Ao,1908
|
|
@@ -81,8 +81,6 @@ invenio_previewer/templates/semantic-ui/invenio_previewer/videojs.html,sha256=5K
|
|
|
81
81
|
invenio_previewer/templates/semantic-ui/invenio_previewer/xml_prismjs.html,sha256=YBltdqj9vrSed3Qv4aIJcuLPwRR08FYUNjEC_4CtSG0,383
|
|
82
82
|
invenio_previewer/templates/semantic-ui/invenio_previewer/zip.html,sha256=EMrw8sLFvC4C2xOFspcLtuuH0Bb9E8-Mh17KEH78SCM,2238
|
|
83
83
|
invenio_previewer/translations/messages.pot,sha256=ABh0oAMr9_K9yt_Lvh9UkhW6P2bHefzAkgp3yoERzZE,15236
|
|
84
|
-
invenio_previewer/translations/af/LC_MESSAGES/messages.mo,sha256=n_zbylUo-0MIU-ftQwMa_eVuGzv35fbwY0Iq_EqZesE,519
|
|
85
|
-
invenio_previewer/translations/af/LC_MESSAGES/messages.po,sha256=caf2uyNlictkLaPg0r1nsF5HF2zlbvs0_yajUqLAlSI,14898
|
|
86
84
|
invenio_previewer/translations/ar/LC_MESSAGES/messages.mo,sha256=TNIx_CuHfo7gM_VEYgoUjTEqv9211ibvNzQfKZUAYJU,4225
|
|
87
85
|
invenio_previewer/translations/ar/LC_MESSAGES/messages.po,sha256=QRDXLuwYYD-xiB82oWzhSo4BAAhRrSb1G4HN-wCLJxs,16810
|
|
88
86
|
invenio_previewer/translations/bg/LC_MESSAGES/messages.mo,sha256=eTIdEjlIjgrIiwxI6zQNygzvut-I7YpUFR1dnlPApsQ,848
|
|
@@ -95,46 +93,20 @@ invenio_previewer/translations/da/LC_MESSAGES/messages.mo,sha256=U1TGAcH4T9WVzL-
|
|
|
95
93
|
invenio_previewer/translations/da/LC_MESSAGES/messages.po,sha256=6f1rFP90JzELnqDlXuQU_aAs2zvUUSFMKXcXrH9bfWs,15026
|
|
96
94
|
invenio_previewer/translations/de/LC_MESSAGES/messages.mo,sha256=-5MXmjY7IWr7uxXEpxAAZB-NkaYi330LMxFNvrIYsvA,3561
|
|
97
95
|
invenio_previewer/translations/de/LC_MESSAGES/messages.po,sha256=c7-QzeFmEQEzVNq7gsaKwHtqqrgq2NqAJQL92XgWM78,16242
|
|
98
|
-
invenio_previewer/translations/de_AT/LC_MESSAGES/messages.mo,sha256=Ll-KYg_vezHb-JObWNqIjIZUeT-glVCwjVGgzSkivZA,532
|
|
99
|
-
invenio_previewer/translations/de_AT/LC_MESSAGES/messages.po,sha256=lDsqMZBo6UsInF2m-rtIruBzbT6sbLkuK8rKAWEribk,14911
|
|
100
|
-
invenio_previewer/translations/de_DE/LC_MESSAGES/messages.mo,sha256=Kv0mGF7WABHG-wrggmOkCKp14EgJnqeAjRXcS0f9ewg,532
|
|
101
|
-
invenio_previewer/translations/de_DE/LC_MESSAGES/messages.po,sha256=-L_ez7c3_zQum9753fV6MmRhl0WYkfgUrNSs1_CIrtI,14911
|
|
102
96
|
invenio_previewer/translations/el/LC_MESSAGES/messages.mo,sha256=PYalw2AcVj517vs8beFnaUh1_WynMgOzX47QKMKIwm0,905
|
|
103
97
|
invenio_previewer/translations/el/LC_MESSAGES/messages.po,sha256=Ke8o0d4ZPRdsmeLmrogEU-WECFf0BgmMVpPkc9bbvWA,15153
|
|
104
|
-
invenio_previewer/translations/en_AT/LC_MESSAGES/messages.mo,sha256=K0md1iSQ33u_Rd1EGjYqT1daZO_YL9o2LBa1wz_9ut8,533
|
|
105
|
-
invenio_previewer/translations/en_AT/LC_MESSAGES/messages.po,sha256=K6blAKyoyVU6ln1rsqUdp15_fjlwa5SSZTsI_XG5Too,14912
|
|
106
|
-
invenio_previewer/translations/en_HU/LC_MESSAGES/messages.mo,sha256=porygvAZkFOVxkUNOWcFQLRJPE6maLmOxITd2dopSNw,490
|
|
107
|
-
invenio_previewer/translations/en_HU/LC_MESSAGES/messages.po,sha256=NN-R9pwY5J5rBWm3yXQleIV9HACLkbSbG4HQ-EcilJ8,14912
|
|
108
98
|
invenio_previewer/translations/es/LC_MESSAGES/messages.mo,sha256=SZfwgjlMX1WtXA-ags6ske0BSvRsIjBOXBEw-M_Zt9A,3825
|
|
109
99
|
invenio_previewer/translations/es/LC_MESSAGES/messages.po,sha256=TXAHDI1qAF_9ZKl1fzBjHuIWiggf0oLMYvPip6ba6Xw,16397
|
|
110
|
-
invenio_previewer/translations/es_CU/LC_MESSAGES/messages.mo,sha256=9VmzPYwsjsFLZNdSwQXPjZzrAYPKf63qNUkUQLh2qtc,569
|
|
111
|
-
invenio_previewer/translations/es_CU/LC_MESSAGES/messages.po,sha256=FjNlASusfHX40O4jpv7YBQh-yRlEy5sWNGdCn2FAshU,14948
|
|
112
|
-
invenio_previewer/translations/es_MX/LC_MESSAGES/messages.mo,sha256=TGYyhqsurKkINuHzPxnORJeK28hfURb_70mt6bixIVo,571
|
|
113
|
-
invenio_previewer/translations/es_MX/LC_MESSAGES/messages.po,sha256=oukjwV8T0lXZNihto2w172t7CUxvO7vBiW6dui4ZM8o,14950
|
|
114
100
|
invenio_previewer/translations/et/LC_MESSAGES/messages.mo,sha256=cimqrVGwjpoGgMkEYTKaaBgki3m6WskW8qRYbtF3uNQ,3518
|
|
115
101
|
invenio_previewer/translations/et/LC_MESSAGES/messages.po,sha256=6EElBbCmdPzSJy0Nrpo7RFplkVUMYHP5AefwlYy2uDQ,16028
|
|
116
|
-
invenio_previewer/translations/et_EE/LC_MESSAGES/messages.mo,sha256=_5aiW3zWIwJWaoGhRBtPkScjMIUREEIP6uOLcv2d0-k,534
|
|
117
|
-
invenio_previewer/translations/et_EE/LC_MESSAGES/messages.po,sha256=UtntalX0uMeOtCyO_i_8xvAHUPh3D6vXFfF76vCkNAs,14913
|
|
118
102
|
invenio_previewer/translations/fa/LC_MESSAGES/messages.mo,sha256=bYSPuKe-VsrHdwEe2rPEwMYLnNwtcIK0He1lM7PzqAk,757
|
|
119
103
|
invenio_previewer/translations/fa/LC_MESSAGES/messages.po,sha256=TsY8A2BFNOkLhsrCnf7cIUOY21owN7OOss6lTFlckOA,15080
|
|
120
|
-
invenio_previewer/translations/fa_IR/LC_MESSAGES/messages.mo,sha256=fuhxaIKBsLPsu6wHnMMGwE5xMC5dBqDaPZEeSDZxxFY,529
|
|
121
|
-
invenio_previewer/translations/fa_IR/LC_MESSAGES/messages.po,sha256=sirzmKD0pVzh6IFrQfA2pUwASD2EEKF0NtsJ5miqKjk,14908
|
|
122
104
|
invenio_previewer/translations/fr/LC_MESSAGES/messages.mo,sha256=LHiYKRoy8jKdFWDgmKMt65BEC58C0dAmV0aDHYVI3yc,1353
|
|
123
105
|
invenio_previewer/translations/fr/LC_MESSAGES/messages.po,sha256=DXhPwrtq2rTvfOOPd0JJ7YmA_aLOW4dzUjvZ2CaEBGE,15385
|
|
124
|
-
invenio_previewer/translations/fr_CI/LC_MESSAGES/messages.mo,sha256=whbcwZy_DnUk3zmOMnsHy9EKybuZx6618osJd5RSafM,590
|
|
125
|
-
invenio_previewer/translations/fr_CI/LC_MESSAGES/messages.po,sha256=SJ8RB0_F2jXJn6yVsy4JnivSjtE5l-OSjIRrm1UD52c,14969
|
|
126
|
-
invenio_previewer/translations/fr_FR/LC_MESSAGES/messages.mo,sha256=oPP18pLS6YNTI6AKYg4Qg__DGErYfnQT_vadsuOxXDM,582
|
|
127
|
-
invenio_previewer/translations/fr_FR/LC_MESSAGES/messages.po,sha256=0BBoLt7jpRYbW7aZL2lwhCifa7YHEwfiMiOlbLePeGI,14961
|
|
128
|
-
invenio_previewer/translations/gl/LC_MESSAGES/messages.mo,sha256=lYZi8HO3d1K98hzDezfNxzlkt0gQDLepIDpmKQssGvg,518
|
|
129
|
-
invenio_previewer/translations/gl/LC_MESSAGES/messages.po,sha256=BRcOmolB3ITOwldcWlxvBvVC1dRMsUgDCtaowKfkliM,14897
|
|
130
|
-
invenio_previewer/translations/hi_IN/LC_MESSAGES/messages.mo,sha256=U3Gd6ECB_gDCVGDyWYP1RkTEzkN0vDP_5iBrGkTmSU0,529
|
|
131
|
-
invenio_previewer/translations/hi_IN/LC_MESSAGES/messages.po,sha256=Zv6rWXH1uHZhD31afPjTMlxQU1_eDf4u9AwoZkBH7ZY,14908
|
|
132
106
|
invenio_previewer/translations/hr/LC_MESSAGES/messages.mo,sha256=ukFf0n_62WGvUIqlkau-56FYSDzlb5OO6t8x3qkpyko,877
|
|
133
107
|
invenio_previewer/translations/hr/LC_MESSAGES/messages.po,sha256=HKwLoramF5tG4VVSd2XRb_ZGnmVK8DejwIecpcKeRqI,15151
|
|
134
108
|
invenio_previewer/translations/hu/LC_MESSAGES/messages.mo,sha256=xqx6UFIdV52KenTg4vHdT5eFaCSZZiOt7d577U9TVsY,3676
|
|
135
109
|
invenio_previewer/translations/hu/LC_MESSAGES/messages.po,sha256=ClTAe3K9PYparkQhQGB0d1XGBSAlEHlBhMUnhLRkBAI,16167
|
|
136
|
-
invenio_previewer/translations/hu_HU/LC_MESSAGES/messages.mo,sha256=8dAfauYa6K8qC5vXdoJ1EELb-gcg2kT-cpxep2rHRh4,535
|
|
137
|
-
invenio_previewer/translations/hu_HU/LC_MESSAGES/messages.po,sha256=Y0gPfvXasSN4z0IRslWjjpR59iVaRB8BijDFRH8NT3U,14914
|
|
138
110
|
invenio_previewer/translations/it/LC_MESSAGES/messages.mo,sha256=JL01es3NjBxwy328hWuYj3r97Ud0d2ChhQ2qHez_yLw,1348
|
|
139
111
|
invenio_previewer/translations/it/LC_MESSAGES/messages.po,sha256=jzIQbW0LP6_-2FhZrBZuwIQ3fsmpXEcWaCHE4htRd4E,15387
|
|
140
112
|
invenio_previewer/translations/ja/LC_MESSAGES/messages.mo,sha256=PKiUb5wfjzczC2iNGSYRIlqZloslZDn_CX_VrnYFTuw,806
|
|
@@ -143,8 +115,6 @@ invenio_previewer/translations/ka/LC_MESSAGES/messages.mo,sha256=8do9QO_bOjKTYxK
|
|
|
143
115
|
invenio_previewer/translations/ka/LC_MESSAGES/messages.po,sha256=3e5C0ldpwr-bzceASAXbD-POqzMW_gFUzXXjUZb8Oig,15217
|
|
144
116
|
invenio_previewer/translations/lt/LC_MESSAGES/messages.mo,sha256=BOdCuwoWytt584XTd-jOBIi_UiiHNzogpG9MVq3biYo,989
|
|
145
117
|
invenio_previewer/translations/lt/LC_MESSAGES/messages.po,sha256=ZeQRvlJ8XsIiehjuSbcqfA1xkNDui5TxQmSYY7aiqUg,15237
|
|
146
|
-
invenio_previewer/translations/ne/LC_MESSAGES/messages.mo,sha256=2BgmteBXNR8bOZD9E2RlFc0qxwR8xH7F2aYh8DoUxAI,516
|
|
147
|
-
invenio_previewer/translations/ne/LC_MESSAGES/messages.po,sha256=SkV13weDBlVZIlF0F-VtYpPs-LypT2owHPfDtG_xgeA,14895
|
|
148
118
|
invenio_previewer/translations/no/LC_MESSAGES/messages.mo,sha256=GPKlOd3vynq94u5deec9L-oyb4KHnopB3BJWlEViZV8,796
|
|
149
119
|
invenio_previewer/translations/no/LC_MESSAGES/messages.po,sha256=Hnc0b8YwF68XaDROXMPNhBWqiwph93xRi0Ly6hT-mys,15070
|
|
150
120
|
invenio_previewer/translations/pl/LC_MESSAGES/messages.mo,sha256=6jbxIQ6SUrndVXLrOyImDuFmc6IqAHCTG1K-vbxOasg,945
|
|
@@ -155,28 +125,22 @@ invenio_previewer/translations/ro/LC_MESSAGES/messages.mo,sha256=Gp5QFx4YOWAbMI-
|
|
|
155
125
|
invenio_previewer/translations/ro/LC_MESSAGES/messages.po,sha256=hXNArjuLeEn3sDKYwIaEDWdFqcDqFgT51t_f0CWOiVc,15102
|
|
156
126
|
invenio_previewer/translations/ru/LC_MESSAGES/messages.mo,sha256=XEThYSo2m0ySjVppLsxdC7OaDFZQNAEk9LSpuA2bMkA,1044
|
|
157
127
|
invenio_previewer/translations/ru/LC_MESSAGES/messages.po,sha256=8Es5_St5s0_yCgbGKaAB0y_eHHZ0YpLFn952aBZmllQ,15292
|
|
158
|
-
invenio_previewer/translations/rw/LC_MESSAGES/messages.mo,sha256=-JNQ_bpfJK5WzgKW9JrB1X1W0C6LCvvqRRYX0iJvrIs,521
|
|
159
|
-
invenio_previewer/translations/rw/LC_MESSAGES/messages.po,sha256=YOPsbAtgVfYWWWU6Q1JZWZz3-0WqUv4XePtrn40iTiM,14900
|
|
160
128
|
invenio_previewer/translations/sk/LC_MESSAGES/messages.mo,sha256=KsroBPVM2G0Vuo20dce6w65nFle5ZYKM4s_T8_UszwE,1354
|
|
161
129
|
invenio_previewer/translations/sk/LC_MESSAGES/messages.po,sha256=dnYoM0gJn40JW9kDPatlEbw2KQByjt30799wbMH4yLs,15377
|
|
162
130
|
invenio_previewer/translations/sv/LC_MESSAGES/messages.mo,sha256=hIxcNg5WJK_wOWiHFPUn0LcdvMMfxM9BbI0MJe4Wl-A,3505
|
|
163
131
|
invenio_previewer/translations/sv/LC_MESSAGES/messages.po,sha256=Aahq8wODfycC6XRgpBaRB_i49eemNdtPyC9Qgukooeo,16022
|
|
164
|
-
invenio_previewer/translations/sv_SE/LC_MESSAGES/messages.mo,sha256=ExZd2sAavybvFjZXkfumgyjVl06DCiEET5xNOmPV_0s,532
|
|
165
|
-
invenio_previewer/translations/sv_SE/LC_MESSAGES/messages.po,sha256=AYqIm-vLE8xzRI-a2IxsDlmrL1Y3IkYtQZnFpJSsyDU,14911
|
|
166
132
|
invenio_previewer/translations/tr/LC_MESSAGES/messages.mo,sha256=lANaiZGGPqmURqmfCioj4fRD3KvAVzeykGAePD7rPMs,3560
|
|
167
133
|
invenio_previewer/translations/tr/LC_MESSAGES/messages.po,sha256=wEC-Qh9SakirUUcWfJq27QjW0puO5NIV83ctezdck3I,16178
|
|
168
134
|
invenio_previewer/translations/uk/LC_MESSAGES/messages.mo,sha256=lNtTVY_UgVsZNG8u3xCUhl9klcFcVqqSLH6vUl6Vbbk,1014
|
|
169
135
|
invenio_previewer/translations/uk/LC_MESSAGES/messages.po,sha256=_S58pKy5VVygRKEODyXzlUQ767JqckpGVwu0kq-Hur8,15362
|
|
170
|
-
invenio_previewer/translations/uk_UA/LC_MESSAGES/messages.mo,sha256=uV9tnZYmnRL1L2W1NKHhaqF0KS66oPM5YRAf_b-H3_Y,757
|
|
171
|
-
invenio_previewer/translations/uk_UA/LC_MESSAGES/messages.po,sha256=6yX5NczgwJZA156VEBQSV4s1cnF59UUVBkpc-PPObLc,15136
|
|
172
136
|
invenio_previewer/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=hiVTEaElw0jzO1KO1x8_GgvGtyTSS88bACkdHRHh-lA,3266
|
|
173
137
|
invenio_previewer/translations/zh_CN/LC_MESSAGES/messages.po,sha256=cydpBaq8ZWyzfJKyMVfy4lIKQARgiFagQSPZUm3aW84,15823
|
|
174
138
|
invenio_previewer/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=4BZB_i1VPruCzPUcsT8QKa25_faOs1BWVqeyKzTVSWw,807
|
|
175
139
|
invenio_previewer/translations/zh_TW/LC_MESSAGES/messages.po,sha256=hkH71j8aDucFWEObK0lt1klLayhaz7yOoNYh8ia-TS8,15081
|
|
176
|
-
invenio_previewer-3.0.
|
|
177
|
-
invenio_previewer-3.0.
|
|
178
|
-
invenio_previewer-3.0.
|
|
179
|
-
invenio_previewer-3.0.
|
|
180
|
-
invenio_previewer-3.0.
|
|
181
|
-
invenio_previewer-3.0.
|
|
182
|
-
invenio_previewer-3.0.
|
|
140
|
+
invenio_previewer-3.1.0.dist-info/licenses/AUTHORS.rst,sha256=wcFhv9iJlZPq0MkvNHDVBEn5iXZGsVfC32yjS2jW9CQ,486
|
|
141
|
+
invenio_previewer-3.1.0.dist-info/licenses/LICENSE,sha256=p3bBZtg1gwhzibgFe4OuiiUStzewJS5TD6MC5Vu1uSM,1067
|
|
142
|
+
invenio_previewer-3.1.0.dist-info/METADATA,sha256=fzLo0Eh4IXKDofD-YEJ6s_zzpQJblvCMvIDymFnnuhQ,7473
|
|
143
|
+
invenio_previewer-3.1.0.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
144
|
+
invenio_previewer-3.1.0.dist-info/entry_points.txt,sha256=v36lyQz7K5abiAIPiAVDNDQ85xTn6in4-ywRmPI0m34,861
|
|
145
|
+
invenio_previewer-3.1.0.dist-info/top_level.txt,sha256=BwA4Jo3Wv0rLjDkEuCEIR2W-lz1EXRc7h9jzDwaMK3o,18
|
|
146
|
+
invenio_previewer-3.1.0.dist-info/RECORD,,
|
|
Binary file
|