imio.smartweb.common 1.2.29__py3-none-any.whl → 1.2.30__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/profiles/default/metadata.xml +1 -1
- imio/smartweb/common/upgrades/configure.zcml +19 -0
- imio/smartweb/common/upgrades/profiles/1031_to_1032/registry/tinymce.xml +86 -0
- {imio_smartweb_common-1.2.29.dist-info → imio_smartweb_common-1.2.30.dist-info}/METADATA +8 -1
- {imio_smartweb_common-1.2.29.dist-info → imio_smartweb_common-1.2.30.dist-info}/RECORD +11 -10
- /imio.smartweb.common-1.2.29-py3.13-nspkg.pth → /imio.smartweb.common-1.2.30-py3.12-nspkg.pth +0 -0
- {imio_smartweb_common-1.2.29.dist-info → imio_smartweb_common-1.2.30.dist-info}/WHEEL +0 -0
- {imio_smartweb_common-1.2.29.dist-info → imio_smartweb_common-1.2.30.dist-info}/licenses/LICENSE.GPL +0 -0
- {imio_smartweb_common-1.2.29.dist-info → imio_smartweb_common-1.2.30.dist-info}/licenses/LICENSE.rst +0 -0
- {imio_smartweb_common-1.2.29.dist-info → imio_smartweb_common-1.2.30.dist-info}/namespace_packages.txt +0 -0
- {imio_smartweb_common-1.2.29.dist-info → imio_smartweb_common-1.2.30.dist-info}/top_level.txt +0 -0
|
@@ -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.
|
|
3
|
+
Version: 1.2.30
|
|
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,13 @@ Changelog
|
|
|
178
178
|
=========
|
|
179
179
|
|
|
180
180
|
|
|
181
|
+
1.2.30 (2025-05-14)
|
|
182
|
+
-------------------
|
|
183
|
+
|
|
184
|
+
- Upgrade missing TinyMCE settings to version 7
|
|
185
|
+
[remdub]
|
|
186
|
+
|
|
187
|
+
|
|
181
188
|
1.2.29 (2025-05-13)
|
|
182
189
|
-------------------
|
|
183
190
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
imio.smartweb.common-1.2.
|
|
1
|
+
imio.smartweb.common-1.2.30-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
|
|
@@ -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=
|
|
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=
|
|
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.
|
|
143
|
-
imio_smartweb_common-1.2.
|
|
144
|
-
imio_smartweb_common-1.2.
|
|
145
|
-
imio_smartweb_common-1.2.
|
|
146
|
-
imio_smartweb_common-1.2.
|
|
147
|
-
imio_smartweb_common-1.2.
|
|
148
|
-
imio_smartweb_common-1.2.
|
|
143
|
+
imio_smartweb_common-1.2.30.dist-info/licenses/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
|
144
|
+
imio_smartweb_common-1.2.30.dist-info/licenses/LICENSE.rst,sha256=5dd78Fdt0e-oM2ICBrMpjHnT8vEP-jhBDF7akXni6B4,655
|
|
145
|
+
imio_smartweb_common-1.2.30.dist-info/METADATA,sha256=aeQDGpsPqkmkCvl9Ky7BHK-ljgHcCbgljpl0OHOJNkU,17518
|
|
146
|
+
imio_smartweb_common-1.2.30.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
147
|
+
imio_smartweb_common-1.2.30.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
|
148
|
+
imio_smartweb_common-1.2.30.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
|
149
|
+
imio_smartweb_common-1.2.30.dist-info/RECORD,,
|
/imio.smartweb.common-1.2.29-py3.13-nspkg.pth → /imio.smartweb.common-1.2.30-py3.12-nspkg.pth
RENAMED
|
File without changes
|
|
File without changes
|
{imio_smartweb_common-1.2.29.dist-info → imio_smartweb_common-1.2.30.dist-info}/licenses/LICENSE.GPL
RENAMED
|
File without changes
|
{imio_smartweb_common-1.2.29.dist-info → imio_smartweb_common-1.2.30.dist-info}/licenses/LICENSE.rst
RENAMED
|
File without changes
|
|
File without changes
|
{imio_smartweb_common-1.2.29.dist-info → imio_smartweb_common-1.2.30.dist-info}/top_level.txt
RENAMED
|
File without changes
|