imio.smartweb.common 1.2.29__py3-none-any.whl → 1.2.31__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 +1 @@
1
- form.tabbed-form-with-toggle fieldset legend.dropdown-toggle{cursor:pointer}form.tabbed-form-with-toggle fieldset:not(:first-child) legend.dropdown-toggle:after{display:inline-block;margin-left:7px;transform-origin:center center;transition:all .3s ease-in;vertical-align:middle}form.tabbed-form-with-toggle fieldset:not(:first-child) legend.dropdown-toggle.expanded:after{transform:rotate(180deg)}
1
+ form.tabbed-form-with-toggle fieldset legend.dropdown-toggle{cursor:pointer}form.tabbed-form-with-toggle fieldset:not(:first-child) legend.dropdown-toggle:after{display:inline-block;margin-left:7px;transform-origin:center center;transition:all .3s ease-in;vertical-align:middle}form.tabbed-form-with-toggle fieldset:not(:first-child) legend.dropdown-toggle.expanded:after{transform:rotate(180deg)}div.content-browser-wrapper button.upload{display:none}
@@ -16,3 +16,7 @@ form.tabbed-form-with-toggle fieldset:not(:nth-child(1)) legend.dropdown-toggle{
16
16
  }
17
17
  }
18
18
  }
19
+
20
+ div.content-browser-wrapper button.upload {
21
+ display: none;
22
+ }
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <metadata>
3
- <version>1031</version>
3
+ <version>1032</version>
4
4
  <dependencies>
5
5
  <dependency>profile-plone.restapi:default</dependency>
6
6
  <dependency>profile-eea.facetednavigation:default</dependency>
@@ -149,6 +149,14 @@
149
149
  directory="profiles/1030_to_1031"
150
150
  />
151
151
 
152
+ <genericsetup:registerProfile
153
+ name="upgrade_1031_to_1032"
154
+ title="Upgrade common from 1031 to 1032"
155
+ description="Migrate missing settings from TinyMCE5 to TinyMCE7"
156
+ provides="Products.GenericSetup.interfaces.EXTENSION"
157
+ directory="profiles/1031_to_1032"
158
+ />
159
+
152
160
  <genericsetup:upgradeStep
153
161
  title="Configure first official release"
154
162
  description="Run needed registry step"
@@ -477,4 +485,15 @@
477
485
  />
478
486
  </genericsetup:upgradeSteps>
479
487
 
488
+ <genericsetup:upgradeSteps
489
+ profile="imio.smartweb.common:default"
490
+ source="1031"
491
+ destination="1032"
492
+ >
493
+ <genericsetup:upgradeDepends
494
+ title="Migrate missing settings from TinyMCE5 to TinyMCE7"
495
+ import_profile="imio.smartweb.common.upgrades:upgrade_1031_to_1032"
496
+ />
497
+ </genericsetup:upgradeSteps>
498
+
480
499
  </configure>
