poxy 0.19.0__py3-none-any.whl → 0.19.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.
poxy/main.py CHANGED
@@ -59,7 +59,7 @@ def _invoker(func, **kwargs):
59
59
 
60
60
 
61
61
  def make_boolean_optional_arg(args, name, default, help='', **kwargs):
62
- if sys.version_info.minor >= 9:
62
+ if sys.version_info >= (3, 9):
63
63
  args.add_argument(rf'--{name}', default=default, help=help, action=argparse.BooleanOptionalAction, **kwargs)
64
64
  else:
65
65
  args.add_argument(rf'--{name}', action=r'store_true', help=help, **kwargs)
poxy/project.py CHANGED
@@ -1237,7 +1237,7 @@ class Context(object):
1237
1237
  html_exclude = re.compile(str(html_exclude))
1238
1238
  self.html_exclude = html_exclude
1239
1239
 
1240
- if (sys.version_info[0], sys.version_info[1]) >= (3, 11):
1240
+ if sys.version_info >= (3, 11):
1241
1241
  self.now = datetime.datetime.now(datetime.UTC).replace(microsecond=0)
1242
1242
  else:
1243
1243
  self.now = datetime.datetime.utcnow().replace(microsecond=0, tzinfo=datetime.timezone.utc)
poxy/run.py CHANGED
@@ -12,9 +12,9 @@ import os
12
12
  import subprocess
13
13
  import tempfile
14
14
  import copy
15
- from distutils.dir_util import copy_tree
16
- from io import StringIO
15
+ import sys
17
16
 
17
+ from io import StringIO
18
18
  from lxml import etree
19
19
  from trieregex import TrieRegEx
20
20
 
@@ -24,6 +24,19 @@ from .svg import SVG
24
24
  from .utils import *
25
25
  from .version import *
26
26
 
27
+ if sys.version_info >= (3, 8):
28
+ import shutil
29
+
30
+ def copy_tree(src, dest):
31
+ shutil.copytree(str(src), str(dest), dirs_exist_ok=True)
32
+
33
+ else:
34
+ import distutils.dir_util
35
+
36
+ def copy_tree(src, dest):
37
+ distutils.dir_util.copy_tree(str(src), str(dest))
38
+
39
+
27
40
  # =======================================================================================================================
28
41
  # HELPERS
29
42
  # =======================================================================================================================
