poxy 0.17.2__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.
Files changed (46) hide show
  1. poxy/generated/poxy.css +2 -1
  2. poxy/main.py +8 -1
  3. poxy/mcss/CONTRIBUTING.rst +1 -1
  4. poxy/mcss/CREDITS.rst +2 -0
  5. poxy/mcss/css/m-components.css +1 -1
  6. poxy/mcss/css/m-debug.css +1 -1
  7. poxy/mcss/css/m-documentation.css +1 -1
  8. poxy/mcss/css/m-grid.css +1 -1
  9. poxy/mcss/css/m-layout.css +1 -1
  10. poxy/mcss/documentation/__init__.py +1 -1
  11. poxy/mcss/documentation/_search.py +1 -1
  12. poxy/mcss/documentation/doxygen.py +202 -25
  13. poxy/mcss/documentation/python.py +66 -22
  14. poxy/mcss/documentation/search.js +1 -1
  15. poxy/mcss/plugins/ansilexer.py +1 -1
  16. poxy/mcss/plugins/dot2svg.py +1 -1
  17. poxy/mcss/plugins/latex2svgextra.py +1 -1
  18. poxy/mcss/plugins/m/__init__.py +1 -1
  19. poxy/mcss/plugins/m/abbr.py +1 -1
  20. poxy/mcss/plugins/m/alias.py +1 -1
  21. poxy/mcss/plugins/m/code.py +4 -5
  22. poxy/mcss/plugins/m/components.py +1 -1
  23. poxy/mcss/plugins/m/dot.py +1 -1
  24. poxy/mcss/plugins/m/dox.py +1 -1
  25. poxy/mcss/plugins/m/filesize.py +1 -1
  26. poxy/mcss/plugins/m/gh.py +1 -1
  27. poxy/mcss/plugins/m/gl.py +1 -1
  28. poxy/mcss/plugins/m/htmlsanity.py +14 -6
  29. poxy/mcss/plugins/m/images.py +1 -1
  30. poxy/mcss/plugins/m/link.py +1 -1
  31. poxy/mcss/plugins/m/math.py +1 -1
  32. poxy/mcss/plugins/m/metadata.py +1 -1
  33. poxy/mcss/plugins/m/plots.py +1 -1
  34. poxy/mcss/plugins/m/qr.py +1 -1
  35. poxy/mcss/plugins/m/sphinx.py +1 -1
  36. poxy/mcss/plugins/m/vk.py +1 -1
  37. poxy/project.py +32 -4
  38. poxy/run.py +89 -13
  39. poxy/version.txt +1 -1
  40. {poxy-0.17.2.dist-info → poxy-0.19.0.dist-info}/METADATA +15 -3
  41. {poxy-0.17.2.dist-info → poxy-0.19.0.dist-info}/RECORD +46 -46
  42. {poxy-0.17.2.dist-info → poxy-0.19.0.dist-info}/WHEEL +1 -1
  43. {poxy-0.17.2.dist-info → poxy-0.19.0.dist-info}/LICENSE.txt +0 -0
  44. {poxy-0.17.2.dist-info → poxy-0.19.0.dist-info}/entry_points.txt +0 -0
  45. {poxy-0.17.2.dist-info → poxy-0.19.0.dist-info}/top_level.txt +0 -0
  46. {poxy-0.17.2.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
 
@@ -197,6 +198,9 @@ def preprocess_doxyfile(context: Context):
197
198
 
198
199
  df.set_value(r'USE_MDFILE_AS_MAINPAGE', context.main_page)
199
200
 
201
+ if context.excluded_symbols:
202
+ df.set_value(r'EXCLUDE_SYMBOLS', context.excluded_symbols)
203
+
200
204
  df.append()
201
205
  df.append(r'# context.warnings', end='\n\n') # ---------------------------------------------------
202
206
 
@@ -463,6 +467,78 @@ def postprocess_xml(context: Context):
463
467
  if changed:
464
468
  xml_utils.write(root, xml_file)
465
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
+
466
542
  # now do '<doxygen>' files
467
543
  for xml_file in xml_files:
468
544
  root = xml_utils.read(xml_file)
@@ -500,15 +576,6 @@ def postprocess_xml(context: Context):
500
576
  compound_title = compounddef.find(r'title')
501
577
  compound_title = compound_title.text if compound_title is not None else compound_name
502
578
 
503
- # fix weird regression in doxygen 1.9.7
504
- if compound_kind == r'file' and doxygen.version() == (1, 9, 7):
505
- sectiondefs = [s for s in compounddef.findall(r'sectiondef') if s.get(r'kind') == r'define']
506
- for sectiondef in sectiondefs:
507
- members = [m for m in sectiondef.findall(r'member') if m.get(r'kind') == r'define']
508
- for member in members:
509
- sectiondef.remove(member)
510
- changed = True
511
-
512
579
  # do a bit of cleanup of <programlisting>
513
580
  for programlisting in compounddef.iterdescendants(tag="programlisting"):
514
581
  # fix &amp;zwj; mangling (zero-width joiners don't make sense in code blocks anyways)
@@ -627,8 +694,10 @@ def postprocess_xml(context: Context):
627
694
  changed = True
628
695
  if attr is not None:
629
696
  member.set(attr, attr_value)
630
- elif kw == r'friend':
631
- member.set(r'kind', r'friend')
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
632
701
 
633
702
  # fix issues with trailing return types
634
703
  if 1:
@@ -1105,11 +1174,13 @@ def parse_xml(context: Context):
1105
1174
  context.verbose_object(r'Context.code_blocks', context.code_blocks)
1106
1175
 
1107
1176
 
1108
- def clean_xml(context: Context):
1177
+ def clean_xml(context: Context, dir=None):
1109
1178
  assert context is not None
1110
1179
  assert isinstance(context, Context)
1180
+ if dir is None:
1181
+ dir = context.temp_xml_dir
1111
1182
 
1112
- xml_files = get_all_files(context.temp_xml_dir, any=(r'*.xml'))
1183
+ xml_files = get_all_files(dir, any=(r'*.xml'))
1113
1184
  for xml_file in xml_files:
1114
1185
  root = xml_utils.read(
1115
1186
  xml_file, parser=xml_utils.create_parser(remove_blank_text=True), logger=context.verbose_logger #
@@ -1671,6 +1742,7 @@ def run(
1671
1742
  temp_dir: Path = None,
1672
1743
  copy_config_to: Path = None,
1673
1744
  versions_in_navbar: bool = False,
1745
+ keep_original_xml: bool = False,
1674
1746
  **kwargs,
1675
1747
  ):
1676
1748
  timer = lambda desc: ScopeTimer(desc, print_start=True, print_end=context.verbose_logger)
@@ -1704,7 +1776,11 @@ def run(
1704
1776
  # generate + postprocess XML in temp_xml_dir
1705
1777
  # (we always do this even when output_xml is false because it is required by the html)
1706
1778
  with timer(rf'Generating XML files with Doxygen {doxygen.version_string()}') as t:
1779
+ delete_directory(context.temp_original_xml_dir)
1707
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)
1708
1784
  with timer(r'Post-processing XML files') as t:
1709
1785
  if context.xml_v2:
1710
1786
  postprocess_xml_v2(context)
poxy/version.txt CHANGED
@@ -1 +1 @@
1
- 0.17.2
1
+ 0.19.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: poxy
3
- Version: 0.17.2
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 >=0.8.1
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 !=0.7.5
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,18 @@ 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
+
232
+ ## v0.18.0 - 2024-08-03
233
+
234
+ - added config option `excluded_symbols` (a.k.a. Doxygen's `EXCLUDE_SYMBOLS`) (#36) (@Guekka)
235
+
224
236
  ## v0.17.2 - 2024-06-16
225
237
 
226
238
  - fixed qualified return types appearing squashed together without whitespace in some circumstances
@@ -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=X8IvjjEnxwV0oT2lv5cP24CQjxHKpsxDmfByoPP2gxg,26937
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=MdaRQKL2w9BQ-QS8h7P2TKJy-hopFeYmYv2X54jlhvk,96552
11
+ poxy/project.py,sha256=zfJ7pbxwUTxRCpptTvu1jWRZkCul-H4M-MxfAOOeTUc,99075
12
12
  poxy/repos.py,sha256=rUOVTvR6KxrkSvEA0S340OzMStbSk2SBJUEzKEIynzc,3945
13
- poxy/run.py,sha256=d6Gu744qPD-tfW1J9QcyPMr8llVTmJKoUDRQranF4nk,76575
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=ubiMO6DptuNe8qTQK8J6LAIG8aH8uLh0mr6Q34-dDw0,7
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=xg8T5Ywt3zZ0XCstzTEUnwoffhpiB59sYImuOMp0Ceg,145161
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=Ps6Art7ne0hWEmftnZ3B0aOowu-0X38wOYnrSdxJYBM,4907
103
- poxy/mcss/CREDITS.rst,sha256=jAuz55cKit0Jdu-VFGU1s7-sk8plCFZUvdhuj1dYDls,3041
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=9PK5Eun32_S6N1VN20AlR8y3dy-xRpeLT9eI7Gr1mmA,61541
106
- poxy/mcss/css/m-debug.css,sha256=VqougqyLvvGab35kxJOz4w2Ng3Aazbhy65p926pb86U,3266
107
- poxy/mcss/css/m-documentation.css,sha256=VUzSXqxBsaqYqr3VZxIunnZplZzXfChSFfH9SBM6_0o,10620
108
- poxy/mcss/css/m-grid.css,sha256=Dcn_VqaDQEjVp1xygcFOHH_epwbdClpbi6o1yCT9Vyw,12997
109
- poxy/mcss/css/m-layout.css,sha256=5e40KSPKRZrDMle2xydMpzs0n67-KPzUjSDKReY1AtY,30471
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=1JLqfHzv0FXJ2KIuC3Tta3LkryRRc95VVrOvJp-XoDc,1235
113
- poxy/mcss/documentation/_search.py,sha256=pgfTGnU9z4K3KioV9QZAG2ZfuZb3h9YMghhDoAVLbqc,35832
114
- poxy/mcss/documentation/doxygen.py,sha256=Z60QSWfTSRhGdNIc2PziBv7IjBKLqOisZKQwp2r5zpo,195267
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=RQCxkjv3u9nyXYtkwK-Fr1Koho_9JN4X_uP9ssEz-Kw,127453
118
- poxy/mcss/documentation/search.js,sha256=VIwYhlYjdIQVGLATqipBEZAeo7l8_0tWgDTrEIWvHqw,42153
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=gohFTDXGb0zrxC-fQtoD2Q_7m5KMJgKcDTPfVOGN_Jg,12811
157
- poxy/mcss/plugins/dot2svg.py,sha256=UtzSC5tJZ0bA25jIXdRxuUu214LKbNK6B03AQc1PVtQ,5245
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=KpX_lo5io7wQQahd7UXaFcKGq7h9bJ2VjXsbdnLLjeU,8168
160
- poxy/mcss/plugins/m/__init__.py,sha256=LPJx_cTI5SNjM3Yv9BJDk-swBBi_GhtigAaPMHCaI-s,1319
161
- poxy/mcss/plugins/m/abbr.py,sha256=1YivEH1fSL31j7CrVRALPvZEzN74f5nZTuDKkcCEfUQ,2086
162
- poxy/mcss/plugins/m/alias.py,sha256=63x6XryK8dpSxLQynZB2Q3DFdbypujR_p7G8ABVOr60,3398
163
- poxy/mcss/plugins/m/code.py,sha256=8DLzMU2EpybgeDUhnDLVEvb7uiwFm6BtxyWhHmCt7Jg,15063
164
- poxy/mcss/plugins/m/components.py,sha256=9CdNMt1rJK0JwhHTGDoN73U36wjk_017tr6GXLUjWSY,15937
165
- poxy/mcss/plugins/m/dot.py,sha256=JrwfK7qQEBU-c_GWS61u8IDRr-dJfC6iBctM--lx2jc,5283
166
- poxy/mcss/plugins/m/dox.py,sha256=6zEzvvY4UeE3y8UYg6X_JsNfaxipxlbt0e22GXFaQQY,9053
167
- poxy/mcss/plugins/m/filesize.py,sha256=gMZ3CjabNxTDXzETKAKUTCutdvS5Vxr10pXT2sUjuQk,3127
168
- poxy/mcss/plugins/m/gh.py,sha256=mYRh3y6e31bN9SoZlNK6RZlG2MAKOFy7LqQOX4lyAbY,3390
169
- poxy/mcss/plugins/m/gl.py,sha256=g1AEcyHdxHLQ1dkC54jKlVAZR9rrz0wzzrcae_uGBgU,3555
170
- poxy/mcss/plugins/m/htmlsanity.py,sha256=L_aN32z3TcJgpOUd755f2GFT6l8CHsGNlCa25X0ypsk,33637
171
- poxy/mcss/plugins/m/images.py,sha256=eD8b2qVf9xcU4URnNi752SX8sYp-bi9OcvDge0Yvjpg,13150
172
- poxy/mcss/plugins/m/link.py,sha256=9AmIc01Q9YjFYXrmoA9lnuIPphHwYdNoCDLoulAis_4,2219
173
- poxy/mcss/plugins/m/math.py,sha256=EmgYg1gNe7_n7uS-I14-jCQybdk_6jFVn1oBdQByM08,6821
174
- poxy/mcss/plugins/m/metadata.py,sha256=QwZm404e9A4kg3E3i3CHlEcnzd9uW7sKLXJOT5fFWC0,3527
175
- poxy/mcss/plugins/m/plots.py,sha256=tiPvTZDkJ-Ab7xSVUhi5CFf_KvO017ZEtxS-ZQYJPiM,15024
176
- poxy/mcss/plugins/m/qr.py,sha256=EpYTecbB0m6IzJMDNpIeMjh3-bxisGw6sCdQgL3_Zl4,4183
177
- poxy/mcss/plugins/m/sphinx.py,sha256=OZHtZ0qVHYHGxJVpSARk_WQiIr6o9B-CTqx2Limfyuw,30965
178
- poxy/mcss/plugins/m/vk.py,sha256=MiZeFEagOkMBHfNXYf1YEaooCbgoGBtFY9K16CDqdaw,3108
179
- poxy-0.17.2.dist-info/LICENSE.txt,sha256=kp84JW_RPClTO5Hz6yHQ9jKPfUMerlHHAeyU0VpXV_E,1064
180
- poxy-0.17.2.dist-info/METADATA,sha256=gJh1qqk5VsSPpTjZEGSouqaSpMwqU9uPsEY75KE6x3w,20036
181
- poxy-0.17.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
182
- poxy-0.17.2.dist-info/entry_points.txt,sha256=yWiOmptj1Ga_dDEU9ch16hRgmzDE8bgrtDkGbH7VFYc,66
183
- poxy-0.17.2.dist-info/top_level.txt,sha256=vAxxbZDX_cQ6rfRZ1SYSStSdMMlsHEP-zgzBSB0gPco,5
184
- poxy-0.17.2.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
185
- poxy-0.17.2.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (74.1.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5