poxy 0.19.0__py3-none-any.whl → 0.19.2__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.
@@ -480,6 +480,62 @@
480
480
  <filename>cpp/header/version</filename>
481
481
  <namespace>std</namespace>
482
482
  </compound>
483
+ <member kind="function">
484
+ <type>T</type>
485
+ <name>ATOMIC_VAR_INIT</name>
486
+ <anchorfile>cpp/atomic/ATOMIC_VAR_INIT</anchorfile>
487
+ <anchor></anchor>
488
+ <arglist>(T... args)</arglist>
489
+ </member>
490
+ <member kind="function">
491
+ <type>T</type>
492
+ <name>assert</name>
493
+ <anchorfile>cpp/error/assert</anchorfile>
494
+ <anchor></anchor>
495
+ <arglist>(T... args)</arglist>
496
+ </member>
497
+ <member kind="function">
498
+ <type>T</type>
499
+ <name>offsetof</name>
500
+ <anchorfile>cpp/types/offsetof</anchorfile>
501
+ <anchor></anchor>
502
+ <arglist>(T... args)</arglist>
503
+ </member>
504
+ <member kind="function">
505
+ <type>T</type>
506
+ <name>operator delete</name>
507
+ <anchorfile>cpp/memory/new/operator_delete</anchorfile>
508
+ <anchor></anchor>
509
+ <arglist>(T... args)</arglist>
510
+ </member>
511
+ <member kind="function">
512
+ <type>T</type>
513
+ <name>operator delete[]</name>
514
+ <anchorfile>cpp/memory/new/operator_delete</anchorfile>
515
+ <anchor></anchor>
516
+ <arglist>(T... args)</arglist>
517
+ </member>
518
+ <member kind="function">
519
+ <type>T</type>
520
+ <name>operator new</name>
521
+ <anchorfile>cpp/memory/new/operator_new</anchorfile>
522
+ <anchor></anchor>
523
+ <arglist>(T... args)</arglist>
524
+ </member>
525
+ <member kind="function">
526
+ <type>T</type>
527
+ <name>operator new[]</name>
528
+ <anchorfile>cpp/memory/new/operator_new</anchorfile>
529
+ <anchor></anchor>
530
+ <arglist>(T... args)</arglist>
531
+ </member>
532
+ <member kind="function">
533
+ <type>T</type>
534
+ <name>setjmp</name>
535
+ <anchorfile>cpp/utility/program/setjmp</anchorfile>
536
+ <anchor></anchor>
537
+ <arglist>(T... args)</arglist>
538
+ </member>
483
539
  <compound kind="namespace">
484
540
  <name>std</name>
485
541
  <filename></filename>
@@ -68771,8 +68827,36 @@
68771
68827
  <name>std::zetta</name>
68772
68828
  <filename>cpp/numeric/ratio/ratio</filename>
68773
68829
  </compound>
68830
+ <member kind="function">
68831
+ <type>T</type>
68832
+ <name>va_arg</name>
68833
+ <anchorfile>cpp/utility/variadic/va_arg</anchorfile>
68834
+ <anchor></anchor>
68835
+ <arglist>(T... args)</arglist>
68836
+ </member>
68837
+ <member kind="function">
68838
+ <type>T</type>
68839
+ <name>va_copy</name>
68840
+ <anchorfile>cpp/utility/variadic/va_copy</anchorfile>
68841
+ <anchor></anchor>
68842
+ <arglist>(T... args)</arglist>
68843
+ </member>
68844
+ <member kind="function">
68845
+ <type>T</type>
68846
+ <name>va_end</name>
68847
+ <anchorfile>cpp/utility/variadic/va_end</anchorfile>
68848
+ <anchor></anchor>
68849
+ <arglist>(T... args)</arglist>
68850
+ </member>
68774
68851
  <compound kind="class">
68775
68852
  <name>va_list</name>
68776
68853
  <filename>cpp/utility/variadic/va_list</filename>
68777
68854
  </compound>