@@ -1779,7 +1792,7 @@ def run(
1779
1792
  delete_directory(context.temp_original_xml_dir)
1780
1793
  run_doxygen(context)
1781
1794
  if keep_original_xml:
1782
- copy_tree(str(context.temp_xml_dir), str(context.temp_original_xml_dir))
1795
+ copy_tree(context.temp_xml_dir, context.temp_original_xml_dir)
1783
1796
  clean_xml(context, dir=context.temp_original_xml_dir)
1784
1797
  with timer(r'Post-processing XML files') as t:
1785
1798
  if context.xml_v2:
@@ -1795,7 +1808,7 @@ def run(
1795
1808
  # XML (the user-requested copy)
1796
1809
  if context.output_xml:
1797
1810
  with ScopeTimer(r'Copying XML', print_start=True, print_end=context.verbose_logger) as t:
1798
- copy_tree(str(context.temp_xml_dir), str(context.xml_dir))
1811
+ copy_tree(context.temp_xml_dir, context.xml_dir)
1799
1812
 
1800
1813
  # copy tagfile
1801
1814
  if context.generate_tagfile and context.tagfile_path:
@@ -1818,7 +1831,7 @@ def run(
1818
1831
  # copy fonts
1819
1832
  if context.copy_assets:
1820
1833
  with ScopeTimer(r'Copying fonts', print_start=True, print_end=context.verbose_logger) as t:
1821
- copy_tree(str(paths.FONTS), str(Path(context.assets_dir, r'fonts')))
1834
+ copy_tree(paths.FONTS, Path(context.assets_dir, r'fonts'))
1822
1835
 
1823
1836
  # copy tagfile
1824
1837
  if context.generate_tagfile and context.tagfile_path:
poxy/version.txt CHANGED
@@ -1 +1 @@
1
- 0.19.0
1
+ 0.19.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: poxy
3
- Version: 0.19.0
3
+ Version: 0.19.1
4
4
  Summary: Documentation generator for C++.
5
5
  Author-email: Mark Gillard <mark.gillard@outlook.com.au>
6
6
  License: MIT
@@ -221,360 +221,364 @@ 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.1 - 2024-10-30
225
+
226
+ - fixed `ModuleNotFoundError` error in Python 3.12
227
+
224
228
  ## v0.19.0 - 2024-09-15
225
229
 
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
230
+ - fixed crash when using simple type specifiers in friend declarations (#37) (@benjaminulmer)
231
+ - added workaround for [this issue](https://github.com/mosra/m.css/issues/239) introduced in Doxygen 1.9.7
232
+ - added auto-linking for various cppreference.com pages
233
+ - made `--bug-report` keep a copy of the original (pre-pre-processed?) XML
234
+ - updated m.css
231
235
 
232
236
  ## v0.18.0 - 2024-08-03
233
237
 
234
- - added config option `excluded_symbols` (a.k.a. Doxygen's `EXCLUDE_SYMBOLS`) (#36) (@Guekka)
238
+ - added config option `excluded_symbols` (a.k.a. Doxygen's `EXCLUDE_SYMBOLS`) (#36) (@Guekka)
235
239
 
236
240
  ## v0.17.2 - 2024-06-16
237
241
 
238
- - fixed qualified return types appearing squashed together without whitespace in some circumstances
239
- - fixed performance regression in post-process step
240
- - updated m.css
241
- - minor style fixes
242
+ - fixed qualified return types appearing squashed together without whitespace in some circumstances
243
+ - fixed performance regression in post-process step
244
+ - updated m.css
245
+ - minor style fixes
242
246
 
243
247
  ## v0.17.1 - 2024-06-14
244
248
 
245
- - fixed `'tuple' object has no attribute 'week'` error on Python &lt;= 3.8
249
+ - fixed `'tuple' object has no attribute 'week'` error on Python &lt;= 3.8
246
250
 
247
251
  ## v0.17.0 - 2024-04-21
248
252
 
249
- - added arguments `--min-version` and `--squash-patches` for more control over `--git-tags` mode
253
+ - added arguments `--min-version` and `--squash-patches` for more control over `--git-tags` mode
250
254
 
251
255
  ## v0.16.0 - 2024-01-28
252
256
 
253
- - added multi-version mode argument `--git-tags`
254
- - added colour to output
257
+ - added multi-version mode argument `--git-tags`
258
+ - added colour to output
255
259
 
256
260
  ## v0.15.0 - 2023-12-08
257
261
 
258
- - added config option `main_page` (a.k.a. `USE_MDFILE_AS_MAINPAGE`)
259
- - fixed searching for `CHANGELOG` too far up the directory heirarchy (now stops when a `.git` folder is encountered)
262
+ - added config option `main_page` (a.k.a. `USE_MDFILE_AS_MAINPAGE`)
263
+ - fixed searching for `CHANGELOG` too far up the directory heirarchy (now stops when a `.git` folder is encountered)
260
264
 
261
265
  ## v0.14.0 - 2023-11-25
262
266
 
263
- - added the use of `*` wildcards in `implementation_headers`
267
+ - added the use of `*` wildcards in `implementation_headers`
264
268
 
265
269
  ## v0.13.9 - 2023-09-10
266
270
 
267
- - fixed crash on Doxygen &lt;= 1.8.17 (#33) (@tim-janik)
271
+ - fixed crash on Doxygen &lt;= 1.8.17 (#33) (@tim-janik)
268
272
 
269
273
  ## v0.13.8 - 2023-09-09
270
274
 
271
- - fixed regression for Python &lt;= 3.8 (#32) (@tim-janik)
275
+ - fixed regression for Python &lt;= 3.8 (#32) (@tim-janik)
272
276
 
273
277
  ## v0.13.7 - 2023-08-17
274
278
 
275
- - fixed minor syntax highlighting issues
279
+ - fixed minor syntax highlighting issues
276
280
 
277
281
  ## v0.13.6 - 2023-08-10
278
282
 
279
- - update m.css to fix libgs.so lookup (#31) (@wroyca, @mosra)
283
+ - update m.css to fix libgs.so lookup (#31) (@wroyca, @mosra)
280
284
 
281
285
  ## v0.13.5 - 2023-08-09
282
286
 
283
- - fixed `--bug-report` regression (#29) (@wroyca)
287
+ - fixed `--bug-report` regression (#29) (@wroyca)
284
288
 
285
289
  ## v0.13.4 - 2023-08-06
286
290
 
287
- - fixed excessive `template<>` noise in details views
291
+ - fixed excessive `template<>` noise in details views
288
292
 
289
293
  ## v0.13.3 - 2023-08-01
290
294
 
291
- - fixed floating TOCs sometimes clipping off the bottom of the screen when the viewport was vertically narrow
295
+ - fixed floating TOCs sometimes clipping off the bottom of the screen when the viewport was vertically narrow
292
296
 
293
297
  ## v0.13.2 - 2023-07-31
294
298
 
295
- - fixed doxygen's `@ref` links to `#id` anchors on the same page being treated as external links
296
- - added auto-linking for C++ [named requirements](https://en.cppreference.com/w/cpp/named_req)
297
- - minor style fixes
299
+ - fixed doxygen's `@ref` links to `#id` anchors on the same page being treated as external links
300
+ - added auto-linking for C++ [named requirements](https://en.cppreference.com/w/cpp/named_req)
301
+ - minor style fixes
298
302
 
299
303
  ## v0.13.1 - 2023-07-29
300
304
 
301
- - fixed crash regression with Doxygen 1.9.7
302
- - fixed issues with \[tag\] substitution
303
- - minor style fixes
305
+ - fixed crash regression with Doxygen 1.9.7
306
+ - fixed issues with \[tag\] substitution
307
+ - minor style fixes
304
308
 
305
309
  ## v0.13.0 - 2023-07-28
306
310
 
307
- - migrated to `pyproject.toml`
308
- - fixed footer being off-center (#24) (@wroyca)
309
- - fixed redundant `auto` in trailing return types (#26) (@wroyca)
310
- - added config option `sponsor`
311
- - added config option `twitter`
311
+ - migrated to `pyproject.toml`
312
+ - fixed footer being off-center (#24) (@wroyca)
313
+ - fixed redundant `auto` in trailing return types (#26) (@wroyca)
314
+ - added config option `sponsor`
315
+ - added config option `twitter`
312
316
 
313
317
  ## v0.12.7 - 2023-07-27
314
318
 
315
- - allowed the use of square-bracket \[tags\] in more places
319
+ - allowed the use of square-bracket \[tags\] in more places
316
320
 
317
321
  ## v0.12.6 - 2023-07-25
318
322
 
319
- - fixed overlong `template<>` lines in summary views
320
- - fixed function parameter names greedily wrapping in details tables
323
+ - fixed overlong `template<>` lines in summary views
324
+ - fixed function parameter names greedily wrapping in details tables
321
325
 
322
326
  ## v0.12.5 - 2023-07-20
323
327
 
324
- - fixed overlong `template<>` lines in page headers (they now wrap)
328
+ - fixed overlong `template<>` lines in page headers (they now wrap)
325
329
 
326
330
  ## v0.12.4 - 2023-03-23
327
331
 
328
- - fixed changelog not auto-linking with some versions of Doxygen
332
+ - fixed changelog not auto-linking with some versions of Doxygen
329
333
 
330
334
  ## v0.12.3 - 2023-02-09
331
335
 
332
- - fixed backwards-incompatible use of a newer `argparse` feature on Python &lt;= 3.8 (#20) (@fwerner)
336
+ - fixed backwards-incompatible use of a newer `argparse` feature on Python &lt;= 3.8 (#20) (@fwerner)
333
337
 
334
338
  ## v0.12.2 - 2023-02-08
335
339
 
336
- - switched default TOML lib to `tomli`
340
+ - switched default TOML lib to `tomli`
337
341
 
338
342
  ## v0.12.1 - 2022-11-22
339
343
 
340
- - fixed `github` and `gitlab` config options not accepting periods (`.`)
344
+ - fixed `github` and `gitlab` config options not accepting periods (`.`)
341
345
 
342
346
  ## v0.12.0 - 2022-11-13
343
347
 
344
- - fixed `AttributeError` during XML post-processing (#17) (@wroyca)
345
- - added command-line option `--bug-report`
346
- - improved diagnostic text in some areas
348
+ - fixed `AttributeError` during XML post-processing (#17) (@wroyca)
349
+ - added command-line option `--bug-report`
350
+ - improved diagnostic text in some areas
347
351
 
348
352
  ## v0.11.1 - 2022-10-23
349
353
 
350
- - fixed crash when using `<a>` tags in navbar
354
+ - fixed crash when using `<a>` tags in navbar
351
355
 
352
356
  ## v0.11.0 - 2022-10-21
353
357
 
354
- - added syntax highlighting for functions
355
- - improved syntax highlighting of typenames
358
+ - added syntax highlighting for functions
359
+ - improved syntax highlighting of typenames
356
360
 
357
361
  ## v0.10.2 - 2022-10-16
358
362
 
359
- - fixed crash when tagfile is disabled
360
- - fixed a few syntax highlighting edge-cases
361
- - fixed non-determinism in XML output formatting
362
- - improved performance of syntax highlighting post-process
363
- - minor style fixes
363
+ - fixed crash when tagfile is disabled
364
+ - fixed a few syntax highlighting edge-cases
365
+ - fixed non-determinism in XML output formatting
366
+ - improved performance of syntax highlighting post-process
367
+ - minor style fixes
364
368
 
365
369
  ## v0.10.1 - 2022-10-15
366
370
 
367
- - minor style fixes
371
+ - minor style fixes
368
372
 
369
373
  ## v0.10.0 - 2022-10-14
370
374
 
371
- - fixed `static` keyword sometimes appearing twice on variables
372
- - fixed `constexpr` keyword sometimes leaking into variable type
373
- - fixed newer versions of pygments adding unnecessary markup to whitespace
374
- - fixed malformed trailing return types in some circumstances
375
- - fixed changelog page sometimes not having a table-of-contents
376
- - added support for C++20's `constinit`
377
- - added fallback to `tomllib` or `tomli` if `pytomlpp` is not available
378
- - added command-line options `--html`, `--no-html`
379
- - added command-line options `--xml`, `--no-xml`
380
- - added command-line option `--no-werror`
381
- - added `CHANGES` to the set of candidate changelog filenames
382
- - deprecated command-line option `--xmlonly`
383
- - removed command-line option `--doxygen`
375
+ - fixed `static` keyword sometimes appearing twice on variables
376
+ - fixed `constexpr` keyword sometimes leaking into variable type
377
+ - fixed newer versions of pygments adding unnecessary markup to whitespace
378
+ - fixed malformed trailing return types in some circumstances
379
+ - fixed changelog page sometimes not having a table-of-contents
380
+ - added support for C++20's `constinit`
381
+ - added fallback to `tomllib` or `tomli` if `pytomlpp` is not available
382
+ - added command-line options `--html`, `--no-html`
383
+ - added command-line options `--xml`, `--no-xml`
384
+ - added command-line option `--no-werror`
385
+ - added `CHANGES` to the set of candidate changelog filenames
386
+ - deprecated command-line option `--xmlonly`
387
+ - removed command-line option `--doxygen`
384
388
 
385
389
  ## v0.9.1 - 2022-10-04
386
390
 
387
- - fixed SVG inlining not preserving original image class attributes
388
- - fixed `ValueError` when reading some SVG files
389
- - fixed `navbar` option allowing duplicates
390
- - fixed custom navbar items always being transformed to lowercase
391
- - fixed navbar generating links to empty pages
392
- - added `concepts` to the default set of links in `navbar`
393
- - added `navbar` values `all` and `default`
394
- - reduced I/O churn during HTML post-processing
395
- - removed command-line option `--dry`
391
+ - fixed SVG inlining not preserving original image class attributes
392
+ - fixed `ValueError` when reading some SVG files
393
+ - fixed `navbar` option allowing duplicates
394
+ - fixed custom navbar items always being transformed to lowercase
395
+ - fixed navbar generating links to empty pages
396
+ - added `concepts` to the default set of links in `navbar`
397
+ - added `navbar` values `all` and `default`
398
+ - reduced I/O churn during HTML post-processing
399
+ - removed command-line option `--dry`
396
400
 
397
401
  ## v0.9.0 - 2022-10-03
398
402
 
399
- - added support for C++20 concepts
403
+ - added support for C++20 concepts
400
404
 
401
405
  ## v0.8.2 - 2022-10-01
402
406
 
403
- - added post-process to inline all local SVGs
404
- - minor style fixes
407
+ - added post-process to inline all local SVGs
408
+ - minor style fixes
405
409
 
406
410
  ## v0.8.1 - 2022-09-30
407
411
 
408
- - minor style fixes
412
+ - minor style fixes
409
413
 
410
414
  ## v0.8.0 - 2022-09-29
411
415
 
412
- - added config option `gitlab` (#13) (@wroyca)
413
- - added ixx module extension in source patterns (#11) (@wroyca)
414
- - added support for multi-codepoint emojis
415
- - improved `doxygen.exe` location discovery on Windows
416
- - improved `CHANGELOG` location discovery
417
- - moved all poxy assets in the generated HTML to `html/poxy`
418
- - self-hosted google fonts in generated HTML (instead of requiring additional HTTP requests on page load) (#6)
419
- - removed ability to override m.css implementation
420
- - removed legacy support for reading config options from neighbouring Doxyfiles
421
- - overhauled the light theme
422
- - many minor style fixes and tweaks
416
+ - added config option `gitlab` (#13) (@wroyca)
417
+ - added ixx module extension in source patterns (#11) (@wroyca)
418
+ - added support for multi-codepoint emojis
419
+ - improved `doxygen.exe` location discovery on Windows
420
+ - improved `CHANGELOG` location discovery
421
+ - moved all poxy assets in the generated HTML to `html/poxy`
422
+ - self-hosted google fonts in generated HTML (instead of requiring additional HTTP requests on page load) (#6)
423
+ - removed ability to override m.css implementation
424
+ - removed legacy support for reading config options from neighbouring Doxyfiles
425
+ - overhauled the light theme
426
+ - many minor style fixes and tweaks
423
427
 
424
428
  ## v0.7.1 - 2022-08-17
425
429
 
426
- - fixed crash on python &lt;= 3.8 (#9) (@wroyca)
430
+ - fixed crash on python &lt;= 3.8 (#9) (@wroyca)
427
431
 
428
432
  ## v0.7.0 - 2022-08-16
429
433
 
430
- - fixed some `<link>`, `<meta>` and `<script>` tags not being included in `<head>` when a file was excluded from post-processing
431
- - added `theme` command-line option
432
- - added `html_header` config option option
433
- - added automatic generation of github links in changelog when config option `github` is set
434
- - added new light theme
435
- - added dynamic switch for dark/light theme
436
- - removed text from github icon on navbar (#5) (@wroyca)
437
- - removed excessive spacing between article sections (#5) (@wroyca)
438
- - many minor style fixes and tweaks
434
+ - fixed some `<link>`, `<meta>` and `<script>` tags not being included in `<head>` when a file was excluded from post-processing
435
+ - added `theme` command-line option
436
+ - added `html_header` config option option
437
+ - added automatic generation of github links in changelog when config option `github` is set
438
+ - added new light theme
439
+ - added dynamic switch for dark/light theme
440
+ - removed text from github icon on navbar (#5) (@wroyca)
441
+ - removed excessive spacing between article sections (#5) (@wroyca)
442
+ - many minor style fixes and tweaks
439
443
 
440
444
  ## v0.6.1 - 2022-08-16
441
445
 
442
- - fixed multi-row navbar occluding page content (#3) (@wroyca)
446
+ - fixed multi-row navbar occluding page content (#3) (@wroyca)
443
447
 
444
448
  ## v0.6.0 - 2022-08-14
445
449
 
446
- - fixed malformed error messages in some circumstances
447
- - added builtin C++ standard macros for C++23
448
- - added `changelog` config option
449
- - updated cppreference.com tagfile
450
+ - fixed malformed error messages in some circumstances
451
+ - added builtin C++ standard macros for C++23
452
+ - added `changelog` config option
453
+ - updated cppreference.com tagfile
450
454
 
451
455
  ## v0.5.7 - 2022-05-17
452
456
 
453
- - fixed being able to pass >= 33 threads to Doxygen's `NUM_PROC_THREADS`
457
+ - fixed being able to pass >= 33 threads to Doxygen's `NUM_PROC_THREADS`
454
458
 
455
459
  ## v0.5.6 - 2022-05-14
456
460
 
457
- - fixed path error when using `--dry`
458
- - fixed `friend` keyword sometimes leaking into function return types
459
- - added additional language code block aliases
460
- - added `--nocleanup` to `--help` output
461
- - added support for C++20's `consteval` keyword
461
+ - fixed path error when using `--dry`
462
+ - fixed `friend` keyword sometimes leaking into function return types
463
+ - added additional language code block aliases
464
+ - added `--nocleanup` to `--help` output
465
+ - added support for C++20's `consteval` keyword
462
466
 
463
467
  ## v0.5.5 - 2022-04-16
464
468
 
465
- - fixed C++20 concepts causing a crash in m.css (they are now skipped with a warning) (#1) (@jake-arkinstall)
469
+ - fixed C++20 concepts causing a crash in m.css (they are now skipped with a warning) (#1) (@jake-arkinstall)
466
470
 
467
471
  ## v0.5.4 - 2022-04-15
468
472
 
469
- - updated m.css
470
- - updated emoji database
473
+ - updated m.css
474
+ - updated emoji database
471
475
 
472
476
  ## v0.5.3 - 2021-12-12
473
477
 
474
- - fixed Doxygen bug that would sometimes treat keywords like `friend` as part of a function's return type
475
- - Blacklisted schema 0.7.5 because [it's broken](https://github.com/keleshev/schema/issues/272)
478
+ - fixed Doxygen bug that would sometimes treat keywords like `friend` as part of a function's return type
479
+ - Blacklisted schema 0.7.5 because [it's broken](https://github.com/keleshev/schema/issues/272)
476
480
 
477
481
  ## v0.5.2 - 2021-11-02
478
482
 
479
- - fixed over-eager link-replacement for internal `#anchor` links
480
- - added command-line options `--ppinclude` and `--ppexclude`
483
+ - fixed over-eager link-replacement for internal `#anchor` links
484
+ - added command-line options `--ppinclude` and `--ppexclude`
481
485
 
482
486
  ## v0.5.1 - 2021-10-09
483
487
 
484
- - fixed over-eager link replacement causing text to be deleted
488
+ - fixed over-eager link replacement causing text to be deleted
485
489
 
486
490
  ## v0.5.0 - 2021-09-11
487
491
 
488
- - fixed a crash during HTML post-processing
489
- - fixed `implementation_headers` not working when paths use backslashes
490
- - added warnings when `implementation_headers` doesn't match anything
492
+ - fixed a crash during HTML post-processing
493
+ - fixed `implementation_headers` not working when paths use backslashes
494
+ - added warnings when `implementation_headers` doesn't match anything
491
495
 
492
496
  ## v0.4.5 - 2021-06-08
493
497
 
494
- - added command-line option `--xmlonly`
498
+ - added command-line option `--xmlonly`
495
499
 
496
500
  ## v0.4.3 - 2021-05-31
497
501
 
498
- - fixed regression in `[code_blocks]` functionality
499
- - fixed minor issues in syntax highlighter
500
- - added symbols from doxygen tagfiles to the syntax highlighter
501
- - minor style tweaks
502
+ - fixed regression in `[code_blocks]` functionality
503
+ - fixed minor issues in syntax highlighter
504
+ - added symbols from doxygen tagfiles to the syntax highlighter
505
+ - minor style tweaks
502
506
 
503
507
  ## v0.4.1 - 2021-05-30
504
508
 
505
- - fixed `.dirs` being glommed as source paths
506
- - added config option `scripts`
507
- - added config option `stylesheets`
508
- - added config option `jquery`
509
- - added `custom` theme
510
- - added ability to use `HOME.md` as main page
511
- - added additional fix for inline `<code>` blocks
512
- - added `.poxy-toc` to table-of-contents elements
513
- - added floating page table-of-contents
514
- - removed m.css favicon fallback
515
- - made improvements to the `light` and `dark` themes
516
- - updated C++ doxygen tagfile
509
+ - fixed `.dirs` being glommed as source paths
510
+ - added config option `scripts`
511
+ - added config option `stylesheets`
512
+ - added config option `jquery`
513
+ - added `custom` theme
514
+ - added ability to use `HOME.md` as main page
515
+ - added additional fix for inline `<code>` blocks
516
+ - added `.poxy-toc` to table-of-contents elements
517
+ - added floating page table-of-contents
518
+ - removed m.css favicon fallback
519
+ - made improvements to the `light` and `dark` themes
520
+ - updated C++ doxygen tagfile
517
521
 
518
522
  ## v0.4.0 - 2021-05-29
519
523
 
520
- - added config option `theme`
521
- - added version number to CSS and javascript filenames to prevent browser cache issues
522
- - added `POXY_IMPLEMENTATION_DETAIL(...)` magic macro
523
- - added `POXY_IGNORE(...)` magic macro
524
- - fixed alignment of nested images inside detail blocks
524
+ - added config option `theme`
525
+ - added version number to CSS and javascript filenames to prevent browser cache issues
526
+ - added `POXY_IMPLEMENTATION_DETAIL(...)` magic macro
527
+ - added `POXY_IGNORE(...)` magic macro
528
+ - fixed alignment of nested images inside detail blocks
525
529
 
526
530
  ## v0.3.4 - 2021-05-28
527
531
 
528
- - added basic `using` alias detection to syntax highlighter
529
- - added missing badges for C++23, 26 and 29
532
+ - added basic `using` alias detection to syntax highlighter
533
+ - added missing badges for C++23, 26 and 29
530
534
 
531
535
  ## v0.3.3 - 2021-05-23
532
536
 
533
- - fixed sorting of namespace and group members
534
- - fixed m.css failing with new versions of doxygen due to `Doxyfile.xml`
535
- - added google structured data to `\pages`
537
+ - fixed sorting of namespace and group members
538
+ - fixed m.css failing with new versions of doxygen due to `Doxyfile.xml`
539
+ - added google structured data to `\pages`
536
540
 
537
541
  ## v0.3.2 - 2021-05-19
538
542
 
539
- - fixed formatting of `<meta>` tags
540
- - added config option `author`
541
- - added config option `robots`
542
- - added markup tag `[p]`
543
- - added markup tag `[center]`
543
+ - fixed formatting of `<meta>` tags
544
+ - added config option `author`
545
+ - added config option `robots`
546
+ - added markup tag `[p]`
547
+ - added markup tag `[center]`
544
548
 
545
549
  ## v0.3.1 - 2021-05-13
546
550
 
547
- - added config option `macros`
548
- - added command-line option `--version`
551
+ - added config option `macros`
552
+ - added command-line option `--version`
549
553
 
550
554
  ## v0.3.0 - 2021-05-09
551
555
 
552
- - Improved handling of m.css and Doxygen warnings and errors
553
- - added command-line option `--doxygen`
554
- - added command-line option `--werror`
555
- - added markup tag `[set_parent_class]`
556
- - added markup tag `[add_parent_class]`
557
- - added markup tag `[remove_parent_class]`
558
- - added config option `images`
559
- - added config option `examples`
560
- - added ability to specify tagfiles as URIs
556
+ - Improved handling of m.css and Doxygen warnings and errors
557
+ - added command-line option `--doxygen`
558
+ - added command-line option `--werror`
559
+ - added markup tag `[set_parent_class]`
560
+ - added markup tag `[add_parent_class]`
561
+ - added markup tag `[remove_parent_class]`
562
+ - added config option `images`
563
+ - added config option `examples`
564
+ - added ability to specify tagfiles as URIs
561
565
 
562
566
  ## v0.2.1 - 2021-05-07
563
567
 
564
- - fixed some minor autolinking issues
568
+ - fixed some minor autolinking issues
565
569
 
566
570
  ## v0.2.0 - 2021-05-06
567
571
 
568
- - added config option `source_patterns`
572
+ - added config option `source_patterns`
569
573
 
570
574
  ## v0.1.2 - 2021-05-02
571
575
 
572
- - fixed the Z-order of the nav bar being higher than the search overlay
573
- - added `NDEBUG` to the default set of defines
576
+ - fixed the Z-order of the nav bar being higher than the search overlay
577
+ - added `NDEBUG` to the default set of defines
574
578
 
575
579
  ## v0.1.1 - 2021-04-26
576
580
 
577
- - added an additional cleanup step to the HTML postprocessor
581
+ - added an additional cleanup step to the HTML postprocessor
578
582
 
579
583
  ## v0.1.0 - 2021-04-26
580
584
 
@@ -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=3wyuYNw-v3fousswDGDXkBEJi20trCKtmpoZBnFlmKU,27176
8
+ poxy/main.py,sha256=PwidelWWB3rxLPCAYgiof7NB35HmZmU-lSi7RfQL8j4,27175
9
9
  poxy/mcss.py,sha256=j9PmkfjcwaKdKBauwiPKhSeKGNmGiBt0i_WcnVAV3Hk,2157
10
10
  poxy/paths.py,sha256=OqyP9bIIhW0zyWL6PV2TVV9zsrtvnb25_XNmHlFJmQ8,1540
11
- poxy/project.py,sha256=zfJ7pbxwUTxRCpptTvu1jWRZkCul-H4M-MxfAOOeTUc,99075
11
+ poxy/project.py,sha256=Xrll9mV2Ql9s4Pq-2NJ6iZmbKjCaJ_DEszel1ajuQbA,99049
12
12
  poxy/repos.py,sha256=rUOVTvR6KxrkSvEA0S340OzMStbSk2SBJUEzKEIynzc,3945
13
- poxy/run.py,sha256=1ISuZU5XDQXUZe0bYjVfr-ua9i0v6kDyNPrPvukV-mU,80276
13
+ poxy/run.py,sha256=GB3qvZLX_6A8cb9jzhwQl7XWKR4Vq9LmwHk3nZIf2o4,80489
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=BsU91PIrLgA4yiu5rzLMGrfmmJjZnMO_oivZZfIarI8,7
19
+ poxy/version.txt,sha256=HiAUu03xr-U1r5jwSObjdyUI5Sc8FC-Dufx0e0D5z00,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
@@ -176,10 +176,10 @@ poxy/mcss/plugins/m/plots.py,sha256=DGehGirCDzkPGAf0bE9nqX1Gk4JX7xA0VhGvJszFSg0,
176
176
  poxy/mcss/plugins/m/qr.py,sha256=L1bsWUHUoFnshMhBlZs5T-yOzM82-C2NLMq6oLso3FI,4189
177
177
  poxy/mcss/plugins/m/sphinx.py,sha256=_NO0FmI_BR8Y-idUtujzqX7lIuF94oQgN8CD2CAPw0o,30971
178
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,,
179
+ poxy-0.19.1.dist-info/LICENSE.txt,sha256=kp84JW_RPClTO5Hz6yHQ9jKPfUMerlHHAeyU0VpXV_E,1064
180
+ poxy-0.19.1.dist-info/METADATA,sha256=K5NGTro7tHXcfX0nn7KB45mZLOyj3cqk6dpDjCstP1U,20289
181
+ poxy-0.19.1.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
182
+ poxy-0.19.1.dist-info/entry_points.txt,sha256=yWiOmptj1Ga_dDEU9ch16hRgmzDE8bgrtDkGbH7VFYc,66
183
+ poxy-0.19.1.dist-info/top_level.txt,sha256=vAxxbZDX_cQ6rfRZ1SYSStSdMMlsHEP-zgzBSB0gPco,5
184
+ poxy-0.19.1.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
185
+ poxy-0.19.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.1.3)
2
+ Generator: setuptools (75.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5