imio.smartweb.core 1.3.9__py3-none-any.whl → 1.4__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.
@@ -1,11 +1,15 @@
1
1
  <configure
2
2
  xmlns="http://namespaces.zope.org/zope"
3
- xmlns:z3c="http://namespaces.zope.org/z3c"
4
3
  xmlns:browser="http://namespaces.zope.org/browser"
5
- xmlns:plone="http://namespaces.plone.org/plone">
4
+ xmlns:plone="http://namespaces.plone.org/plone"
5
+ xmlns:z3c="http://namespaces.zope.org/z3c"
6
+ >
6
7
 
7
8
  <!-- Set overrides folder for Just-a-Bunch-Of-Templates product -->
8
- <include package="z3c.jbot" file="meta.zcml" />
9
+ <include
10
+ package="z3c.jbot"
11
+ file="meta.zcml"
12
+ />
9
13
  <browser:jbot
10
14
  directory="overrides"
11
15
  layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
@@ -23,22 +27,22 @@
23
27
 
24
28
  <!-- Publish static files -->
25
29
  <plone:static
30
+ directory="static"
26
31
  name="imio.smartweb.core"
27
32
  type="plone"
28
- directory="static"
29
33
  />
30
34
 
31
35
  <browser:page
32
- for="*"
33
36
  name="plone_layout"
37
+ for="*"
34
38
  class=".layout.LayoutPolicy"
35
39
  permission="zope.Public"
36
40
  layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
37
41
  />
38
42
 
39
43
  <browser:page
40
- for="*"
41
44
  name="smartwebiconresolver"
45
+ for="*"
42
46
  class=".icons.SmartwebIconsView"
43
47
  permission="zope.Public"
44
48
  layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
@@ -56,23 +60,23 @@
56
60
  name="utils"
57
61
  for="*"
58
62
  class=".utils.UtilsView"
59
- permission="zope2.View"
60
63
  allowed_attributes="is_previewable_content map_configuration is_plausible_set"
64
+ permission="zope2.View"
61
65
  layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
62
66
  />
63
67
 
64
68
  <!-- Custom edit view -->
65
69
  <browser:page
66
- for="plone.dexterity.interfaces.IDexterityContent"
67
70
  name="edit"
71
+ for="plone.dexterity.interfaces.IDexterityContent"
68
72
  class=".forms.SmartwebCustomEditView"
69
73
  permission="cmf.ModifyPortalContent"
70
74
  layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
71
75
  />
72
76
 
73
77
  <browser:page
74
- for="*"
75
78
  name="has_gdpr_text"
79
+ for="*"
76
80
  class=".utils.UtilsView"
77
81
  attribute="has_gdpr_text"
78
82
  permission="zope.Public"
@@ -80,8 +84,8 @@
80
84
  />
81
85
 
82
86
  <browser:page
83
- for="*"
84
87
  name="is_eguichet_aware"
88
+ for="*"
85
89
  class=".utils.UtilsView"
86
90
  attribute="is_eguichet_aware"
87
91
  permission="zope.Public"
@@ -145,10 +149,18 @@
145
149
  />
146
150
 
147
151
  <z3c:widgetTemplate
148
- mode="input"
149
152
  widget="plone.app.z3cform.interfaces.ILinkWidget"
150
- layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
151
153
  template="templates/link_input.pt"
154
+ layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
155
+ mode="input"
156
+ />
157
+
158
+ <z3c:widgetTemplate
159
+ field="zope.schema.interfaces.IBool"
160
+ widget="plone.app.z3cform.interfaces.ISingleCheckBoxBoolWidget"
161
+ template="templates/singlecheckboxbool_hidden.pt"
162
+ layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
163
+ mode="hidden"
152
164
  />
153
165
 
154
166
  </configure>
@@ -32,9 +32,7 @@
32
32
 
33
33
 
34
34
  <div class=""
35
- tal:define="portal_type brain/portal_type|string:;
36
- useViewTypes brain/portal_properties/site_properties/typesUseViewActionInListings|python:[];
37
- useView python:portal_type in useViewTypes;"
35
+ tal:define="portal_type brain/portal_type|string:;"
38
36
  tal:attributes="data-index python:self.get_index(brain);
39
37
  class python:self.css_class(brain)">
40
38
  <a tal:define="description brain/Description|string:;