@@ -0,0 +1,86 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <registry>
3
+
4
+ <!-- See possible values in https://www.tiny.cloud/docs/tinymce/latest/available-menu-items/ -->
5
+ <record interface="plone.base.interfaces.controlpanel.ITinyMCESchema"
6
+ name="plone.menu"
7
+ >
8
+ <value purge="true">
9
+ {
10
+ "file": {
11
+ "title": "File",
12
+ "items": ""
13
+ },
14
+ "tools": {
15
+ "title": "Tools",
16
+ "items": ""
17
+ },
18
+ "table": {
19
+ "title": "Table",
20
+ "items": ""
21
+ },
22
+ "edit": {
23
+ "title": "Edit",
24
+ "items": "undo redo | cut copy paste | searchreplace selectall"
25
+ },
26
+ "format": {
27
+ "title": "Format",
28
+ "items": ""
29
+ },
30
+ "insert": {
31
+ "title": "Insert",
32
+ "items": ""
33
+ },
34
+ "table": {
35
+ "title": "Table",
36
+ "items": "inserttable deletetable | cell row column"
37
+ },
38
+ "view": {
39
+ "title": "View",
40
+ "items": "visualblocks preview fullscreen"
41
+ }
42
+ }
43
+ </value>
44
+ </record>
45
+
46
+ <!-- See paste_as_text options in https://www.tiny.cloud/docs/tinymce/latest/copy-and-paste/#paste_as_text -->
47
+ <!-- See style_formats options in https://www.tiny.cloud/docs/tinymce/latest/user-formatting-options/#style_formats -->
48
+ <!-- See default table options in https://www.tiny.cloud/docs/tinymce/latest/table-options/ -->
49
+ <!-- See plugin table options in https://www.tiny.cloud/docs/tinymce/latest/table/ -->
50
+ <record interface="plone.base.interfaces.controlpanel.ITinyMCESchema"
51
+ name="plone.other_settings"
52
+ >
53
+ <value>
54
+ {
55
+ "paste_as_text": true,
56
+ "style_formats": [
57
+ {
58
+ "block": "p",
59
+ "title": "Paragraphe"
60
+ },
61
+ {
62
+ "block": "h2",
63
+ "title": "Titre 2"
64
+ },
65
+ {
66
+ "block": "h3",
67
+ "title": "Titre 3"
68
+ },
69
+ {
70
+ "block": "h4",
71
+ "title": "Titre 4"
72
+ },
73
+ {
74
+ "block": "mark",
75
+ "title": "Mise en évidence"
76
+ },
77
+ {
78
+ "block": "blockquote",
79
+ "title": "Citation"
80
+ }
81
+ ]
82
+ }
83
+ </value>
84
+ </record>
85
+
86
+ </registry>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: imio.smartweb.common
3
- Version: 1.2.29
3
+ Version: 1.2.31
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
@@ -178,6 +178,20 @@ Changelog
178
178
  =========
179
179
 
180
180
 
181
+ 1.2.31 (2025-05-15)
182
+ -------------------
183
+
184
+ - Dirty css fix to hide the "Upload" button in the new pat-contentbrowser
185
+ [remdub]
186
+
187
+
188
+ 1.2.30 (2025-05-14)
189
+ -------------------
190
+
191
+ - Upgrade missing TinyMCE settings to version 7
192
+ [remdub]
193
+
194
+
181
195
  1.2.29 (2025-05-13)
182
196
  -------------------
183
197
 
@@ -1,4 +1,4 @@
1
- imio.smartweb.common-1.2.29-py3.13-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
1
+ imio.smartweb.common-1.2.31-py3.12-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
2
2
  imio/smartweb/common/__init__.py,sha256=Na9XBfEQUMrm2c5jbqQgwWeg40ih0aXVG1vT8NeAjMQ,2709
3
3
  imio/smartweb/common/adapters.py,sha256=BjnzwhRhSYXziKUzmNTRBOXqDv4k8C8kfmwqZE7r1yU,1413
4
4
  imio/smartweb/common/adapters.zcml,sha256=VO3luZDtRL9FIIEghxPrqpx8paZF3m6MGEy-8kF1sOQ,437
@@ -44,13 +44,13 @@ imio/smartweb/common/browser/privacy/utils.py,sha256=sjjKUWb09Wgi6XeMj5d9qC93iCT
44
44
  imio/smartweb/common/browser/privacy/views.py,sha256=RITfvlYcWG43Zssy46q3Izt-fDYKrUrnhD1A_-zBYqQ,1815
45
45
  imio/smartweb/common/browser/static/Makefile,sha256=LtPs80oJtQ7OWohNU9C60gRVBfN3p0N8ki158FKU7pg,351
46
46
  imio/smartweb/common/browser/static/package.json,sha256=lGQOfiOS0-p0SBh2rnNkZKiZToIKNGviruLr3sFUfV8,755
47
- imio/smartweb/common/browser/static/smartweb-common-edit-compiled.css,sha256=lIhk5Rmzye_1VvgHobUbI8M1Dx4KCsraBvseEg1eAKA,397
47
+ imio/smartweb/common/browser/static/smartweb-common-edit-compiled.css,sha256=4UcEN3qWH5OAfZB6MmAnLf28U1Da_APN2PBiV60-WZU,452
48
48
  imio/smartweb/common/browser/static/smartweb-common-edit-compiled.js,sha256=iHDTpF2oo2wJmkbP0mVRFxBZfpqPgVCp9POyBG5aOs0,804
