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 +1 -1
- poxy/project.py +1 -1
- poxy/run.py +18 -5
- poxy/version.txt +1 -1
- {poxy-0.19.0.dist-info → poxy-0.19.1.dist-info}/METADATA +177 -173
- {poxy-0.19.0.dist-info → poxy-0.19.1.dist-info}/RECORD +11 -11
- {poxy-0.19.0.dist-info → poxy-0.19.1.dist-info}/WHEEL +1 -1
- {poxy-0.19.0.dist-info → poxy-0.19.1.dist-info}/LICENSE.txt +0 -0
- {poxy-0.19.0.dist-info → poxy-0.19.1.dist-info}/entry_points.txt +0 -0
- {poxy-0.19.0.dist-info → poxy-0.19.1.dist-info}/top_level.txt +0 -0
- {poxy-0.19.0.dist-info → poxy-0.19.1.dist-info}/zip-safe +0 -0
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
|
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
|
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
|
-
|
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(
|
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(
|
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(
|
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.
|
1
|
+
0.19.1
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: poxy
|
3
|
-
Version: 0.19.
|
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
|
-
-
|
227
|
-
-
|
228
|
-
-
|
229
|
-
-
|
230
|
-
-
|
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
|
-
-
|
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
|
-
-
|
239
|
-
-
|
240
|
-
-
|
241
|
-
-
|
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
|
-
-
|
249
|
+
- fixed `'tuple' object has no attribute 'week'` error on Python <= 3.8
|
246
250
|
|
247
251
|
## v0.17.0 - 2024-04-21
|
248
252
|
|
249
|
-
-
|
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
|
-
-
|
254
|
-
-
|
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
|
-
-
|
259
|
-
-
|
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
|
-
-
|
267
|
+
- added the use of `*` wildcards in `implementation_headers`
|
264
268
|
|
265
269
|
## v0.13.9 - 2023-09-10
|
266
270
|
|
267
|
-
-
|
271
|
+
- fixed crash on Doxygen <= 1.8.17 (#33) (@tim-janik)
|
268
272
|
|
269
273
|
## v0.13.8 - 2023-09-09
|
270
274
|
|
271
|
-
-
|
275
|
+
- fixed regression for Python <= 3.8 (#32) (@tim-janik)
|
272
276
|
|
273
277
|
## v0.13.7 - 2023-08-17
|
274
278
|
|
275
|
-
-
|
279
|
+
- fixed minor syntax highlighting issues
|
276
280
|
|
277
281
|
## v0.13.6 - 2023-08-10
|
278
282
|
|
279
|
-
-
|
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
|
-
-
|
287
|
+
- fixed `--bug-report` regression (#29) (@wroyca)
|
284
288
|
|
285
289
|
## v0.13.4 - 2023-08-06
|
286
290
|
|
287
|
-
-
|
291
|
+
- fixed excessive `template<>` noise in details views
|
288
292
|
|
289
293
|
## v0.13.3 - 2023-08-01
|
290
294
|
|
291
|
-
-
|
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
|
-
-
|
296
|
-
-
|
297
|
-
-
|
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
|
-
-
|
302
|
-
-
|
303
|
-
-
|
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
|
-
-
|
308
|
-
-
|
309
|
-
-
|
310
|
-
-
|
311
|
-
-
|
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
|
-
-
|
319
|
+
- allowed the use of square-bracket \[tags\] in more places
|
316
320
|
|
317
321
|
## v0.12.6 - 2023-07-25
|
318
322
|
|
319
|
-
-
|
320
|
-
-
|
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
|
-
-
|
328
|
+
- fixed overlong `template<>` lines in page headers (they now wrap)
|
325
329
|
|
326
330
|
## v0.12.4 - 2023-03-23
|
327
331
|
|
328
|
-
-
|
332
|
+
- fixed changelog not auto-linking with some versions of Doxygen
|
329
333
|
|
330
334
|
## v0.12.3 - 2023-02-09
|
331
335
|
|
332
|
-
-
|
336
|
+
- fixed backwards-incompatible use of a newer `argparse` feature on Python <= 3.8 (#20) (@fwerner)
|
333
337
|
|
334
338
|
## v0.12.2 - 2023-02-08
|
335
339
|
|
336
|
-
-
|
340
|
+
- switched default TOML lib to `tomli`
|
337
341
|
|
338
342
|
## v0.12.1 - 2022-11-22
|
339
343
|
|
340
|
-
-
|
344
|
+
- fixed `github` and `gitlab` config options not accepting periods (`.`)
|
341
345
|
|
342
346
|
## v0.12.0 - 2022-11-13
|
343
347
|
|
344
|
-
-
|
345
|
-
-
|
346
|
-
-
|
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
|
-
-
|
354
|
+
- fixed crash when using `<a>` tags in navbar
|
351
355
|
|
352
356
|
## v0.11.0 - 2022-10-21
|
353
357
|
|
354
|
-
-
|
355
|
-
-
|
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
|
-
-
|
360
|
-
-
|
361
|
-
-
|
362
|
-
-
|
363
|
-
-
|
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
|
-
-
|
371
|
+
- minor style fixes
|
368
372
|
|
369
373
|
## v0.10.0 - 2022-10-14
|
370
374
|
|
371
|
-
-
|
372
|
-
-
|
373
|
-
-
|
374
|
-
-
|
375
|
-
-
|
376
|
-
-
|
377
|
-
-
|
378
|
-
-
|
379
|
-
-
|
380
|
-
-
|
381
|
-
-
|
382
|
-
-
|
383
|
-
-
|
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
|
-
-
|
388
|
-
-
|
389
|
-
-
|
390
|
-
-
|
391
|
-
-
|
392
|
-
-
|
393
|
-
-
|
394
|
-
-
|
395
|
-
-
|
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
|
-
-
|
403
|
+
- added support for C++20 concepts
|
400
404
|
|
401
405
|
## v0.8.2 - 2022-10-01
|
402
406
|
|
403
|
-
-
|
404
|
-
-
|
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
|
-
-
|
412
|
+
- minor style fixes
|
409
413
|
|
410
414
|
## v0.8.0 - 2022-09-29
|
411
415
|
|
412
|
-
-
|
413
|
-
-
|
414
|
-
-
|
415
|
-
-
|
416
|
-
-
|
417
|
-
-
|
418
|
-
-
|
419
|
-
-
|
420
|
-
-
|
421
|
-
-
|
422
|
-
-
|
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
|
-
-
|
430
|
+
- fixed crash on python <= 3.8 (#9) (@wroyca)
|
427
431
|
|
428
432
|
## v0.7.0 - 2022-08-16
|
429
433
|
|
430
|
-
-
|
431
|
-
-
|
432
|
-
-
|
433
|
-
-
|
434
|
-
-
|
435
|
-
-
|
436
|
-
-
|
437
|
-
-
|
438
|
-
-
|
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
|
-
-
|
446
|
+
- fixed multi-row navbar occluding page content (#3) (@wroyca)
|
443
447
|
|
444
448
|
## v0.6.0 - 2022-08-14
|
445
449
|
|
446
|
-
-
|
447
|
-
-
|
448
|
-
-
|
449
|
-
-
|
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
|
-
-
|
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
|
-
-
|
458
|
-
-
|
459
|
-
-
|
460
|
-
-
|
461
|
-
-
|
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
|
-
-
|
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
|
-
-
|
470
|
-
-
|
473
|
+
- updated m.css
|
474
|
+
- updated emoji database
|
471
475
|
|
472
476
|
## v0.5.3 - 2021-12-12
|
473
477
|
|
474
|
-
-
|
475
|
-
-
|
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
|
-
-
|
480
|
-
-
|
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
|
-
-
|
488
|
+
- fixed over-eager link replacement causing text to be deleted
|
485
489
|
|
486
490
|
## v0.5.0 - 2021-09-11
|
487
491
|
|
488
|
-
-
|
489
|
-
-
|
490
|
-
-
|
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
|
-
-
|
498
|
+
- added command-line option `--xmlonly`
|
495
499
|
|
496
500
|
## v0.4.3 - 2021-05-31
|
497
501
|
|
498
|
-
-
|
499
|
-
-
|
500
|
-
-
|
501
|
-
-
|
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
|
-
-
|
506
|
-
-
|
507
|
-
-
|
508
|
-
-
|
509
|
-
-
|
510
|
-
-
|
511
|
-
-
|
512
|
-
-
|
513
|
-
-
|
514
|
-
-
|
515
|
-
-
|
516
|
-
-
|
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
|
-
-
|
521
|
-
-
|
522
|
-
-
|
523
|
-
-
|
524
|
-
-
|
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
|
-
-
|
529
|
-
-
|
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
|
-
-
|
534
|
-
-
|
535
|
-
-
|
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
|
-
-
|
540
|
-
-
|
541
|
-
-
|
542
|
-
-
|
543
|
-
-
|
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
|
-
-
|
548
|
-
-
|
551
|
+
- added config option `macros`
|
552
|
+
- added command-line option `--version`
|
549
553
|
|
550
554
|
## v0.3.0 - 2021-05-09
|
551
555
|
|
552
|
-
-
|
553
|
-
-
|
554
|
-
-
|
555
|
-
-
|
556
|
-
-
|
557
|
-
-
|
558
|
-
-
|
559
|
-
-
|
560
|
-
-
|
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
|
-
-
|
568
|
+
- fixed some minor autolinking issues
|
565
569
|
|
566
570
|
## v0.2.0 - 2021-05-06
|
567
571
|
|
568
|
-
-
|
572
|
+
- added config option `source_patterns`
|
569
573
|
|
570
574
|
## v0.1.2 - 2021-05-02
|
571
575
|
|
572
|
-
-
|
573
|
-
-
|
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
|
-
-
|
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=
|
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=
|
11
|
+
poxy/project.py,sha256=Xrll9mV2Ql9s4Pq-2NJ6iZmbKjCaJ_DEszel1ajuQbA,99049
|
12
12
|
poxy/repos.py,sha256=rUOVTvR6KxrkSvEA0S340OzMStbSk2SBJUEzKEIynzc,3945
|
13
|
-
poxy/run.py,sha256=
|
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=
|
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.
|
180
|
-
poxy-0.19.
|
181
|
-
poxy-0.19.
|
182
|
-
poxy-0.19.
|
183
|
-
poxy-0.19.
|
184
|
-
poxy-0.19.
|
185
|
-
poxy-0.19.
|
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,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|