@@ -0,0 +1,21 @@
1
+ <html xmlns="http://www.w3.org/1999/xhtml"
2
+ xmlns:tal="http://xml.zope.org/namespaces/tal"
3
+ tal:omit-tag=""
4
+ >
5
+ <tal:items repeat="item view/items">
6
+ <input id="${item/id}"
7
+ name="${item/name}"
8
+ type="hidden"
9
+ value="${item/value}"
10
+ tal:condition="item/checked"
11
+ />
12
+ </tal:items>
13
+
14
+ <input name="field-empty-marker"
15
+ type="hidden"
16
+ value="1"
17
+ tal:attributes="
18
+ name string:${view/name}-empty-marker;
19
+ "
20
+ />
21
+ </html>
@@ -1,9 +1,15 @@
1
- <configure
2
- xmlns="http://namespaces.zope.org/zope">
1
+ <configure xmlns="http://namespaces.zope.org/zope">
3
2
 
4
- <include package="z3c.unconfigure" file="meta.zcml" />
5
- <include package="Products.CMFCore" file="permissions.zcml" />
3
+ <include
4
+ package="z3c.unconfigure"
5
+ file="meta.zcml"
6
+ />
7
+ <include
8
+ package="Products.CMFCore"
9
+ file="permissions.zcml"
10
+ />
6
11
  <include package="plone.app.imagecropping" />
12
+ <include package="plone.app.discussion" />
7
13
  <include package="eea.facetednavigation" />
8
14
  <include package="collective.autopublishing" />
9
15
  <include package="collective.faceted.map" />
@@ -14,10 +20,10 @@
14
20
  <include package="collective.solr" />
15
21
  <include package="collective.taxonomy" />
16
22
  <include package="collective.z3cform.datagridfield" />
17
-
23
+
18
24
  <!-- Call this one before overrides adapter zope.container.interfaces.INameChooser-->
19
25
  <include package="plone.app.content" />
20
-
26
+
21
27
  <!-- Temporary fix for plone.gallery 1.0.1 -->
22
28
  <include package="plone.app.contentmenu" />
23
29
  <include package="plone.gallery" />
@@ -20,8 +20,7 @@
20
20
  lang portal_state/language;
21
21
  dummy python: plone_layout.mark_view(view);
22
22
  portal_url portal_state/portal_url;
23
- checkPermission nocall: context/portal_membership/checkPermission;
24
- site_properties context/portal_properties/site_properties;">
23
+ checkPermission nocall: context/portal_membership/checkPermission;">
25
24
 
26
25
  <div metal:use-macro="item_macro">
27
26
  content
@@ -3,6 +3,7 @@
3
3
  <version>1068</version>
4
4
  <dependencies>
5
5
  <dependency>profile-plone.app.dexterity:default</dependency>
6
+ <dependency>profile-plone.app.discussion:default</dependency>
6
7
  <dependency>profile-plone.app.imagecropping:default</dependency>
7
8
  <dependency>profile-eea.facetednavigation:default</dependency>
8
9
  <dependency>profile-collective.anysurfer:default</dependency>
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: imio.smartweb.core
3
- Version: 1.3.9
3
+ Version: 1.4
4
4
  Summary: Core product for iMio websites
5
5
  Home-page: https://github.com/imio/imio.smartweb.core
6
6
  Author: Christophe Boulanger
@@ -15,11 +15,13 @@ Classifier: Environment :: Web Environment
15
15
  Classifier: Framework :: Plone
16
16
  Classifier: Framework :: Plone :: Addon
17
17
  Classifier: Framework :: Plone :: 6.0
18
+ Classifier: Framework :: Plone :: 6.1
18
19
  Classifier: Programming Language :: Python
19
20
  Classifier: Programming Language :: Python :: 3
20
21
  Classifier: Programming Language :: Python :: 3.10
21
22
  Classifier: Programming Language :: Python :: 3.11
22
23
  Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
23
25
  Classifier: Operating System :: OS Independent
24
26
  Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
25
27
  Requires-Python: >=3.10
@@ -29,6 +31,7 @@ Requires-Dist: setuptools
29
31
  Requires-Dist: z3c.jbot
30
32
  Requires-Dist: z3c.unconfigure
31
33
  Requires-Dist: plone.api>=1.8.4
34
+ Requires-Dist: plone.app.discussion
32
35
  Requires-Dist: plone.gallery
33
36
  Requires-Dist: plone.restapi
34
37
  Requires-Dist: plone.app.dexterity
@@ -49,6 +52,7 @@ Requires-Dist: more-itertools
49
52
  Requires-Dist: imio.smartweb.common
50
53
  Requires-Dist: imio.smartweb.locales
51
54
  Provides-Extra: test
