poxy 0.18.0__py3-none-any.whl → 0.19.0__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.
- poxy/generated/poxy.css +2 -1
- poxy/main.py +8 -1
- poxy/mcss/CONTRIBUTING.rst +1 -1
- poxy/mcss/CREDITS.rst +2 -0
- poxy/mcss/css/m-components.css +1 -1
- poxy/mcss/css/m-debug.css +1 -1
- poxy/mcss/css/m-documentation.css +1 -1
- poxy/mcss/css/m-grid.css +1 -1
- poxy/mcss/css/m-layout.css +1 -1
- poxy/mcss/documentation/__init__.py +1 -1
- poxy/mcss/documentation/_search.py +1 -1
- poxy/mcss/documentation/doxygen.py +202 -25
- poxy/mcss/documentation/python.py +66 -22
- poxy/mcss/documentation/search.js +1 -1
- poxy/mcss/plugins/ansilexer.py +1 -1
- poxy/mcss/plugins/dot2svg.py +1 -1
- poxy/mcss/plugins/latex2svgextra.py +1 -1
- poxy/mcss/plugins/m/__init__.py +1 -1
- poxy/mcss/plugins/m/abbr.py +1 -1
- poxy/mcss/plugins/m/alias.py +1 -1
- poxy/mcss/plugins/m/code.py +4 -5
- poxy/mcss/plugins/m/components.py +1 -1
- poxy/mcss/plugins/m/dot.py +1 -1
- poxy/mcss/plugins/m/dox.py +1 -1
- poxy/mcss/plugins/m/filesize.py +1 -1
- poxy/mcss/plugins/m/gh.py +1 -1
- poxy/mcss/plugins/m/gl.py +1 -1
- poxy/mcss/plugins/m/htmlsanity.py +14 -6
- poxy/mcss/plugins/m/images.py +1 -1
- poxy/mcss/plugins/m/link.py +1 -1
- poxy/mcss/plugins/m/math.py +1 -1
- poxy/mcss/plugins/m/metadata.py +1 -1
- poxy/mcss/plugins/m/plots.py +1 -1
- poxy/mcss/plugins/m/qr.py +1 -1
- poxy/mcss/plugins/m/sphinx.py +1 -1
- poxy/mcss/plugins/m/vk.py +1 -1
- poxy/project.py +24 -4
- poxy/run.py +86 -13
- poxy/version.txt +1 -1
- {poxy-0.18.0.dist-info → poxy-0.19.0.dist-info}/METADATA +11 -3
- {poxy-0.18.0.dist-info → poxy-0.19.0.dist-info}/RECORD +46 -46
- {poxy-0.18.0.dist-info → poxy-0.19.0.dist-info}/WHEEL +1 -1
- {poxy-0.18.0.dist-info → poxy-0.19.0.dist-info}/LICENSE.txt +0 -0
- {poxy-0.18.0.dist-info → poxy-0.19.0.dist-info}/entry_points.txt +0 -0
- {poxy-0.18.0.dist-info → poxy-0.19.0.dist-info}/top_level.txt +0 -0
- {poxy-0.18.0.dist-info → poxy-0.19.0.dist-info}/zip-safe +0 -0
poxy/run.py
CHANGED
@@ -11,6 +11,7 @@ import concurrent.futures as futures
|
|
11
11
|
import os
|
12
12
|
import subprocess
|
13
13
|
import tempfile
|
14
|
+
import copy
|
14
15
|
from distutils.dir_util import copy_tree
|
15
16
|
from io import StringIO
|
16
17
|
|
@@ -466,6 +467,78 @@ def postprocess_xml(context: Context):
|
|
466
467
|
if changed:
|
467
468
|
xml_utils.write(root, xml_file)
|
468
469
|
|
470
|
+
# doxygen >= 1.9.7 needs some special handling to play nice with m.css
|
471
|
+
# see: https://github.com/mosra/m.css/issues/239
|
472
|
+
if doxygen.version() >= (1, 9, 7):
|
473
|
+
|
474
|
+
member_references = dict()
|
475
|
+
|
476
|
+
# collect all the unresolved references
|
477
|
+
for xml_file in xml_files:
|
478
|
+
root = xml_utils.read(xml_file)
|
479
|
+
if root.tag != r'doxygen':
|
480
|
+
continue
|
481
|
+
compounddef = root.find(r'compounddef')
|
482
|
+
if compounddef is None:
|
483
|
+
continue
|
484
|
+
compound_kind = compounddef.get(r'kind')
|
485
|
+
if compound_kind is None or not compound_kind or not compound_kind in (r'file', r'namespace'):
|
486
|
+
continue
|
487
|
+
for sectiondef in compounddef.findall(r'sectiondef'):
|
488
|
+
for member in sectiondef.findall(r'member'):
|
489
|
+
refid = member.get(r'refid')
|
490
|
+
if refid is not None:
|
491
|
+
refid = str(refid)
|
492
|
+
if refid and refid not in member_references:
|
493
|
+
member_references[refid] = None
|
494
|
+
|
495
|
+
if member_references:
|
496
|
+
|
497
|
+
# resolve
|
498
|
+
for xml_file in xml_files:
|
499
|
+
root = xml_utils.read(xml_file)
|
500
|
+
if root.tag != r'doxygen':
|
501
|
+
continue
|
502
|
+
compounddef = root.find(r'compounddef')
|
503
|
+
if compounddef is None:
|
504
|
+
continue
|
505
|
+
for sectiondef in compounddef.findall(r'sectiondef'):
|
506
|
+
for memberdef in sectiondef.findall(r'memberdef'):
|
507
|
+
id = memberdef.get(r'id')
|
508
|
+
if id is not None:
|
509
|
+
id = str(id)
|
510
|
+
if id and id in member_references and member_references[id] is None:
|
511
|
+
member_references[id] = memberdef
|
512
|
+
for id, memberdef in member_references.items():
|
513
|
+
if memberdef is None:
|
514
|
+
context.warning(rf"could not resolve <member> reference with id '{id}'!")
|
515
|
+
|
516
|
+
# replace
|
517
|
+
for xml_file in xml_files:
|
518
|
+
root = xml_utils.read(xml_file)
|
519
|
+
if root.tag != r'doxygen':
|
520
|
+
continue
|
521
|
+
compounddef = root.find(r'compounddef')
|
522
|
+
if compounddef is None:
|
523
|
+
continue
|
524
|
+
compound_kind = compounddef.get(r'kind')
|
525
|
+
if compound_kind is None or not compound_kind or not compound_kind in (r'file', r'namespace'):
|
526
|
+
continue
|
527
|
+
changed = False
|
528
|
+
for sectiondef in compounddef.findall(r'sectiondef'):
|
529
|
+
replacements = []
|
530
|
+
for member in sectiondef.findall(r'member'):
|
531
|
+
refid = member.get(r'refid')
|
532
|
+
if refid is not None:
|
533
|
+
refid = str(refid)
|
534
|
+
if refid and refid in member_references and member_references[refid] is not None:
|
535
|
+
replacements.append((member, member_references[refid]))
|
536
|
+
for member, memberdef in replacements:
|
537
|
+
sectiondef.replace(member, copy.deepcopy(memberdef))
|
538
|
+
changed = True
|
539
|
+
if changed:
|
540
|
+
xml_utils.write(root, xml_file)
|
541
|
+
|
469
542
|
# now do '<doxygen>' files
|
470
543
|
for xml_file in xml_files:
|
471
544
|
root = xml_utils.read(xml_file)
|
@@ -503,15 +576,6 @@ def postprocess_xml(context: Context):
|
|
503
576
|
compound_title = compounddef.find(r'title')
|
504
577
|
compound_title = compound_title.text if compound_title is not None else compound_name
|
505
578
|
|
506
|
-
# fix weird regression in doxygen 1.9.7
|
507
|
-
if compound_kind == r'file' and doxygen.version() == (1, 9, 7):
|
508
|
-
sectiondefs = [s for s in compounddef.findall(r'sectiondef') if s.get(r'kind') == r'define']
|
509
|
-
for sectiondef in sectiondefs:
|
510
|
-
members = [m for m in sectiondef.findall(r'member') if m.get(r'kind') == r'define']
|
511
|
-
for member in members:
|
512
|
-
sectiondef.remove(member)
|
513
|
-
changed = True
|
514
|
-
|
515
579
|
# do a bit of cleanup of <programlisting>
|
516
580
|
for programlisting in compounddef.iterdescendants(tag="programlisting"):
|
517
581
|
# fix &zwj; mangling (zero-width joiners don't make sense in code blocks anyways)
|
@@ -630,8 +694,10 @@ def postprocess_xml(context: Context):
|
|
630
694
|
changed = True
|
631
695
|
if attr is not None:
|
632
696
|
member.set(attr, attr_value)
|
633
|
-
|
634
|
-
|
697
|
+
if kw == r'friend' and type.text == r'' and member.get(r'kind') == r'variable':
|
698
|
+
type.text = r'friend'
|
699
|
+
matched_bad_keyword = False
|
700
|
+
break
|
635
701
|
|
636
702
|
# fix issues with trailing return types
|
637
703
|
if 1:
|
@@ -1108,11 +1174,13 @@ def parse_xml(context: Context):
|
|
1108
1174
|
context.verbose_object(r'Context.code_blocks', context.code_blocks)
|
1109
1175
|
|
1110
1176
|
|
1111
|
-
def clean_xml(context: Context):
|
1177
|
+
def clean_xml(context: Context, dir=None):
|
1112
1178
|
assert context is not None
|
1113
1179
|
assert isinstance(context, Context)
|
1180
|
+
if dir is None:
|
1181
|
+
dir = context.temp_xml_dir
|
1114
1182
|
|
1115
|
-
xml_files = get_all_files(
|
1183
|
+
xml_files = get_all_files(dir, any=(r'*.xml'))
|
1116
1184
|
for xml_file in xml_files:
|
1117
1185
|
root = xml_utils.read(
|
1118
1186
|
xml_file, parser=xml_utils.create_parser(remove_blank_text=True), logger=context.verbose_logger #
|
@@ -1674,6 +1742,7 @@ def run(
|
|
1674
1742
|
temp_dir: Path = None,
|
1675
1743
|
copy_config_to: Path = None,
|
1676
1744
|
versions_in_navbar: bool = False,
|
1745
|
+
keep_original_xml: bool = False,
|
1677
1746
|
**kwargs,
|
1678
1747
|
):
|
1679
1748
|
timer = lambda desc: ScopeTimer(desc, print_start=True, print_end=context.verbose_logger)
|
@@ -1707,7 +1776,11 @@ def run(
|
|
1707
1776
|
# generate + postprocess XML in temp_xml_dir
|
1708
1777
|
# (we always do this even when output_xml is false because it is required by the html)
|
1709
1778
|
with timer(rf'Generating XML files with Doxygen {doxygen.version_string()}') as t:
|
1779
|
+
delete_directory(context.temp_original_xml_dir)
|
1710
1780
|
run_doxygen(context)
|
1781
|
+
if keep_original_xml:
|
1782
|
+
copy_tree(str(context.temp_xml_dir), str(context.temp_original_xml_dir))
|
1783
|
+
clean_xml(context, dir=context.temp_original_xml_dir)
|
1711
1784
|
with timer(r'Post-processing XML files') as t:
|
1712
1785
|
if context.xml_v2:
|
1713
1786
|
postprocess_xml_v2(context)
|
poxy/version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.19.0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: poxy
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.19.0
|
4
4
|
Summary: Documentation generator for C++.
|
5
5
|
Author-email: Mark Gillard <mark.gillard@outlook.com.au>
|
6
6
|
License: MIT
|
@@ -18,14 +18,14 @@ Classifier: Topic :: Utilities
|
|
18
18
|
Requires-Python: >=3.7
|
19
19
|
Description-Content-Type: text/markdown
|
20
20
|
License-File: LICENSE.txt
|
21
|
-
Requires-Dist: misk
|
21
|
+
Requires-Dist: misk>=0.8.1
|
22
22
|
Requires-Dist: bs4
|
23
23
|
Requires-Dist: jinja2
|
24
24
|
Requires-Dist: pygments
|
25
25
|
Requires-Dist: html5lib
|
26
26
|
Requires-Dist: lxml
|
27
27
|
Requires-Dist: tomli
|
28
|
-
Requires-Dist: schema
|
28
|
+
Requires-Dist: schema!=0.7.5
|
29
29
|
Requires-Dist: requests
|
30
30
|
Requires-Dist: trieregex
|
31
31
|
Requires-Dist: colorama
|
@@ -221,6 +221,14 @@ Poxy bundles a fork of m.css, used per the [MIT/Expat license](https://github.co
|
|
221
221
|
|
222
222
|
# Changelog
|
223
223
|
|
224
|
+
## v0.19.0 - 2024-09-15
|
225
|
+
|
226
|
+
- fixed crash when using simple type specifiers in friend declarations (#37) (@benjaminulmer)
|
227
|
+
- added workaround for [this issue](https://github.com/mosra/m.css/issues/239) introduced in Doxygen 1.9.7
|
228
|
+
- added auto-linking for various cppreference.com pages
|
229
|
+
- made `--bug-report` keep a copy of the original (pre-pre-processed?) XML
|
230
|
+
- updated m.css
|
231
|
+
|
224
232
|
## v0.18.0 - 2024-08-03
|
225
233
|
|
226
234
|
- added config option `excluded_symbols` (a.k.a. Doxygen's `EXCLUDE_SYMBOLS`) (#36) (@Guekka)
|
@@ -5,18 +5,18 @@ poxy/doxygen.py,sha256=nHygTYfKqh4M0hcdomWK5J3T16GZ7owM5oaWa141Ky4,46372
|
|
5
5
|
poxy/emoji.py,sha256=Vj2ZbUq1MewLMVoLtH2xP_jZToRoNi52AgrIg3VhUuU,3410
|
6
6
|
poxy/fixers.py,sha256=WX_hDr-V7wQ8V1E8Ryg3kNyQUdETNNFlzxAVzEziruU,46069
|
7
7
|
poxy/graph.py,sha256=xI7xoV6-yTM-gh2OBARakANLHzGYBwwhwJHchQz2EKw,31959
|
8
|
-
poxy/main.py,sha256=
|
8
|
+
poxy/main.py,sha256=3wyuYNw-v3fousswDGDXkBEJi20trCKtmpoZBnFlmKU,27176
|
9
9
|
poxy/mcss.py,sha256=j9PmkfjcwaKdKBauwiPKhSeKGNmGiBt0i_WcnVAV3Hk,2157
|
10
10
|
poxy/paths.py,sha256=OqyP9bIIhW0zyWL6PV2TVV9zsrtvnb25_XNmHlFJmQ8,1540
|
11
|
-
poxy/project.py,sha256=
|
11
|
+
poxy/project.py,sha256=zfJ7pbxwUTxRCpptTvu1jWRZkCul-H4M-MxfAOOeTUc,99075
|
12
12
|
poxy/repos.py,sha256=rUOVTvR6KxrkSvEA0S340OzMStbSk2SBJUEzKEIynzc,3945
|
13
|
-
poxy/run.py,sha256=
|
13
|
+
poxy/run.py,sha256=1ISuZU5XDQXUZe0bYjVfr-ua9i0v6kDyNPrPvukV-mU,80276
|
14
14
|
poxy/schemas.py,sha256=57qLWubeIWQUwwTpjRBggPBy70PTQS5JWKzUDKRuBkQ,2490
|
15
15
|
poxy/soup.py,sha256=gMXKigNJDuJWWFhPpD5Gu9gbeyVVXo7SrjL1GcsqlMs,7678
|
16
16
|
poxy/svg.py,sha256=tsMcKIxQ8OVmXEabqwKDkdEqYV4zI5wM0AJ-E1EXmVo,2657
|
17
17
|
poxy/utils.py,sha256=0_HRU6GxlwJ5TXPJId2j8zQJnUZ8TJBiBU6wqgrMjrI,5748
|
18
18
|
poxy/version.py,sha256=N5I7nr5zcmAy-hhgZFi7KfFPV-lB_ueD_Xx6R7XQ-tk,668
|
19
|
-
poxy/version.txt,sha256=
|
19
|
+
poxy/version.txt,sha256=BsU91PIrLgA4yiu5rzLMGrfmmJjZnMO_oivZZfIarI8,7
|
20
20
|
poxy/xml_utils.py,sha256=dJEtHyp4lORHhmBt1E9miRH48PpPM6WRlLEdMhn0Yi8,2183
|
21
21
|
poxy/css/m-special.css,sha256=dLVigwqsg_Htm6CESQGemyOKjb-plBlFk54dsAoOd_A,4644
|
22
22
|
poxy/css/m-theme-dark.css,sha256=UbAEz9JAgJ1PJJG-Oy9UG2_DUqYTaPJm1cDvVGy5kYk,4186
|
@@ -28,7 +28,7 @@ poxy/css/poxy-theme-light.css,sha256=YB29Y9IBhAZbRRu2RITRRigaRp0RBRg_MsyCV0u8wYo
|
|
28
28
|
poxy/css/poxy.css,sha256=wf_XA8DNMH7pML9d1v2p73AI6rGCjcr4hQxNlfdT-d8,1373
|
29
29
|
poxy/generated/6aa12ac32e258617e37a0030dc54f789b894368b.css,sha256=mAWTCsuC7HXunm8nFSXDDLMoIz86eGOY8jiUjBJfoHQ,16744
|
30
30
|
poxy/generated/emoji.json,sha256=pUvtIsMSfQO2DHcQ_TmhP9f_Egpqcz11gEWepNqVY_s,257939
|
31
|
-
poxy/generated/poxy.css,sha256=
|
31
|
+
poxy/generated/poxy.css,sha256=4H-9OFX4bUHZYkGeV-s63cU_WJ-_x5ADmSPcsSUF6zQ,145212
|
32
32
|
poxy/generated/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2,sha256=aKqs2fm9oq7U6gUieWuM5I7fvSrdqeREtzFQtbd4Fmk,1036
|
33
33
|
poxy/generated/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2,sha256=E9YKtNAGDp7xjSo4a84V9pBTGC2pz6taS6rEgV8eqTY,1212
|
34
34
|
poxy/generated/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2,sha256=UA-Kr2ndz3GhbOrljJJ_AzcbM2ZRheFt80e2f38Rvbk,14160
|
@@ -99,23 +99,23 @@ poxy/img/poxy-icon-theme.svg,sha256=ZPaoLHqpp9jJfz-SV5T5nHePvtf_3NMWgZqjrG7b44g,
|
|
99
99
|
poxy/img/poxy-icon-twitter.svg,sha256=MLTepuxiMIp2IUF9HtEnRfSLJGwDf6qsnlErDUm2fLc,1363
|
100
100
|
poxy/js/jquery-3.6.0.slim.min.js,sha256=u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI,72372
|
101
101
|
poxy/js/poxy.js,sha256=BbdrGItMjJap7vZglvJS-MDpuIa5FA3bqtO-0NdJC0U,1174
|
102
|
-
poxy/mcss/CONTRIBUTING.rst,sha256=
|
103
|
-
poxy/mcss/CREDITS.rst,sha256=
|
102
|
+
poxy/mcss/CONTRIBUTING.rst,sha256=omnTgmYHAC5px0ybB50tEzBvssD_VaaEOQE655JBPaI,4913
|
103
|
+
poxy/mcss/CREDITS.rst,sha256=fX64gE01SGDE-mHD6mMS9wW_QvuzX94sAcMKcfIffO4,3128
|
104
104
|
poxy/mcss/README.rst,sha256=m8ceKuPCxeXdYbZOKKOo3P4ZZw31X3Axk3s_wuHkwus,2792
|
105
|
-
poxy/mcss/css/m-components.css,sha256=
|
106
|
-
poxy/mcss/css/m-debug.css,sha256=
|
107
|
-
poxy/mcss/css/m-documentation.css,sha256=
|
108
|
-
poxy/mcss/css/m-grid.css,sha256=
|
109
|
-
poxy/mcss/css/m-layout.css,sha256=
|
105
|
+
poxy/mcss/css/m-components.css,sha256=lsNy3adwXSTx_iy8G0M5PCxIJEY7Kopu8kPDnVg-YXw,61547
|
106
|
+
poxy/mcss/css/m-debug.css,sha256=5oTptebmOLlo9ppgFRm5wfANSZ_8uriJto9waVzfYiw,3272
|
107
|
+
poxy/mcss/css/m-documentation.css,sha256=xzEH3II78PeKbGE3R6wsrPERUsLave28CHuSHOdRu5k,10626
|
108
|
+
poxy/mcss/css/m-grid.css,sha256=1LxvnJ8THWxwQHmWjlp_KGzwGyHt2wP0V8CPXxeoeHA,13003
|
109
|
+
poxy/mcss/css/m-layout.css,sha256=1fnaGcKVMknvg_q6a6BtWZd9NQwp96x4tb9DJBRORWw,30477
|
110
110
|
poxy/mcss/css/pygments-console.css,sha256=VMxNr8m7ikV5p89bn01EsEFnzoANdNFpijTJV5Pp2Wc,3513
|
111
111
|
poxy/mcss/css/pygments-dark.css,sha256=rKmtvQ_GgYNgB3LrSfSVJaiTiM4f-8M_FooBO_FXQN8,3853
|
112
|
-
poxy/mcss/documentation/__init__.py,sha256=
|
113
|
-
poxy/mcss/documentation/_search.py,sha256=
|
114
|
-
poxy/mcss/documentation/doxygen.py,sha256=
|
112
|
+
poxy/mcss/documentation/__init__.py,sha256=CKLjvX-W0yTqAjgif4DnFPj7YFr4UmB5NSN7eqTL_mQ,1241
|
113
|
+
poxy/mcss/documentation/_search.py,sha256=DcxxRhC7yf5QnPlvU9aFJQBkFpLoA57ijA6W7cEA5Hw,35838
|
114
|
+
poxy/mcss/documentation/doxygen.py,sha256=S-PmVEU7Nt5lAt75NdRXX7tWTRkWH2ZKJSyV-NIeXPo,206404
|
115
115
|
poxy/mcss/documentation/favicon-dark.png,sha256=-2P0Fm1abfRLpcS1-KpKLUrM-vFn3dSCSLcomHn5pL0,380
|
116
116
|
poxy/mcss/documentation/favicon-light.png,sha256=NmmudDOkZ5KnfdUP7MazBl3V_mCuCIWsJ-PcMkyw0BE,360
|
117
|
-
poxy/mcss/documentation/python.py,sha256=
|
118
|
-
poxy/mcss/documentation/search.js,sha256=
|
117
|
+
poxy/mcss/documentation/python.py,sha256=Dk4iYT3c9Ch7UBTKQfud6NMZszgiAQY79FnTYQaVLKA,130488
|
118
|
+
poxy/mcss/documentation/search.js,sha256=tExlrNGc4-VWspLm10GB1Ui0ymvrbpCLw-S8ccrQJvQ,42159
|
119
119
|
poxy/mcss/documentation/templates/doxygen/annotated.html,sha256=u-SnDNRsaLW-T5tGDVU21nW5yYzJ-mbrIqaonbXGmdE,1553
|
120
120
|
poxy/mcss/documentation/templates/doxygen/base-class-reference.html,sha256=ALQEoHc5W7raqnHBxp2azBLEF6wK8owkBY1Uavyfxag,22175
|
121
121
|
poxy/mcss/documentation/templates/doxygen/base-index.html,sha256=uejztrtIG7SqV8qOkCDDVWtixe0GPmljmfa4SwVbBu4,900
|
@@ -153,33 +153,33 @@ poxy/mcss/documentation/templates/doxygen/page.html,sha256=vNbZhCmluoiDM6XzUNoLc
|
|
153
153
|
poxy/mcss/documentation/templates/doxygen/pages.html,sha256=qYu9HVZGgwgfqd8LGBmWxL5prYhaDX96cAydXjco7Nc,998
|
154
154
|
poxy/mcss/documentation/templates/doxygen/struct.html,sha256=J3TQGN_E2Kh45CBrd24QLMsJvAYqjq4uXX2PMX1gUu0,42
|
155
155
|
poxy/mcss/documentation/templates/doxygen/union.html,sha256=J3TQGN_E2Kh45CBrd24QLMsJvAYqjq4uXX2PMX1gUu0,42
|
156
|
-
poxy/mcss/plugins/ansilexer.py,sha256=
|
157
|
-
poxy/mcss/plugins/dot2svg.py,sha256=
|
156
|
+
poxy/mcss/plugins/ansilexer.py,sha256=bVO-bMRveWcV9ThNtwWP61IlpYuQ8OopAmxTPQ9Rtl0,12817
|
157
|
+
poxy/mcss/plugins/dot2svg.py,sha256=G74a-RaaK3x-HaQx-1EErapD2uQk1haOS1h1MjAvtU4,5251
|
158
158
|
poxy/mcss/plugins/latex2svg.py,sha256=G8OU9kQq0JZ-iS42rPkj-5QzNg4FaGyUUATdlVhpE9Q,7742
|
159
|
-
poxy/mcss/plugins/latex2svgextra.py,sha256=
|
160
|
-
poxy/mcss/plugins/m/__init__.py,sha256=
|
161
|
-
poxy/mcss/plugins/m/abbr.py,sha256=
|
162
|
-
poxy/mcss/plugins/m/alias.py,sha256=
|
163
|
-
poxy/mcss/plugins/m/code.py,sha256=
|
164
|
-
poxy/mcss/plugins/m/components.py,sha256=
|
165
|
-
poxy/mcss/plugins/m/dot.py,sha256=
|
166
|
-
poxy/mcss/plugins/m/dox.py,sha256=
|
167
|
-
poxy/mcss/plugins/m/filesize.py,sha256=
|
168
|
-
poxy/mcss/plugins/m/gh.py,sha256=
|
169
|
-
poxy/mcss/plugins/m/gl.py,sha256=
|
170
|
-
poxy/mcss/plugins/m/htmlsanity.py,sha256=
|
171
|
-
poxy/mcss/plugins/m/images.py,sha256=
|
172
|
-
poxy/mcss/plugins/m/link.py,sha256=
|
173
|
-
poxy/mcss/plugins/m/math.py,sha256=
|
174
|
-
poxy/mcss/plugins/m/metadata.py,sha256=
|
175
|
-
poxy/mcss/plugins/m/plots.py,sha256=
|
176
|
-
poxy/mcss/plugins/m/qr.py,sha256=
|
177
|
-
poxy/mcss/plugins/m/sphinx.py,sha256=
|
178
|
-
poxy/mcss/plugins/m/vk.py,sha256=
|
179
|
-
poxy-0.
|
180
|
-
poxy-0.
|
181
|
-
poxy-0.
|
182
|
-
poxy-0.
|
183
|
-
poxy-0.
|
184
|
-
poxy-0.
|
185
|
-
poxy-0.
|
159
|
+
poxy/mcss/plugins/latex2svgextra.py,sha256=CbX-fuOQxTBp9_SY41tmPL08BdPOW-HFvJZKbh51NTc,8174
|
160
|
+
poxy/mcss/plugins/m/__init__.py,sha256=GwEaLUKWfFU-O1kcHl-Ey-H1T1HQ2PGLIcjosnpdIaA,1325
|
161
|
+
poxy/mcss/plugins/m/abbr.py,sha256=GxNx1ERjJuWmmMzZ0zhEJ07HCqa0UmYoG0DFAU22HCY,2092
|
162
|
+
poxy/mcss/plugins/m/alias.py,sha256=yLbWWokACdDLHytHqZuW17opPuJrFq-szq3NpHC-pVs,3404
|
163
|
+
poxy/mcss/plugins/m/code.py,sha256=MR9gpeup-xtu6Q_Coq834Sr8xyjmuj_OlFVyex3orsk,14985
|
164
|
+
poxy/mcss/plugins/m/components.py,sha256=groyQTSlKmU26R_i2-Sl9Au0F9ra_HpPROFwXo0HPeI,15943
|
165
|
+
poxy/mcss/plugins/m/dot.py,sha256=lgv-ISNnkwl_yaLraORNnvtrbDIWwnzhBlFLhDRhjmI,5289
|
166
|
+
poxy/mcss/plugins/m/dox.py,sha256=HqyEXgjtWmQ_8riDcL4w2rtweWcE7Kdw5qmh_3YOZyo,9059
|
167
|
+
poxy/mcss/plugins/m/filesize.py,sha256=CBjkcuPjW-mujhPMdhnZagvemANkctmgHZRGwYBBfSs,3133
|
168
|
+
poxy/mcss/plugins/m/gh.py,sha256=lVLKmca5HSx_kuTzZ7mzsl3fP5AbCYlbR39VDrKjQBc,3396
|
169
|
+
poxy/mcss/plugins/m/gl.py,sha256=gO7rXO-1107u1OcoqrNzSTDW4nSY4rGbz2RfE_HSmB4,3561
|
170
|
+
poxy/mcss/plugins/m/htmlsanity.py,sha256=eeWHuXUvrsTpcekA2szhh5TYZVO4j36kRKJEju3pA-c,34104
|
171
|
+
poxy/mcss/plugins/m/images.py,sha256=UY2F5uh1cA6BPZpUh29-4iisJ1vjJyzb0BkXQ2Kjvck,13156
|
172
|
+
poxy/mcss/plugins/m/link.py,sha256=YIzUZ-zdAueDXPDxavrFnxweZXJMjG1dQ9ahFPqLvmE,2225
|
173
|
+
poxy/mcss/plugins/m/math.py,sha256=Hh1E9-pyoPUuMAM9tgBq6AukDt1-c0iqgvfQ03SIbZQ,6827
|
174
|
+
poxy/mcss/plugins/m/metadata.py,sha256=_NQKZtYcdsRszE2v0ND33ejCFt_lsx7GCMwsRS2qMiA,3533
|
175
|
+
poxy/mcss/plugins/m/plots.py,sha256=DGehGirCDzkPGAf0bE9nqX1Gk4JX7xA0VhGvJszFSg0,15030
|
176
|
+
poxy/mcss/plugins/m/qr.py,sha256=L1bsWUHUoFnshMhBlZs5T-yOzM82-C2NLMq6oLso3FI,4189
|
177
|
+
poxy/mcss/plugins/m/sphinx.py,sha256=_NO0FmI_BR8Y-idUtujzqX7lIuF94oQgN8CD2CAPw0o,30971
|
178
|
+
poxy/mcss/plugins/m/vk.py,sha256=pcda_Xz1mirqT8Uoq12d-p8F9ROT_C43kjyhWI-lyLQ,3114
|
179
|
+
poxy-0.19.0.dist-info/LICENSE.txt,sha256=kp84JW_RPClTO5Hz6yHQ9jKPfUMerlHHAeyU0VpXV_E,1064
|
180
|
+
poxy-0.19.0.dist-info/METADATA,sha256=e7H-xGVGvBuk_XYm7IMWOkWQrMWJLd3d3wk-mP0eVCU,20552
|
181
|
+
poxy-0.19.0.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
|
182
|
+
poxy-0.19.0.dist-info/entry_points.txt,sha256=yWiOmptj1Ga_dDEU9ch16hRgmzDE8bgrtDkGbH7VFYc,66
|
183
|
+
poxy-0.19.0.dist-info/top_level.txt,sha256=vAxxbZDX_cQ6rfRZ1SYSStSdMMlsHEP-zgzBSB0gPco,5
|
184
|
+
poxy-0.19.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
185
|
+
poxy-0.19.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|