imio.smartweb.core 1.2.27__py3-none-any.whl → 1.2.29__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/forms.py +3 -3
- imio/smartweb/core/contents/rest/base.py +3 -3
- imio/smartweb/core/contents/rest/search/endpoint.py +3 -3
- imio/smartweb/core/contents/sections/views.py +2 -0
- imio/smartweb/core/webcomponents/build/js/143.smartweb-webcomponents-compiled.js +2 -0
- imio/smartweb/core/webcomponents/build/js/392.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/package.json +2 -1
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +2 -0
- imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx +1 -2
- imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx +41 -18
- imio/smartweb/core/webcomponents/src/utils/translation.js +38 -7
- {imio.smartweb.core-1.2.27.dist-info → imio.smartweb.core-1.2.29.dist-info}/METADATA +23 -3
- {imio.smartweb.core-1.2.27.dist-info → imio.smartweb.core-1.2.29.dist-info}/RECORD +22 -22
- {imio.smartweb.core-1.2.27.dist-info → imio.smartweb.core-1.2.29.dist-info}/WHEEL +1 -1
- imio/smartweb/core/webcomponents/build/js/653.smartweb-webcomponents-compiled.js +0 -2
- /imio/smartweb/core/webcomponents/build/js/{653.smartweb-webcomponents-compiled.js.LICENSE.txt → 143.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
- /imio.smartweb.core-1.2.27-py3.8-nspkg.pth → /imio.smartweb.core-1.2.29-py3.10-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.27.dist-info → imio.smartweb.core-1.2.29.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.27.dist-info → imio.smartweb.core-1.2.29.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.27.dist-info → imio.smartweb.core-1.2.29.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.27.dist-info → imio.smartweb.core-1.2.29.dist-info}/top_level.txt +0 -0
@@ -54,6 +54,7 @@
|
|
54
54
|
"@loadable/component": "^5.15.0",
|
55
55
|
"axios": "^1.5.1",
|
56
56
|
"babel-polyfill": "^6.26.0",
|
57
|
+
"date-fns": "^3.3.1",
|
57
58
|
"flexbin": "^0.2.0",
|
58
59
|
"leaflet": "^1.7.1",
|
59
60
|
"lodash": "^4.17.21",
|
@@ -76,4 +77,4 @@
|
|
76
77
|
"remove-accents": "^0.4.2",
|
77
78
|
"spotlight.js": "^0.7.8"
|
78
79
|
}
|
79
|
-
}
|
80
|
+
}
|
@@ -20,6 +20,7 @@ export default function Events(props) {
|
|
20
20
|
proposeUrl={props.proposeUrl}
|
21
21
|
batchSize={props.batchSize}
|
22
22
|
displayMap={props.displayMap}
|
23
|
+
language={props.currentLanguage}
|
23
24
|
/>
|
24
25
|
</Provider>
|
25
26
|
</Router>
|
@@ -148,6 +149,7 @@ function EventsView(props) {
|
|
148
149
|
url={props.queryFilterUrl}
|
149
150
|
activeFilter={filters}
|
150
151
|
onChange={filtersChange}
|
152
|
+
language={props.language}
|
151
153
|
/>
|
152
154
|
{props.proposeUrl &&
|
153
155
|
(
|
@@ -131,7 +131,6 @@ function Filters(props) {
|
|
131
131
|
}
|
132
132
|
});
|
133
133
|
}, [dates]);
|
134
|
-
|
135
134
|
return (
|
136
135
|
<React.Fragment>
|
137
136
|
<form className="r-filter" onSubmit={handleSubmit}>
|
@@ -195,7 +194,7 @@ function Filters(props) {
|
|
195
194
|
</div>
|
196
195
|
|
197
196
|
<div className="r-filter schedul-Filter">
|
198
|
-
<DateFilter setDates={setDates} />
|
197
|
+
<DateFilter language={props.language} setDates={setDates} />
|
199
198
|
</div>
|
200
199
|
</React.Fragment>
|
201
200
|
);
|
@@ -1,17 +1,26 @@
|
|
1
|
-
|
1
|
+
|
2
|
+
|
3
|
+
import React, { useState,useContext } from "react";
|
2
4
|
import DatePicker from 'react-datepicker';
|
3
5
|
import 'react-datepicker/dist/react-datepicker.css';
|
4
6
|
import moment from "moment";
|
5
7
|
import { Dropdown, DropdownButton } from 'react-bootstrap';
|
6
|
-
import { Translate } from "react-translated";
|
8
|
+
import { Translate, Translator } from "react-translated";
|
9
|
+
import { nl,fr,enGB,de } from 'date-fns/locale';
|
7
10
|
import './DateFilter.scss';
|
8
11
|
|
9
|
-
|
10
|
-
|
12
|
+
const languageList = {
|
13
|
+
fr: fr,
|
14
|
+
nl: nl,
|
15
|
+
de: de,
|
16
|
+
en: enGB,
|
17
|
+
};
|
18
|
+
function DateFilter({ language, setDates }) {
|
19
|
+
// const currentLanguage = useContext(LanguageContext);
|
11
20
|
const [dateRange, setDateRange] = useState([null, null]);
|
12
21
|
const [startDate, endDate] = dateRange;
|
13
22
|
const [filter, setFilter] = useState('Période');
|
14
|
-
|
23
|
+
const [languageToLocale, setLanguageToLocale] = useState();
|
15
24
|
|
16
25
|
const handleApply = (e) => {
|
17
26
|
setDateRange(e);
|
@@ -22,7 +31,7 @@ function DateFilter({ setDates }) {
|
|
22
31
|
if(e.every(item => item === null)){
|
23
32
|
setFilter(periodTitle.all);
|
24
33
|
}else {
|
25
|
-
setFilter(
|
34
|
+
setFilter(periodTitle.custom);
|
26
35
|
}
|
27
36
|
};
|
28
37
|
const today = moment().format('YYYY-MM-DD');
|
@@ -37,7 +46,6 @@ function DateFilter({ setDates }) {
|
|
37
46
|
custom: <Translate text='Personnalisé (Du ... au ...)'/>
|
38
47
|
}
|
39
48
|
|
40
|
-
|
41
49
|
const handleSelect = (eventKey) => {
|
42
50
|
switch (eventKey) {
|
43
51
|
case 'all':
|
@@ -73,6 +81,11 @@ function DateFilter({ setDates }) {
|
|
73
81
|
break;
|
74
82
|
}
|
75
83
|
};
|
84
|
+
|
85
|
+
useState(() => {
|
86
|
+
setLanguageToLocale(languageList[language])
|
87
|
+
}, []);
|
88
|
+
|
76
89
|
return (
|
77
90
|
<>
|
78
91
|
<div className="period-filter">
|
@@ -84,17 +97,27 @@ function DateFilter({ setDates }) {
|
|
84
97
|
<Dropdown.Item eventKey="thisWeek">{periodTitle.thisWeek}</Dropdown.Item>
|
85
98
|
<Dropdown.Item eventKey="thisMonth">{periodTitle.thisMonth}</Dropdown.Item>
|
86
99
|
<div className="perdiod-filter-range">
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
100
|
+
{languageToLocale && <Translator>
|
101
|
+
{({ translate,language }) => (
|
102
|
+
<DatePicker
|
103
|
+
placeholderText={translate({
|
104
|
+
text: 'Personnalisé (Du ... au ...)'
|
105
|
+
})}
|
106
|
+
selectsRange={true}
|
107
|
+
startDate={startDate}
|
108
|
+
endDate={endDate}
|
109
|
+
minDate={new Date().setDate(new Date().getDate() + 1)}
|
110
|
+
onChange={(update) => {
|
111
|
+
setDateRange(update);
|
112
|
+
if (update[0] !== null && update[1] !== null || update[0] == null && update[1] == null) {
|
113
|
+
handleApply(update)
|
114
|
+
}
|
115
|
+
}}
|
116
|
+
isClearable={true}
|
117
|
+
locale={languageToLocale}
|
118
|
+
/>
|
119
|
+
)}
|
120
|
+
</Translator>}
|
98
121
|
</div>
|
99
122
|
</DropdownButton>
|
100
123
|
</div>
|
@@ -4,179 +4,210 @@ export default {
|
|
4
4
|
en: 'Loading',
|
5
5
|
fr: 'Chargement...',
|
6
6
|
de: 'Laden',
|
7
|
+
nl: 'Laden...',
|
7
8
|
},
|
8
9
|
"Recherche": {
|
9
10
|
en: 'Search',
|
10
11
|
fr: "Recherche",
|
11
12
|
de: "Suche",
|
13
|
+
nl: "Zoeken",
|
12
14
|
},
|
13
15
|
"Thématiques": {
|
14
16
|
en: 'Themes',
|
15
17
|
fr: "Thématiques",
|
16
18
|
de: "Themen",
|
19
|
+
nl: "Thema's",
|
17
20
|
},
|
18
21
|
"Catégories": {
|
19
22
|
en: 'Categories',
|
20
23
|
fr: "Catégories",
|
21
24
|
de: "Kategorien",
|
25
|
+
nl: "Categorieën",
|
22
26
|
},
|
23
27
|
"Facilités": {
|
24
28
|
en: 'Facilities',
|
25
29
|
fr: "Facilités",
|
26
30
|
de: "Einrichtungen",
|
31
|
+
nl: "Faciliteiten",
|
27
32
|
},
|
28
33
|
'Plus de résultats': {
|
29
34
|
en: 'More results',
|
30
35
|
fr: 'Plus de résultats',
|
31
36
|
de: 'Mehr Ergebnisse',
|
37
|
+
nl: 'Meer resultaten',
|
32
38
|
},
|
33
39
|
'Aucun résultat': {
|
34
40
|
en: 'No result',
|
35
41
|
fr: 'Aucun résultat',
|
36
42
|
de: 'Kein Ergebnis',
|
43
|
+
nl: 'Geen resultaat',
|
37
44
|
},
|
38
45
|
'Retour': {
|
39
46
|
en: 'Return',
|
40
47
|
fr: 'Retour',
|
41
48
|
de: 'Zurück',
|
49
|
+
nl: 'Terug',
|
42
50
|
},
|
43
51
|
'Téléchargements': {
|
44
52
|
en: 'Downloads',
|
45
53
|
fr: 'Téléchargements',
|
46
54
|
de: 'Downloads',
|
55
|
+
nl: 'Downloads',
|
47
56
|
},
|
48
57
|
'Billetterie': {
|
49
58
|
en: 'Ticketing',
|
50
59
|
fr: 'Billetterie',
|
51
60
|
de: 'Tickets',
|
61
|
+
nl: 'Ticketverkoop',
|
52
62
|
},
|
53
63
|
'Lien vers la vidéo': {
|
54
64
|
en: 'Link to video',
|
55
65
|
fr: 'Lien vers la vidéo',
|
56
66
|
de: 'Link zum Video',
|
67
|
+
nl: 'Link naar video',
|
57
68
|
},
|
58
69
|
'Participation en ligne': {
|
59
70
|
en: 'Join online',
|
60
71
|
fr: 'Participation en ligne',
|
61
72
|
de: 'Online teilnehmen',
|
73
|
+
nl: 'Doe online mee',
|
62
74
|
},
|
63
75
|
'Actualités trouvées': {
|
64
76
|
en: ' News found',
|
65
77
|
fr: ' Actualités trouvées',
|
66
78
|
de: ' Nachrichten gefunden',
|
79
|
+
nl: ' Nieuws gevonden',
|
67
80
|
},
|
68
81
|
'Actualité trouvée': {
|
69
82
|
en: ' News found',
|
70
83
|
fr: ' Atualité trouvée',
|
71
84
|
de: ' Nachricht gefunden',
|
85
|
+
nl: ' Nieuws gevonden',
|
72
86
|
},
|
73
87
|
"Aucune actualité n'a été trouvée": {
|
74
88
|
en: 'No news was found',
|
75
89
|
fr: "Aucune actualité n'a été trouvée",
|
76
90
|
de: 'Keine Nachrichten gefunden',
|
91
|
+
nl: 'Geen nieuws gevonden',
|
77
92
|
},
|
78
93
|
"Proposer une actualité": {
|
79
94
|
en: 'Suggest a news',
|
80
95
|
fr: "Proposer une actualité",
|
81
96
|
de: 'Nachricht vorschlagen',
|
97
|
+
nl: 'Nieuws voorstellen',
|
82
98
|
},
|
83
99
|
'événements trouvés': {
|
84
100
|
en: ' Events found',
|
85
101
|
fr: ' Événements trouvés',
|
86
102
|
de: ' Veranstaltungen gefunden',
|
103
|
+
nl: ' Evenementen gevonden',
|
87
104
|
},
|
88
105
|
'événement trouvé': {
|
89
106
|
en: ' Event found',
|
90
107
|
fr: ' Événement trouvé',
|
91
108
|
de: ' Veranstaltung gefunden',
|
109
|
+
nl: ' Evenement gevonden',
|
92
110
|
},
|
93
111
|
"Aucun événement n'a été trouvé": {
|
94
112
|
en: 'No event was found',
|
95
113
|
fr: "Aucun événement n'a été trouvé",
|
96
114
|
de: 'Keine Veranstaltungen gefunden',
|
115
|
+
nl: 'Geen evenement gevonden',
|
97
116
|
},
|
98
117
|
"Proposer un événement": {
|
99
118
|
en: 'Suggest a event',
|
100
119
|
fr: "Proposer un événement",
|
101
120
|
de: 'Veranstaltung vorschlagen',
|
121
|
+
nl: 'Evenement voorstellen',
|
102
122
|
},
|
103
123
|
"Infos pratiques": {
|
104
124
|
en: 'Practical information',
|
105
125
|
fr: "Infos pratiques",
|
106
126
|
de: 'Praktische Informationen',
|
127
|
+
nl: 'Praktische informatie',
|
107
128
|
},
|
108
129
|
"Accessible aux PMR": {
|
109
130
|
en: 'Accessibility for PRM',
|
110
131
|
fr: "Accessible aux PMR",
|
111
132
|
de: 'Barrierefreiheit für PMR',
|
133
|
+
nl: 'Toegankelijk voor PRM',
|
112
134
|
},
|
113
135
|
"Lien de l'événement": {
|
114
136
|
en: 'Event link',
|
115
137
|
fr: "Lien de l'événement",
|
116
138
|
de: 'Veranstaltungslink',
|
139
|
+
nl: 'Evenement link',
|
117
140
|
},
|
118
141
|
'contacts trouvés': {
|
119
142
|
en: ' Contact found',
|
120
143
|
fr: ' Contacts trouvés',
|
121
144
|
de: ' Kontakt gefunden',
|
145
|
+
nl: ' Contact gevonden',
|
122
146
|
},
|
123
147
|
'contact trouvé': {
|
124
148
|
en: ' Contact found',
|
125
149
|
fr: ' Contact trouvé',
|
126
150
|
de: ' Kontakt gefunden',
|
151
|
+
nl: ' Contact gevonden',
|
127
152
|
},
|
128
153
|
"Aucun contact n'a été trouvé": {
|
129
154
|
en: 'No contact was found',
|
130
155
|
fr: "Aucun contact n'a été trouvé",
|
131
156
|
de: 'Kein Kontakt gefunden',
|
157
|
+
nl: 'Geen contact gevonden',
|
132
158
|
},
|
133
159
|
"Proposer un contact": {
|
134
160
|
en: 'Suggest a contact',
|
135
161
|
fr: "Proposer un contact",
|
136
162
|
de: 'Kontakt vorschlagen',
|
163
|
+
nl: 'Contact voorstellen',
|
137
164
|
},
|
138
165
|
"Toutes les dates": {
|
139
166
|
en: 'All dates',
|
140
167
|
fr: "Toutes les dates",
|
141
168
|
de: 'Alle Daten',
|
169
|
+
nl: 'Alle data',
|
142
170
|
},
|
143
171
|
"Aujourd'hui": {
|
144
172
|
en: "Today",
|
145
173
|
fr: "Aujourd'hui",
|
146
174
|
de: "Heute",
|
175
|
+
nl: "Vandaag",
|
147
176
|
},
|
148
177
|
"Demain": {
|
149
178
|
en: "Tomorrow",
|
150
179
|
fr: "Demain",
|
151
180
|
de: "Morgen",
|
181
|
+
nl: "Morgen",
|
152
182
|
},
|
153
183
|
"Ce week-end": {
|
154
184
|
en: "This weekend",
|
155
185
|
fr: "Ce week-end",
|
156
186
|
de: "Dieses Wochenende",
|
187
|
+
nl: "Dit weekend",
|
157
188
|
},
|
158
189
|
"Cette semaine": {
|
159
190
|
en: "This week",
|
160
191
|
fr: "Cette semaine",
|
161
192
|
de: "Diese Woche",
|
193
|
+
nl: "Deze week",
|
162
194
|
},
|
163
195
|
"Ce mois-ci": {
|
164
196
|
en: "This month",
|
165
197
|
fr: "Ce mois-ci",
|
166
198
|
de: "Diesen Monat",
|
199
|
+
nl: "Deze maand",
|
167
200
|
},
|
168
201
|
"Personnalisé (Du ... au ...)": {
|
169
202
|
en: "Custom (From ... to ...)",
|
170
203
|
fr: "Personnalisé (Du ... au ...)",
|
171
204
|
de: "Benutzerdefiniert (Von ... bis ...)",
|
205
|
+
nl: "Aangepast (Van ... tot ...)",
|
172
206
|
},
|
173
207
|
"Personnalisé": {
|
208
|
+
en: "Custom",
|
174
209
|
fr: "Personnalisé",
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
},
|
179
|
-
"Personnalisé": {
|
180
|
-
fr: "Personnalisé",
|
181
|
-
},
|
210
|
+
de: "Benutzerdefiniert",
|
211
|
+
nl: "Aangepast",
|
212
|
+
}
|
182
213
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.29
|
4
4
|
Summary: Core product for iMio websites
|
5
5
|
Home-page: https://github.com/imio/imio.smartweb.core
|
6
6
|
Author: Christophe Boulanger
|
@@ -26,7 +26,7 @@ License-File: LICENSE.rst
|
|
26
26
|
Requires-Dist: setuptools
|
27
27
|
Requires-Dist: z3c.jbot
|
28
28
|
Requires-Dist: z3c.unconfigure
|
29
|
-
Requires-Dist: plone.api >=1.8.4
|
29
|
+
Requires-Dist: plone.api (>=1.8.4)
|
30
30
|
Requires-Dist: plone.gallery
|
31
31
|
Requires-Dist: plone.restapi
|
32
32
|
Requires-Dist: plone.app.dexterity
|
@@ -48,7 +48,7 @@ Requires-Dist: imio.smartweb.common
|
|
48
48
|
Requires-Dist: imio.smartweb.locales
|
49
49
|
Provides-Extra: test
|
50
50
|
Requires-Dist: plone.app.testing ; extra == 'test'
|
51
|
-
Requires-Dist: plone.testing >=5.0.0 ; extra == 'test'
|
51
|
+
Requires-Dist: plone.testing (>=5.0.0) ; extra == 'test'
|
52
52
|
Requires-Dist: plone.app.contenttypes ; extra == 'test'
|
53
53
|
Requires-Dist: plone.app.robotframework[debug] ; extra == 'test'
|
54
54
|
Requires-Dist: plone.restapi[test] ; extra == 'test'
|
@@ -189,6 +189,26 @@ Changelog
|
|
189
189
|
=========
|
190
190
|
|
191
191
|
|
192
|
+
1.2.29 (2024-01-30)
|
193
|
+
-------------------
|
194
|
+
|
195
|
+
- Quick fix : effective date can be a str type. So the news sections were broken
|
196
|
+
[boulch]
|
197
|
+
|
198
|
+
|
199
|
+
1.2.28 (2024-01-26)
|
200
|
+
-------------------
|
201
|
+
|
202
|
+
- WEB-3802 : translate datepicker
|
203
|
+
[thomlamb]
|
204
|
+
|
205
|
+
- WEB-3802 : add nl traduction for React view.
|
206
|
+
[thomlamb]
|
207
|
+
|
208
|
+
- WEB-3802 : Fix datePicker filtre to no load on first date change
|
209
|
+
[thomlamb]
|
210
|
+
|
211
|
+
|
192
212
|
1.2.27 (2024-01-26)
|
193
213
|
-------------------
|
194
214
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.2.
|
1
|
+
imio.smartweb.core-1.2.29-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
|
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=PeC4rF--rF6MfVQ0NzggQrZWIl35oPtJdEhvQwGxhhI,1459
|
@@ -25,7 +25,7 @@ imio/smartweb/core/behaviors/subsite.py,sha256=O2aJHl3Jj9WTpGBmNJaoia-PAtb7aSHpC
|
|
25
25
|
imio/smartweb/core/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
26
|
imio/smartweb/core/browser/configure.zcml,sha256=Ml4uwbocH5_v_Pi_y8L0m4bUb55M4-jKnYhL1wuHR58,2828
|
27
27
|
imio/smartweb/core/browser/controlpanel.py,sha256=6HXq01oq9ndFc4fNx5Dv49TG92OiCKoK7ovQQUVNQkA,5361
|
28
|
-
imio/smartweb/core/browser/forms.py,sha256=
|
28
|
+
imio/smartweb/core/browser/forms.py,sha256=_6Z0x7yVeA5JaW4IwpYkX7bTIbw0UskgvtGfNDtMsrI,1091
|
29
29
|
imio/smartweb/core/browser/icons.py,sha256=LFBCYTfynp4qNX2OQuNmMTOUEcJv-oQ8Izu6opE3o7A,2065
|
30
30
|
imio/smartweb/core/browser/layout.py,sha256=wvo_Q2dYg1Yd8wOdYSfPg29NPESy9ndAGl6z3r5kxnY,2066
|
31
31
|
imio/smartweb/core/browser/utils.py,sha256=h4odo_1nXQCBqnp2JjHTW7nbcSZ15hvScmYQNOH1YkA,3228
|
@@ -188,7 +188,7 @@ imio/smartweb/core/contents/pages/procedure/content.py,sha256=e_kv7YsRF0vblfpxqq
|
|
188
188
|
imio/smartweb/core/contents/pages/procedure/utils.py,sha256=EATKvK72QPQheLXCXCoADYMjA3UfgPtkOPKdqnEyX64,1291
|
189
189
|
imio/smartweb/core/contents/pages/procedure/view.py,sha256=UeZwtdn20lCo7qbqqPcsD9LL69vNTq4m_wXB4nv8jMo,408
|
190
190
|
imio/smartweb/core/contents/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
191
|
-
imio/smartweb/core/contents/rest/base.py,sha256=
|
191
|
+
imio/smartweb/core/contents/rest/base.py,sha256=aX-wzmaT-ZP3sozu-BpRkZe-dNSL0QuLK0L7WxF40LM,2416
|
192
192
|
imio/smartweb/core/contents/rest/configure.zcml,sha256=vANiA3brvm8rsJIUSVNf0BdlEnejpEGXoC82-hpxKkA,433
|
193
193
|
imio/smartweb/core/contents/rest/traversal.py,sha256=KLNGhUmvTAzaRqSIzT3B28HgMBK4vcNV75AfyIesjN8,540
|
194
194
|
imio/smartweb/core/contents/rest/view.py,sha256=nOdJ3It-cEzwCLqz4QMAzMwZCWsMnWIJrSIhLcbCU4s,1014
|
@@ -212,13 +212,13 @@ imio/smartweb/core/contents/rest/news/view.pt,sha256=OUKvgb7dnkbfyPm30tEvqPeGBSq
|
|
212
212
|
imio/smartweb/core/contents/rest/news/view.py,sha256=8dkfrEHi4c7AbgDU1CIfWd5xRz8K28v2DCSY2j-sv0Y,410
|
213
213
|
imio/smartweb/core/contents/rest/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
214
214
|
imio/smartweb/core/contents/rest/search/configure.zcml,sha256=BTFcBQ28NINyEfoVgYwJgf0JWvk99ewSKgOYx91lZy4,951
|
215
|
-
imio/smartweb/core/contents/rest/search/endpoint.py,sha256=
|
215
|
+
imio/smartweb/core/contents/rest/search/endpoint.py,sha256=i5LMM0R1Xvpy76JHO6pI98G41Xep15fPR9uv9rqropo,9797
|
216
216
|
imio/smartweb/core/contents/sections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
217
|
imio/smartweb/core/contents/sections/base.py,sha256=2e3lIG_RGGFAshBEkTNG97OReAnn9GLQk_O_Eqh7SRY,2486
|
218
218
|
imio/smartweb/core/contents/sections/configure.zcml,sha256=aEbAu9MikK-sCVzST8Nn-bMbv7clnHfnoumlBW197Wk,2242
|
219
219
|
imio/smartweb/core/contents/sections/macros.pt,sha256=zfbNvH5fFj6j3M3v1Ys7UYcXpQnS-alw0L3w_8ScU20,4092
|
220
220
|
imio/smartweb/core/contents/sections/subscriber.py,sha256=WM7nEZVPOkmyT1GfkWGDWwLhuhUYaTnlBr6BJVqUJMk,642
|
221
|
-
imio/smartweb/core/contents/sections/views.py,sha256=
|
221
|
+
imio/smartweb/core/contents/sections/views.py,sha256=3cjeRFip7hsjJ47Lt8DwPGWTtvllUOL5yeKGI87Oc7M,3570
|
222
222
|
imio/smartweb/core/contents/sections/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
223
223
|
imio/smartweb/core/contents/sections/collection/configure.zcml,sha256=Ak4UbKFjogWZad6-5_y6oSx8tWXt3nN7bEdKXG7pQCI,920
|
224
224
|
imio/smartweb/core/contents/sections/collection/content.py,sha256=DMmU9rIaRlbRjIaot5RHXu59vJmAbun0FCmyahWhBCM,2379
|
@@ -585,7 +585,7 @@ imio/smartweb/core/webcomponents/README.md,sha256=u-1KMiYzChIOe3BNY1paacCEVsxRit
|
|
585
585
|
imio/smartweb/core/webcomponents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
586
586
|
imio/smartweb/core/webcomponents/babel.config.json,sha256=GLMlFLD4qaaNVuRWogON3geyD75eqVm6cN4RAGwPt3g,194
|
587
587
|
imio/smartweb/core/webcomponents/configure.zcml,sha256=WiA01XuVcc4VgxrvFCztR2nPMCBp2dGIgpIZv6WdJ7s,263
|
588
|
-
imio/smartweb/core/webcomponents/package.json,sha256=
|
588
|
+
imio/smartweb/core/webcomponents/package.json,sha256=7-eY65xDxAPUdBUMXxIaRLGct_N75aeX3ZABoJoDBoE,2626
|
589
589
|
imio/smartweb/core/webcomponents/postcss.config.js,sha256=C6AOPegqTEkRboXRWl6obj0priHtdSRiApehW4TWp8E,101
|
590
590
|
imio/smartweb/core/webcomponents/webpack.config.js,sha256=ie90xYAH82rUaPv41_7v-eXTDADH55Z-V9v9gptDC6s,6852
|
591
591
|
imio/smartweb/core/webcomponents/webpackPlonePlugin.js,sha256=TWpGoEYRBOKB7o0SJ1F7P0hLYflkNmbODG7ZCyrPjQw,2226
|
@@ -604,6 +604,8 @@ imio/smartweb/core/webcomponents/build/css/392.smartweb-webcomponents-compiled.c
|
|
604
604
|
imio/smartweb/core/webcomponents/build/css/528.smartweb-webcomponents-compiled.css,sha256=qmNl1TV7yB-rEb8U9pZkMqfwXooISHJnOPuAwSnOy5Q,20368
|
605
605
|
imio/smartweb/core/webcomponents/build/css/647.smartweb-webcomponents-compiled.css,sha256=IjUbb5U3SmZlX5UsisrsQIbU6OTS_YeMKBds8GQEd8c,3764
|
606
606
|
imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=xLkcneVroMl6Imnhr5c4qehs2ytJJ3v7nal5GdQiSTI,5304
|
607
|
+
imio/smartweb/core/webcomponents/build/js/143.smartweb-webcomponents-compiled.js,sha256=IXvqHvr0FMx3JXnTU4WZWrYc0LDL37btWXeXvhFFHaw,303429
|
608
|
+
imio/smartweb/core/webcomponents/build/js/143.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=tUd9UGffQmBkRHLQk0laQX3euJ0uJQLOS6tylIKc6hI,376
|
607
609
|
imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js,sha256=0O_DNz729MDffAcwrH63ZvFYeDv_acOR0GXjnI-oH3g,17480
|
608
610
|
imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
|
609
611
|
imio/smartweb/core/webcomponents/build/js/212.smartweb-webcomponents-compiled.js,sha256=tcLNEn8czwNz0Rxjdm2iD9TyWiwG07aZO8MGHr7OWMU,171258
|
@@ -611,19 +613,17 @@ imio/smartweb/core/webcomponents/build/js/212.smartweb-webcomponents-compiled.js
|
|
611
613
|
imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=pBioLG4GpJJKMTu5PYcCABHxzJ31RWb1rMHYDhY7vpI,161004
|
612
614
|
imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js,sha256=8HdOjalCzP1LeQisA_nlJYV1J2Fgg-zlkQYKsl0RBTo,26760
|
613
615
|
imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
614
|
-
imio/smartweb/core/webcomponents/build/js/392.smartweb-webcomponents-compiled.js,sha256=
|
616
|
+
imio/smartweb/core/webcomponents/build/js/392.smartweb-webcomponents-compiled.js,sha256=p4jOOz5Dc24Ny4bibcZ7YaZea8-ExZ98EtuUVxcnb8Q,41798
|
615
617
|
imio/smartweb/core/webcomponents/build/js/528.smartweb-webcomponents-compiled.js,sha256=o_cVbuCtONGZnjnXdijXmKplcJbcQswpWYL-vwoj3Lo,47344
|
616
618
|
imio/smartweb/core/webcomponents/build/js/528.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
617
619
|
imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js,sha256=qahw7GUDnhjgsBgWC7NtobztVptvnn54q5IR7F6uwE4,30681
|
618
|
-
imio/smartweb/core/webcomponents/build/js/
|
619
|
-
imio/smartweb/core/webcomponents/build/js/653.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=tUd9UGffQmBkRHLQk0laQX3euJ0uJQLOS6tylIKc6hI,376
|
620
|
-
imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js,sha256=02-lkUhBEy4FHtBMzx4fvQAXyv4MBhu_xwIR0ElB3Pk,14106
|
620
|
+
imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js,sha256=zdi3cnYdb7X7oyC8v5EzQaHZPawJtWCJH3SGLrJBWJc,14082
|
621
621
|
imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
622
622
|
imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js,sha256=51GDqoBV0fL0ty2auKpPbs_Xo8yGklTW5rn4k1GtC_Y,159426
|
623
623
|
imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
|
624
624
|
imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js,sha256=0EuJ1Ffqn0pu7Px-9ff-LJymiQ7YpQzWu9pSs2nkyWY,363925
|
625
625
|
imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=ot4CrmvW4r8ZeygP2wflnoqyUUmqSvjGt7WzqhtjPxY,15195
|
626
|
-
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=
|
626
|
+
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=DLkA6fmWM-DnWG5ZQxfWfX6R9BeUHyAdxskWp7XB2ZM,409549
|
627
627
|
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=MWaSlPSODUyzTS-6uhTd6MYi8HGJgjOtFyvm2-GJi4U,1035
|
628
628
|
imio/smartweb/core/webcomponents/src/index.jsx,sha256=WV70VNETdsIMADJ5EqajwxQ6WacMbhw5Z_91fVDti_Y,757
|
629
629
|
imio/smartweb/core/webcomponents/src/index.scss,sha256=1Nw2CweoA3EqyaUt_wGB3fs5XAD_LMQU2zfrMeZn7ks,5511
|
@@ -650,14 +650,14 @@ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactC
|
|
650
650
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
|
651
651
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=g0jxMjGP_PTnk48sew6pAMl1JgEwappTT8K57i3ngCc,1615
|
652
652
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=Q0Vq2EHYdGdGiYVhgYJAX23He8TSedQtXvRWY-kd9r8,7637
|
653
|
-
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=
|
653
|
+
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=NiwnnwqTSZji984j_AuCcOMvZ5kW7MXE2HMLev8igK4,8786
|
654
654
|
imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=NYjgqNEJNXNPRYr60dIqt6MxX8Lbkv3GCcBE5K6CpIk,9042
|
655
655
|
imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
|
656
656
|
imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=eQlCR9UgXJATOmXFQzPphNrPP1zcjgKkCdbFmg-W8BU,1649
|
657
657
|
imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=hs2XA8I1Mx5L9SvBfja19ipSUEXqzfmXT1WcEF-TPlQ,16452
|
658
658
|
imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=6k2bIyKd0pzj28NaVhSBJclnEyxdi6iNPbQEHSS5fZk,1600
|
659
|
-
imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=
|
660
|
-
imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=
|
659
|
+
imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=wFI0JhBgAxjv3z3kCo-Ow9uevmJlrHKXcw-PzxJF1cg,7482
|
660
|
+
imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=DusuNyNECWbnBrGmtUjlX9MKR7-4-cX6K9hYVHz9B-I,5486
|
661
661
|
imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss,sha256=RM34RrKuYxA6fHOb5i-yZ7_ud2fQPRt82p2OhKOCZdM,1575
|
662
662
|
imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=aCXLAcBpKHFFUtWMYxrb2u6xP70e622SigUiVm0RMiw,6778
|
663
663
|
imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=1RnZHhLGYzwVWejfw4TbjyTEsiyn_Ajd2SQCF21aiYA,3260
|
@@ -678,12 +678,12 @@ imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=EP0YppioHn490jbnFA
|
|
678
678
|
imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=fGxgxCI22ERSlVLCYmD0-nztnGUIz-VkUNyLtj5HSuo,223
|
679
679
|
imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=ulMbtvMcmV0Af4lhYtkkShvjJ9_s3Ik5x4FfIz_QGsE,5071
|
680
680
|
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=Ht5NXE7K1HohmDv4BOaE4Z0mhnqtKqYbBuEiP371Uho,73
|
681
|
-
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=
|
681
|
+
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=zcJvPnDRTjieUUi2TWqptptpear9dHHwflxrlvJ2N3k,5571
|
682
682
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
683
|
-
imio.smartweb.core-1.2.
|
684
|
-
imio.smartweb.core-1.2.
|
685
|
-
imio.smartweb.core-1.2.
|
686
|
-
imio.smartweb.core-1.2.
|
687
|
-
imio.smartweb.core-1.2.
|
688
|
-
imio.smartweb.core-1.2.
|
689
|
-
imio.smartweb.core-1.2.
|
683
|
+
imio.smartweb.core-1.2.29.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
684
|
+
imio.smartweb.core-1.2.29.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
685
|
+
imio.smartweb.core-1.2.29.dist-info/METADATA,sha256=Y31QyyE19cjzFqkAitRNtpfCZwMjkhnJP9aqLypy1Fo,48329
|
686
|
+
imio.smartweb.core-1.2.29.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
687
|
+
imio.smartweb.core-1.2.29.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
688
|
+
imio.smartweb.core-1.2.29.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
689
|
+
imio.smartweb.core-1.2.29.dist-info/RECORD,,
|