imio.smartweb.core 1.2.64__py3-none-any.whl → 1.2.65__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.
Files changed (20) hide show
  1. imio/smartweb/core/contents/pages/views.py +1 -1
  2. imio/smartweb/core/contents/sections/links/view.py +5 -0
  3. imio/smartweb/core/tests/test_section_external_content.py +3 -2
  4. imio/smartweb/core/tests/test_sections.py +17 -0
  5. imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -1
  6. imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
  7. imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -1
  8. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +3 -1
  9. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +7 -8
  10. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +2 -6
  11. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +3 -1
  12. imio/smartweb/core/webcomponents/src/components/News/News.jsx +3 -1
  13. {imio.smartweb.core-1.2.64.dist-info → imio.smartweb.core-1.2.65.dist-info}/METADATA +14 -1
  14. {imio.smartweb.core-1.2.64.dist-info → imio.smartweb.core-1.2.65.dist-info}/RECORD +20 -20
  15. /imio.smartweb.core-1.2.64-py3.10-nspkg.pth → /imio.smartweb.core-1.2.65-py3.10-nspkg.pth +0 -0
  16. {imio.smartweb.core-1.2.64.dist-info → imio.smartweb.core-1.2.65.dist-info}/LICENSE.GPL +0 -0
  17. {imio.smartweb.core-1.2.64.dist-info → imio.smartweb.core-1.2.65.dist-info}/LICENSE.rst +0 -0
  18. {imio.smartweb.core-1.2.64.dist-info → imio.smartweb.core-1.2.65.dist-info}/WHEEL +0 -0
  19. {imio.smartweb.core-1.2.64.dist-info → imio.smartweb.core-1.2.65.dist-info}/namespace_packages.txt +0 -0
  20. {imio.smartweb.core-1.2.64.dist-info → imio.smartweb.core-1.2.65.dist-info}/top_level.txt +0 -0
@@ -4,7 +4,6 @@ import { Link } from "react-router-dom";
4
4
  import removeAccents from "remove-accents";
5
5
  import { ScrollContext } from "../../../hooks/ScrollContext";
6
6
  const ContactList = ({ contactArray, onChange, onHover, parentCallback }) => {
7
-
8
7
  const { scrollPos, updateScrollPos } = useContext(ScrollContext);
9
8
 
10
9
  function handleClick(event) {
@@ -17,11 +16,8 @@ const ContactList = ({ contactArray, onChange, onHover, parentCallback }) => {
17
16
  }
18
17
 
19
18
  useEffect(() => {
20
- window.scrollTo(
21
- { top: scrollPos,
22
- left: 0,
23
- behavior: 'instant'});
24
- }, [contactArray]);
19
+ window.scrollTo({ top: scrollPos, left: 0, behavior: "instant" });
20
+ }, [contactArray]);
25
21
  return (
26
22
  <React.Fragment>
27
23
  <ul className="r-result-list annuaire-result-list">
@@ -1,4 +1,4 @@
1
- import React, { useEffect, useState, useRef } from "react";
1
+ import React, { useEffect, useState, useContext, useRef } from "react";
2
2
  import { BrowserRouter, Routes, Route } from "react-router-dom";
3
3
  import { ScrollContext } from "../../hooks/ScrollContext";
4
4
  import Filters from "./Filters/Filter";
@@ -51,6 +51,7 @@ function EventsView(props) {
51
51
  },
52
52
  queryString.parse(useFilterQuery().toString())
53
53
  );
54
+ const { scrollPos, updateScrollPos } = useContext(ScrollContext);
54
55
  const [itemsArray, setItemsArray] = useState([]);
55
56
  const [itemsNumber, setItemsNumber] = useState([]);
56
57
  const [clickId, setClickId] = useState(null);
