imio.smartweb.common 1.2.8__py3-none-any.whl → 1.2.13__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.
- imio/smartweb/common/behaviors/topics.py +2 -2
- imio/smartweb/common/browser/collective_taxonomy_controlpanel.py +63 -0
- imio/smartweb/common/browser/configure.zcml +16 -0
- imio/smartweb/common/browser/static/smartweb-common-view-compiled.css +1 -1
- imio/smartweb/common/browser/static/src/view.less +9 -2
- imio/smartweb/common/browser/vocabulary.py +26 -0
- imio/smartweb/common/interfaces.py +2 -1
- imio/smartweb/common/profiles/default/metadata.xml +1 -1
- imio/smartweb/common/profiles/default/registry.xml +10 -4
- imio/smartweb/common/profiles/testing/catalog.xml +9 -0
- imio/smartweb/common/profiles/testing/metadata.xml +1 -0
- imio/smartweb/common/profiles/testing/types/Document.xml +1 -0
- imio/smartweb/common/rest/odwb.py +67 -0
- imio/smartweb/common/rest/search_filters.py +19 -7
- imio/smartweb/common/testing.py +1 -1
- imio/smartweb/common/testing.zcml +8 -0
- imio/smartweb/common/tests/test_rest.py +38 -0
- imio/smartweb/common/tests/test_taxonomy.py +140 -0
- imio/smartweb/common/tests/test_vocabulary.py +45 -0
- imio/smartweb/common/upgrades/configure.zcml +44 -0
- imio/smartweb/common/upgrades/profiles/1027_to_1028/restored-faceted-jquery.xml +7 -0
- imio/smartweb/common/upgrades/profiles/1028_to_1029/registry.xml +15 -0
- imio/smartweb/common/upgrades/upgrades.py +7 -0
- imio/smartweb/common/utils.py +37 -0
- imio/smartweb/common/viewlets/skip_to_content.pt +6 -0
- {imio.smartweb.common-1.2.8.dist-info → imio.smartweb.common-1.2.13.dist-info}/METADATA +56 -4
- {imio.smartweb.common-1.2.8.dist-info → imio.smartweb.common-1.2.13.dist-info}/RECORD +33 -25
- {imio.smartweb.common-1.2.8.dist-info → imio.smartweb.common-1.2.13.dist-info}/WHEEL +1 -1
- imio/smartweb/common/browser/static/patched.web3862.eea.faceted-jquery.min.js +0 -2
- /imio.smartweb.common-1.2.8-py3.8-nspkg.pth → /imio.smartweb.common-1.2.13-py3.10-nspkg.pth +0 -0
- {imio.smartweb.common-1.2.8.dist-info → imio.smartweb.common-1.2.13.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.common-1.2.8.dist-info → imio.smartweb.common-1.2.13.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.common-1.2.8.dist-info → imio.smartweb.common-1.2.13.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.common-1.2.8.dist-info → imio.smartweb.common-1.2.13.dist-info}/top_level.txt +0 -0
|
@@ -116,6 +116,22 @@
|
|
|
116
116
|
provides="Products.GenericSetup.interfaces.EXTENSION"
|
|
117
117
|
/>
|
|
118
118
|
|
|
119
|
+
<genericsetup:registerProfile
|
|
120
|
+
name="upgrade_1027_to_1028"
|
|
121
|
+
title="Upgrade common from 1027 to 1028"
|
|
122
|
+
directory="profiles/1027_to_1028"
|
|
123
|
+
description="Unpatch (restore original) eea.facetednavigation jquery"
|
|
124
|
+
provides="Products.GenericSetup.interfaces.EXTENSION"
|
|
125
|
+
/>
|
|
126
|
+
|
|
127
|
+
<genericsetup:registerProfile
|
|
128
|
+
name="upgrade_1028_to_1029"
|
|
129
|
+
title="Upgrade common from 1028 to 1029"
|
|
130
|
+
directory="profiles/1028_to_1029"
|
|
131
|
+
description="Cover use case for sending data in odwb for a staging environment"
|
|
132
|
+
provides="Products.GenericSetup.interfaces.EXTENSION"
|
|
133
|
+
/>
|
|
134
|
+
|
|
119
135
|
<genericsetup:upgradeStep
|
|
120
136
|
title="Configure first official release"
|
|
121
137
|
description="Run needed registry step"
|
|
@@ -376,4 +392,32 @@
|
|
|
376
392
|
/>
|
|
377
393
|
</genericsetup:upgradeSteps>
|
|
378
394
|
|
|
395
|
+
<genericsetup:upgradeStep
|
|
396
|
+
title="Reindex SolR"
|
|
397
|
+
source="1026"
|
|
398
|
+
destination="1027"
|
|
399
|
+
handler=".upgrades.reindex_solr"
|
|
400
|
+
profile="imio.smartweb.common:default"
|
|
401
|
+
/>
|
|
402
|
+
|
|
403
|
+
<genericsetup:upgradeSteps
|
|
404
|
+
source="1027"
|
|
405
|
+
destination="1028"
|
|
406
|
+
profile="imio.smartweb.common:default">
|
|
407
|
+
<genericsetup:upgradeDepends
|
|
408
|
+
title="Unpatch (restore original) eea.facetednavigation jquery"
|
|
409
|
+
import_profile="imio.smartweb.common.upgrades:upgrade_1027_to_1028"
|
|
410
|
+
/>
|
|
411
|
+
</genericsetup:upgradeSteps>
|
|
412
|
+
|
|
413
|
+
<genericsetup:upgradeSteps
|
|
414
|
+
source="1028"
|
|
415
|
+
destination="1029"
|
|
416
|
+
profile="imio.smartweb.common:default">
|
|
417
|
+
<genericsetup:upgradeDepends
|
|
418
|
+
title="Cover use case for sending data in odwb for a staging environment"
|
|
419
|
+
import_profile="imio.smartweb.common.upgrades:upgrade_1028_to_1029"
|
|
420
|
+
/>
|
|
421
|
+
</genericsetup:upgradeSteps>
|
|
422
|
+
|
|
379
423
|
</configure>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<registry
|
|
3
|
+
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
|
4
|
+
i18n:domain="imio.smartweb">
|
|
5
|
+
|
|
6
|
+
<record name="imio.smartweb.common.activate_sending_data_to_odwb_for_staging">
|
|
7
|
+
<field type="plone.registry.field.Bool">
|
|
8
|
+
<title>Activate sending data to odwb for staging</title>
|
|
9
|
+
<description>Be careful, it must be existing an odwb table prefixing with staging and naming like prod table. Also, smartweb registry keys (odwb pushkey) must be respect.</description>
|
|
10
|
+
<required>False</required>
|
|
11
|
+
</field>
|
|
12
|
+
<value>False</value>
|
|
13
|
+
</record>
|
|
14
|
+
|
|
15
|
+
</registry>
|
|
@@ -146,3 +146,10 @@ def set_effective_date_equal_to_created_date(context):
|
|
|
146
146
|
obj = brain.getObject()
|
|
147
147
|
obj.setEffectiveDate(obj.created())
|
|
148
148
|
obj.reindexObject(idxs=["effective"])
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
def reindex_solr(context):
|
|
152
|
+
portal = api.portal.get()
|
|
153
|
+
maintenance = portal.unrestrictedTraverse("@@solr-maintenance")
|
|
154
|
+
maintenance.clear()
|
|
155
|
+
maintenance.reindex()
|
imio/smartweb/common/utils.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
|
|
3
|
+
from Acquisition import aq_parent
|
|
3
4
|
from imio.smartweb.common.config import TRANSLATED_VOCABULARIES
|
|
4
5
|
from imio.smartweb.common.interfaces import ICropping
|
|
5
6
|
from imio.smartweb.locales import SmartwebMessageFactory as _
|
|
@@ -9,6 +10,7 @@ from plone.dexterity.utils import iterSchemata
|
|
|
9
10
|
from plone.formwidget.geolocation.geolocation import Geolocation
|
|
10
11
|
from plone.namedfile.field import NamedBlobImage
|
|
11
12
|
from plone.namedfile.interfaces import IAvailableSizes
|
|
13
|
+
from urllib.parse import urlparse
|
|
12
14
|
from zope.component import getUtility
|
|
13
15
|
from zope.i18n import translate
|
|
14
16
|
from zope.schema import getFields
|
|
@@ -168,3 +170,38 @@ def clean_invisible_char(value):
|
|
|
168
170
|
|
|
169
171
|
def is_log_active():
|
|
170
172
|
return api.portal.get_registry_record("imio.smartweb.common.log", default=False)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
# todo: create staging/prod env var. instead of using parsed_url
|
|
176
|
+
def is_staging_or_local():
|
|
177
|
+
portal = api.portal.get()
|
|
178
|
+
portal_url = portal.absolute_url()
|
|
179
|
+
parsed_url = urlparse(portal_url)
|
|
180
|
+
scheme = parsed_url.scheme
|
|
181
|
+
netloc = parsed_url.netloc
|
|
182
|
+
elem = ["localhost", "127.0.0.1"]
|
|
183
|
+
pattern = "|".join(map(re.escape, elem))
|
|
184
|
+
if scheme == "http" and re.search(pattern, netloc):
|
|
185
|
+
return True
|
|
186
|
+
elif scheme == "https" and "staging" in netloc:
|
|
187
|
+
if activate_sending_data_to_odwb_for_staging() is True:
|
|
188
|
+
return False
|
|
189
|
+
return True
|
|
190
|
+
else:
|
|
191
|
+
return False
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
def activate_sending_data_to_odwb_for_staging():
|
|
195
|
+
return api.portal.get_registry_record(
|
|
196
|
+
"imio.smartweb.common.activate_sending_data_to_odwb_for_staging", default=False
|
|
197
|
+
)
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
def get_parent_of_type(context, content_type):
|
|
201
|
+
# Traverse up the hierarchy until we find an object with the specified content type
|
|
202
|
+
parent = context
|
|
203
|
+
while parent is not None:
|
|
204
|
+
if getattr(parent, "portal_type", None) == content_type:
|
|
205
|
+
return parent
|
|
206
|
+
parent = aq_parent(parent)
|
|
207
|
+
return None
|
|
@@ -3,3 +3,9 @@
|
|
|
3
3
|
tal:attributes="href string:${url}#content"
|
|
4
4
|
i18n:domain="smartweb"
|
|
5
5
|
i18n:translate="">Skip to content</a>
|
|
6
|
+
|
|
7
|
+
<a class="show-on-focus"
|
|
8
|
+
tal:define="url view/current_page_url"
|
|
9
|
+
tal:attributes="href string:${url}#portal-footer-wrapper"
|
|
10
|
+
i18n:domain="smartweb"
|
|
11
|
+
i18n:translate="">Skip to footer</a>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: imio.smartweb.common
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.13
|
|
4
4
|
Summary: Common utilities, vocabularies, taxonomies for imio.smartweb & co products
|
|
5
5
|
Home-page: https://github.com/imio/imio.smartweb.common
|
|
6
6
|
Author: iMio
|
|
@@ -28,8 +28,8 @@ Requires-Dist: z3c.jbot
|
|
|
28
28
|
Requires-Dist: z3c.unconfigure
|
|
29
29
|
Requires-Dist: beautifulsoup4
|
|
30
30
|
Requires-Dist: geopy
|
|
31
|
-
Requires-Dist: Products.GenericSetup >=1.8.2
|
|
32
|
-
Requires-Dist: plone.api >=1.8.4
|
|
31
|
+
Requires-Dist: Products.GenericSetup (>=1.8.2)
|
|
32
|
+
Requires-Dist: plone.api (>=1.8.4)
|
|
33
33
|
Requires-Dist: plone.restapi
|
|
34
34
|
Requires-Dist: plone.app.dexterity
|
|
35
35
|
Requires-Dist: plone.app.imagecropping
|
|
@@ -39,12 +39,13 @@ Requires-Dist: plone.schema
|
|
|
39
39
|
Requires-Dist: eea.facetednavigation
|
|
40
40
|
Requires-Dist: imio.gdpr
|
|
41
41
|
Requires-Dist: collective.privacy
|
|
42
|
+
Requires-Dist: collective.taxonomy
|
|
42
43
|
Requires-Dist: iaweb.privacy
|
|
43
44
|
Requires-Dist: imio.smartweb.locales
|
|
44
45
|
Requires-Dist: more-itertools
|
|
45
46
|
Provides-Extra: test
|
|
46
47
|
Requires-Dist: plone.app.testing ; extra == 'test'
|
|
47
|
-
Requires-Dist: plone.testing >=5.0.0 ; extra == 'test'
|
|
48
|
+
Requires-Dist: plone.testing (>=5.0.0) ; extra == 'test'
|
|
48
49
|
Requires-Dist: plone.app.robotframework[debug] ; extra == 'test'
|
|
49
50
|
Requires-Dist: plone.restapi[test] ; extra == 'test'
|
|
50
51
|
Requires-Dist: freezegun ; extra == 'test'
|
|
@@ -160,6 +161,57 @@ Changelog
|
|
|
160
161
|
=========
|
|
161
162
|
|
|
162
163
|
|
|
164
|
+
1.2.13 (2024-05-24)
|
|
165
|
+
-------------------
|
|
166
|
+
|
|
167
|
+
- WEB-4088 : Cover use case for sending data in odwb for a staging environment
|
|
168
|
+
[boulch]
|
|
169
|
+
|
|
170
|
+
- Ensure translation of vocabularies when used with `AjaxSelectFieldWidget`
|
|
171
|
+
[laulaz]
|
|
172
|
+
|
|
173
|
+
- Remove useless `container_uid` from `search-filters` results
|
|
174
|
+
[laulaz]
|
|
175
|
+
|
|
176
|
+
- WEB-3864 : Ensure that a taxonomy term that is deleted is not used anywhere
|
|
177
|
+
[boulch]
|
|
178
|
+
|
|
179
|
+
- WEB-3862 : Unpatch (restore original) eea.facetednavigation jquery
|
|
180
|
+
[laulaz]
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
1.2.12 (2024-05-06)
|
|
184
|
+
-------------------
|
|
185
|
+
|
|
186
|
+
- WEB-4102 : Add second skip to footer
|
|
187
|
+
[thomlamb]
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
1.2.11 (2024-05-02)
|
|
191
|
+
-------------------
|
|
192
|
+
|
|
193
|
+
- WEB-4101 : Fix vocabulary terms translation (for Topics only - for the moment)
|
|
194
|
+
when used with `AjaxSelectFieldWidget`
|
|
195
|
+
[laulaz]
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
1.2.10 (2024-05-02)
|
|
199
|
+
-------------------
|
|
200
|
+
|
|
201
|
+
- WEB-4101 : Change Topics field widget to keep value ordering
|
|
202
|
+
[laulaz]
|
|
203
|
+
|
|
204
|
+
- WEB-4088 : Implement some odwb utils and generic classes
|
|
205
|
+
[boulch]
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
1.2.9 (2024-02-08)
|
|
209
|
+
------------------
|
|
210
|
+
|
|
211
|
+
- WEB-4064 : Reindex SolR because of changes in schema
|
|
212
|
+
[remdub]
|
|
213
|
+
|
|
214
|
+
|
|
163
215
|
1.2.8 (2024-02-02)
|
|
164
216
|
------------------
|
|
165
217
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
imio.smartweb.common-1.2.
|
|
1
|
+
imio.smartweb.common-1.2.13-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
|
|
2
2
|
imio/smartweb/common/__init__.py,sha256=Na9XBfEQUMrm2c5jbqQgwWeg40ih0aXVG1vT8NeAjMQ,2709
|
|
3
3
|
imio/smartweb/common/adapters.py,sha256=rLlObjqZm3hs2hgUT-LmJytwhT-E1rTvbpIi0mmKQqY,610
|
|
4
4
|
imio/smartweb/common/adapters.zcml,sha256=ndYNj0J_BFfVpX_7JhY2asSwLzXG-WmjLdfwL9hX_No,254
|
|
@@ -8,7 +8,7 @@ imio/smartweb/common/configure.zcml,sha256=dV786oK6WMy9044vJz_iupiD-N5ogYJR5kvMX
|
|
|
8
8
|
imio/smartweb/common/contact_utils.py,sha256=Pr-Nhz9MRnfirZ7RbmF5JZw9fX4gWa0dWkvJlQBiDKY,11341
|
|
9
9
|
imio/smartweb/common/indexers.py,sha256=TvvKglWI0JM5_jwetlpvqcjwkid_2PhaCZGKZV4sD34,1148
|
|
10
10
|
imio/smartweb/common/indexers.zcml,sha256=End1fDod99sr0xw8PaakgeTAZYq-HLOGw3MNA8K_CTs,324
|
|
11
|
-
imio/smartweb/common/interfaces.py,sha256=
|
|
11
|
+
imio/smartweb/common/interfaces.py,sha256=mpPvvAUulZw32jdfdxXCqXhQfR8361-RM_RphNpr_fc,1489
|
|
12
12
|
imio/smartweb/common/permissions.zcml,sha256=9BGNZ62fAdn6nTJkITcmhwEJA48UT7q9vOLHZqiuRzQ,260
|
|
13
13
|
imio/smartweb/common/privacy.py,sha256=ePuR-c-w7AmXSWA6czpfFK-wYNdoCm5yzEUKNSFKDW8,3476
|
|
14
14
|
imio/smartweb/common/privacy.zcml,sha256=KHC4JJt-9MbPcHHukN7QLwpMFXj96gXb0-vzU2ZboGk,1772
|
|
@@ -16,21 +16,24 @@ imio/smartweb/common/profiles.zcml,sha256=EJoh-_QIN8ozCsPiEnx2mBmqC0vLrL7KF69PD9
|
|
|
16
16
|
imio/smartweb/common/setuphandlers.py,sha256=ejKHdgROXjmDM7dgoAh9sITiAJDfQGNxTEOO5JaSEaE,1053
|
|
17
17
|
imio/smartweb/common/subscribers.py,sha256=GHG_PIqsNV7K-pr_cXceQx1WCXylvQiv1lCgSGNJIno,2608
|
|
18
18
|
imio/smartweb/common/subscribers.zcml,sha256=WZNhGtbTux2DoWHhLCQd1uJY27VhVLsibf0bdsclHOU,860
|
|
19
|
-
imio/smartweb/common/testing.py,sha256=
|
|
20
|
-
imio/smartweb/common/
|
|
19
|
+
imio/smartweb/common/testing.py,sha256=GKlYMHJUSxZFVX0o_R_c_Au1VYlkd-GjykQqfONHv7I,1985
|
|
20
|
+
imio/smartweb/common/testing.zcml,sha256=7N-ALtklyWeLSzZmlxN2Tp-aZe_3An--w_6BGl1991E,172
|
|
21
|
+
imio/smartweb/common/utils.py,sha256=jzNLR41JVehAxqqQV2WaUiYkB1V6xpMpPGE-G3JJ7Pc,7041
|
|
21
22
|
imio/smartweb/common/vocabularies.py,sha256=QRIOWLOALzZDM92o1iUTWgDBBcrdd9BYz7miNjpYCDA,3835
|
|
22
23
|
imio/smartweb/common/vocabularies.zcml,sha256=iFJer5q3wabBp_EZivPPVUqI1_9w5P_Ft1RGJB5Yqxs,940
|
|
23
24
|
imio/smartweb/common/behaviors/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
|
|
24
25
|
imio/smartweb/common/behaviors/configure.zcml,sha256=RfGH8DIybHpxxe2HUsjH2QKSiWYpV7lCZhGN6KLFwCw,531
|
|
25
26
|
imio/smartweb/common/behaviors/iam.py,sha256=17ON7M6FHXOM_8NOHT_QnJJuAIs4diWCrguHP6Lh5oA,825
|
|
26
|
-
imio/smartweb/common/behaviors/topics.py,sha256=
|
|
27
|
+
imio/smartweb/common/behaviors/topics.py,sha256=mguoFXN5XjcGXvA5HeV_l7-gJ5eR0hfjN1nbXYogcWw,832
|
|
27
28
|
imio/smartweb/common/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
imio/smartweb/common/browser/
|
|
29
|
+
imio/smartweb/common/browser/collective_taxonomy_controlpanel.py,sha256=2bFcXpsA1SVfabPHlS65dtapMxNrcXNRhJv0Om_RCk8,2805
|
|
30
|
+
imio/smartweb/common/browser/configure.zcml,sha256=1cDR2cy7O6WX33cFmbJU971wxg22LkLJYiMKCmBTWrA,3177
|
|
29
31
|
imio/smartweb/common/browser/cropping.py,sha256=uB0UiCUVMD1YT4a1rBmRzmhtnbatrPAXZztkSypiE6s,2676
|
|
30
32
|
imio/smartweb/common/browser/description.pt,sha256=ZXKpsMQDJGC0dxVUg5v1W6LsG1_OWuYuWevZuF-Zn2Y,151
|
|
31
33
|
imio/smartweb/common/browser/description.py,sha256=BRpHkVzwyeM-SUzkEbtHn2fm8pQREtcHIW7feoQlBPQ,517
|
|
32
34
|
imio/smartweb/common/browser/forms.py,sha256=UK72J9cEadVU4DqQ3OHqv2Jo_Qff9iFSoRv2gsWpZps,4168
|
|
33
35
|
imio/smartweb/common/browser/scaling.py,sha256=aBmuMyzy2s_5PCfkyvxJiARHowpck1BOva8RKEJSVso,297
|
|
36
|
+
imio/smartweb/common/browser/vocabulary.py,sha256=5zdb_aqPsBqMJnOAFcrCYoa2Gi03bOjhxY8kC6ITr10,908
|
|
34
37
|
imio/smartweb/common/browser/overrides/plone.app.z3cform.templates.widget.pt,sha256=5ODz0fk4QW4docMHdVzHDst2OkFQZBy5RAifU4pR3EM,1818
|
|
35
38
|
imio/smartweb/common/browser/privacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
39
|
imio/smartweb/common/browser/privacy/configure.zcml,sha256=ScQ2BDN_1odUy-eHfitaRg6XFQE6u4C_vq4iUBTb7Gg,1062
|
|
@@ -39,16 +42,15 @@ imio/smartweb/common/browser/privacy/utils.py,sha256=sjjKUWb09Wgi6XeMj5d9qC93iCT
|
|
|
39
42
|
imio/smartweb/common/browser/privacy/views.py,sha256=RITfvlYcWG43Zssy46q3Izt-fDYKrUrnhD1A_-zBYqQ,1815
|
|
40
43
|
imio/smartweb/common/browser/static/Makefile,sha256=LtPs80oJtQ7OWohNU9C60gRVBfN3p0N8ki158FKU7pg,351
|
|
41
44
|
imio/smartweb/common/browser/static/package.json,sha256=lGQOfiOS0-p0SBh2rnNkZKiZToIKNGviruLr3sFUfV8,755
|
|
42
|
-
imio/smartweb/common/browser/static/patched.web3862.eea.faceted-jquery.min.js,sha256=BynBPVZuDk9kVOR9oN3bLlDAR7B83bSm8sdnZX7c5jY,403548
|
|
43
45
|
imio/smartweb/common/browser/static/smartweb-common-edit-compiled.css,sha256=lIhk5Rmzye_1VvgHobUbI8M1Dx4KCsraBvseEg1eAKA,397
|
|
44
46
|
imio/smartweb/common/browser/static/smartweb-common-edit-compiled.js,sha256=iHDTpF2oo2wJmkbP0mVRFxBZfpqPgVCp9POyBG5aOs0,804
|
|
45
|
-
imio/smartweb/common/browser/static/smartweb-common-view-compiled.css,sha256=
|
|
47
|
+
imio/smartweb/common/browser/static/smartweb-common-view-compiled.css,sha256=2ApU7ORyWPWUaylmnb-_JPVZyWNMGJsQFtaCcnuX-pY,1040
|
|
46
48
|
imio/smartweb/common/browser/static/smartweb-common-view-compiled.js,sha256=7k8nElVDeNKuGC3G6wfN8KxMSlO-x1fEML7vs6l1LmA,1134
|
|
47
49
|
imio/smartweb/common/browser/static/webpack.config.js,sha256=cb2bWO9Qd0IQX5kBsc8ynEbsDJCB5yPkagdAMEd6jvw,1045
|
|
48
50
|
imio/smartweb/common/browser/static/src/edit.js,sha256=vmgtg9voaSw6nPcVNmkBqiuCnsrV-W352fSNZzxfDeU,1380
|
|
49
51
|
imio/smartweb/common/browser/static/src/edit.less,sha256=S1LTB9C-v2X6e--GdyT6RCL05rtTN-viggfD0sjX9nE,402
|
|
50
52
|
imio/smartweb/common/browser/static/src/view.js,sha256=CspnXPDZ8eo37Mse0Hk_NbVuXNRBrts3LOM4492z7-U,2045
|
|
51
|
-
imio/smartweb/common/browser/static/src/view.less,sha256=
|
|
53
|
+
imio/smartweb/common/browser/static/src/view.less,sha256=6JV71CZtvZNaFhg6lIm2hwtfijxErsqb0ZyNPc3XIYs,1542
|
|
52
54
|
imio/smartweb/common/faceted/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
55
|
imio/smartweb/common/faceted/configure.zcml,sha256=xSwfB8tW49FndBuQkOJeVRnfEmx5yIaBHl7G3kGOBrU,236
|
|
54
56
|
imio/smartweb/common/faceted/utils.py,sha256=H0Z7oOMUUZYhwCtlYdtIOCvT4iDcEBQVuiNn8yTyEgA,642
|
|
@@ -57,18 +59,20 @@ imio/smartweb/common/faceted/widget.py,sha256=EMvFyEcS9t6lJAgz4zIkUnGAPd1fQcrv4A
|
|
|
57
59
|
imio/smartweb/common/profiles/default/actions.xml,sha256=q5ajChGAPlPtpN_H80voDgg4C8Z-yDcIghUJIgFYtRg,1193
|
|
58
60
|
imio/smartweb/common/profiles/default/browserlayer.xml,sha256=Up2dVOgFtzE43eLMNJY1xXvdUbQRSEpNxnySqSncFqQ,185
|
|
59
61
|
imio/smartweb/common/profiles/default/catalog.xml,sha256=hB2Cu64TPp29EKICqbfixwa3AFmrDJVC784KeKTMX90,576
|
|
60
|
-
imio/smartweb/common/profiles/default/metadata.xml,sha256=
|
|
61
|
-
imio/smartweb/common/profiles/default/registry.xml,sha256=
|
|
62
|
+
imio/smartweb/common/profiles/default/metadata.xml,sha256=TsLMi4LZfuk3FnM6rTRTqk-GQvpq6FirlbyFT5ykrtc,432
|
|
63
|
+
imio/smartweb/common/profiles/default/registry.xml,sha256=2QtF0fDOdiYbkGLrxW710g-8FnfrNsby9FJGsfdygZk,46853
|
|
62
64
|
imio/smartweb/common/profiles/default/rolemap.xml,sha256=XCdOazRleiwTAAZt3lzTsOw3ZtIwoPDqA8s4zXACvkc,1595
|
|
63
|
-
imio/smartweb/common/profiles/testing/
|
|
65
|
+
imio/smartweb/common/profiles/testing/catalog.xml,sha256=CzEXLuHkT5NH-lRzTSDIR_3y_U7t2D7oBDm1oAJIoP4,214
|
|
66
|
+
imio/smartweb/common/profiles/testing/metadata.xml,sha256=hPZnje-9ffhOiQfVamGoE_lOf9ISjBBf2ynQlg-Hv20,229
|
|
64
67
|
imio/smartweb/common/profiles/testing/registry.xml,sha256=8lTQSGT_bnP2Z0y-86ztgpdQY8yDOLoXgqTC7fXiD2Y,1010
|
|
65
68
|
imio/smartweb/common/profiles/testing/types/Collection.xml,sha256=BiyfewQiRV0Zz9iL7ARdcXFxwn7GRs8L9reyYFbFMn4,229
|
|
66
|
-
imio/smartweb/common/profiles/testing/types/Document.xml,sha256=
|
|
69
|
+
imio/smartweb/common/profiles/testing/types/Document.xml,sha256=E3hhW_oL-WarUKcYsHT68PFS8Wzyl4_R_L2z60x3nm8,418
|
|
67
70
|
imio/smartweb/common/profiles/testing/types/Folder.xml,sha256=RPxIPgViAK0GGGTPKbdlw53sywyQXPhVj6B8x0tYSD8,312
|
|
68
71
|
imio/smartweb/common/profiles/uninstall/browserlayer.xml,sha256=glaCGlITwc36-1Fi2z0VCbLcoQ5GddkAhuW-SGYeZy8,130
|
|
69
72
|
imio/smartweb/common/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
73
|
imio/smartweb/common/rest/configure.zcml,sha256=8hQGCvo1EMGFe9cNUpGOcH7spKhUkglFRnRkd9IJ2eE,301
|
|
71
|
-
imio/smartweb/common/rest/
|
|
74
|
+
imio/smartweb/common/rest/odwb.py,sha256=36g6Hs_i6FfliKWA63ELlE3_89B_zp-p99Zo_BKGYhM,2072
|
|
75
|
+
imio/smartweb/common/rest/search_filters.py,sha256=upZAZ6h50qiSXo0q22lUgNlcmX5elFtrIQs_jFBl1-s,3832
|
|
72
76
|
imio/smartweb/common/rest/utils.py,sha256=9zc5ge_DmVuexxN09c3U6QAITAI1s2hc0m6eZuylSxM,1269
|
|
73
77
|
imio/smartweb/common/sharing/__init__.py,sha256=I_cdzTAnsdb8tEO2kg2lzRkeA7wIGPqHKzu7LBxDwtk,56
|
|
74
78
|
imio/smartweb/common/sharing/configure.zcml,sha256=3i3gqKFXDb19fLcdCbwCDXiUF1UmOpORATfpvDw-Q0Y,255
|
|
@@ -83,21 +87,23 @@ imio/smartweb/common/tests/test_indexes.py,sha256=3dzPAEbqnRqthKX9YUXM_dSbuZzWV-
|
|
|
83
87
|
imio/smartweb/common/tests/test_local_roles.py,sha256=4cwVdtrkeecp3HRM26db6AJHJ7HvIzqtYkBzgfOeeH4,3370
|
|
84
88
|
imio/smartweb/common/tests/test_permissions.py,sha256=LCz7Ixpd1IrzJeTV6Ov5GXjWNVz7h5UbpS9-DD4SjmE,1578
|
|
85
89
|
imio/smartweb/common/tests/test_privacy.py,sha256=ObnquDYgd29P9hxnpF6VxuOtyVgxvW8HQnf8ZBDGnXk,2953
|
|
86
|
-
imio/smartweb/common/tests/test_rest.py,sha256=
|
|
90
|
+
imio/smartweb/common/tests/test_rest.py,sha256=cXbiQjXXHCaXBMCCVk_PjnjG6Z4A_EfVUEpYVfhHDBM,5303
|
|
87
91
|
imio/smartweb/common/tests/test_robot.py,sha256=0Qdn5A8lXoVxQ9zE9IIhekSqfJJF003KiYqLVuDrros,955
|
|
88
92
|
imio/smartweb/common/tests/test_setup.py,sha256=TxoQZrESFOgGRBN9uO8FzEOx57G550YICBd-NzaGHvY,2102
|
|
89
93
|
imio/smartweb/common/tests/test_subscribers.py,sha256=AiJ5LTqGP2JKGJFYNeCCAMJL53DWO41iYQ9VYiA7DIA,1699
|
|
94
|
+
imio/smartweb/common/tests/test_taxonomy.py,sha256=uuxotczXg3So3OPp-U8HwjDxXQYwa_mdjxf2l7pKsCQ,5401
|
|
90
95
|
imio/smartweb/common/tests/test_text.py,sha256=Ll6TYnYxEBtpYe3T0yTOVT9wXWJaWGWW23eUV2jK92A,1570
|
|
91
96
|
imio/smartweb/common/tests/test_utils.py,sha256=S4QrNVvkHv3Oxp45fWQ65dmGsk7POgUn_d3kB8DPdBk,9314
|
|
92
97
|
imio/smartweb/common/tests/test_viewlets.py,sha256=NVEZWEmYo4K_-81Q6w-JTx2nT_3NBcJCl3946MAUnhU,1738
|
|
93
98
|
imio/smartweb/common/tests/test_vocabularies.py,sha256=C-78USTvOHljuMSLkNb9onSRxLEJmBQLpktetAO74RE,848
|
|
99
|
+
imio/smartweb/common/tests/test_vocabulary.py,sha256=4E5i5znt_hLhnnRay1iBaOZRmQyFJs8-OMdPm4iSGSg,1638
|
|
94
100
|
imio/smartweb/common/tests/resources/image.png,sha256=GBnPJt2ALEefn8GJAY1Lh8o9L6l6G77GJSyS0uveHvQ,1185
|
|
95
101
|
imio/smartweb/common/tests/resources/image_1400x800.png,sha256=Iy3bWGH4NBlgYC5BolZiNYFTKmCm0_I9MZDZo4sw_V4,30604
|
|
96
102
|
imio/smartweb/common/tests/resources/image_1800x700.png,sha256=aQcMisSFQO78c6QX4mO7qIfDb9SDRmfzTuPjxMJ_0HM,32643
|
|
97
103
|
imio/smartweb/common/tests/robot/test_example.robot,sha256=3ClbWps1Pfr6-RHT4FmmzGWGmtJrNnDW53bJGP69Nz4,2011
|
|
98
104
|
imio/smartweb/common/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
-
imio/smartweb/common/upgrades/configure.zcml,sha256=
|
|
100
|
-
imio/smartweb/common/upgrades/upgrades.py,sha256=
|
|
105
|
+
imio/smartweb/common/upgrades/configure.zcml,sha256=09RICTJka_nBGBV3YCP0qKQVqdV_g0pUWrVVD1LfPiY,14091
|
|
106
|
+
imio/smartweb/common/upgrades/upgrades.py,sha256=NObmvdWPUrfgaPJhTB_tIZsmLawxg5jbui-TRLhS2NE,5474
|
|
101
107
|
imio/smartweb/common/upgrades/profiles/1007_to_1008/rolemap.xml,sha256=dKUuBq-2pO4dGtHshBisISSTBP8aWfbwTGHj_pJvY5A,1346
|
|
102
108
|
imio/smartweb/common/upgrades/profiles/1008_to_1009/actions.xml,sha256=D41gp1PDVINobhCM8L11IMXABYatjmoUuW-EQkPT804,721
|
|
103
109
|
imio/smartweb/common/upgrades/profiles/1009_to_1010/registry/tiny_nonbreakingspace.xml,sha256=u3qd6CPmX52ITUUayJW28m578LP1Nw6wsM2r8B03nTo,587
|
|
@@ -114,6 +120,8 @@ imio/smartweb/common/upgrades/profiles/1018_to_1019/registry/scales.xml,sha256=-
|
|
|
114
120
|
imio/smartweb/common/upgrades/profiles/1022_to_1023/registry/scales.xml,sha256=s72eNsgNTG425aVfYs8TYK0aljdaHWfAsChtWfapmIY,937
|
|
115
121
|
imio/smartweb/common/upgrades/profiles/1023_to_1024/registry/scales.xml,sha256=eYh_fD4gQ6AcjUNE-W9WRZ0OreKX0_LEN-vyOV8V8wc,296
|
|
116
122
|
imio/smartweb/common/upgrades/profiles/1025_to_1026/registry/scales.xml,sha256=5f2y6ixe5dbZDLyj2RhQgzyiQ3qiI_RL336-Cm6pTnc,1077
|
|
123
|
+
imio/smartweb/common/upgrades/profiles/1027_to_1028/restored-faceted-jquery.xml,sha256=m6f4maF5HmswCKu5TJmTejshCrrBBM9feii6a5jTZfY,264
|
|
124
|
+
imio/smartweb/common/upgrades/profiles/1028_to_1029/registry.xml,sha256=3XXZyTOD_AWftgJ53ynpFuX5kwhbZEviU6zH1OgJkXQ,595
|
|
117
125
|
imio/smartweb/common/viewlets/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
|
|
118
126
|
imio/smartweb/common/viewlets/analytics.pt,sha256=J6e8fWmusLWMKXg3cJbNYV0LPS9ONz2yJ921vMvrrzE,33
|
|
119
127
|
imio/smartweb/common/viewlets/colophon.pt,sha256=qaEUV2N5aZpAEcztLzK_R2eINBod1AByWxi11B1HYa0,1278
|
|
@@ -121,12 +129,12 @@ imio/smartweb/common/viewlets/colophon.py,sha256=Rt3ZPj2F0kcVG-vhl8JIyAHlVVJ8pkt
|
|
|
121
129
|
imio/smartweb/common/viewlets/configure.zcml,sha256=uDHHrOeEGhrYYkvhasor_tXpHfdq1IT766h4T7H5kdQ,1758
|
|
122
130
|
imio/smartweb/common/viewlets/privacy.pt,sha256=bAD-I6s3LUgkh30vyTbP3pNUZQYua1Kx4aZpPGZaJVE,1212
|
|
123
131
|
imio/smartweb/common/viewlets/privacy.py,sha256=H752etTTIFCM0wTwjESQFl0PStJfCoSRfcePSUQOp8E,449
|
|
124
|
-
imio/smartweb/common/viewlets/skip_to_content.pt,sha256=
|
|
132
|
+
imio/smartweb/common/viewlets/skip_to_content.pt,sha256=FFfTxvRl8V52FzFE6In6B34ApgShNntvMp6F1qwfL0g,376
|
|
125
133
|
imio/smartweb/common/viewlets/skip_to_content.py,sha256=wm22NUf8Qh5uzz8p4vkLCdFNiDv9zUGAueRyXAIXQDo,496
|
|
126
|
-
imio.smartweb.common-1.2.
|
|
127
|
-
imio.smartweb.common-1.2.
|
|
128
|
-
imio.smartweb.common-1.2.
|
|
129
|
-
imio.smartweb.common-1.2.
|
|
130
|
-
imio.smartweb.common-1.2.
|
|
131
|
-
imio.smartweb.common-1.2.
|
|
132
|
-
imio.smartweb.common-1.2.
|
|
134
|
+
imio.smartweb.common-1.2.13.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
|
135
|
+
imio.smartweb.common-1.2.13.dist-info/LICENSE.rst,sha256=5dd78Fdt0e-oM2ICBrMpjHnT8vEP-jhBDF7akXni6B4,655
|
|
136
|
+
imio.smartweb.common-1.2.13.dist-info/METADATA,sha256=0BUJ9orthQXOgelgNv1af1lVlOer3bKUuWf_K-dYNoc,14493
|
|
137
|
+
imio.smartweb.common-1.2.13.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
138
|
+
imio.smartweb.common-1.2.13.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
|
139
|
+
imio.smartweb.common-1.2.13.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
|
140
|
+
imio.smartweb.common-1.2.13.dist-info/RECORD,,
|