68855
+ <member kind="function">
68856
+ <type>T</type>
68857
+ <name>va_start</name>
68858
+ <anchorfile>cpp/utility/variadic/va_start</anchorfile>
68859
+ <anchor></anchor>
68860
+ <arglist>(T... args)</arglist>
68861
+ </member>
68778
68862
  </tagfile>
poxy/fixers.py CHANGED
@@ -1031,14 +1031,20 @@ class ImplementationDetails(PlainTextFixer):
1031
1031
  Replaces implementation details with appropriate shorthands.
1032
1032
  '''
1033
1033
 
1034
- __shorthands = ((r'POXY_IMPLEMENTATION_DETAIL_IMPL', r'<code class="m-note m-dim poxy-impl">/* ... */</code>'),)
1034
+ __patterns = (
1035
+ re.compile(
1036
+ r'<\s*a\s+class="m-doc"\s+href=".+?"\s*>POXY_(?:<wbr>)?IMPLEMENTATION_(?:<wbr>)?DETAIL_(?:<wbr>)?IMPL<\s*/a\s*>',
1037
+ re.I,
1038
+ ),
1039
+ re.compile(r'POXY_(?:<wbr>)?IMPLEMENTATION_(?:<wbr>)?DETAIL_(?:<wbr>)?IMPL', re.I),
1040
+ re.compile(r'poxyimplementationdetailimplplaceholder', re.I),
1041
+ )
1042
+
1043
+ __replacement = r'<code class="m-note m-dim poxy-impl">/* ... */</code>'
1035
1044
 
1036
1045
  def __call__(self, context: Context, text: str, path: Path) -> str:
1037
- for shorthand, replacement in self.__shorthands:
1038
- idx = text.find(shorthand)
1039
- while idx >= 0:
1040
- text = text[:idx] + replacement + text[idx + len(shorthand) :]
1041
- idx = text.find(shorthand)
1046
+ for pattern in self.__patterns:
1047
+ text = pattern.sub(self.__replacement, text)
1042
1048
  return text
1043
1049
 
1044
1050
 
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
@@ -47,7 +47,7 @@ class Defaults(object):
47
47
  r'__has_builtin(...)': 0,
48
48
  r'__has_feature(...)': 0,
49
49
  r'__has_cpp_attribute(...)': 999999,
50
- r'POXY_IMPLEMENTATION_DETAIL(...)': r'POXY_IMPLEMENTATION_DETAIL_IMPL',
50
+ r'POXY_IMPLEMENTATION_DETAIL(...)': r'poxyimplementationdetailimplplaceholder',
51
51
  r'POXY_IGNORE(...)': r'',
52
52
  }
53
53
  cpp_builtin_macros = {
@@ -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
  # =======================================================================================================================
@@ -733,12 +746,17 @@ def postprocess_xml(context: Context):
733
746
 
734
747
  # re-sort members to override Doxygen's weird and stupid sorting 'rules'
735
748
  if 1:
736
- sort_members_by_name = lambda tag: tag.find(r'name').text
749
+ # sort_members_by_name = lambda tag: tag.find(r'name').text
750
+ def sort_members_by_name(tag):
751
+ n = tag.find(r'name')
752
+ if n is None:
753
+ return ''
754
+ return '' if n.text is None else n.text
755
+
737
756
  members = [tag for tag in section.findall(r'memberdef')]
738
757
  for tag in members:
739
758
  section.remove(tag)
740
759
  # fmt: off
741
- # yapf: disable
742
760
  groups = [
743
761
  ([tag for tag in members if tag.get(r'kind') == r'define'], True), #
744
762
  ([tag for tag in members if tag.get(r'kind') == r'typedef'], True),
@@ -750,7 +768,6 @@ def postprocess_xml(context: Context):
750
768
  ([tag for tag in members if tag.get(r'kind') == r'function' and tag.get(r'static') == r'no'], True),
751
769
  ([tag for tag in members if tag.get(r'kind') == r'friend'], True)
752
770
  ]
753
- # yapf: enable
754
771
  # fmt: on
755
772
  for group, sort in groups:
756
773
  if sort:
@@ -1779,7 +1796,7 @@ def run(
1779
1796
  delete_directory(context.temp_original_xml_dir)
1780
1797
  run_doxygen(context)
1781
1798
  if keep_original_xml:
1782
- copy_tree(str(context.temp_xml_dir), str(context.temp_original_xml_dir))
1799
+ copy_tree(context.temp_xml_dir, context.temp_original_xml_dir)
1783
1800
  clean_xml(context, dir=context.temp_original_xml_dir)
1784
1801
  with timer(r'Post-processing XML files') as t:
1785
1802
  if context.xml_v2:
@@ -1795,7 +1812,7 @@ def run(
1795
1812
  # XML (the user-requested copy)
1796
1813
  if context.output_xml:
1797
1814
  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))
1815
+ copy_tree(context.temp_xml_dir, context.xml_dir)
1799
1816
 
1800
1817
  # copy tagfile
1801
1818
  if context.generate_tagfile and context.tagfile_path:
@@ -1818,7 +1835,7 @@ def run(
1818
1835
  # copy fonts
1819
1836
  if context.copy_assets:
1820
1837
  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')))
1838
+ copy_tree(paths.FONTS, Path(context.assets_dir, r'fonts'))
1822
1839
 
1823
1840
  # copy tagfile
1824
1841
  if context.generate_tagfile and context.tagfile_path:
poxy/version.txt CHANGED
@@ -1 +1 @@
1
- 0.19.0
1
+ 0.19.2
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: poxy
3
- Version: 0.19.0
3
+ Version: 0.19.2
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,370 @@ 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.2 - 2024-11-11
225
+
226
+ - fixed crash with nested C-style enums without a name (#39) (@tim-janik)
227
+ - fixed `r'POXY_IMPLEMENTATION_DETAIL_IMPL` appearing in HTML in some circumstances
228
+ - minor updates to cppreference.com tagfile
229
+
230
+ ## v0.19.1 - 2024-10-30
231
+
232
+ - fixed `ModuleNotFoundError` error in Python 3.12 (#38) (@dekinet)
233
+
224
234
  ## v0.19.0 - 2024-09-15
225
235
 
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
236
+ - fixed crash when using simple type specifiers in friend declarations (#37) (@benjaminulmer)
237
+ - added workaround for [this issue](https://github.com/mosra/m.css/issues/239) introduced in Doxygen 1.9.7
238
+ - added auto-linking for various cppreference.com pages
239
+ - made `--bug-report` keep a copy of the original (pre-pre-processed?) XML
240
+ - updated m.css
231
241
 
232
242
  ## v0.18.0 - 2024-08-03
233
243
 
234
- - added config option `excluded_symbols` (a.k.a. Doxygen's `EXCLUDE_SYMBOLS`) (#36) (@Guekka)
244
+ - added config option `excluded_symbols` (a.k.a. Doxygen's `EXCLUDE_SYMBOLS`) (#36) (@Guekka)
235
245
 
236
246
  ## v0.17.2 - 2024-06-16
237
247
 
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
248
+ - fixed qualified return types appearing squashed together without whitespace in some circumstances
249
+ - fixed performance regression in post-process step
250
+ - updated m.css
251
+ - minor style fixes
242
252
 
243
253
  ## v0.17.1 - 2024-06-14
244
254
 
245
- - fixed `'tuple' object has no attribute 'week'` error on Python &lt;= 3.8
255
+ - fixed `'tuple' object has no attribute 'week'` error on Python &lt;= 3.8
246
256
 
247
257
  ## v0.17.0 - 2024-04-21
248
258
 
249
- - added arguments `--min-version` and `--squash-patches` for more control over `--git-tags` mode
259
+ - added arguments `--min-version` and `--squash-patches` for more control over `--git-tags` mode
250
260
 
251
261
  ## v0.16.0 - 2024-01-28
252
262
 
253
- - added multi-version mode argument `--git-tags`
254
- - added colour to output
263
+ - added multi-version mode argument `--git-tags`
264
+ - added colour to output
255
265
 
256
266
  ## v0.15.0 - 2023-12-08
257
267
 
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)
268
+ - added config option `main_page` (a.k.a. `USE_MDFILE_AS_MAINPAGE`)
269
+ - fixed searching for `CHANGELOG` too far up the directory heirarchy (now stops when a `.git` folder is encountered)
260
270
 
261
271
  ## v0.14.0 - 2023-11-25
262
272
 
263
- - added the use of `*` wildcards in `implementation_headers`
273
+ - added the use of `*` wildcards in `implementation_headers`
264
274
 
265
275
  ## v0.13.9 - 2023-09-10
266
276
 
267
- - fixed crash on Doxygen &lt;= 1.8.17 (#33) (@tim-janik)
277
+ - fixed crash on Doxygen &lt;= 1.8.17 (#33) (@tim-janik)
268
278
 
269
279
  ## v0.13.8 - 2023-09-09
270
280
 
271
- - fixed regression for Python &lt;= 3.8 (#32) (@tim-janik)
281
+ - fixed regression for Python &lt;= 3.8 (#32) (@tim-janik)
272
282
 
273
283
  ## v0.13.7 - 2023-08-17
274
284
 
275
- - fixed minor syntax highlighting issues
285
+ - fixed minor syntax highlighting issues
276
286
 
277
287
  ## v0.13.6 - 2023-08-10
278
288
 
279
- - update m.css to fix libgs.so lookup (#31) (@wroyca, @mosra)
289
+ - update m.css to fix libgs.so lookup (#31) (@wroyca, @mosra)
280
290
 
281
291
  ## v0.13.5 - 2023-08-09
282
292
 
283
- - fixed `--bug-report` regression (#29) (@wroyca)
293
+ - fixed `--bug-report` regression (#29) (@wroyca)
284
294
 
285
295
  ## v0.13.4 - 2023-08-06
286
296
 
287
- - fixed excessive `template<>` noise in details views
297
+ - fixed excessive `template<>` noise in details views
288
298
 
289
299
  ## v0.13.3 - 2023-08-01
290
300
 
291
- - fixed floating TOCs sometimes clipping off the bottom of the screen when the viewport was vertically narrow
301
+ - fixed floating TOCs sometimes clipping off the bottom of the screen when the viewport was vertically narrow
292
302
 
293
303
  ## v0.13.2 - 2023-07-31
294
304
 
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
305
+ - fixed doxygen's `@ref` links to `#id` anchors on the same page being treated as external links
306
+ - added auto-linking for C++ [named requirements](https://en.cppreference.com/w/cpp/named_req)
307
+ - minor style fixes
298
308
 
299
309
  ## v0.13.1 - 2023-07-29
300
310
 
301
- - fixed crash regression with Doxygen 1.9.7
302
- - fixed issues with \[tag\] substitution
303
- - minor style fixes
311
+ - fixed crash regression with Doxygen 1.9.7
312
+ - fixed issues with \[tag\] substitution
313
+ - minor style fixes
304
314
 
305
315
  ## v0.13.0 - 2023-07-28
306
316
 
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`
317
+ - migrated to `pyproject.toml`
318
+ - fixed footer being off-center (#24) (@wroyca)
319
+ - fixed redundant `auto` in trailing return types (#26) (@wroyca)
320
+ - added config option `sponsor`
321
+ - added config option `twitter`
312
322
 
313
323
  ## v0.12.7 - 2023-07-27
314
324
 
315
- - allowed the use of square-bracket \[tags\] in more places
325
+ - allowed the use of square-bracket \[tags\] in more places
316
326
 
317
327
  ## v0.12.6 - 2023-07-25
318
328
 
319
- - fixed overlong `template<>` lines in summary views
320
- - fixed function parameter names greedily wrapping in details tables
329
+ - fixed overlong `template<>` lines in summary views
330
+ - fixed function parameter names greedily wrapping in details tables
321
331
 
322
332
  ## v0.12.5 - 2023-07-20
323
333
 
324
- - fixed overlong `template<>` lines in page headers (they now wrap)
334
+ - fixed overlong `template<>` lines in page headers (they now wrap)
325
335
 
326
336
  ## v0.12.4 - 2023-03-23
327
337
 
328
- - fixed changelog not auto-linking with some versions of Doxygen
338
+ - fixed changelog not auto-linking with some versions of Doxygen
329
339
 
330
340
  ## v0.12.3 - 2023-02-09
331
341
 
332
- - fixed backwards-incompatible use of a newer `argparse` feature on Python &lt;= 3.8 (#20) (@fwerner)
342
+ - fixed backwards-incompatible use of a newer `argparse` feature on Python &lt;= 3.8 (#20) (@fwerner)
333
343
 
334
344
  ## v0.12.2 - 2023-02-08
335
345
 
336
- - switched default TOML lib to `tomli`
346
+ - switched default TOML lib to `tomli`
337
347
 
338
348
  ## v0.12.1 - 2022-11-22
339
349
 
340
- - fixed `github` and `gitlab` config options not accepting periods (`.`)
350
+ - fixed `github` and `gitlab` config options not accepting periods (`.`)
341
351
 
342
352
  ## v0.12.0 - 2022-11-13
343
353
 
344
- - fixed `AttributeError` during XML post-processing (#17) (@wroyca)
345
- - added command-line option `--bug-report`
346
- - improved diagnostic text in some areas
354
+ - fixed `AttributeError` during XML post-processing (#17) (@wroyca)
355
+ - added command-line option `--bug-report`
356
+ - improved diagnostic text in some areas
347
357
 
348
358
  ## v0.11.1 - 2022-10-23
349
359
 
350
- - fixed crash when using `<a>` tags in navbar
360
+ - fixed crash when using `<a>` tags in navbar
351
361
 
352
362
  ## v0.11.0 - 2022-10-21
353
363
 
354
- - added syntax highlighting for functions
355
- - improved syntax highlighting of typenames
364
+ - added syntax highlighting for functions
365
+ - improved syntax highlighting of typenames
356
366
 
357
367
  ## v0.10.2 - 2022-10-16
358
368
 
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
369
+ - fixed crash when tagfile is disabled
370
+ - fixed a few syntax highlighting edge-cases
371
+ - fixed non-determinism in XML output formatting
372
+ - improved performance of syntax highlighting post-process
373
+ - minor style fixes
364
374
 
365
375
  ## v0.10.1 - 2022-10-15
366
376
 
367
- - minor style fixes
377
+ - minor style fixes
368
378
 
369
379
  ## v0.10.0 - 2022-10-14
370
380
 
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`
381
+ - fixed `static` keyword sometimes appearing twice on variables
382
+ - fixed `constexpr` keyword sometimes leaking into variable type
383
+ - fixed newer versions of pygments adding unnecessary markup to whitespace
384
+ - fixed malformed trailing return types in some circumstances
385
+ - fixed changelog page sometimes not having a table-of-contents
386
+ - added support for C++20's `constinit`
387
+ - added fallback to `tomllib` or `tomli` if `pytomlpp` is not available
388
+ - added command-line options `--html`, `--no-html`
389
+ - added command-line options `--xml`, `--no-xml`
390
+ - added command-line option `--no-werror`
391
+ - added `CHANGES` to the set of candidate changelog filenames
392
+ - deprecated command-line option `--xmlonly`
393
+ - removed command-line option `--doxygen`
384
394
 
385
395
  ## v0.9.1 - 2022-10-04
386
396
 
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`
397
+ - fixed SVG inlining not preserving original image class attributes
398
+ - fixed `ValueError` when reading some SVG files
399
+ - fixed `navbar` option allowing duplicates
400
+ - fixed custom navbar items always being transformed to lowercase
401
+ - fixed navbar generating links to empty pages
402
+ - added `concepts` to the default set of links in `navbar`
403
+ - added `navbar` values `all` and `default`
404
+ - reduced I/O churn during HTML post-processing
405
+ - removed command-line option `--dry`
396
406
 
397
407
  ## v0.9.0 - 2022-10-03
398
408
 
399
- - added support for C++20 concepts
409
+ - added support for C++20 concepts
400
410
 
401
411
  ## v0.8.2 - 2022-10-01
402
412
 
403
- - added post-process to inline all local SVGs
404
- - minor style fixes
413
+ - added post-process to inline all local SVGs
414
+ - minor style fixes
405
415
 
406
416
  ## v0.8.1 - 2022-09-30
407
417
 
408
- - minor style fixes
418
+ - minor style fixes
409
419
 
410
420
  ## v0.8.0 - 2022-09-29
411
421
 
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
422
+ - added config option `gitlab` (#13) (@wroyca)
423
+ - added ixx module extension in source patterns (#11) (@wroyca)
424
+ - added support for multi-codepoint emojis
425
+ - improved `doxygen.exe` location discovery on Windows
426
+ - improved `CHANGELOG` location discovery
427
+ - moved all poxy assets in the generated HTML to `html/poxy`
428
+ - self-hosted google fonts in generated HTML (instead of requiring additional HTTP requests on page load) (#6)
429
+ - removed ability to override m.css implementation
430
+ - removed legacy support for reading config options from neighbouring Doxyfiles
431
+ - overhauled the light theme
432
+ - many minor style fixes and tweaks
423
433
 
424
434
  ## v0.7.1 - 2022-08-17
425
435
 
426
- - fixed crash on python &lt;= 3.8 (#9) (@wroyca)
436
+ - fixed crash on python &lt;= 3.8 (#9) (@wroyca)
427
437
 
428
438
  ## v0.7.0 - 2022-08-16
429
439
 
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
440
+ - fixed some `<link>`, `<meta>` and `<script>` tags not being included in `<head>` when a file was excluded from post-processing
441
+ - added `theme` command-line option
442
+ - added `html_header` config option option
443
+ - added automatic generation of github links in changelog when config option `github` is set
444
+ - added new light theme
445
+ - added dynamic switch for dark/light theme
446
+ - removed text from github icon on navbar (#5) (@wroyca)
447
+ - removed excessive spacing between article sections (#5) (@wroyca)
448
+ - many minor style fixes and tweaks
439
449
 
440
450
  ## v0.6.1 - 2022-08-16
441
451
 
442
- - fixed multi-row navbar occluding page content (#3) (@wroyca)
452
+ - fixed multi-row navbar occluding page content (#3) (@wroyca)
443
453
 
444
454
  ## v0.6.0 - 2022-08-14
445
455
 
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
456
+ - fixed malformed error messages in some circumstances
457
+ - added builtin C++ standard macros for C++23
458
+ - added `changelog` config option
459
+ - updated cppreference.com tagfile
450
460
 
451
461
  ## v0.5.7 - 2022-05-17
452
462
 
453
- - fixed being able to pass >= 33 threads to Doxygen's `NUM_PROC_THREADS`
463
+ - fixed being able to pass >= 33 threads to Doxygen's `NUM_PROC_THREADS`
454
464
 
455
465
  ## v0.5.6 - 2022-05-14
456
466
 
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
467
+ - fixed path error when using `--dry`
468
+ - fixed `friend` keyword sometimes leaking into function return types
469
+ - added additional language code block aliases
470
+ - added `--nocleanup` to `--help` output
471
+ - added support for C++20's `consteval` keyword
462
472
 
463
473
  ## v0.5.5 - 2022-04-16
464
474
 
465
- - fixed C++20 concepts causing a crash in m.css (they are now skipped with a warning) (#1) (@jake-arkinstall)
475
+ - fixed C++20 concepts causing a crash in m.css (they are now skipped with a warning) (#1) (@jake-arkinstall)
466
476
 
467
477
  ## v0.5.4 - 2022-04-15
468
478
 
469
- - updated m.css
470
- - updated emoji database
479
+ - updated m.css
480
+ - updated emoji database
471
481
 
472
482
  ## v0.5.3 - 2021-12-12
473
483
 
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)
484
+ - fixed Doxygen bug that would sometimes treat keywords like `friend` as part of a function's return type
485
+ - Blacklisted schema 0.7.5 because [it's broken](https://github.com/keleshev/schema/issues/272)
476
486
 
477
487
  ## v0.5.2 - 2021-11-02
478
488
 
479
- - fixed over-eager link-replacement for internal `#anchor` links
480
- - added command-line options `--ppinclude` and `--ppexclude`
489
+ - fixed over-eager link-replacement for internal `#anchor` links
490
+ - added command-line options `--ppinclude` and `--ppexclude`
481
491
 
482
492
  ## v0.5.1 - 2021-10-09
483
493
 
484
- - fixed over-eager link replacement causing text to be deleted
494
+ - fixed over-eager link replacement causing text to be deleted
485
495
 
486
496
  ## v0.5.0 - 2021-09-11
487
497
 
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
498
+ - fixed a crash during HTML post-processing
499
+ - fixed `implementation_headers` not working when paths use backslashes
500
+ - added warnings when `implementation_headers` doesn't match anything
491
501
 
492
502
  ## v0.4.5 - 2021-06-08
493
503
 
494
- - added command-line option `--xmlonly`
504
+ - added command-line option `--xmlonly`
495
505
 
496
506
  ## v0.4.3 - 2021-05-31
497
507
 
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
508
+ - fixed regression in `[code_blocks]` functionality
509
+ - fixed minor issues in syntax highlighter
510
+ - added symbols from doxygen tagfiles to the syntax highlighter
511
+ - minor style tweaks
502
512
 
503
513
  ## v0.4.1 - 2021-05-30
504
514
 
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
515
+ - fixed `.dirs` being glommed as source paths
516
+ - added config option `scripts`
517
+ - added config option `stylesheets`
518
+ - added config option `jquery`
519
+ - added `custom` theme
520
+ - added ability to use `HOME.md` as main page
521
+ - added additional fix for inline `<code>` blocks
522
+ - added `.poxy-toc` to table-of-contents elements
523
+ - added floating page table-of-contents
524
+ - removed m.css favicon fallback
525
+ - made improvements to the `light` and `dark` themes
526
+ - updated C++ doxygen tagfile
517
527
 
518
528
  ## v0.4.0 - 2021-05-29
519
529
 
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
530
+ - added config option `theme`
531
+ - added version number to CSS and javascript filenames to prevent browser cache issues
532
+ - added `POXY_IMPLEMENTATION_DETAIL(...)` magic macro
533
+ - added `POXY_IGNORE(...)` magic macro
534
+ - fixed alignment of nested images inside detail blocks
525
535
 
526
536
  ## v0.3.4 - 2021-05-28
527
537
 
528
- - added basic `using` alias detection to syntax highlighter
529
- - added missing badges for C++23, 26 and 29
538
+ - added basic `using` alias detection to syntax highlighter
539
+ - added missing badges for C++23, 26 and 29
530
540
 
531
541
  ## v0.3.3 - 2021-05-23
532
542
 
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`
543
+ - fixed sorting of namespace and group members
544
+ - fixed m.css failing with new versions of doxygen due to `Doxyfile.xml`
545
+ - added google structured data to `\pages`
536
546
 
537
547
  ## v0.3.2 - 2021-05-19
538
548
 
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]`
549
+ - fixed formatting of `<meta>` tags
550
+ - added config option `author`
551
+ - added config option `robots`
552
+ - added markup tag `[p]`
553
+ - added markup tag `[center]`
544
554
 
545
555
  ## v0.3.1 - 2021-05-13
546
556
 
547
- - added config option `macros`
548
- - added command-line option `--version`
557
+ - added config option `macros`
558
+ - added command-line option `--version`
549
559
 
550
560
  ## v0.3.0 - 2021-05-09
551
561
 
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
562
+ - Improved handling of m.css and Doxygen warnings and errors
563
+ - added command-line option `--doxygen`
564
+ - added command-line option `--werror`
565
+ - added markup tag `[set_parent_class]`
566
+ - added markup tag `[add_parent_class]`
567
+ - added markup tag `[remove_parent_class]`
568
+ - added config option `images`
569
+ - added config option `examples`
570
+ - added ability to specify tagfiles as URIs
561
571
 
562
572
  ## v0.2.1 - 2021-05-07
563
573
 
564
- - fixed some minor autolinking issues
574
+ - fixed some minor autolinking issues
565
575
 
566
576
  ## v0.2.0 - 2021-05-06
567
577
 
568
- - added config option `source_patterns`
578
+ - added config option `source_patterns`
569
579
 
570
580
  ## v0.1.2 - 2021-05-02
571
581
 
572
- - fixed the Z-order of the nav bar being higher than the search overlay
573
- - added `NDEBUG` to the default set of defines
582
+ - fixed the Z-order of the nav bar being higher than the search overlay
583
+ - added `NDEBUG` to the default set of defines
574
584
 
575
585
  ## v0.1.1 - 2021-04-26
576
586
 
577
- - added an additional cleanup step to the HTML postprocessor
587
+ - added an additional cleanup step to the HTML postprocessor
578
588
 
579
589
  ## v0.1.0 - 2021-04-26
580
590
 
@@ -1,22 +1,22 @@
1
1
  poxy/__init__.py,sha256=YMx1Lxzs7QkyrXJXdEAuaPcZO9i6INiv-j-KBAlbcxg,507
2
- poxy/cppreference-doxygen-web.tag.xml,sha256=jHYta0FGk5opq8ZrbnVDuk3AV4psKmgcDbqCnu25lF0,2153766
2
+ poxy/cppreference-doxygen-web.tag.xml,sha256=LvWjm8U4K80Nm_Mhlpc5YGM39KYH-nTPl5tj8haWP-w,2156321
3
3
  poxy/css.py,sha256=PP7rACVpzLC0-mTDKRxMrVaYdNBZZ_X6USCcaMgw5H0,6953
4
4
  poxy/doxygen.py,sha256=nHygTYfKqh4M0hcdomWK5J3T16GZ7owM5oaWa141Ky4,46372
5
5
  poxy/emoji.py,sha256=Vj2ZbUq1MewLMVoLtH2xP_jZToRoNi52AgrIg3VhUuU,3410
6
- poxy/fixers.py,sha256=WX_hDr-V7wQ8V1E8Ryg3kNyQUdETNNFlzxAVzEziruU,46069
6
+ poxy/fixers.py,sha256=7stPmUxxD3uKHqj-0XZC1y4CuhqaTq_4H-G5l1912Ro,46243
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=qgvHR-V0gi_mFv1sCiTZ1VTFy8iprAQr3mJvEry5lZQ,99057
12
12
  poxy/repos.py,sha256=rUOVTvR6KxrkSvEA0S340OzMStbSk2SBJUEzKEIynzc,3945
13
- poxy/run.py,sha256=1ISuZU5XDQXUZe0bYjVfr-ua9i0v6kDyNPrPvukV-mU,80276
13
+ poxy/run.py,sha256=uKT3jKvnkH24nqOMizxuHXxa6ygobXpUUbnxDDwQNb4,80670
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=n8nEL77-uL-2uK8EsWtDysdQM9Si-Tg-wqwbM7-QNKQ,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.2.dist-info/LICENSE.txt,sha256=kp84JW_RPClTO5Hz6yHQ9jKPfUMerlHHAeyU0VpXV_E,1064
180
+ poxy-0.19.2.dist-info/METADATA,sha256=7XgpIuUW3JGlSiKLr81VL14gAHuQQl_fvPmH03dY-9U,20540
181
+ poxy-0.19.2.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
182
+ poxy-0.19.2.dist-info/entry_points.txt,sha256=yWiOmptj1Ga_dDEU9ch16hRgmzDE8bgrtDkGbH7VFYc,66
183
+ poxy-0.19.2.dist-info/top_level.txt,sha256=vAxxbZDX_cQ6rfRZ1SYSStSdMMlsHEP-zgzBSB0gPco,5
184
+ poxy-0.19.2.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
185
+ poxy-0.19.2.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