@@ -106,6 +107,7 @@ function EventsView(props) {
106
107
 
107
108
  // set batch
108
109
  const loadMore = () => {
110
+ updateScrollPos(window.scrollY);
109
111
  setBatchStart((batchStart) => batchStart + parseInt(props.batchSize));
110
112
  setLoadMoreLaunch(true);
111
113
  };
@@ -1,4 +1,4 @@
1
- import React, { useEffect, useState, createContext } from "react";
1
+ import React, { useEffect, useState, useContext, createContext } from "react";
2
2
  import { BrowserRouter, Routes, Route } from "react-router-dom";
3
3
  import { ScrollContext } from "../../hooks/ScrollContext";
4
4
  import Filters from "./Filters/Filter";
@@ -43,6 +43,7 @@ const NewsView = (props) => {
43
43
  { b_start: 0, fullobjects: 1 },
44
44
  queryString.parse(useFilterQuery().toString())
45
45
  );
46
+ const { scrollPos, updateScrollPos } = useContext(ScrollContext);
46
47
  const [itemsArray, setItemsArray] = useState([]);
47
48
  const [itemsNumber, setItemsNumber] = useState([]);
48
49
  const [clickId, setClickId] = useState(null);
@@ -89,6 +90,7 @@ const NewsView = (props) => {
89
90
 
90
91
  // set batch
91
92
  const loadMore = () => {
93
+ updateScrollPos(window.scrollY);
92
94
  setBatchStart((batchStart) => batchStart + parseInt(props.batchSize));
93
95
  setLoadMoreLaunch(true);
94
96
  };
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imio.smartweb.core
3
- Version: 1.2.64
3
+ Version: 1.2.65
4
4
  Summary: Core product for iMio websites
5
5
  Home-page: https://github.com/imio/imio.smartweb.core
6
6
  Author: Christophe Boulanger
@@ -191,6 +191,19 @@ Changelog
191
191
  =========
192
192
 
193
193
 
194
+ 1.2.65 (2024-08-13)
195
+ -------------------
196
+
197
+ - WEB-4136 : Authorize 70 sections/page instead of 40
198
+ [boulch]
199
+
200
+ - Fix: keep scroll on load more in React view
201
+ [thomlamb]
202
+
203
+ - WEB-4132 : In anonymous mode, use remoteUrl instead of internal link url in links sections
204
+ [boulch]
205
+
206
+
194
207
  1.2.64 (2024-08-05)
195
208
  -------------------
196
209
 
@@ -1,4 +1,4 @@
1
- imio.smartweb.core-1.2.64-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
1
+ imio.smartweb.core-1.2.65-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
@@ -182,7 +182,7 @@ imio/smartweb/core/contents/pages/pages.py,sha256=iCQwzbp4nnGqwy31UE5Q9MaeJVAzJU
182
182
  imio/smartweb/core/contents/pages/subscriber.py,sha256=2efcWPA5VsoEzv1_fIWh3sn1k2g0Kx_B_cTyQ5LIhLg,961
183
183
  imio/smartweb/core/contents/pages/view.pt,sha256=0-rTH5tgN9mgSHdt9_0qwYQpJO0nC4Wc0Kg6CUGRCbY,3127
184
184
  imio/smartweb/core/contents/pages/view_section.pt,sha256=_jYm5FqFVYr1Jia5r9qmqryd2a6NDNXO5SWu6osTZ0A,1345
185
- imio/smartweb/core/contents/pages/views.py,sha256=hHuK6_1JsmIJVWKRGXApcgVwl50k3jAFH2M2Z20BhTo,4938
185
+ imio/smartweb/core/contents/pages/views.py,sha256=nDLsSCo3OTPskK4IAZxrDtSkhbTXg6u1H0S0rTO-C5w,4938
186
186
  imio/smartweb/core/contents/pages/cirkwi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
187
  imio/smartweb/core/contents/pages/cirkwi/configure.zcml,sha256=f5kNhtZhY10aHetW5nZZZ00tbBQP1EiezVia5_JfJlg,378
188
188
  imio/smartweb/core/contents/pages/cirkwi/content.py,sha256=L8VtzTsdqM_1g13RWygd07Z9mtPiyg7PbjxXyDM6nSA,779
@@ -283,7 +283,7 @@ imio/smartweb/core/contents/sections/html/view.pt,sha256=PY_z5Mn52IygWoMxAIEkbep
283
283
  imio/smartweb/core/contents/sections/links/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
284
284
  imio/smartweb/core/contents/sections/links/configure.zcml,sha256=rE-UWiubwkPYU6VvfxM1AH3UTr06WfsItEG1dSX9G8w,918
285
285
  imio/smartweb/core/contents/sections/links/content.py,sha256=drUefjzRnT3wFxIjVZ31qqaR-BGhWN5ffmcmnEeI5tQ,1051
286
- imio/smartweb/core/contents/sections/links/view.py,sha256=dvJGxb4IeHYU643LvVGVfQDZ4GgmDD-Cxd1DKmx6cXQ,1375
286
+ imio/smartweb/core/contents/sections/links/view.py,sha256=mMjSThkfhGODDBw0Yfv42CB61epDnFGwHzMNNVKCfzA,1664
287
287
  imio/smartweb/core/contents/sections/map/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
288
  imio/smartweb/core/contents/sections/map/configure.zcml,sha256=8ocTq-RfXM7BvGHyHrhySzYAvKhwXrc5lyrABNSb2H0,412
289
289
  imio/smartweb/core/contents/sections/map/content.py,sha256=z5maHOFl0BpzFHRgEVrae7TnW9qU-aRXj_m9Z3CWtd0,372
@@ -422,10 +422,10 @@ imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOw
422
422
  imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
423
423
  imio/smartweb/core/tests/test_section_contact.py,sha256=vwCcls19KSiciaAXYG7C3SwOMWao8VGcnLvsU8ikxB0,23166
424
424
  imio/smartweb/core/tests/test_section_events.py,sha256=7eP-HmXp0D3gvOrjVpzVPmV9nF_PKERnmOGz1G3Z0l0,8641
425
- imio/smartweb/core/tests/test_section_external_content.py,sha256=m3hoPEGtRQVKGQyUbXqXQu4qBcuoJFrFJzQVW213jVM,6592
425
+ imio/smartweb/core/tests/test_section_external_content.py,sha256=vCMipaHPBlxI-kg-f90cnkWqUuUDnnyAtsXRP6PhOeo,6674
426
426
  imio/smartweb/core/tests/test_section_news.py,sha256=PmgcbnoKruI6U4m4-33ueRSjKk2G15N50uGe_2rwHMc,8382
427
427
  imio/smartweb/core/tests/test_section_sendinblue.py,sha256=UmmKo33T9feelumxqeejM4HG4oLRPKJkbB8hkLO144E,2661
428
- imio/smartweb/core/tests/test_sections.py,sha256=7OSR69aS9dD5_ymlae9bMN9wFZaNP2Gpx-lLKBfsmsc,24008
428
+ imio/smartweb/core/tests/test_sections.py,sha256=7lxfneqdJku9sX5u_4Pvg9DWcmMFOE7KH04ojIqdcGQ,24767
429
429
  imio/smartweb/core/tests/test_setup.py,sha256=JcbMnXTNCuB_8grFh5E1kZ0uALdATlKMbahAdGfToZI,2092
430
430
  imio/smartweb/core/tests/test_sitemap.py,sha256=AhFvUhzpkUg5XAwVcK3obXXrOEJYwhQZC3XrWeZtnP0,6674
431
431
  imio/smartweb/core/tests/test_social.py,sha256=GVHkF4c8Ygnm09J1aGxhklbtd6b-1Fy8M7NnYmjRvfI,3046
@@ -672,16 +672,16 @@ imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js
672
672
  imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=9CksAZD8HmkPS0n0IpNDiIs-Rz7g4WGlxIAiWXg1SPg,338
673
673
  imio/smartweb/core/webcomponents/build/js/324.smartweb-webcomponents-compiled.js,sha256=agmSm7DjMJV_OltHpxOlF409JGppnSCjWBwBZDv9dkI,166942
674
674
  imio/smartweb/core/webcomponents/build/js/324.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=-3_bgdYPth5WaLi7KThLMFaeIhyLEDdatZAaOJMVBvI,680
675
- imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=xhdo2FGeiIABVLG7KxdEPFItG2aTViLPaM89hKIONrc,54044
675
+ imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=DMvI8ZQH-kJk8REon54eI53AGhiP67WelA7jTY1G0Og,54116
676
676
  imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=srGNtnoNHz0w5OlaCDZLtTP8yBsDypbLTNk4qjsLvTU,317
677
- imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=OLt_IS4hEMzYR5HAA5A1cE1mjHaqgddAakT9vcVZtPk,38751
677
+ imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=AmxCZL0jPGqHkrGVGj_sVqSqcQGL8auc0K8PvBj-wQI,38780
678
678
  imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js,sha256=C4DEpTuaRR0KAUgH9winSpJYpPwOHAOMUdreD7DaX6A,143081
679
679
  imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=eNJ8gc9n9IF8nW1d9sI9niuHstYzjNz5vqXx9UgWSPc,249
680
680
  imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js,sha256=FA5QfzUfmlsrCL5il1pWsT4gxkVTfYb_iyz7ccFlO8A,17404
681
681
  imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
682
682
  imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js,sha256=ca082EaYXpsgjIeedTCxHiJ_-RO09R2WQ28L21QEMrk,153293
683
683
  imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
684
- imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=GS_2Gwdpc-SyInupXNJJLOrZ2nlJDQouGjheBvHxvxY,45278
684
+ imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=PsDvvkz3SG2j4MCRJZssmdGCME1FrHjNmvhmUcQAx1A,45350
685
685
  imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=WVkO-pJwzsvaPCEdpM8HCxys033UfvexwAHIZWtjZd8,15159
686
686
  imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js,sha256=YLKWqrbFtX1Q2I0gtWEbu7HTVAXe6kbOCWw6CeW8r7Y,299300
687
687
  imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=A-v1lwmuIX1DpNJ1MDzKDMWv7f_d6cjHlGOCEvthhdY,50
@@ -699,14 +699,14 @@ imio/smartweb/core/webcomponents/src/assets/pin-react-active.svg,sha256=XgE72Zg2
699
699
  imio/smartweb/core/webcomponents/src/assets/pin-react.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
700
700
  imio/smartweb/core/webcomponents/src/assets/pin.svg,sha256=-6a-6Jyc3EJteH1X5eFtPUCCz4FQeWKkVhMKHDhmbzI,890
701
701
  imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
702
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=mzcmwn7DO-ZIAMbW3ajwdusbR95zBQPaIcNiQLnCOxI,10919
702
+ imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=JZzN7b6yS9yxuQfhKnOD-GIHi8FBFPJJPGAup2aztGA,11042
703
703
  imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=_O6UeLtzaxTv8uC6RVgWtHQAAZfBJx9g4PrKV9KAUx4,9474
704
704
  imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=A26LlWeszwIzqu15SiEZ_mcb4NSaChAbT7d4GWEyVlY,96
705
705
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=Ji7ODujFQuPGsOwErVWd5AfiDHy9xkJbU2imwLMN2Sw,5068
706
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=EbVL-KFH-kv786DHb2b8Ossl2e3OubYHLR4yiDR3_iw,35412
707
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=cPYe8dfXIgw5JzlAQ7zeRZa731naK3wIh-RCWY68Gm8,2156
706
+ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=hg0471MgW8xJ1saJQWY9GqXzauGqoCqnCrpS9t3aNwg,35353
707
+ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=W_FFSlYmxQ595viM0oedhTuazpHhwn-8RiTr59iAU1g,2139
708
708
  imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=yg7k4KgIOprikaOImjO-Mh7r83tbw0rgkc3YprQ72_4,13423
709
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=Kiuu8C1zaFpbgV9VN5EtoUMywTkiNkThHja0W-SzYRI,11923
709
+ imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=4E4_jCOjbeszd2vBPazbKHUxJ4KcYUjXX7B7vdimy0g,12046
710
710
  imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=CEy4vmYlE8n9_JASOBTl5rk6ZCIC7PbrGp7ZTgZL3n0,10012
711
711
  imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
712
712
  imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=-5wj3_jDXfWncQVaXRsBMD5rSwnGjOGY72l2n4j_dH8,2052
@@ -721,7 +721,7 @@ imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx,sha
721
721
  imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js,sha256=lXSYovMyRUC9TjLDEn03_rcXJhAB2sTqBdc0E7hadJE,1288
722
722
  imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx,sha256=EznTS_9zVa9kzZ_XqFtKbJh5swZgnfkZfT9AnRfpEy4,5649
723
723
  imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.scss,sha256=fOA6Znq6BAl2spfGXefHwE3F0BPbL51RuQbPUC_HII4,1415
724
- imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=xK80eH2e3f1ArSg5bDRSqZUTvHRAVnLqzQsCrnOdEUk,9679
724
+ imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=lRNtWLVsRLGyK1ruyp_qsW4l-bv3umz_hArKH0bRDWY,9802
725
725
  imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=6N4xW_2IUlvGF6WBpoEad9OTHLrgDdyJKeFDSoc3mdc,4491
726
726
  imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
727
727
  imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=_jPvqsdg6QHNBkC7erySX-s5sgBh35X8B3P2LgxcsBw,9598
@@ -743,10 +743,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=cYuZykMIaLjr4KiLvmS4aY
743
743
  imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=xXWz0O-JBwSZrzz2XeQdN4nZEOjppU2sVFtlLQOitQ8,77
744
744
  imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=5YDHwdaRNWFWOgyNd7YejoAdcDvnvAENo3Xn0GDT8P8,8941
745
745
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
746
- imio.smartweb.core-1.2.64.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
747
- imio.smartweb.core-1.2.64.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
748
- imio.smartweb.core-1.2.64.dist-info/METADATA,sha256=oyOlbIlMTyJ1y9bOFRcAGvRn3xoqoNDNfPIOvDj_DvY,55627
749
- imio.smartweb.core-1.2.64.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
750
- imio.smartweb.core-1.2.64.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
751
- imio.smartweb.core-1.2.64.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
752
- imio.smartweb.core-1.2.64.dist-info/RECORD,,
746
+ imio.smartweb.core-1.2.65.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
747
+ imio.smartweb.core-1.2.65.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
748
+ imio.smartweb.core-1.2.65.dist-info/METADATA,sha256=-H4QgU_cI2SAIHZ3PU0EIqnUFusi9NnH3yXZn4vkVJM,55900
749
+ imio.smartweb.core-1.2.65.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
750
+ imio.smartweb.core-1.2.65.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
751
+ imio.smartweb.core-1.2.65.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
752
+ imio.smartweb.core-1.2.65.dist-info/RECORD,,