imio.smartweb.core 1.3.5__py3-none-any.whl → 1.3.7__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/core/browser/static/smartweb-view-compiled.css +1 -1
- imio/smartweb/core/browser/static/src/view.less +48 -0
- imio/smartweb/core/contents/rest/base.py +13 -9
- imio/smartweb/core/contents/rest/campaign/content.py +7 -0
- imio/smartweb/core/contents/rest/campaign/view.pt +1 -0
- imio/smartweb/core/contents/rest/campaign/view.py +4 -0
- imio/smartweb/core/contents/sections/contact/view.pt +9 -7
- imio/smartweb/core/profiles/default/actions.xml +11 -0
- imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio/smartweb/core/upgrades/configure.zcml +19 -2
- imio/smartweb/core/upgrades/profiles/1067_to_1068/actions.xml +9 -0
- imio/smartweb/core/viewlets/configure.zcml +16 -0
- imio/smartweb/core/viewlets/menu.py +29 -2
- imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx +13 -2
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx +8 -6
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx +23 -11
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx +2 -0
- imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +3 -2
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +10 -11
- imio/smartweb/core/webcomponents/src/components/Events/Events.scss +16 -3
- {imio.smartweb.core-1.3.5.dist-info → imio_smartweb_core-1.3.7.dist-info}/METADATA +35 -2
- {imio.smartweb.core-1.3.5.dist-info → imio_smartweb_core-1.3.7.dist-info}/RECORD +31 -30
- {imio.smartweb.core-1.3.5.dist-info → imio_smartweb_core-1.3.7.dist-info}/WHEEL +1 -1
- /imio.smartweb.core-1.3.5-py3.8-nspkg.pth → /imio.smartweb.core-1.3.7-py3.12-nspkg.pth +0 -0
- {imio.smartweb.core-1.3.5.dist-info → imio_smartweb_core-1.3.7.dist-info/licenses}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.3.5.dist-info → imio_smartweb_core-1.3.7.dist-info/licenses}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.3.5.dist-info → imio_smartweb_core-1.3.7.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.3.5.dist-info → imio_smartweb_core-1.3.7.dist-info}/top_level.txt +0 -0
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx
CHANGED
@@ -7,7 +7,7 @@ import "../../../../node_modules/flexbin/flexbin.css";
|
|
7
7
|
import { Translate } from "react-translated";
|
8
8
|
import queryString from "query-string";
|
9
9
|
|
10
|
-
export default function CampaignContent({ queryUrl, onChange }) {
|
10
|
+
export default function CampaignContent({ queryUrl, onChange, displayRedThumbs }) {
|
11
11
|
const navigate = useNavigate();
|
12
12
|
const { u, ...parsed } = Object.assign({
|
13
13
|
id: queryString.parse(useFilterQuery().toString())["u"],
|
@@ -36,8 +36,6 @@ export default function CampaignContent({ queryUrl, onChange }) {
|
|
36
36
|
// set all contacts state
|
37
37
|
useEffect(() => {
|
38
38
|
if (response !== null) {
|
39
|
-
console.log(response && response);
|
40
|
-
|
41
39
|
const status = response.workflow.fields.statut;
|
42
40
|
if (status === "Publié sans vote" || status === "Publié") {
|
43
41
|
setVoteContext("vote_nodisplay");
|
@@ -79,6 +77,7 @@ export default function CampaignContent({ queryUrl, onChange }) {
|
|
79
77
|
urlVoteContre={urlVoteContre}
|
80
78
|
voteContext={voteContext}
|
81
79
|
urlComment={urlComment}
|
80
|
+
displayRedThumbs={displayRedThumbs}
|
82
81
|
/>
|
83
82
|
</div>
|
84
83
|
) : (
|
@@ -98,7 +97,14 @@ export default function CampaignContent({ queryUrl, onChange }) {
|
|
98
97
|
);
|
99
98
|
}
|
100
99
|
|
101
|
-
function ContentText({
|
100
|
+
function ContentText({
|
101
|
+
item,
|
102
|
+
urlVotePour,
|
103
|
+
urlVoteContre,
|
104
|
+
urlComment,
|
105
|
+
voteContext,
|
106
|
+
displayRedThumbs,
|
107
|
+
}) {
|
102
108
|
const [image, setImage] = useState(new Image());
|
103
109
|
const [imageClassName, setImageClassName] = useState("");
|
104
110
|
|
@@ -135,13 +141,19 @@ function ContentText({ item, urlVotePour, urlVoteContre, urlComment, voteContext
|
|
135
141
|
<span className="campaign-vote-pour-count">({item.votes_pour})</span>
|
136
142
|
<span className="campaign-vote-contre-text"> Je vote pour</span>
|
137
143
|
</a>
|
138
|
-
|
139
|
-
<
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
144
|
+
{displayRedThumbs && (
|
145
|
+
<a
|
146
|
+
href={urlVoteContre}
|
147
|
+
target="_blank"
|
148
|
+
className="campaign-vote-contre"
|
149
|
+
>
|
150
|
+
<i className="bi bi-hand-thumbs-down-fill"></i>
|
151
|
+
<span className="campaign-vote-contre-count">
|
152
|
+
({item.votes_contre})
|
153
|
+
</span>
|
154
|
+
<span className="campaign-vote-contre-text"> Je vote contre</span>
|
155
|
+
</a>
|
156
|
+
)}
|
145
157
|
</div>
|
146
158
|
{image ? (
|
147
159
|
<div className="r-content-img">
|
@@ -9,6 +9,7 @@ const CampaignList = ({
|
|
9
9
|
onHover,
|
10
10
|
showCategoriesOrTopics,
|
11
11
|
contextAuthenticatedUser,
|
12
|
+
displayRedThumbs,
|
12
13
|
}) => {
|
13
14
|
const { scrollPos, updateScrollPos } = useContext(ScrollContext);
|
14
15
|
|
@@ -58,6 +59,7 @@ const CampaignList = ({
|
|
58
59
|
showCategoriesOrTopics={showCategoriesOrTopics}
|
59
60
|
key={item.created}
|
60
61
|
contextAuthenticatedUser={contextAuthenticatedUser}
|
62
|
+
displayRedThumbs={displayRedThumbs}
|
61
63
|
/>
|
62
64
|
</li>
|
63
65
|
))}
|
@@ -121,6 +121,7 @@ const ContactContent = ({ queryUrl, onChange, onlyPastEvents, contextAuthenticat
|
|
121
121
|
const closeSchedul = () => {
|
122
122
|
setSchedulVisibility(false);
|
123
123
|
};
|
124
|
+
console.log(recurence);
|
124
125
|
return isLoading ? (
|
125
126
|
<div className="lds-roller-container">
|
126
127
|
<Translate text="Chargement..." />
|
@@ -153,7 +154,7 @@ const ContactContent = ({ queryUrl, onChange, onlyPastEvents, contextAuthenticat
|
|
153
154
|
width="16"
|
154
155
|
height="16"
|
155
156
|
fill="currentColor"
|
156
|
-
|
157
|
+
className="bi bi-pencil-square"
|
157
158
|
viewBox="0 0 16 16"
|
158
159
|
>
|
159
160
|
<path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z" />
|
@@ -324,7 +325,7 @@ const ContactContent = ({ queryUrl, onChange, onlyPastEvents, contextAuthenticat
|
|
324
325
|
)}
|
325
326
|
<span className="recurence-schedul-more">
|
326
327
|
Prochaines dates
|
327
|
-
<i
|
328
|
+
<i className="bi bi-arrow-down-short"></i>
|
328
329
|
</span>
|
329
330
|
</p>
|
330
331
|
<div
|
@@ -199,17 +199,16 @@ function EventsView(props) {
|
|
199
199
|
<div className="r-add-event">
|
200
200
|
<a target="_blank" href={props.proposeUrl}>
|
201
201
|
<Translate text="Proposer un événement" />
|
202
|
-
<
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
</svg>
|
202
|
+
<div className="r-add-event-icon">
|
203
|
+
<svg
|
204
|
+
data-name="Calque 1"
|
205
|
+
xmlns="http://www.w3.org/2000/svg"
|
206
|
+
viewBox="0 0 668.26 676.14"
|
207
|
+
>
|
208
|
+
<path d="M162.9 51.83h304.7c-1.03-10.91-1.97-24.53-1.03-35.5.99-11.58 10.86-20.92 21.97-13.91 1.52.96 6.04 6.64 6.04 7.95v41.46h96.41c17.66 0 37.58 21.03 38.34 38.59l.15 330.53c64.12 72.13 46.53 184.36-36.31 233.47-75.97 45.03-172.33 17.55-214.13-59.16-3.7-.39-7.11.99-10.77 1.09-107.79 2.79-215.98-2.19-323.81-.04-23.59-1.48-41.85-16.37-44.42-40.43V92.25c-.86-17.33 20.73-40.42 37.5-40.42h98.4V10.37c0-4.74 8.82-10.3 13.49-10.3s13.49 5.56 13.49 10.3v41.46ZM135.93 78.8H42.52c-1.85 0-7.83 3.01-9.52 4.47-1.81 1.55-5.97 8.02-5.97 10.02v70.43h574.44V92.29c0-5.05-9.56-13.49-14.49-13.49h-92.41v42.46c0 .36-3.72 4.88-4.48 5.51-10.2 8.49-22.25.77-23.48-11.51-1.08-10.75.17-24.22.74-35l-1.26-1.45H162.9v41.46c0 7.08-11.03 10.55-17.26 9.26-3.19-.66-9.72-6.23-9.72-9.26V78.81Zm465.54 111.89H27.03v364.14c0 3.51 9.3 13.49 12.49 13.49H366.2c.09 0 2.2 2.45 1.48-.48-.85-3.46-2.9-7.53-3.68-11.31C339.69 439.65 444.15 343.54 558.51 376c15.31 4.35 29.93 11.48 42.96 20.48v-205.8Zm-92.11 206.1c-101.67 3.96-158.34 120.93-95.1 202.4 61.94 79.8 185.04 60.07 219.2-34.35 30.3-83.75-35.93-171.5-124.1-168.06Z" />
|
209
|
+
<path d="M125.7 391.75c8.2-1.12 36.31-1.31 43.21 2.24 4.23 2.17 7.43 7.25 8.01 11.97 1.03 8.47.83 29.33.01 38.03-.55 5.9-3.6 11.52-9.48 13.5-5.74 1.92-34.71 1.64-42.05.99-6.3-.56-11.32-3.28-13.49-9.48-1.64-4.67-1.8-39.01-.89-44.94 1.09-7.08 8.1-11.4 14.68-12.29ZM125.47 269.22c8.01-1.33 34.99-1.74 41.96 1.37 5.91 2.63 8.74 7.04 9.47 13.51.95 8.47.9 28.46.05 37.02-.61 6.11-3.52 11.39-9.5 13.48-5.4 1.89-34.95 1.62-42.05.99-6.3-.56-11.32-3.28-13.49-9.48-1.65-4.7-1.77-39.02-.72-44.77 1.37-7.53 7.35-10.97 14.28-12.12ZM240.17 395.84c1.14-1.03 2.71-1.76 4.13-2.36 7.13-2.98 31.5-2.79 40.02-2.03 7.6.68 15.47 5.26 16.47 13.5 1.07 8.86.9 30.97.03 40.03-.74 7.63-5.97 12.63-13.53 13.44-8.95.96-29 .92-38.02.05-6.71-.65-12.62-5.56-13.46-12.52-1.1-9.15-.84-30.59-.02-40.02.32-3.67 1.58-7.58 4.38-10.1ZM249.56 268.86c7.35-1.15 35.4-1.11 41.75 1.73 3.79 1.69 7.16 4.42 8.51 8.47 1.88 5.61 1.69 35.87 1 43.06-.56 5.75-3.95 10.54-9.49 12.49-5.17 1.81-35.3 1.67-42.01.95s-12.66-5.45-13.51-12.47c-.92-7.69-1.05-35.52.26-42.74 1.07-5.88 7.83-10.6 13.49-11.48ZM528.54 509.38h56.44c5.87 0 11.61 8.82 11.58 14.49-.02 4.58-6.21 13.48-10.58 13.48h-57.44v54.45c0 2.01-3.75 9.07-5.47 10.51-7.92 6.68-22.5.53-22.5-9.51v-55.45h-57.44c-1.37 0-6.91-4.49-7.94-6.04-4.48-6.74-2.95-15.54 4.1-19.78.66-.4 4.58-2.15 4.84-2.15h56.44v-55.45c0-1.11 3.57-7.51 4.75-8.51 6.23-5.29 17.03-3.45 21.09 3.65.4.69 2.13 5.5 2.13 5.86v54.45Z" />
|
210
|
+
</svg>
|
211
|
+
</div>
|
213
212
|
</a>
|
214
213
|
</div>
|
215
214
|
)}
|
@@ -94,8 +94,10 @@ article > header {
|
|
94
94
|
.r-list-item-group {
|
95
95
|
position: relative;
|
96
96
|
list-style: none;
|
97
|
-
margin:
|
98
|
-
|
97
|
+
margin: 2rem 0;
|
98
|
+
@media screen and (min-width: 600px) {
|
99
|
+
margin: 1rem 0;
|
100
|
+
}
|
99
101
|
.r-list-item-link {
|
100
102
|
inset: 0px !important;
|
101
103
|
position: absolute !important;
|
@@ -140,7 +142,13 @@ article > header {
|
|
140
142
|
}
|
141
143
|
|
142
144
|
.r-item-title {
|
145
|
+
display: block;
|
146
|
+
}
|
147
|
+
|
148
|
+
.r-item-date {
|
143
149
|
font-weight: bold;
|
150
|
+
font-size: 1.1rem;
|
151
|
+
margin-bottom: 0.5rem;
|
144
152
|
display: block;
|
145
153
|
}
|
146
154
|
|
@@ -230,7 +238,7 @@ article > header {
|
|
230
238
|
}
|
231
239
|
|
232
240
|
.r-item-categorie {
|
233
|
-
margin-
|
241
|
+
margin-top: 0.5rem;
|
234
242
|
text-transform: uppercase;
|
235
243
|
color: #747474;
|
236
244
|
font-weight: 400;
|
@@ -484,6 +492,11 @@ article > header {
|
|
484
492
|
font-size: 14px;
|
485
493
|
}
|
486
494
|
|
495
|
+
.r-add-event-icon {
|
496
|
+
width: 25px;
|
497
|
+
height: 25px;
|
498
|
+
}
|
499
|
+
|
487
500
|
// // No Map
|
488
501
|
// // Main
|
489
502
|
.no-map {
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.7
|
4
4
|
Summary: Core product for iMio websites
|
5
5
|
Home-page: https://github.com/imio/imio.smartweb.core
|
6
6
|
Author: Christophe Boulanger
|
@@ -57,6 +57,19 @@ Requires-Dist: plone.restapi[test]; extra == "test"
|
|
57
57
|
Requires-Dist: requests-mock; extra == "test"
|
58
58
|
Requires-Dist: beautifulsoup4; extra == "test"
|
59
59
|
Requires-Dist: freezegun; extra == "test"
|
60
|
+
Dynamic: author
|
61
|
+
Dynamic: author-email
|
62
|
+
Dynamic: classifier
|
63
|
+
Dynamic: description
|
64
|
+
Dynamic: home-page
|
65
|
+
Dynamic: keywords
|
66
|
+
Dynamic: license
|
67
|
+
Dynamic: license-file
|
68
|
+
Dynamic: project-url
|
69
|
+
Dynamic: provides-extra
|
70
|
+
Dynamic: requires-dist
|
71
|
+
Dynamic: requires-python
|
72
|
+
Dynamic: summary
|
60
73
|
|
61
74
|
.. This README is meant for consumption by humans and pypi. Pypi can render rst files so please do not use Sphinx features.
|
62
75
|
If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html
|
@@ -191,6 +204,26 @@ Changelog
|
|
191
204
|
=========
|
192
205
|
|
193
206
|
|
207
|
+
1.3.7 (2025-04-15)
|
208
|
+
------------------
|
209
|
+
|
210
|
+
- Fix base endpoint for imio app (like TS)
|
211
|
+
[boulch]
|
212
|
+
|
213
|
+
|
214
|
+
1.3.6 (2025-04-10)
|
215
|
+
------------------
|
216
|
+
|
217
|
+
- Fix contact template to improve multi-contact display
|
218
|
+
[thomlamb]
|
219
|
+
|
220
|
+
- Ideabox : Add red thumbs display choice in campaign view
|
221
|
+
[thomlamb]
|
222
|
+
|
223
|
+
- WEB-4237 : Hide unnecessary toolbar entries when rendering a React view
|
224
|
+
[boulch]
|
225
|
+
|
226
|
+
|
194
227
|
1.3.5 (2025-04-03)
|
195
228
|
------------------
|
196
229
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.3.
|
1
|
+
imio.smartweb.core-1.3.7-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
4
|
imio/smartweb/core/configure.zcml,sha256=sCJwomh6ve6OPSDexKNacz2PUkqzI5EVn8SEMZo4Sfw,1630
|
@@ -80,7 +80,7 @@ imio/smartweb/core/browser/static/package.json,sha256=rJeZEnDqQvcPTakkRPOZCALk8H
|
|
80
80
|
imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=3C1_U0jw_1cq97onQlsCWulezGUM4r__WmB1QqCdr8E,5120
|
81
81
|
imio/smartweb/core/browser/static/smartweb-edit-compiled.js,sha256=8apUM0A48d1cDvNbj3eL82sJzzbI3gDurkV48uGOOpg,1222
|
82
82
|
imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js,sha256=N2b-d5pLMqI66U5ORf0E8UvjJqcnYpfe8QmHjf46Qzs,608
|
83
|
-
imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=
|
83
|
+
imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=npyopq8t3SHOTlHwvNjJbIz__QeBJr9i8IufmK2DQgs,3694
|
84
84
|
imio/smartweb/core/browser/static/smartweb-view-compiled.js,sha256=73bvXpnpueWVKAqaS5CFFHbQnD6RuixH58SaRJP_Gh0,2162
|
85
85
|
imio/smartweb/core/browser/static/spotlight-bundle.js,sha256=MxZ4E6qmRiV1eojklqYnKc9J7q1p1YeCWYoCfXNhZmA,19615
|
86
86
|
imio/smartweb/core/browser/static/swiper-bundle.min.css,sha256=_7BNAPE6sDlKRWoyA9Hax0ffAel0ai6vNtp51OUHFAA,17908
|
@@ -154,7 +154,7 @@ imio/smartweb/core/browser/static/src/edit.js,sha256=8o6qgeMJ_kDyq94HJ6xB_junqSY
|
|
154
154
|
imio/smartweb/core/browser/static/src/edit.less,sha256=uiqNkhAIucG9q4Gz1PJyt2GkYsvcOgkWKhcTUj2BAJU,5408
|
155
155
|
imio/smartweb/core/browser/static/src/swiper-config.js,sha256=PK5Uw_vbHcXiyt3R8Gvdq2geNX6LEdQB2QTWTcKSqWg,1285
|
156
156
|
imio/smartweb/core/browser/static/src/view.js,sha256=c8J_VYwXuM_9u0c2OWs96yeTJTZOmKpgoCup5GLo5js,3268
|
157
|
-
imio/smartweb/core/browser/static/src/view.less,sha256=
|
157
|
+
imio/smartweb/core/browser/static/src/view.less,sha256=5j7QffupSausmmFMuTsxzADCkf84v5pjb6PGN3eAA5I,4399
|
158
158
|
imio/smartweb/core/browser/subsite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
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
|
@@ -212,17 +212,17 @@ imio/smartweb/core/contents/publication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
|
|
212
212
|
imio/smartweb/core/contents/publication/configure.zcml,sha256=tbotMG82XoUSWSMEI0J9ixYPWcUCDsu4Eh0RlO7PdyA,125
|
213
213
|
imio/smartweb/core/contents/publication/content.py,sha256=lWpNVN6x59xD201uSxykzVcphyDz6Ik7Sh7trYfwOgE,572
|
214
214
|
imio/smartweb/core/contents/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
215
|
-
imio/smartweb/core/contents/rest/base.py,sha256=
|
215
|
+
imio/smartweb/core/contents/rest/base.py,sha256=GGQ54m_tcpw4b3UrOowSv8eM2aYmxxmcijqAyb6WEVs,2980
|
216
216
|
imio/smartweb/core/contents/rest/configure.zcml,sha256=aRhtgdIr4KvqNwF1cMMNwrl2DiSfqEJazRpAQQflnBw,467
|
217
217
|
imio/smartweb/core/contents/rest/traversal.py,sha256=KLNGhUmvTAzaRqSIzT3B28HgMBK4vcNV75AfyIesjN8,540
|
218
218
|
imio/smartweb/core/contents/rest/utils.py,sha256=yZZr3FhgaihJx-H2FdQDUx7lqZuHufff0dvDcz4BsHI,3086
|
219
219
|
imio/smartweb/core/contents/rest/view.py,sha256=RlQG2NGojTxQaEySg6Kl1xxDy2KkoC4ktK45Uc4H2ME,1110
|
220
220
|
imio/smartweb/core/contents/rest/campaign/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
221
221
|
imio/smartweb/core/contents/rest/campaign/configure.zcml,sha256=LaZqHBIshYCreTqevApeXioRd8aC9RELcHqJiqg4zCY,2314
|
222
|
-
imio/smartweb/core/contents/rest/campaign/content.py,sha256=
|
222
|
+
imio/smartweb/core/contents/rest/campaign/content.py,sha256=F2G0Ta427afuc8o0Rpl7MgJfs1wQJkyltl2qlsK9RlM,3106
|
223
223
|
imio/smartweb/core/contents/rest/campaign/endpoint.py,sha256=ghkQy318R_kd5aK9PMXGYyX_bkg7bEFF01OUpcVMl1Q,7501
|
224
|
-
imio/smartweb/core/contents/rest/campaign/view.pt,sha256=
|
225
|
-
imio/smartweb/core/contents/rest/campaign/view.py,sha256=
|
224
|
+
imio/smartweb/core/contents/rest/campaign/view.pt,sha256=1BSHwa14s0oLq8B8k7XgZCOgmWLFEyHsnuaN3BHOx8c,1012
|
225
|
+
imio/smartweb/core/contents/rest/campaign/view.py,sha256=L96QAMaZveNbOdwzxTGGQFrlfF2t09s8de1oj-zZuAk,845
|
226
226
|
imio/smartweb/core/contents/rest/directory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
227
|
imio/smartweb/core/contents/rest/directory/configure.zcml,sha256=_K34jECLk9RWscAyiRXwoJLLBIVj-EJRGFOEbUU5Ito,1035
|
228
228
|
imio/smartweb/core/contents/rest/directory/content.py,sha256=CpOPKpeBGZp7NSqtv9IWgaUUmMGDDuUiB1rcPQaXCUE,1102
|
@@ -262,7 +262,7 @@ imio/smartweb/core/contents/sections/contact/content.py,sha256=MdhY6QPMdCseThddj
|
|
262
262
|
imio/smartweb/core/contents/sections/contact/forms.py,sha256=VlN_jse8tYxE9RCro2RgHlZRDDIyZA8Bjr-dNePZYwU,1387
|
263
263
|
imio/smartweb/core/contents/sections/contact/macros.pt,sha256=wU-wXeHzq6gvm-q2RmnjE53H1AMkVYhq2YyYZU1speM,10857
|
264
264
|
imio/smartweb/core/contents/sections/contact/utils.py,sha256=4OlmRHwvR_lUiR1DAuFbSaRhqBboZHdrPVRJz1wZN9s,5778
|
265
|
-
imio/smartweb/core/contents/sections/contact/view.pt,sha256=
|
265
|
+
imio/smartweb/core/contents/sections/contact/view.pt,sha256=VGNFlnWjxsB_WCFojyyh_C541Bu6PWj_5JRuQuiIz1I,1474
|
266
266
|
imio/smartweb/core/contents/sections/contact/view.py,sha256=ZNjRtE-LMSZADLBVpwF2ILi5tiepFOFtlMAciDS8RBo,2294
|
267
267
|
imio/smartweb/core/contents/sections/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
268
268
|
imio/smartweb/core/contents/sections/events/configure.zcml,sha256=FCDIf6w-2qCPqq0QUodw8-xyAopq7l6O8zoU_uMHNwg,1117
|
@@ -342,12 +342,12 @@ imio/smartweb/core/faceted/configure.zcml,sha256=xuZzXBOMGu87KNLuFIQ8gHz8fxct7lD
|
|
342
342
|
imio/smartweb/core/faceted/layout.py,sha256=9WCr3U7cEy0SmfI1cXBijR1bF4DVXQ684LzGpD-MNMw,395
|
343
343
|
imio/smartweb/core/faceted/menu.py,sha256=fFCDVUyN8803Jf7vfkF5FczbYavPC-FoiC-mxZT6Mag,295
|
344
344
|
imio/smartweb/core/faceted/config/collection.xml,sha256=N_IE-bDMPXKWOhkI_y6seEDYKOeDWQvstwIbtXvPAlw,2906
|
345
|
-
imio/smartweb/core/profiles/default/actions.xml,sha256=
|
345
|
+
imio/smartweb/core/profiles/default/actions.xml,sha256=TwRzyJhg44j1vI4pBW8-50qb4WmCaKqP6e4r1ijVAsI,7504
|
346
346
|
imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH8EF-fc-aPua-oIdu0GuzTyk,179
|
347
347
|
imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
|
348
348
|
imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
|
349
349
|
imio/smartweb/core/profiles/default/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
|
350
|
-
imio/smartweb/core/profiles/default/metadata.xml,sha256=
|
350
|
+
imio/smartweb/core/profiles/default/metadata.xml,sha256=XkCOWmPBMX-JjP_Rf21H_obLimaJPYCO376G-9XWneU,1218
|
351
351
|
imio/smartweb/core/profiles/default/repositorytool.xml,sha256=aTErs-VvEEV3dm9_TdgPZfx1Pb1f5Sw7ap7IgiJOK4w,227
|
352
352
|
imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
|
353
353
|
imio/smartweb/core/profiles/default/types.xml,sha256=oPZSjRtivll-J9qzhd4STvM7w1P6quyLp4ky6aH913w,2201
|
@@ -508,7 +508,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
|
|
508
508
|
imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
|
509
509
|
imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
|
510
510
|
imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
511
|
-
imio/smartweb/core/upgrades/configure.zcml,sha256=
|
511
|
+
imio/smartweb/core/upgrades/configure.zcml,sha256=lbGv-IV0OuiukKMmN70P1zomNXLAddhSTQ08GBe5zqE,34282
|
512
512
|
imio/smartweb/core/upgrades/upgrades.py,sha256=dglP6cUcUufp7wCjdanKKcZoEI1bCV1FWI_M1eNAnz8,10418
|
513
513
|
imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
|
514
514
|
imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
|
@@ -649,6 +649,7 @@ imio/smartweb/core/upgrades/profiles/1063_to_1064/types/Link.xml,sha256=19TjIa4m
|
|
649
649
|
imio/smartweb/core/upgrades/profiles/1063_to_1064/types/imio.smartweb.BlockLink.xml,sha256=1r5sydZbHyom_VIrH_gT34FwwPUMyk87x2g3FAjNltE,293
|
650
650
|
imio/smartweb/core/upgrades/profiles/1063_to_1064/types/imio.smartweb.SectionSlide.xml,sha256=kViKVS5u-x54Au1ShmOs4gUCd0a2UOwyAv_JgThzdVQ,296
|
651
651
|
imio/smartweb/core/upgrades/profiles/1066_to_1067/types/imio.smartweb.SectionTimestampedPublications.xml,sha256=FhZjkrdpAseJwzcSMLR76JzuB0wqI9lM7Z4o1sEDbQc,1479
|
652
|
+
imio/smartweb/core/upgrades/profiles/1067_to_1068/actions.xml,sha256=YDIrrV_SDAxQkMlWATLla6S-DoJigU3pyJ8tEx9Ralo,639
|
652
653
|
imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
653
654
|
imio/smartweb/core/viewlets/actions.py,sha256=CUMkS3w_MXOxqOzqp7s3PFCUF-RCrCFsKw3oxv0C37E,1200
|
654
655
|
imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
|
@@ -658,7 +659,7 @@ imio/smartweb/core/viewlets/category.pt,sha256=JElI8UGE7Lk-Uhf2KsKlTlX3EvqPdjmgk
|
|
658
659
|
imio/smartweb/core/viewlets/category.py,sha256=F8Vqxy3686-jY6ymjvZJFtK1Kj2a8Sqj8tAC37ZsCOU,308
|
659
660
|
imio/smartweb/core/viewlets/chatbot.pt,sha256=ataC2OtLpEawvrIZnM9vR8ChLfwkeMl78tOieSGpvSM,611
|
660
661
|
imio/smartweb/core/viewlets/chatbot.py,sha256=WgY4PQ7hZAuMRdACxRmwAs7-71Vl-h1Jk7CM1YPc6b0,329
|
661
|
-
imio/smartweb/core/viewlets/configure.zcml,sha256=
|
662
|
+
imio/smartweb/core/viewlets/configure.zcml,sha256=vIVHgd9iYaAvl2rKfdulATbUdSCcHbRyUhayAikJldI,14320
|
662
663
|
imio/smartweb/core/viewlets/default_page_warning.pt,sha256=nw1G01jkmyY776NMmSxg-7ZHuNcZkzbrrZirTaRVyXY,531
|
663
664
|
imio/smartweb/core/viewlets/external_content.py,sha256=YeTvnnfnAS1jsgsqvwTmYjjOHxg9BYX1MlQPNef_HkA,558
|
664
665
|
imio/smartweb/core/viewlets/footer.pt,sha256=KZVvks-NtSzAoQTTMClTUy0M07r0kgbd6B6bgKXVaK4,1103
|
@@ -676,7 +677,7 @@ imio/smartweb/core/viewlets/interfaces.py,sha256=guKxKhsi93k2GXX5Ohw-wAdxwZKxstQ
|
|
676
677
|
imio/smartweb/core/viewlets/lead_image.py,sha256=z7MVIBEcdmjR53TYCP60YHi-6fgUz7RHbK82GtfDjKk,318
|
677
678
|
imio/smartweb/core/viewlets/logo.pt,sha256=5XeXG4h8aCD2yiz59BRbhVICE-YYCZ3q-qnuSxOrmKU,738
|
678
679
|
imio/smartweb/core/viewlets/logo.py,sha256=ZiXI8q3FvW4VVMtEbS838t-vFcxAoRj8FjSVlsWuNY4,2213
|
679
|
-
imio/smartweb/core/viewlets/menu.py,sha256=
|
680
|
+
imio/smartweb/core/viewlets/menu.py,sha256=ozAKqBcV-nNwjzrQmQz4dNQb07d4t3gg3vxFNPQK1zk,1246
|
680
681
|
imio/smartweb/core/viewlets/messages.py,sha256=lsu32QmdwSGjLIhxEwJ7ggGgnoPUGAGFUzj3i4gv0dU,872
|
681
682
|
imio/smartweb/core/viewlets/minisite.py,sha256=5477JK5xc-KJCAowGOn0KooSYpDo-6cUwsUzs5zzC7o,648
|
682
683
|
imio/smartweb/core/viewlets/minisite_link.pt,sha256=4BwRkbEAT-9TElSsUPUBOki9VZqKMnfac1icTUDBINI,370
|
@@ -721,7 +722,7 @@ imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.c
|
|
721
722
|
imio/smartweb/core/webcomponents/build/css/420.smartweb-webcomponents-compiled.css,sha256=3Q92R9fWkaxgUWZBpVP1GxVu5NoyQ0l0y_vjjfJgcO8,15928
|
722
723
|
imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css,sha256=fliDxV7ndq55M6cIWIXkHFB5zHmzhRKqkogFqE2C_Xw,8343
|
723
724
|
imio/smartweb/core/webcomponents/build/css/666.smartweb-webcomponents-compiled.css,sha256=V-JEaePwzO7waXcqPZslWJ2eSOzgEQGldZhtlSXD3aA,11460
|
724
|
-
imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css,sha256=
|
725
|
+
imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css,sha256=Caa6G19xHRnmDsB_YZGqkJTU5o7LP2IwO_HdlwtN1EU,32644
|
725
726
|
imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css,sha256=zRQhgF9klDIGadELi-8rqHrKbHYgLO8Bq4skgUjAXBA,2861
|
726
727
|
imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=M8icautg0PsMAmXKrHtVpzfxbu14EYhtawBoD6spwdE,4719
|
727
728
|
imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js,sha256=gBUVapWbeu6EcGSuNcVqWHwqA0OJxaD5UFSKHVtHhpM,186434
|
@@ -734,12 +735,12 @@ imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js
|
|
734
735
|
imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=B03VEQIf5-peYZ3aIPo4HwSjhvfIfcjlCdGtpf1Z7XM,64198
|
735
736
|
imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=srGNtnoNHz0w5OlaCDZLtTP8yBsDypbLTNk4qjsLvTU,317
|
736
737
|
imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=mA2ASTIlSg0T8xOqrOPxhHSu9_4HZLOfC3xscQfhi2M,35316
|
737
|
-
imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js,sha256=
|
738
|
+
imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js,sha256=MxSAiHjCaHFBvG4luH5dYXfKws0RHxRKd1gkdliadr4,35017
|
738
739
|
imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js,sha256=QMD0dRW14xDwbGZu7ItIUo5UrDxm6_f-mXjEe_BQT-A,17400
|
739
740
|
imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
|
740
741
|
imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js,sha256=SDOFrHK3AuLHcrpSvRqHWmxr4AYuf5XtmIarPNh-gck,156597
|
741
742
|
imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
|
742
|
-
imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=
|
743
|
+
imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=tkpJxmvQhF2aSb_iTV9yC5mD08Mhvax3m05r3IFR8CM,43411
|
743
744
|
imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=x0ZlINRcfaba6Kcxz16tXBhRjVtoehUyGdVn4ZpxCac,20290
|
744
745
|
imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js,sha256=LDPAe2l7jOqiO1bz_i5hEPlu-JEGErDEwJ9CCsBMUtg,14000
|
745
746
|
imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js,sha256=YLKWqrbFtX1Q2I0gtWEbu7HTVAXe6kbOCWw6CeW8r7Y,299300
|
@@ -765,18 +766,18 @@ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard
|
|
765
766
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=g8PP7oH_DZhq5qHJzkV4T3XLRPdR_gP-Yv5SBdUgwiE,39216
|
766
767
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=_UbuWGN_Goao7BXlW19rIuvoj_2X7JkXBN8KXqOvbS8,2309
|
767
768
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=yg7k4KgIOprikaOImjO-Mh7r83tbw0rgkc3YprQ72_4,13423
|
768
|
-
imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx,sha256=
|
769
|
+
imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx,sha256=Wm6QkHScfigtYDgSzIFiVinLY75b5v02x_DmczKnhcI,12932
|
769
770
|
imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss,sha256=UyJ7DXOY2h7sBWEVbMHJaxmsgnU1HI49CIWH-KmPAzs,18352
|
770
771
|
imio/smartweb/core/webcomponents/src/components/Campaign/index.js,sha256=QSsDk_SfGrFNtfNvm4tpstUxzU7-t8664a_oRHTGYq0,97
|
771
|
-
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx,sha256=
|
772
|
-
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx,sha256=
|
773
|
-
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx,sha256=
|
772
|
+
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx,sha256=M0IA6iyMiEPuBGB7bdR0MrDXhwfex2vQIq5tgFOoUzA,3415
|
773
|
+
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx,sha256=5oGQjJqKT1CsZ3uDz-zaxZ6lI6Tg5L_7oaGA0iNBVO4,9880
|
774
|
+
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx,sha256=s1Na63_Xp0yPmQRr7UH5XPAAkmeppB4O8OGOxvBlqWo,2586
|
774
775
|
imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx,sha256=g2sPYM3opHXKz7FpGZRvUbMJ8cTR2OJEyLKH-rIYbX8,7677
|
775
|
-
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=
|
776
|
-
imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=
|
776
|
+
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=sUlNvDWctBhLqftqO6gon9o2ixs9KCs9OqB898h2pho,14493
|
777
|
+
imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=DF3ntjQTi2p1M4rYtAs-THg5111x-7jTApggVdFnq04,13079
|
777
778
|
imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
|
778
779
|
imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=CYb-6E5sfgIXFNc2-2dpajBsBggITh-pxqEkiPiJw0M,3586
|
779
|
-
imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=
|
780
|
+
imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=r5oyKPnQYi7cnBz3TbIGnGz85C0NAH8PgRJXgYO73gw,37457
|
780
781
|
imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=IE3u7O46ZF-wA0pu5WFT-lW84-l993mZVHei6JUmuBc,2414
|
781
782
|
imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=Onfa6fL2f1vTt4sAsYNNWA1uHgMR7an10b3IaMpRL1k,15951
|
782
783
|
imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=XKiN7Y8CFz48IluCEmyqTpSbBa6hvF4BjPcAZYKqKaQ,5949
|
@@ -810,10 +811,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=EpmA8-iqHIkWrjgjR9JKvZ
|
|
810
811
|
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=DVQ6sUQOKFvLhbcamY6EmSrfWYq61gqaQUZ_YM1Le0Q,343
|
811
812
|
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=C9Zl506jbPx1GJa_1FeYhvo_7zpJJnWp4QjBA-rSkYY,10555
|
812
813
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
814
|
+
imio_smartweb_core-1.3.7.dist-info/licenses/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
815
|
+
imio_smartweb_core-1.3.7.dist-info/licenses/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
816
|
+
imio_smartweb_core-1.3.7.dist-info/METADATA,sha256=AXz9G4m6Ax_NdTmT7amXRV0l8cyAIKq-wr3f7yC64CE,63342
|
817
|
+
imio_smartweb_core-1.3.7.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
818
|
+
imio_smartweb_core-1.3.7.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
819
|
+
imio_smartweb_core-1.3.7.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
820
|
+
imio_smartweb_core-1.3.7.dist-info/RECORD,,
|
File without changes
|
{imio.smartweb.core-1.3.5.dist-info → imio_smartweb_core-1.3.7.dist-info/licenses}/LICENSE.GPL
RENAMED
File without changes
|
{imio.smartweb.core-1.3.5.dist-info → imio_smartweb_core-1.3.7.dist-info/licenses}/LICENSE.rst
RENAMED
File without changes
|
{imio.smartweb.core-1.3.5.dist-info → imio_smartweb_core-1.3.7.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|