55
+ Requires-Dist: mock; extra == "test"
52
56
  Requires-Dist: plone.app.testing; extra == "test"
53
57
  Requires-Dist: plone.testing>=5.0.0; extra == "test"
54
58
  Requires-Dist: plone.app.contenttypes; extra == "test"
@@ -57,6 +61,19 @@ Requires-Dist: plone.restapi[test]; extra == "test"
57
61
  Requires-Dist: requests-mock; extra == "test"
58
62
  Requires-Dist: beautifulsoup4; extra == "test"
59
63
  Requires-Dist: freezegun; extra == "test"
64
+ Dynamic: author
65
+ Dynamic: author-email
66
+ Dynamic: classifier
67
+ Dynamic: description
68
+ Dynamic: home-page
69
+ Dynamic: keywords
70
+ Dynamic: license
71
+ Dynamic: license-file
72
+ Dynamic: project-url
73
+ Dynamic: provides-extra
74
+ Dynamic: requires-dist
75
+ Dynamic: requires-python
76
+ Dynamic: summary
60
77
 
61
78
  .. This README is meant for consumption by humans and pypi. Pypi can render rst files so please do not use Sphinx features.
62
79
  If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html
@@ -191,6 +208,25 @@ Changelog
191
208
  =========
192
209
 
193
210
 
211
+ 1.4 (2025-05-06)
212
+ ----------------
213
+
214
+ - Override singlecheckboxtool_hidden.pt to restore the "hidden" type to the hidden checkboxes
215
+ This is a temporary fix, we will issue a PR to fix this en plone.app.z3cform
216
+ See https://github.com/plone/plone.app.z3cform/commit/6351cf60d408d4a76743741db45093c8e5a1c4de
217
+ [remdub]
218
+
219
+ - GHA tests on Python 3.10 3.11, 3.12 and 3.13
220
+ [remdub]
221
+
222
+ - Update Python classifiers to be compatible with Plone 6.1 and Python 3.13
223
+ [remdub]
224
+
225
+ - Remove obsolete and unused portal_properties in view_section template
226
+ PropertiesTool is removed in Plone 6.1
227
+ [bsuttor, remdub]
228
+
229
+
194
230
  1.3.9 (2025-04-23)
195
231
  ------------------
196
232
 
@@ -261,7 +297,7 @@ Changelog
261
297
  Prevent some basic stupid and wicked attack
262
298
  [boulch]
263
299
 
264
- - Ideabox : Add status for vote
300
+ - Ideabox : Add status for vote
265
301
  [thomlamb]
266
302
 
267
303
 
@@ -288,7 +324,7 @@ Changelog
288
324
  [thomlamb]
289
325
 
290
326
  - WEB-4231 : Prevent issues in research when default (agenda, news, directory) views objects were removed
291
- [boulch]
327
+ [boulch]
292
328
 
293
329
 
294
330
  1.3 (2025-03-04)
@@ -429,7 +465,7 @@ Changelog
429
465
  -------------------
430
466
 
431
467
  - WEB-4199 : Fix missing contacts when there are more contacts than default Plone batching
432
- [boulch]
468
+ [boulch]
433
469
 
434
470
  - Replace url by social icon in contact section
435
471
  [thomlamb]
@@ -476,11 +512,11 @@ Changelog
476
512
 
477
513
  - WEB-4024 : Add React event files size
478
514
  [thomlamb]
479
-
480
- - WEB-4027 : Add linkedin icon and change Twitter icon to X icon
515
+
516
+ - WEB-4027 : Add linkedin icon and change Twitter icon to X icon
481
517
  [thomlamb]
482
518
 
483
- - WEB-4146 : Replace created by effective date in news cards
519
+ - WEB-4146 : Replace created by effective date in news cards
484
520
  [thomlamb]
485
521
 
486
522
 
@@ -1,7 +1,7 @@
1
- imio.smartweb.core-1.3.9-py3.8-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
1
+ imio.smartweb.core-1.4-py3.12-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
2
2
  imio/smartweb/core/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
3
3
  imio/smartweb/core/config.py,sha256=BUgfvh4hCaw0onCYAG4gQI1O4hZ-GzXWEltdHi4YLIs,337
4
- imio/smartweb/core/configure.zcml,sha256=sCJwomh6ve6OPSDexKNacz2PUkqzI5EVn8SEMZo4Sfw,1630
4
+ imio/smartweb/core/configure.zcml,sha256=TvYHum_puMstTxxe9YjrtOeEm843_ef4cPSD3Eod6H8,1703
5
5
  imio/smartweb/core/indexers.py,sha256=Lv1lHWFzM71ju822N8y7w61GDOyi6qmUbveZNI1tCz4,3887
