imio.smartweb.common 1.2.12__py3-none-any.whl → 1.2.14__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.
Files changed (33) hide show
  1. imio/smartweb/common/browser/collective_taxonomy_controlpanel.py +67 -0
  2. imio/smartweb/common/browser/configure.zcml +16 -0
  3. imio/smartweb/common/browser/static/smartweb-common-view-compiled.css +1 -1
  4. imio/smartweb/common/browser/static/src/view.less +9 -2
  5. imio/smartweb/common/browser/vocabulary.py +27 -0
  6. imio/smartweb/common/interfaces.py +2 -1
  7. imio/smartweb/common/profiles/default/metadata.xml +1 -1
  8. imio/smartweb/common/profiles/default/registry.xml +10 -4
  9. imio/smartweb/common/profiles/testing/catalog.xml +9 -0
  10. imio/smartweb/common/profiles/testing/metadata.xml +1 -0
  11. imio/smartweb/common/profiles/testing/types/Document.xml +1 -0
  12. imio/smartweb/common/rest/search_filters.py +19 -7
  13. imio/smartweb/common/testing.py +1 -1
  14. imio/smartweb/common/testing.zcml +8 -0
  15. imio/smartweb/common/tests/test_rest.py +25 -0
  16. imio/smartweb/common/tests/test_taxonomy.py +140 -0
  17. imio/smartweb/common/tests/test_vocabulary.py +45 -0
  18. imio/smartweb/common/upgrades/configure.zcml +54 -0
  19. imio/smartweb/common/upgrades/profiles/1027_to_1028/restored-faceted-jquery.xml +7 -0
  20. imio/smartweb/common/upgrades/profiles/1028_to_1029/registry.xml +15 -0
  21. imio/smartweb/common/upgrades/profiles/1029_to_1030/registry.xml +13 -0
  22. imio/smartweb/common/utils.py +9 -1
  23. imio/smartweb/common/vocabularies.py +1 -10
  24. imio.smartweb.common-1.2.14-py3.11-nspkg.pth +2 -0
  25. {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/METADATA +38 -4
  26. {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/RECORD +31 -23
  27. {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/WHEEL +1 -1
  28. imio/smartweb/common/browser/static/patched.web3862.eea.faceted-jquery.min.js +0 -2
  29. imio.smartweb.common-1.2.12-py3.10-nspkg.pth +0 -3
  30. {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/LICENSE.GPL +0 -0
  31. {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/LICENSE.rst +0 -0
  32. {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/namespace_packages.txt +0 -0
  33. {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/top_level.txt +0 -0
@@ -179,16 +179,24 @@ def is_staging_or_local():
179
179
  parsed_url = urlparse(portal_url)
180
180
  scheme = parsed_url.scheme
181
181
  netloc = parsed_url.netloc
182
- elem = ["localhost", "127.0.0.1", "nohost"]
182
+ elem = ["localhost", "127.0.0.1"]
183
183
  pattern = "|".join(map(re.escape, elem))
184
184
  if scheme == "http" and re.search(pattern, netloc):
185
185
  return True
186
186
  elif scheme == "https" and "staging" in netloc:
187
+ if activate_sending_data_to_odwb_for_staging() is True:
188
+ return False
187
189
  return True
188
190
  else:
189
191
  return False
190
192
 
191
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
+
192
200
  def get_parent_of_type(context, content_type):
193
201
  # Traverse up the hierarchy until we find an object with the specified content type
194
202
  parent = context
@@ -5,7 +5,6 @@ from plone import api
5
5
  from plone.i18n.normalizer.interfaces import IIDNormalizer
6
6
  from plone.registry.interfaces import IRegistry
7
7
  from zope.component import getUtility
8
- from zope.i18n import translate
9
8
  from zope.i18n.locales import locales
10
9
  from zope.schema.vocabulary import SimpleTerm
11
10
  from zope.schema.vocabulary import SimpleVocabulary
@@ -15,7 +14,6 @@ import json
15
14
 
16
15
  class TopicsVocabularyFactory:
17
16
  def __call__(self, context=None):
18
- lang = api.portal.get_current_language()[:2]
19
17
  topics = [
20
18
  ("entertainment", _("Entertainment")),
21
19
  ("agriculture", _("Agriculture")),
@@ -35,14 +33,7 @@ class TopicsVocabularyFactory:
35
33
  ("territory_public_space", _("Territory and public space")),
36
34
  ("tourism", _("Tourism")),
37
35
  ]
38
- terms = [
39
- SimpleTerm(
40
- value=t[0],
41
- token=t[0],
42
- title=translate(t[1], target_language=lang),
43
- )
44
- for t in topics
45
- ]
36
+ terms = [SimpleTerm(value=t[0], token=t[0], title=t[1]) for t in topics]
46
37
  return SimpleVocabulary(terms)
47
38
 
48
39
 
@@ -0,0 +1,2 @@
1
+ import sys, types, os;p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('imio',));importlib = __import__('importlib.util');__import__('importlib.machinery');m = sys.modules.setdefault('imio', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('imio', [os.path.dirname(p)])));m = m or sys.modules.setdefault('imio', types.ModuleType('imio'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
2
+ import sys, types, os;p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('imio', 'smartweb'));importlib = __import__('importlib.util');__import__('importlib.machinery');m = sys.modules.setdefault('imio.smartweb', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('imio.smartweb', [os.path.dirname(p)])));m = m or sys.modules.setdefault('imio.smartweb', types.ModuleType('imio.smartweb'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p);m and setattr(sys.modules['imio'], 'smartweb', m)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imio.smartweb.common
3
- Version: 1.2.12
3
+ Version: 1.2.14
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,39 @@ Changelog
160
161
  =========
161
162
 
162
163
 
164
+ 1.2.14 (2024-05-24)
165
+ -------------------
166
+
167
+ - Fix bundles: Remove obsolete patterns bundle and fix a previous upgrade for
168
+ eea.facetednavigation
169
+ [laulaz]
170
+
171
+ - Fix translate call (was causing incorrect string in .po file)
172
+ [laulaz]
173
+
174
+ - Fix translation message string
175
+ [laulaz]
176
+
177
+
178
+ 1.2.13 (2024-05-24)
179
+ -------------------
180
+
181
+ - WEB-4088 : Cover use case for sending data in odwb for a staging environment
182
+ [boulch]
183
+
184
+ - Ensure translation of vocabularies when used with `AjaxSelectFieldWidget`
185
+ [laulaz]
186
+
187
+ - Remove useless `container_uid` from `search-filters` results
188
+ [laulaz]
189
+
190
+ - WEB-3864 : Ensure that a taxonomy term that is deleted is not used anywhere
191
+ [boulch]
192
+
193
+ - WEB-3862 : Unpatch (restore original) eea.facetednavigation jquery
194
+ [laulaz]
195
+
196
+
163
197
  1.2.12 (2024-05-06)
164
198
  -------------------
165
199
 
@@ -1,4 +1,4 @@
1
- imio.smartweb.common-1.2.12-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
1
+ imio.smartweb.common-1.2.14-py3.11-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
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=nTlgX9cdut7XiS7dGhbnKf-4hH4b57f_1WJZFR3Xh9k,1417
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=fjNzFXCZpT6xtE3oSb7R5dW1n4bILtpv9LA3FugI1Zw,1964
20
- imio/smartweb/common/utils.py,sha256=sdj2oYwlJ_AXuqTotLoJYv74lNKWSqm6_iVztcAUj94,6774
21
- imio/smartweb/common/vocabularies.py,sha256=g15ykmmsbcGsHHdef26MDFUf5ZIzGMyRFitf_fuFjSo,4050
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
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
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/configure.zcml,sha256=Ph2JGC7VX_Oy4nIJ9z8GDAF9pWZRmk4yDosAzpDRJxA,2667
29
+ imio/smartweb/common/browser/collective_taxonomy_controlpanel.py,sha256=QngrsXOIjOt0xHEt2r0W66CPg5msY4H7mDkRaAEGQdg,3044
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=XXFuV1nYvu7s8j7tufrg33AmpaNgTIHl13VzEK0ro34,905
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=fvwrUgFB8oXeGFj8hGBlBkZg33MK8HQzA3vjEZkpBOI,921
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=PQjgOlV9InizbQKyFLzvFkFrnxR-4LnmoqvkNl9Ug6Y,1401
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,19 +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=TmXw6XCLgczCnX28JdGREdjf7wAAmy_K7zfUB-zlEW0,432
61
- imio/smartweb/common/profiles/default/registry.xml,sha256=z6DgMU4LWn6-Nni3a-82V-OwznAIca_2K8mtTvHrQso,46630
62
+ imio/smartweb/common/profiles/default/metadata.xml,sha256=OpX9lr-otgJAUm13eQq1hl7qvyzYvqgohSoxaTHPgeE,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/metadata.xml,sha256=ON6nogAJQsiCX-mEQ5ewJNpdGEwCLcnzN0kTZz1QuOQ,163
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=Hzn__Bv0SDqYctC8OqdH14xHJTZkJze-HOANVDUmUrs,358
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
74
  imio/smartweb/common/rest/odwb.py,sha256=36g6Hs_i6FfliKWA63ELlE3_89B_zp-p99Zo_BKGYhM,2072
72
- imio/smartweb/common/rest/search_filters.py,sha256=uiNdTF0P9oW_VpSgL8qV9q015BUe9Xigs3K1DNbK7uI,3349
75
+ imio/smartweb/common/rest/search_filters.py,sha256=upZAZ6h50qiSXo0q22lUgNlcmX5elFtrIQs_jFBl1-s,3832
73
76
  imio/smartweb/common/rest/utils.py,sha256=9zc5ge_DmVuexxN09c3U6QAITAI1s2hc0m6eZuylSxM,1269
74
77
  imio/smartweb/common/sharing/__init__.py,sha256=I_cdzTAnsdb8tEO2kg2lzRkeA7wIGPqHKzu7LBxDwtk,56
75
78
  imio/smartweb/common/sharing/configure.zcml,sha256=3i3gqKFXDb19fLcdCbwCDXiUF1UmOpORATfpvDw-Q0Y,255
@@ -84,20 +87,22 @@ imio/smartweb/common/tests/test_indexes.py,sha256=3dzPAEbqnRqthKX9YUXM_dSbuZzWV-
84
87
  imio/smartweb/common/tests/test_local_roles.py,sha256=4cwVdtrkeecp3HRM26db6AJHJ7HvIzqtYkBzgfOeeH4,3370
85
88
  imio/smartweb/common/tests/test_permissions.py,sha256=LCz7Ixpd1IrzJeTV6Ov5GXjWNVz7h5UbpS9-DD4SjmE,1578
86
89
  imio/smartweb/common/tests/test_privacy.py,sha256=ObnquDYgd29P9hxnpF6VxuOtyVgxvW8HQnf8ZBDGnXk,2953
87
- imio/smartweb/common/tests/test_rest.py,sha256=KbT8gVHym1GhUMVNhSKXNjdRWmbnktg7twex5LiLIAQ,4366
90
+ imio/smartweb/common/tests/test_rest.py,sha256=cXbiQjXXHCaXBMCCVk_PjnjG6Z4A_EfVUEpYVfhHDBM,5303
88
91
  imio/smartweb/common/tests/test_robot.py,sha256=0Qdn5A8lXoVxQ9zE9IIhekSqfJJF003KiYqLVuDrros,955
89
92
  imio/smartweb/common/tests/test_setup.py,sha256=TxoQZrESFOgGRBN9uO8FzEOx57G550YICBd-NzaGHvY,2102
90
93
  imio/smartweb/common/tests/test_subscribers.py,sha256=AiJ5LTqGP2JKGJFYNeCCAMJL53DWO41iYQ9VYiA7DIA,1699
94
+ imio/smartweb/common/tests/test_taxonomy.py,sha256=uuxotczXg3So3OPp-U8HwjDxXQYwa_mdjxf2l7pKsCQ,5401
91
95
  imio/smartweb/common/tests/test_text.py,sha256=Ll6TYnYxEBtpYe3T0yTOVT9wXWJaWGWW23eUV2jK92A,1570
92
96
  imio/smartweb/common/tests/test_utils.py,sha256=S4QrNVvkHv3Oxp45fWQ65dmGsk7POgUn_d3kB8DPdBk,9314
93
97
  imio/smartweb/common/tests/test_viewlets.py,sha256=NVEZWEmYo4K_-81Q6w-JTx2nT_3NBcJCl3946MAUnhU,1738
94
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
95
100
  imio/smartweb/common/tests/resources/image.png,sha256=GBnPJt2ALEefn8GJAY1Lh8o9L6l6G77GJSyS0uveHvQ,1185
96
101
  imio/smartweb/common/tests/resources/image_1400x800.png,sha256=Iy3bWGH4NBlgYC5BolZiNYFTKmCm0_I9MZDZo4sw_V4,30604
97
102
  imio/smartweb/common/tests/resources/image_1800x700.png,sha256=aQcMisSFQO78c6QX4mO7qIfDb9SDRmfzTuPjxMJ_0HM,32643
98
103
  imio/smartweb/common/tests/robot/test_example.robot,sha256=3ClbWps1Pfr6-RHT4FmmzGWGmtJrNnDW53bJGP69Nz4,2011
99
104
  imio/smartweb/common/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
- imio/smartweb/common/upgrades/configure.zcml,sha256=IASXLaJj1kgXzDiPQFxzqCGKBt4vuWhb4aulFGbMkKk,12785
105
+ imio/smartweb/common/upgrades/configure.zcml,sha256=WjVIBgNrlWJgupK1GWlh7flkhcpoFnBWoEhyq0TAXnE,14758
101
106
  imio/smartweb/common/upgrades/upgrades.py,sha256=NObmvdWPUrfgaPJhTB_tIZsmLawxg5jbui-TRLhS2NE,5474
102
107
  imio/smartweb/common/upgrades/profiles/1007_to_1008/rolemap.xml,sha256=dKUuBq-2pO4dGtHshBisISSTBP8aWfbwTGHj_pJvY5A,1346
103
108
  imio/smartweb/common/upgrades/profiles/1008_to_1009/actions.xml,sha256=D41gp1PDVINobhCM8L11IMXABYatjmoUuW-EQkPT804,721
@@ -115,6 +120,9 @@ imio/smartweb/common/upgrades/profiles/1018_to_1019/registry/scales.xml,sha256=-
115
120
  imio/smartweb/common/upgrades/profiles/1022_to_1023/registry/scales.xml,sha256=s72eNsgNTG425aVfYs8TYK0aljdaHWfAsChtWfapmIY,937
116
121
  imio/smartweb/common/upgrades/profiles/1023_to_1024/registry/scales.xml,sha256=eYh_fD4gQ6AcjUNE-W9WRZ0OreKX0_LEN-vyOV8V8wc,296
117
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
125
+ imio/smartweb/common/upgrades/profiles/1029_to_1030/registry.xml,sha256=cApJaG7duyGX3D3Bby3V3D8YcIAZuWB-A-WSH3XKU7E,406
118
126
  imio/smartweb/common/viewlets/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
119
127
  imio/smartweb/common/viewlets/analytics.pt,sha256=J6e8fWmusLWMKXg3cJbNYV0LPS9ONz2yJ921vMvrrzE,33
120
128
  imio/smartweb/common/viewlets/colophon.pt,sha256=qaEUV2N5aZpAEcztLzK_R2eINBod1AByWxi11B1HYa0,1278
@@ -124,10 +132,10 @@ imio/smartweb/common/viewlets/privacy.pt,sha256=bAD-I6s3LUgkh30vyTbP3pNUZQYua1Kx
124
132
  imio/smartweb/common/viewlets/privacy.py,sha256=H752etTTIFCM0wTwjESQFl0PStJfCoSRfcePSUQOp8E,449
125
133
  imio/smartweb/common/viewlets/skip_to_content.pt,sha256=FFfTxvRl8V52FzFE6In6B34ApgShNntvMp6F1qwfL0g,376
126
134
  imio/smartweb/common/viewlets/skip_to_content.py,sha256=wm22NUf8Qh5uzz8p4vkLCdFNiDv9zUGAueRyXAIXQDo,496
127
- imio.smartweb.common-1.2.12.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
128
- imio.smartweb.common-1.2.12.dist-info/LICENSE.rst,sha256=5dd78Fdt0e-oM2ICBrMpjHnT8vEP-jhBDF7akXni6B4,655
129
- imio.smartweb.common-1.2.12.dist-info/METADATA,sha256=IARR82taBusp5de_TiQWYX7J90DP3ercwb50ZMi5Zlg,13991
130
- imio.smartweb.common-1.2.12.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
131
- imio.smartweb.common-1.2.12.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
132
- imio.smartweb.common-1.2.12.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
133
- imio.smartweb.common-1.2.12.dist-info/RECORD,,
135
+ imio.smartweb.common-1.2.14.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
136
+ imio.smartweb.common-1.2.14.dist-info/LICENSE.rst,sha256=5dd78Fdt0e-oM2ICBrMpjHnT8vEP-jhBDF7akXni6B4,655
137
+ imio.smartweb.common-1.2.14.dist-info/METADATA,sha256=E91D2fX8SB9rRAOCHz-RREDSrDoOb3q5hR5R-oHH84o,14764
138
+ imio.smartweb.common-1.2.14.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
139
+ imio.smartweb.common-1.2.14.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
140
+ imio.smartweb.common-1.2.14.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
141
+ imio.smartweb.common-1.2.14.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5