49
49
  imio/smartweb/common/browser/static/smartweb-common-view-compiled.css,sha256=2ApU7ORyWPWUaylmnb-_JPVZyWNMGJsQFtaCcnuX-pY,1040
50
50
  imio/smartweb/common/browser/static/smartweb-common-view-compiled.js,sha256=7k8nElVDeNKuGC3G6wfN8KxMSlO-x1fEML7vs6l1LmA,1134
51
51
  imio/smartweb/common/browser/static/webpack.config.js,sha256=cb2bWO9Qd0IQX5kBsc8ynEbsDJCB5yPkagdAMEd6jvw,1045
52
52
  imio/smartweb/common/browser/static/src/edit.js,sha256=vmgtg9voaSw6nPcVNmkBqiuCnsrV-W352fSNZzxfDeU,1380
53
- imio/smartweb/common/browser/static/src/edit.less,sha256=S1LTB9C-v2X6e--GdyT6RCL05rtTN-viggfD0sjX9nE,402
53
+ imio/smartweb/common/browser/static/src/edit.less,sha256=1u66e_O063F048B4PEJWO3DCQs2wA0b6Ruf8rHCmcyc,466
54
54
  imio/smartweb/common/browser/static/src/view.js,sha256=CspnXPDZ8eo37Mse0Hk_NbVuXNRBrts3LOM4492z7-U,2045
55
55
  imio/smartweb/common/browser/static/src/view.less,sha256=6JV71CZtvZNaFhg6lIm2hwtfijxErsqb0ZyNPc3XIYs,1542
56
56
  imio/smartweb/common/faceted/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -61,7 +61,7 @@ imio/smartweb/common/faceted/widget.py,sha256=EMvFyEcS9t6lJAgz4zIkUnGAPd1fQcrv4A
61
61
  imio/smartweb/common/profiles/default/actions.xml,sha256=q5ajChGAPlPtpN_H80voDgg4C8Z-yDcIghUJIgFYtRg,1193
62
62
  imio/smartweb/common/profiles/default/browserlayer.xml,sha256=Up2dVOgFtzE43eLMNJY1xXvdUbQRSEpNxnySqSncFqQ,185
63
63
  imio/smartweb/common/profiles/default/catalog.xml,sha256=hB2Cu64TPp29EKICqbfixwa3AFmrDJVC784KeKTMX90,576
64
- imio/smartweb/common/profiles/default/metadata.xml,sha256=97yVYuoIc5iXFDW1Xi0b48xF-80zFA7VGQpKWupeqXY,432
64
+ imio/smartweb/common/profiles/default/metadata.xml,sha256=wGhizUvfr8wK8PTsvYMOjFXLsum3ZLNai6oizW3-LNA,432
65
65
  imio/smartweb/common/profiles/default/rolemap.xml,sha256=XCdOazRleiwTAAZt3lzTsOw3ZtIwoPDqA8s4zXACvkc,1595
66
66
  imio/smartweb/common/profiles/default/registry/registry.xml,sha256=GXo92ntNu5GPhFOvDzde5ES7z6pgzrvK1aJtH-ElAHg,44314
67
67
  imio/smartweb/common/profiles/default/registry/tinymce.xml,sha256=Z5iwGtQmL_dG0ACpMRoSLQ8BM-WXho0IXOwCnWBpZnc,5141
@@ -106,7 +106,7 @@ imio/smartweb/common/tests/resources/image_1400x800.png,sha256=Iy3bWGH4NBlgYC5Bo
106
106
  imio/smartweb/common/tests/resources/image_1800x700.png,sha256=aQcMisSFQO78c6QX4mO7qIfDb9SDRmfzTuPjxMJ_0HM,32643
107
107
  imio/smartweb/common/tests/robot/test_example.robot,sha256=3ClbWps1Pfr6-RHT4FmmzGWGmtJrNnDW53bJGP69Nz4,2011
108
108
  imio/smartweb/common/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
- imio/smartweb/common/upgrades/configure.zcml,sha256=wHN2K4_sO4kskUoDsJaidoFbKB9LH-agsUVSBCxZHrw,15520
109
+ imio/smartweb/common/upgrades/configure.zcml,sha256=hc2VR-xRvCjGpVJxWjJYTQ0CnGON0rAGgaMiHH0_JCs,16160
110
110
  imio/smartweb/common/upgrades/upgrades.py,sha256=NObmvdWPUrfgaPJhTB_tIZsmLawxg5jbui-TRLhS2NE,5474