6
6
  imio/smartweb/core/indexers.zcml,sha256=XHvKTkNcF5mkX-dVwRbjNsrBwIwwqa2Cm81PoXBqtow,968
7
7
  imio/smartweb/core/interfaces.py,sha256=usp0Cu_dERHo1J0XbGszOHZGnwLwfTdtEO_ejzSEJb4,1384
@@ -26,7 +26,7 @@ imio/smartweb/core/behaviors/orientation.py,sha256=WrW9BeT9KICl4qmkGzplLepJ5J_rM
26
26
  imio/smartweb/core/behaviors/quickaccess.py,sha256=j18T39KcbiJErpidMM8wH6i4XjEIZyTQ1kER4_FfhhE,1063
27
27
  imio/smartweb/core/behaviors/subsite.py,sha256=O2aJHl3Jj9WTpGBmNJaoia-PAtb7aSHpCRanvO1JE8k,1707
28
28
  imio/smartweb/core/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
- imio/smartweb/core/browser/configure.zcml,sha256=IYf_nBFGzxOtl-3hxXX0N6g_YIg6S1k2c23OYjEiY2A,4430
29
+ imio/smartweb/core/browser/configure.zcml,sha256=ey_Z8Ms_2WO-nFc6428a6TQljoxZNTe3KA0BRGUkHTg,4741
30
30
  imio/smartweb/core/browser/controlpanel.py,sha256=v0f3m2zyRVmV8dhZ9s9rRVmgaa881biphLfM4H-EGUg,9315
31
31
  imio/smartweb/core/browser/forms.py,sha256=_6Z0x7yVeA5JaW4IwpYkX7bTIbw0UskgvtGfNDtMsrI,1091
32
32
  imio/smartweb/core/browser/icons.py,sha256=LFBCYTfynp4qNX2OQuNmMTOUEcJv-oQ8Izu6opE3o7A,2065
@@ -46,7 +46,7 @@ imio/smartweb/core/browser/faceted/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
46
46
  imio/smartweb/core/browser/faceted/block_view.pt,sha256=gyVm3a_gH2IA0nkXcSRrDY0M-3AoxwI0OvBv4HhWllE,1983
47
47
  imio/smartweb/core/browser/faceted/configure.zcml,sha256=JFOMhQLPWgsbfYWbO_-EGkG8u5GLT-s_DgGAH_cFHd8,3289
48
48
  imio/smartweb/core/browser/faceted/macros.pt,sha256=KtGERmOIQ7t7bi6dZVhUvcrpLi7HzKbLoOnYv8nbhxQ,3087
49
- imio/smartweb/core/browser/faceted/map.pt,sha256=rimXOnJ82hAcDL78lc5z9mZFFkfP7R9wHUnNycOSG2E,4434
49
+ imio/smartweb/core/browser/faceted/map.pt,sha256=aX24DpEMA9Y784cKCsGlJbNWvVqaZCO3vRwEYAhEo6Q,4259
50
50
  imio/smartweb/core/browser/faceted/map.py,sha256=74Rhz7cD_uuQq4YfHdInAn3cv4DKQ9sc8jDCQ3odVQg,1504
51
51
  imio/smartweb/core/browser/faceted/summary_view.pt,sha256=cHuFW1s88tINcCqaEKMhLGB8b6IX9L35rBWQ_YGA0aQ,1927
52
52
  imio/smartweb/core/browser/faceted/views.py,sha256=mT7VSgtUCF4MEJHd2tGnSJE46YROPVUSvBdrdOGjSMk,2293
@@ -159,6 +159,7 @@ imio/smartweb/core/browser/subsite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
159
159
  imio/smartweb/core/browser/subsite/configure.zcml,sha256=ITEH-6pVztshQElqjNv9sk-CcVUTLFeccdSO9rHLwt0,414
160
160
  imio/smartweb/core/browser/subsite/settings.py,sha256=tXEnEYZG75eM7H766ZgNCCWMwOcY9j45shD-8NR_7I0,1601
161
161
  imio/smartweb/core/browser/templates/link_input.pt,sha256=Q7Y4gW4q0DVG-U5f3ZJkrAZwJnV8NMPu_Fdht7zhb4A,2808
162
+ imio/smartweb/core/browser/templates/singlecheckboxbool_hidden.pt,sha256=a6n0COrAIpU3zkdeVjNz22mYjofcXBkhp99n__GGabU,515
162
163
  imio/smartweb/core/contents/__init__.py,sha256=-4AczhjH0foxIpEWbuMVeavFHJkSReyNzYgg0De6Grc,3816
