pyodide-mkdocs-theme 5.4.0__py3-none-any.whl → 5.4.1__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.
- pyodide_mkdocs_theme/__version__.py +1 -1
- pyodide_mkdocs_theme/pyodide_macros/macros/ide_manager.py +17 -6
- pyodide_mkdocs_theme/pyodide_macros/macros/ide_term_ide.py +3 -1
- pyodide_mkdocs_theme/pyodide_macros/macros/ide_tester.py +6 -8
- pyodide_mkdocs_theme/pyodide_macros/plugin_config/definitions/sub_configs.py +1 -1
- pyodide_mkdocs_theme/templates/js-libs/functools.js +10 -4
- pyodide_mkdocs_theme/templates/js-per-pages/qcms-qcm.js +12 -8
- {pyodide_mkdocs_theme-5.4.0.dist-info → pyodide_mkdocs_theme-5.4.1.dist-info}/METADATA +1 -1
- {pyodide_mkdocs_theme-5.4.0.dist-info → pyodide_mkdocs_theme-5.4.1.dist-info}/RECORD +12 -12
- {pyodide_mkdocs_theme-5.4.0.dist-info → pyodide_mkdocs_theme-5.4.1.dist-info}/LICENSE +0 -0
- {pyodide_mkdocs_theme-5.4.0.dist-info → pyodide_mkdocs_theme-5.4.1.dist-info}/WHEEL +0 -0
- {pyodide_mkdocs_theme-5.4.0.dist-info → pyodide_mkdocs_theme-5.4.1.dist-info}/entry_points.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "5.4.
|
|
1
|
+
__version__ = "5.4.1"
|
|
@@ -528,6 +528,12 @@ class IdeManagerMdHtmlGenerator(IdeSectionsManager):
|
|
|
528
528
|
Generic html handling (ids, buttons, ...)
|
|
529
529
|
"""
|
|
530
530
|
|
|
531
|
+
FORCE_PROJECT_ID_IN_HASH: ClassVar[bool] = False
|
|
532
|
+
"""
|
|
533
|
+
Some kind of IDEs (generated ones: IDE_tester, IDE_playground) have to use the project id,
|
|
534
|
+
otherwise their html id _will_ always collide between different projects.
|
|
535
|
+
"""
|
|
536
|
+
|
|
531
537
|
editor_name: str = ''
|
|
532
538
|
""" tail part of most html elements' ids, in the shape of 'editor_{32 bits hexadecimal}' """
|
|
533
539
|
|
|
@@ -546,7 +552,7 @@ class IdeManagerMdHtmlGenerator(IdeSectionsManager):
|
|
|
546
552
|
|
|
547
553
|
|
|
548
554
|
|
|
549
|
-
def
|
|
555
|
+
def _build_string_to_be_hashed(self):
|
|
550
556
|
"""
|
|
551
557
|
Generate hash part of the html id for the current element, in the form:
|
|
552
558
|
|
|
@@ -612,9 +618,9 @@ class IdeManagerMdHtmlGenerator(IdeSectionsManager):
|
|
|
612
618
|
page are more than enough.
|
|
613
619
|
- Consistency of the generated ids through time is more important than anything else.
|
|
614
620
|
- The ids are built using:
|
|
615
|
-
* the page url (relative to
|
|
621
|
+
* the page url (relative to the docs_dir).
|
|
616
622
|
* the macro name (so that the counts for IDEs is not affected by adding other
|
|
617
|
-
elements earlier in the page).
|
|
623
|
+
elements earlier in the page -> stability guarantee).
|
|
618
624
|
* a counter specific to the macro name and the page
|
|
619
625
|
|
|
620
626
|
|
|
@@ -627,7 +633,7 @@ class IdeManagerMdHtmlGenerator(IdeSectionsManager):
|
|
|
627
633
|
For IDE elements without associated python file:
|
|
628
634
|
|
|
629
635
|
- These are more often subject to side effects across different projects, because the
|
|
630
|
-
html ids are generated using the PAGE URL (relative to the
|
|
636
|
+
html ids are generated using the PAGE URL (relative to the docs_dir), concatenated with
|
|
631
637
|
various things that are specific to the page or the macro. So different website with the
|
|
632
638
|
same relative URL _will_ clash in the localStorage. These require the use of a project_id
|
|
633
639
|
value.
|
|
@@ -696,7 +702,7 @@ class IdeManagerMdHtmlGenerator(IdeSectionsManager):
|
|
|
696
702
|
|
|
697
703
|
need_project_id = is_ide and self.env.project_disambiguate_local_storage and project_id and (
|
|
698
704
|
not has_py_file or is_relative
|
|
699
|
-
)
|
|
705
|
+
) or self.FORCE_PROJECT_ID_IN_HASH
|
|
700
706
|
# The project_id is needed to disambiguate the html ids in the localStorage only if:
|
|
701
707
|
# 1. The element is an IDE
|
|
702
708
|
# 2. The user actually gave a value for env.project_id
|
|
@@ -721,7 +727,12 @@ class IdeManagerMdHtmlGenerator(IdeSectionsManager):
|
|
|
721
727
|
# DO NOT lstrip `to_hash`, to keep implementation consistent for users, even if it
|
|
722
728
|
# looks ugly on the home page (url is ""). Nobody but me can see it anyway... :rolleyes:
|
|
723
729
|
|
|
724
|
-
|
|
730
|
+
return to_hash
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
def generate_id(self):
|
|
734
|
+
to_hash = self._build_string_to_be_hashed()
|
|
735
|
+
hashed = self.id_to_hash(to_hash)
|
|
725
736
|
return hashed
|
|
726
737
|
|
|
727
738
|
|
|
@@ -19,7 +19,7 @@ If not, see <https://www.gnu.org/licenses/>.
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
from abc import ABCMeta
|
|
22
|
-
from typing import Optional
|
|
22
|
+
from typing import ClassVar, Optional
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
from .. import html_builder as Html
|
|
@@ -67,6 +67,8 @@ _BTN_MATERIAL_OVERFLOW = admonition_safe_html('''
|
|
|
67
67
|
|
|
68
68
|
class CommonGeneratedIde(IdeManager, metaclass=ABCMeta):
|
|
69
69
|
|
|
70
|
+
FORCE_PROJECT_ID_IN_HASH: ClassVar[bool] = True
|
|
71
|
+
|
|
70
72
|
@classmethod
|
|
71
73
|
def get_markdown(cls, use_mermaid:bool):
|
|
72
74
|
raise NotImplementedError()
|
|
@@ -20,17 +20,15 @@ If not, see <https://www.gnu.org/licenses/>.
|
|
|
20
20
|
|
|
21
21
|
import json
|
|
22
22
|
from dataclasses import dataclass, field
|
|
23
|
-
import re
|
|
24
23
|
from textwrap import dedent
|
|
25
|
-
from typing import Any,
|
|
24
|
+
from typing import Any, ClassVar, Dict, List, TYPE_CHECKING, NewType, Optional, Tuple, Type
|
|
26
25
|
|
|
27
26
|
|
|
28
27
|
|
|
29
28
|
|
|
30
29
|
|
|
31
|
-
from ..exceptions import PmtMacrosInvalidArgumentError
|
|
32
30
|
from .. import html_builder as Html
|
|
33
|
-
from ..tools_and_constants import HtmlClass, PageUrl, PmtPyMacrosName, PageInclusion, Prefix, Qcm,
|
|
31
|
+
from ..tools_and_constants import HtmlClass, PageUrl, PmtPyMacrosName, PageInclusion, Prefix, Qcm, ScriptData
|
|
34
32
|
from ..parsing import compress_LZW
|
|
35
33
|
from ..html_dependencies.deps_class import DepKind
|
|
36
34
|
from ..plugin_tools.test_cases import Case
|
|
@@ -121,12 +119,12 @@ class IdeTester(CommonGeneratedIde, Ide):
|
|
|
121
119
|
Build the code generating the IdeTester object. Insert the MERMAID logistic only if
|
|
122
120
|
the `mkdocs.yml` holds the custom fences code configuration.
|
|
123
121
|
"""
|
|
124
|
-
return dedent(f"""
|
|
125
|
-
|
|
122
|
+
return dedent(f"""\
|
|
123
|
+
# Testing all IDEs in the documentation {'{'} data-search-exclude {'}'}
|
|
126
124
|
|
|
127
|
-
|
|
125
|
+
<br>
|
|
128
126
|
|
|
129
|
-
|
|
127
|
+
{'{{'} IDE_tester(MAX='+', MERMAID={ use_mermaid }, TERM_H=15) {'}}'}
|
|
130
128
|
|
|
131
129
|
""")
|
|
132
130
|
|
|
@@ -877,7 +877,7 @@ TESTING_CONFIG = SubConfigSrc(
|
|
|
877
877
|
extra_docs = f"""
|
|
878
878
|
Définit si la page de tests des IDEs doit être générée et de quelle façon.
|
|
879
879
|
{'{{'}ul_li([
|
|
880
|
-
"`#!py '{PageInclusion.none}'`
|
|
880
|
+
"`#!py '{PageInclusion.none}'` : la page de tests n'est pas générée.",
|
|
881
881
|
"`#!py '{PageInclusion.serve}'` : la page de tests est générée pendant `mkdocs serve`,
|
|
882
882
|
et est ajoutée automatiquement à la navigation.",
|
|
883
883
|
"`#!py '{PageInclusion.site}'` : La page de tests est ajoutée au site construit,
|
|
@@ -1086,18 +1086,24 @@ export function getIdeDataFromStorage(editorId, ide=null){
|
|
|
1086
1086
|
code = obj.code ?? ""
|
|
1087
1087
|
}catch(_){}
|
|
1088
1088
|
|
|
1089
|
-
|
|
1090
|
-
|
|
1089
|
+
// If the update to 5.4.0 has occured before the `project.id` was filled by the author,
|
|
1090
|
+
// users might have the localStorage updated with a `project: null` entry. This is not to
|
|
1091
|
+
// be considered "up to date", to avoid basillions of warning for the users (1 per IDE!).
|
|
1092
|
+
const pmt_540_ok = (obj.project??null)!==null
|
|
1093
|
+
const upToDate = PMT_LOCAL_STORAGE_KEYS_WRITE.every(k=> k in obj) && pmt_540_ok
|
|
1094
|
+
const storage = upToDate ? obj : freshStore(code, obj, ide)
|
|
1091
1095
|
|
|
1092
1096
|
if(ide && !CONFIG.projectNoJsWarning && storage.project !== CONFIG.projectId){
|
|
1093
1097
|
const msg = [
|
|
1094
1098
|
CONFIG.lang.storageIdCollision.msg,
|
|
1095
1099
|
'',
|
|
1100
|
+
`Project id: "${ CONFIG.projectId }"`,
|
|
1096
1101
|
`Page: ${ document.location }`,
|
|
1097
1102
|
`py_name: ${ ide.pyName }`,
|
|
1098
|
-
`Project id: "${ CONFIG.projectId }"`,
|
|
1099
|
-
`Collision id: "${ storage.project }"`,
|
|
1100
1103
|
`(id: ${ editorId })`,
|
|
1104
|
+
'------------------------\nCollision source:',
|
|
1105
|
+
`Project id: "${ storage.project }"`,
|
|
1106
|
+
`py_name: ${ storage.name }`,
|
|
1101
1107
|
]
|
|
1102
1108
|
window.alert(msg.join('\n'))
|
|
1103
1109
|
}
|
|
@@ -151,7 +151,7 @@ class QCM {
|
|
|
151
151
|
perennialMathJaxUpdate()
|
|
152
152
|
renderMermaidGraphs()
|
|
153
153
|
}
|
|
154
|
-
const [good,all] = this.questions.reduce( (track,quest)=>quest._validate(...track), [0,0])
|
|
154
|
+
const [good,all] = this.questions.reduce( (track,quest)=>quest._validate(this.reveal, ...track), [0,0])
|
|
155
155
|
this.updateCounter(`${good}/${all}`)
|
|
156
156
|
this.locked = true
|
|
157
157
|
}
|
|
@@ -266,21 +266,25 @@ class Question {
|
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
-
_validate(goods, all){
|
|
269
|
+
_validate(revealed, goods, all){
|
|
270
270
|
const values = Object.values(this.byId)
|
|
271
271
|
|
|
272
272
|
/*
|
|
273
273
|
// Count per item:
|
|
274
|
-
|
|
275
|
-
|
|
274
|
+
const localGood = values.reduce( (s,o)=>s+(o.checked === o.correct), 0)
|
|
275
|
+
const localAll = values.length
|
|
276
276
|
|
|
277
277
|
/*/
|
|
278
278
|
// Count per question:
|
|
279
|
-
|
|
280
|
-
|
|
279
|
+
const localGood = values.every( o => o.checked === o.correct )
|
|
280
|
+
const localAll = true
|
|
281
281
|
//*/
|
|
282
282
|
|
|
283
|
-
|
|
283
|
+
if(revealed && this.comment && localGood===localAll){
|
|
284
|
+
this.comment.prop('open', true)
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
return [goods+localGood, all+localAll]
|
|
284
288
|
}
|
|
285
289
|
|
|
286
290
|
_reveal(){
|
|
@@ -312,7 +316,7 @@ class Question {
|
|
|
312
316
|
|
|
313
317
|
|
|
314
318
|
resetAllItems(always=false){
|
|
315
|
-
if(this.comment) this.comment.detach()
|
|
319
|
+
if(this.comment) this.comment.detach().prop('open', false)
|
|
316
320
|
Object.entries(this.byId).forEach(([itemId,it])=>{
|
|
317
321
|
if(always || it.checked) this.updateItem(itemId, false)
|
|
318
322
|
})
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pyodide-mkdocs-theme
|
|
3
|
-
Version: 5.4.
|
|
3
|
+
Version: 5.4.1
|
|
4
4
|
Summary: Package embedding the necessary tools to host pyodide, ACE editors, jQuery terminals in mkdocs documentations
|
|
5
5
|
License: GPL-3.0-or-later
|
|
6
6
|
Keywords: mkdocs,mkdocs-plugin,pyodide,IDE,terminal
|
|
@@ -3,7 +3,7 @@ pyodide_mkdocs_theme/PMT_tools/vis/__init__.py,sha256=yz4vn9sdJbov4nnSY3qW2i2KBx
|
|
|
3
3
|
pyodide_mkdocs_theme/PMT_tools/vis_network/__init__.py,sha256=xIHPG_LGtVNuWn31ES2cHBGMTPszW103xSL-X9rvass,19176
|
|
4
4
|
pyodide_mkdocs_theme/__init__.py,sha256=eF71r5abmOC1RxEUnT2trZxTQWNmW69wUFWcBIEyxeI,2767
|
|
5
5
|
pyodide_mkdocs_theme/__main__.py,sha256=AM77xwc-6A0UlQKDk5lQE2ZmQwFdB4SvipsB2-6ieCQ,10321
|
|
6
|
-
pyodide_mkdocs_theme/__version__.py,sha256=
|
|
6
|
+
pyodide_mkdocs_theme/__version__.py,sha256=txavOIJExVzJ_65e_CmTvmPvUuIxtGnR5XsQU0qPD7Q,22
|
|
7
7
|
pyodide_mkdocs_theme/basthon_p5_to_pmt.py,sha256=C0qeMygadJjAo4ERzWLqptyo0KPEvEwZ7DWC1Io0SqM,17446
|
|
8
8
|
pyodide_mkdocs_theme/pyodide_macros/__init__.py,sha256=QsJobE1N4BzEm-ucPawBCcdXyCV_-40jGa3WlaQQGpo,1392
|
|
9
9
|
pyodide_mkdocs_theme/pyodide_macros/exceptions.py,sha256=TPCoT52wD_huHT0BbWf17ESe90IeG4TrkM_yxUyvnQI,5699
|
|
@@ -24,13 +24,13 @@ pyodide_mkdocs_theme/pyodide_macros/macros/IDEs.py,sha256=IHY6EqZOyN95x-rgxLwr91
|
|
|
24
24
|
pyodide_mkdocs_theme/pyodide_macros/macros/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
25
|
pyodide_mkdocs_theme/pyodide_macros/macros/figure.py,sha256=0VRjFixZb19yDnjXCGyJJHnkRuLyuRvzIfdtmfsBxJw,2668
|
|
26
26
|
pyodide_mkdocs_theme/pyodide_macros/macros/ide_ide.py,sha256=_q22rP7LvJFro5ume1bIMgxXaef4TttVsQZiykBbrcw,23507
|
|
27
|
-
pyodide_mkdocs_theme/pyodide_macros/macros/ide_manager.py,sha256=
|
|
27
|
+
pyodide_mkdocs_theme/pyodide_macros/macros/ide_manager.py,sha256=6GEXkeaXyrE9qhYZrR4ok5MdnOxmGgxlZPhYhYdzYH0,41750
|
|
28
28
|
pyodide_mkdocs_theme/pyodide_macros/macros/ide_playground.py,sha256=PNrVG1zwGDPlgMNRyXsog5jKhYBx2AGpyJn0egm1SSg,4484
|
|
29
29
|
pyodide_mkdocs_theme/pyodide_macros/macros/ide_py_btn.py,sha256=bgwUtQiUsSJMAEHONj_YMZ3AKsNCKCfeYlRmLg2NbBc,4507
|
|
30
30
|
pyodide_mkdocs_theme/pyodide_macros/macros/ide_run_macro.py,sha256=WnabtSWGc8Gn_TZdc-QRest9jjbZmfgvfXOFFHcNaXA,1718
|
|
31
|
-
pyodide_mkdocs_theme/pyodide_macros/macros/ide_term_ide.py,sha256=
|
|
31
|
+
pyodide_mkdocs_theme/pyodide_macros/macros/ide_term_ide.py,sha256=D89KAddfJb3bF5nTNigF8VdOYe4hMwac0do_Zo61wUE,4840
|
|
32
32
|
pyodide_mkdocs_theme/pyodide_macros/macros/ide_terminal.py,sha256=elsJVbMsrUFhWwXZLgOZ04apQz9A8h-Hef5x2NiYjUM,2485
|
|
33
|
-
pyodide_mkdocs_theme/pyodide_macros/macros/ide_tester.py,sha256=
|
|
33
|
+
pyodide_mkdocs_theme/pyodide_macros/macros/ide_tester.py,sha256=UYrRZqANb1is7Yg6ohZ4JMlQZUEoACfZOn7AtHvykRA,16062
|
|
34
34
|
pyodide_mkdocs_theme/pyodide_macros/macros/py_script.py,sha256=FAQlI8UNyjkPR2DKTQJ10SiKkeuV8yXrLeEWa2Mfm20,7417
|
|
35
35
|
pyodide_mkdocs_theme/pyodide_macros/macros/qcm.py,sha256=HZC8PVdtZK_3Ilp6qxCQofFuvCNbOMP8O3m-ARDztIY,12567
|
|
36
36
|
pyodide_mkdocs_theme/pyodide_macros/messages/__init__.py,sha256=DSWDp2ph8H6gFaT7-3KhdE7zoo9CfdkIi4bAdZcBYIw,975
|
|
@@ -59,7 +59,7 @@ pyodide_mkdocs_theme/pyodide_macros/plugin_config/definitions/__init__.py,sha256
|
|
|
59
59
|
pyodide_mkdocs_theme/pyodide_macros/plugin_config/definitions/docs_dirs_config.py,sha256=W1q6V6GA6UUtFrEiRuXtwpLy4RO78m_bZfoWQpeWUas,1961
|
|
60
60
|
pyodide_mkdocs_theme/pyodide_macros/plugin_config/definitions/macros_configs.py,sha256=94t5vjcskFLj7BBpqWVqSTCaVquwR-fWXTpYzpuGdE8,59382
|
|
61
61
|
pyodide_mkdocs_theme/pyodide_macros/plugin_config/definitions/plugin_config.py,sha256=ig7CKqLRt4om7FVnYuSImGIOZ4k5dp4YVAIfxQlOfKI,11102
|
|
62
|
-
pyodide_mkdocs_theme/pyodide_macros/plugin_config/definitions/sub_configs.py,sha256=
|
|
62
|
+
pyodide_mkdocs_theme/pyodide_macros/plugin_config/definitions/sub_configs.py,sha256=jqiwCnetgnVQkWxfdTvz6u6j3Lvudr3rXWDqXSRnlZs,49625
|
|
63
63
|
pyodide_mkdocs_theme/pyodide_macros/plugin_config/dumpers.py,sha256=37HyTzgkNMUhstOR3xSRAXN2e1HlAMzWajBNXEK8svI,5486
|
|
64
64
|
pyodide_mkdocs_theme/pyodide_macros/plugin_config/lang_src.py,sha256=VA_2dc0JYw_AeX0fWS3kwfM6AL1XhKMBX0ESJJZjcqY,5734
|
|
65
65
|
pyodide_mkdocs_theme/pyodide_macros/plugin_config/macro_config_src.py,sha256=W0gSWmLDXpnyKGDS7rSAxIGLnO2VVRsYvaaebMWte3M,10555
|
|
@@ -103,7 +103,7 @@ pyodide_mkdocs_theme/templates/assets/images/icons8-zip-64.png,sha256=hakeODow5W
|
|
|
103
103
|
pyodide_mkdocs_theme/templates/base_pmt.html,sha256=2R_5T5j9QT2Ptit-CvzV6k1khbqrXolGBPvztj4zRWc,1318
|
|
104
104
|
pyodide_mkdocs_theme/templates/js-libs/0-config.js,sha256=eNRpmoiWfrZuOKXlkvYF8YDG0tzb4-UiXP-3Xf5Vsoc,10206
|
|
105
105
|
pyodide_mkdocs_theme/templates/js-libs/0-legacy-subscriber.js,sha256=kSQ1Nv8KOcYMde9fqO-Kw1rNh26hPB3AG8lonlovTdo,2126
|
|
106
|
-
pyodide_mkdocs_theme/templates/js-libs/functools.js,sha256
|
|
106
|
+
pyodide_mkdocs_theme/templates/js-libs/functools.js,sha256=FnKIwUm-InFtfwe21K_lEVaUNcz8lzR9kvs3y_XSbfs,39943
|
|
107
107
|
pyodide_mkdocs_theme/templates/js-libs/jsLogger.js,sha256=vk69c8fdawIuxsMfRJv1sImoCNt5WD2oFfy5kYJcj4U,2336
|
|
108
108
|
pyodide_mkdocs_theme/templates/js-libs/mathjax-libs.js,sha256=gJEOIGRzxAm5WK8wxdzN36TUy66STBu2JRcy7OGSiMc,1478
|
|
109
109
|
pyodide_mkdocs_theme/templates/js-libs/process_and_gui.js,sha256=9WumINb2wspfAeI8h7_UaKdmx_8LKPqYZfSzuWzxvR0,7124
|
|
@@ -121,7 +121,7 @@ pyodide_mkdocs_theme/templates/js-per-pages/4-ideRunner-ide.js,sha256=g65x5aCh58
|
|
|
121
121
|
pyodide_mkdocs_theme/templates/js-per-pages/5-ideTester-ides_test.js,sha256=8kWT02wifIqg6O8o0R3S9mcPX88dLPb780BfGjxoI6E,28359
|
|
122
122
|
pyodide_mkdocs_theme/templates/js-per-pages/6-2-init-playground.js,sha256=cOBcjttNrMfKwTVv49_JYUlO90vwGtkRc9RdatVBVzE,1318
|
|
123
123
|
pyodide_mkdocs_theme/templates/js-per-pages/6-idePlayground-playground.js,sha256=gUPxC7PWF_C1pYcYBsL2TTQgHX7e6TbXjXu0ilFwXIM,4189
|
|
124
|
-
pyodide_mkdocs_theme/templates/js-per-pages/qcms-qcm.js,sha256=
|
|
124
|
+
pyodide_mkdocs_theme/templates/js-per-pages/qcms-qcm.js,sha256=6uL25L5x9z8ghEF4ISPdfZX9LhBAhcSO8yC9cDi3sB4,13605
|
|
125
125
|
pyodide_mkdocs_theme/templates/js-per-pages/start-pyodide.js,sha256=zsSoDpE-xCbVSWe-Fna8iOh9qV_f9ak8gDOkjAgixY8,6905
|
|
126
126
|
pyodide_mkdocs_theme/templates/js-scripts/overlord.js,sha256=1ePebj8t8rwxvNtMxtfDLu04aah3rXFIOQ_mPWQFiFA,1628
|
|
127
127
|
pyodide_mkdocs_theme/templates/js-scripts/subscriptions.js,sha256=I-m_KbYFxyDibGeKwJpjYXwk06HDcJlSxsvbWL7gy9g,12432
|
|
@@ -140,8 +140,8 @@ pyodide_mkdocs_theme/templates/pyodide-css/ide.css,sha256=UX_qKVgckw-TUVmZRvlu-M
|
|
|
140
140
|
pyodide_mkdocs_theme/templates/pyodide-css/qcm.css,sha256=Mh2lg1WFgmHYuI69cxwUtfXuNl97XJkiOzN5jodww_o,4491
|
|
141
141
|
pyodide_mkdocs_theme/templates/pyodide-css/terminal.css,sha256=emPONURSk0VaNXWPSz7Yj6LaoV8kzRhL0y2D9Q_wybQ,1688
|
|
142
142
|
pyodide_mkdocs_theme/templates/pyodide-css/testing.css,sha256=V1BZ7UV6mOWd087VtARX0IWOiONQw3OmD-eCGmCggVQ,3293
|
|
143
|
-
pyodide_mkdocs_theme-5.4.
|
|
144
|
-
pyodide_mkdocs_theme-5.4.
|
|
145
|
-
pyodide_mkdocs_theme-5.4.
|
|
146
|
-
pyodide_mkdocs_theme-5.4.
|
|
147
|
-
pyodide_mkdocs_theme-5.4.
|
|
143
|
+
pyodide_mkdocs_theme-5.4.1.dist-info/LICENSE,sha256=KSvfLkVBOr2TwehfMhrI9Od3dHoyYFpxZH5GQCSflRE,35118
|
|
144
|
+
pyodide_mkdocs_theme-5.4.1.dist-info/METADATA,sha256=cHTGD-HEZKw3Az5XQPmNwdM1MmZ26van6nRSO3v9GOk,4471
|
|
145
|
+
pyodide_mkdocs_theme-5.4.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
146
|
+
pyodide_mkdocs_theme-5.4.1.dist-info/entry_points.txt,sha256=S7DNQF6CBMaqSasP1CZ_T5elFKAzwwldYuhVZmAUFu0,719
|
|
147
|
+
pyodide_mkdocs_theme-5.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{pyodide_mkdocs_theme-5.4.0.dist-info → pyodide_mkdocs_theme-5.4.1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|