111
111
  imio/smartweb/common/upgrades/profiles/1007_to_1008/rolemap.xml,sha256=dKUuBq-2pO4dGtHshBisISSTBP8aWfbwTGHj_pJvY5A,1346
112
112
  imio/smartweb/common/upgrades/profiles/1008_to_1009/actions.xml,sha256=D41gp1PDVINobhCM8L11IMXABYatjmoUuW-EQkPT804,721
@@ -128,6 +128,7 @@ imio/smartweb/common/upgrades/profiles/1027_to_1028/restored-faceted-jquery.xml,
128
128
  imio/smartweb/common/upgrades/profiles/1028_to_1029/registry.xml,sha256=3XXZyTOD_AWftgJ53ynpFuX5kwhbZEviU6zH1OgJkXQ,595
129
129
  imio/smartweb/common/upgrades/profiles/1029_to_1030/registry.xml,sha256=cApJaG7duyGX3D3Bby3V3D8YcIAZuWB-A-WSH3XKU7E,406
130
130
  imio/smartweb/common/upgrades/profiles/1030_to_1031/registry/tinymce.xml,sha256=EYBpIVuUnQyfxntiLmXoTLiRHBzMlwzfFXmTqwMNrn0,5813
131
+ imio/smartweb/common/upgrades/profiles/1031_to_1032/registry/tinymce.xml,sha256=3IOzZra7FIfxDO8DDIXwygL8z92f-cUCYEXq2GsVetg,2419
131
132
  imio/smartweb/common/viewlets/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
132
133
  imio/smartweb/common/viewlets/analytics.pt,sha256=J6e8fWmusLWMKXg3cJbNYV0LPS9ONz2yJ921vMvrrzE,33
133
134
  imio/smartweb/common/viewlets/colophon.pt,sha256=qaEUV2N5aZpAEcztLzK_R2eINBod1AByWxi11B1HYa0,1278
@@ -139,10 +140,10 @@ imio/smartweb/common/viewlets/skip_to_content.pt,sha256=-tb3HkoGG8H_gBZL4eiJrPcW
139
140
  imio/smartweb/common/viewlets/skip_to_content.py,sha256=wm22NUf8Qh5uzz8p4vkLCdFNiDv9zUGAueRyXAIXQDo,496
140
141
  imio/smartweb/common/widgets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
142
  imio/smartweb/common/widgets/select.py,sha256=vfVdbecH7qDfJvWV6TfkpqocD6AA5G4yIq7XqSOuVNw,1142
142
- imio_smartweb_common-1.2.29.dist-info/licenses/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
143
- imio_smartweb_common-1.2.29.dist-info/licenses/LICENSE.rst,sha256=5dd78Fdt0e-oM2ICBrMpjHnT8vEP-jhBDF7akXni6B4,655
144
- imio_smartweb_common-1.2.29.dist-info/METADATA,sha256=o6XK2b0uv2Hal02jeRMOL9K7SKTDT8kvmlwJG5pW_-s,17416
145
- imio_smartweb_common-1.2.29.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
146
- imio_smartweb_common-1.2.29.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
147
- imio_smartweb_common-1.2.29.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
148
- imio_smartweb_common-1.2.29.dist-info/RECORD,,
143
+ imio_smartweb_common-1.2.31.dist-info/licenses/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
144
+ imio_smartweb_common-1.2.31.dist-info/licenses/LICENSE.rst,sha256=5dd78Fdt0e-oM2ICBrMpjHnT8vEP-jhBDF7akXni6B4,655
145
+ imio_smartweb_common-1.2.31.dist-info/METADATA,sha256=U7-VheRZnVJXx-3z4dNgJ-XgsuHogpPLeyIscXHqHHs,17646
146
+ imio_smartweb_common-1.2.31.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
147
+ imio_smartweb_common-1.2.31.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
148
+ imio_smartweb_common-1.2.31.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
149
+ imio_smartweb_common-1.2.31.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.4.0)
2
+ Generator: setuptools (80.7.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5