163
164
  imio/smartweb/core/contents/configure.zcml,sha256=heQRN2fw2SM7ILzCsM-5sK1J3EfRrNctqYdpr1wncdk,844
164
165
  imio/smartweb/core/contents/cropping.py,sha256=3RYRf3kZkRxcwuNsTUnsb1OKbLD9seBu3So_8k7XBXQ,1482
@@ -183,7 +184,7 @@ imio/smartweb/core/contents/pages/configure.zcml,sha256=e-EqjBgF17vs51DWV2iBKZeM
183
184
  imio/smartweb/core/contents/pages/pages.py,sha256=iCQwzbp4nnGqwy31UE5Q9MaeJVAzJUgto-f7kWc8I7Q,464
184
185
  imio/smartweb/core/contents/pages/subscriber.py,sha256=2efcWPA5VsoEzv1_fIWh3sn1k2g0Kx_B_cTyQ5LIhLg,961
185
186
  imio/smartweb/core/contents/pages/view.pt,sha256=0-rTH5tgN9mgSHdt9_0qwYQpJO0nC4Wc0Kg6CUGRCbY,3127
186
- imio/smartweb/core/contents/pages/view_section.pt,sha256=_jYm5FqFVYr1Jia5r9qmqryd2a6NDNXO5SWu6osTZ0A,1345
187
+ imio/smartweb/core/contents/pages/view_section.pt,sha256=4rqNdq2nLYPOFsOG9Zb5N7ikLQoJVtC0i60FGuHU7hA,1258
187
188
  imio/smartweb/core/contents/pages/views.py,sha256=3EEmK7ZLtjSkCc5wlH72KxyelG0ruOeGWi8apBrqqfE,6693
188
189
  imio/smartweb/core/contents/pages/cirkwi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
190
  imio/smartweb/core/contents/pages/cirkwi/configure.zcml,sha256=f5kNhtZhY10aHetW5nZZZ00tbBQP1EiezVia5_JfJlg,378
@@ -347,7 +348,7 @@ imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH
347
348
  imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
348
349
  imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
349
350
  imio/smartweb/core/profiles/default/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
350
- imio/smartweb/core/profiles/default/metadata.xml,sha256=XkCOWmPBMX-JjP_Rf21H_obLimaJPYCO376G-9XWneU,1218
351
+ imio/smartweb/core/profiles/default/metadata.xml,sha256=9iesL-nGsCR2csw70Rob0WVZa-uHE2QFAzApRel90mg,1284
351
352
  imio/smartweb/core/profiles/default/repositorytool.xml,sha256=aTErs-VvEEV3dm9_TdgPZfx1Pb1f5Sw7ap7IgiJOK4w,227
352
353
  imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
353
354
  imio/smartweb/core/profiles/default/types.xml,sha256=oPZSjRtivll-J9qzhd4STvM7w1P6quyLp4ky6aH913w,2201
@@ -811,10 +812,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=EpmA8-iqHIkWrjgjR9JKvZ
811
812
  imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=DVQ6sUQOKFvLhbcamY6EmSrfWYq61gqaQUZ_YM1Le0Q,343
812
813
  imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=KYomzpin3vMdS_QyK7QF0lBRXho_6WlHnkCJaRJm4N4,10702
813
814
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
814
- imio.smartweb.core-1.3.9.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
815
- imio.smartweb.core-1.3.9.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
816
- imio.smartweb.core-1.3.9.dist-info/METADATA,sha256=wqF75Z_4BWMh-IBOby-RmOl9GCsD5lRlr5PgY3yzuSA,63465
817
- imio.smartweb.core-1.3.9.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
818
- imio.smartweb.core-1.3.9.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
819
- imio.smartweb.core-1.3.9.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
820
- imio.smartweb.core-1.3.9.dist-info/RECORD,,
815
+ imio_smartweb_core-1.4.dist-info/licenses/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
816
+ imio_smartweb_core-1.4.dist-info/licenses/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
817
+ imio_smartweb_core-1.4.dist-info/METADATA,sha256=zdp839z0EOb0FkHKgz9ISHGqqFDfE4iI29p9H1XTtQ0,64482
818
+ imio_smartweb_core-1.4.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
819
+ imio_smartweb_core-1.4.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
820
+ imio_smartweb_core-1.4.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
821
+ imio_smartweb_core-1.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.1.2)
2
+ Generator: setuptools (80.3.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5