@xpack/doxygen2docusaurus 2.1.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/README.md +2 -1
  2. package/bin/doxygen2docusaurus.js +4 -4
  3. package/dist/docusaurus/renderers/conceptparts.d.ts +9 -0
  4. package/dist/docusaurus/renderers/conceptparts.d.ts.map +1 -0
  5. package/dist/docusaurus/renderers/conceptparts.js +21 -0
  6. package/dist/docusaurus/renderers/conceptparts.js.map +1 -0
  7. package/dist/docusaurus/renderers/renderers.d.ts.map +1 -1
  8. package/dist/docusaurus/renderers/renderers.js +11 -2
  9. package/dist/docusaurus/renderers/renderers.js.map +1 -1
  10. package/dist/docusaurus/view-model/concepts-vm.d.ts +1 -0
  11. package/dist/docusaurus/view-model/concepts-vm.d.ts.map +1 -1
  12. package/dist/docusaurus/view-model/concepts-vm.js +11 -3
  13. package/dist/docusaurus/view-model/concepts-vm.js.map +1 -1
  14. package/dist/docusaurus/view-model/namespaces-vm.d.ts +1 -0
  15. package/dist/docusaurus/view-model/namespaces-vm.d.ts.map +1 -1
  16. package/dist/docusaurus/view-model/namespaces-vm.js +8 -2
  17. package/dist/docusaurus/view-model/namespaces-vm.js.map +1 -1
  18. package/dist/docusaurus/view-model/pages-vm.d.ts.map +1 -1
  19. package/dist/docusaurus/view-model/pages-vm.js +39 -0
  20. package/dist/docusaurus/view-model/pages-vm.js.map +1 -1
  21. package/dist/doxygen/data-model/compounds/compounddef-dm.d.ts +2 -0
  22. package/dist/doxygen/data-model/compounds/compounddef-dm.d.ts.map +1 -1
  23. package/dist/doxygen/data-model/compounds/compounddef-dm.js +5 -0
  24. package/dist/doxygen/data-model/compounds/compounddef-dm.js.map +1 -1
  25. package/dist/doxygen/data-model/compounds/concepts-dm.d.ts +23 -0
  26. package/dist/doxygen/data-model/compounds/concepts-dm.d.ts.map +1 -0
  27. package/dist/doxygen/data-model/compounds/concepts-dm.js +94 -0
  28. package/dist/doxygen/data-model/compounds/concepts-dm.js.map +1 -0
  29. package/dist/doxygen/data-model/compounds/descriptiontype-dm.d.ts.map +1 -1
  30. package/dist/doxygen/data-model/compounds/descriptiontype-dm.js.map +1 -1
  31. package/dist/doxygen/data-model/compounds/memberdeftype-dm.d.ts.map +1 -1
  32. package/dist/doxygen/data-model/compounds/memberdeftype-dm.js.map +1 -1
  33. package/dist/doxygen/data-model/compounds/requirements-dm.d.ts +2 -0
  34. package/dist/doxygen/data-model/compounds/requirements-dm.d.ts.map +1 -0
  35. package/dist/doxygen/data-model/compounds/requirements-dm.js +2 -0
  36. package/dist/doxygen/data-model/compounds/requirements-dm.js.map +1 -0
  37. package/dist/doxygen/data-model/compounds/tableofcontentstype-dm.d.ts.map +1 -1
  38. package/dist/doxygen/data-model/compounds/tableofcontentstype-dm.js.map +1 -1
  39. package/dist/doxygen/data-model/data-model.d.ts.map +1 -1
  40. package/dist/doxygen/data-model/data-model.js +4 -3
  41. package/dist/doxygen/data-model/data-model.js.map +1 -1
  42. package/dist/index.d.ts +2 -1
  43. package/dist/index.d.ts.map +1 -1
  44. package/dist/index.js +2 -1
  45. package/dist/index.js.map +1 -1
  46. package/package.json +8 -5
  47. package/src/cli/main.ts +4 -4
  48. package/src/docusaurus/cli-options.ts +4 -4
  49. package/src/docusaurus/generator.ts +4 -4
  50. package/src/docusaurus/renderers/conceptparts.ts +119 -0
  51. package/src/docusaurus/renderers/descriptiontype.ts +4 -4
  52. package/src/docusaurus/renderers/docinternalstype.ts +4 -4
  53. package/src/docusaurus/renderers/doclisttype.ts +4 -4
  54. package/src/docusaurus/renderers/doctabletype.ts +4 -4
  55. package/src/docusaurus/renderers/doctitletype.ts +4 -4
  56. package/src/docusaurus/renderers/docvariablelisttype.ts +4 -4
  57. package/src/docusaurus/renderers/docxrefsecttype.ts +4 -4
  58. package/src/docusaurus/renderers/element-renderer-base.ts +4 -4
  59. package/src/docusaurus/renderers/inctype.ts +4 -4
  60. package/src/docusaurus/renderers/linkedtexttype.ts +4 -4
  61. package/src/docusaurus/renderers/listingtype.ts +4 -4
  62. package/src/docusaurus/renderers/paramtype.ts +4 -4
  63. package/src/docusaurus/renderers/referencetype.ts +4 -4
  64. package/src/docusaurus/renderers/reftexttype.ts +4 -4
  65. package/src/docusaurus/renderers/reftype.ts +4 -4
  66. package/src/docusaurus/renderers/renderers.ts +66 -10
  67. package/src/docusaurus/renderers/substringtype.ts +4 -4
  68. package/src/docusaurus/renderers/tableofcontentstype.ts +4 -4
  69. package/src/docusaurus/types.ts +4 -4
  70. package/src/docusaurus/utils.ts +4 -4
  71. package/src/docusaurus/view-model/classes-vm.ts +4 -4
  72. package/src/docusaurus/view-model/collection-base.ts +4 -4
  73. package/src/docusaurus/view-model/compound-base-vm.ts +4 -4
  74. package/src/docusaurus/view-model/concepts-vm.ts +37 -7
  75. package/src/docusaurus/view-model/description-anchors.ts +4 -4
  76. package/src/docusaurus/view-model/files-and-folders-vm.ts +4 -4
  77. package/src/docusaurus/view-model/groups-vm.ts +4 -4
  78. package/src/docusaurus/view-model/members-vm.ts +4 -4
  79. package/src/docusaurus/view-model/namespaces-vm.ts +25 -6
  80. package/src/docusaurus/view-model/options.ts +4 -4
  81. package/src/docusaurus/view-model/pages-vm.ts +53 -6
  82. package/src/docusaurus/view-model/tree-entries-vm.ts +4 -4
  83. package/src/docusaurus/view-model/view-model.ts +4 -4
  84. package/src/docusaurus/workspace.ts +4 -4
  85. package/src/doxygen/data-model/compounds/compounddef-dm.ts +78 -4
  86. package/src/doxygen/data-model/compounds/compoundreftype-dm.ts +4 -4
  87. package/src/doxygen/data-model/compounds/concepts-dm.ts +362 -0
  88. package/src/doxygen/data-model/compounds/descriptiontype-dm.ts +12 -5
  89. package/src/doxygen/data-model/compounds/docvarlistentrytype-dm.ts +4 -4
  90. package/src/doxygen/data-model/compounds/doxygentype-dm.ts +4 -4
  91. package/src/doxygen/data-model/compounds/enumvaluetype-dm.ts +4 -4
  92. package/src/doxygen/data-model/compounds/inctype-dm.ts +4 -4
  93. package/src/doxygen/data-model/compounds/linkedtexttype-dm.ts +4 -4
  94. package/src/doxygen/data-model/compounds/listofallmemberstype-dm.ts +4 -4
  95. package/src/doxygen/data-model/compounds/locationtype-dm.ts +4 -4
  96. package/src/doxygen/data-model/compounds/memberdeftype-dm.ts +11 -4
  97. package/src/doxygen/data-model/compounds/memberreftype-dm.ts +4 -4
  98. package/src/doxygen/data-model/compounds/membertype-dm.ts +4 -4
  99. package/src/doxygen/data-model/compounds/paramtype-dm.ts +4 -4
  100. package/src/doxygen/data-model/compounds/referencetype-dm.ts +4 -4
  101. package/src/doxygen/data-model/compounds/reftexttype-dm.ts +4 -4
  102. package/src/doxygen/data-model/compounds/reftype-dm.ts +4 -4
  103. package/src/doxygen/data-model/compounds/reimplementtype-dm.ts +4 -4
  104. package/src/doxygen/data-model/compounds/requirements-dm.ts +50 -0
  105. package/src/doxygen/data-model/compounds/sectiondeftype-dm.ts +4 -4
  106. package/src/doxygen/data-model/compounds/tableofcontentstype-dm.ts +6 -5
  107. package/src/doxygen/data-model/compounds/templateparamlisttype-dm.ts +4 -4
  108. package/src/doxygen/data-model/data-model.ts +9 -8
  109. package/src/doxygen/data-model/doxyfile/doxyfileoptiontype-dm.ts +4 -4
  110. package/src/doxygen/data-model/doxyfile/doxyfiletype-dm.ts +4 -4
  111. package/src/doxygen/data-model/doxygen-xml-parser.ts +4 -4
  112. package/src/doxygen/data-model/index/indexcompoundtype-dm.ts +4 -4
  113. package/src/doxygen/data-model/index/indexdoxygentype-dm.ts +4 -4
  114. package/src/doxygen/data-model/index/indexmembertype-dm.ts +4 -4
  115. package/src/doxygen/data-model/types.ts +4 -4
  116. package/src/doxygen/data-model/xsds/README.md +3 -3
  117. package/src/doxygen/data-model/xsds/compound.xsd +91 -2
  118. package/src/doxygen/data-model/xsds/doxyfile.xsd +11 -1
  119. package/src/doxygen/data-model/xsds/index.xsd +3 -1
  120. package/src/index.ts +10 -4
  121. package/src/tsconfig.json +3 -1
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -1859,7 +1859,7 @@ export abstract class AbstractDocInternalS4Type extends AbstractDataModelBase {
1859
1859
  // <xsd:complexType name="docInternalS5Type" mixed="true"> <-- Character data is allowed to appear between the child elements!
1860
1860
  // <xsd:sequence>
1861
1861
  // <xsd:element name="para" type="docParaType" minOccurs="0" maxOccurs="unbounded" />
1862
- // <xsd:element name="sect5" type="docSect6Type" minOccurs="0" maxOccurs="unbounded" />
1862
+ // <xsd:element name="sect6" type="docSect6Type" minOccurs="0" maxOccurs="unbounded" />
1863
1863
  // </xsd:sequence>
1864
1864
  // </xsd:complexType>
1865
1865
 
@@ -1993,6 +1993,9 @@ export abstract class AbstractDocInternalS6Type extends AbstractDataModelBase {
1993
1993
  // <xsd:element name="dot" type="docDotMscType" />
1994
1994
  // <xsd:element name="msc" type="docDotMscType" />
1995
1995
  // <xsd:element name="plantuml" type="docPlantumlType" />
1996
+
1997
+ // <xsd:element name="mermaid" type="docMermaidType" />
1998
+
1996
1999
  // <xsd:element name="anchor" type="docAnchorType" />
1997
2000
  // <xsd:element name="formula" type="docFormulaType" />
1998
2001
  // <xsd:element name="ref" type="docRefTextType" />
@@ -2990,6 +2993,9 @@ export class AbstractDocTitleType extends AbstractDataModelBase {
2990
2993
  // <xsd:element name="dot" type="docDotMscType" />
2991
2994
  // <xsd:element name="msc" type="docDotMscType" />
2992
2995
  // <xsd:element name="plantuml" type="docPlantumlType" />
2996
+
2997
+ // <xsd:element name="mermaid" type="docMermaidType" />
2998
+
2993
2999
  // <xsd:element name="anchor" type="docAnchorType" />
2994
3000
  // <xsd:element name="formula" type="docFormulaType" />
2995
3001
  // <xsd:element name="ref" type="docRefTextType" />
@@ -3265,6 +3271,7 @@ export class AbstractDocTitleType extends AbstractDataModelBase {
3265
3271
  // <xsd:element name="mscfile" type="docImageFileType" />
3266
3272
  // <xsd:element name="diafile" type="docImageFileType" />
3267
3273
  // <xsd:element name="plantumlfile" type="docImageFileType" />
3274
+ // <xsd:element name="mermaidfile" type="docImageFileType" />
3268
3275
  // <xsd:element name="toclist" type="docTocListType" />
3269
3276
  // <xsd:element name="language" type="docLanguageType" />
3270
3277
  // <xsd:element name="parameterlist" type="docParamListType" />
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -60,6 +60,10 @@ import {
60
60
  // <xsd:element name="requiresclause" type="linkedTextType" minOccurs="0" />
61
61
  // <xsd:element name="initializer" type="linkedTextType" minOccurs="0" />
62
62
  // <xsd:element name="exceptions" type="linkedTextType" minOccurs="0" />
63
+
64
+ // <xsd:element name="satisfies" type="requirementRefsType" minOccurs="0" maxOccurs="1" />
65
+ // <xsd:element name="verifies" type="requirementRefsType" minOccurs="0" maxOccurs="1" />
66
+
63
67
  // <xsd:element name="briefdescription" type="descriptionType" minOccurs="0" />
64
68
  // <xsd:element name="detaileddescription" type="descriptionType" minOccurs="0" />
65
69
  // <xsd:element name="inbodydescription" type="descriptionType" minOccurs="0" />
@@ -82,6 +86,9 @@ import {
82
86
  // <xsd:attribute name="virt" type="DoxVirtualKind" use="optional"/>
83
87
  // <xsd:attribute name="volatile" type="DoxBool" use="optional"/>
84
88
  // <xsd:attribute name="mutable" type="DoxBool" use="optional"/>
89
+
90
+ // <xsd:attribute name="thread_local" type="DoxBool" use="optional"/>
91
+
85
92
  // <xsd:attribute name="noexcept" type="DoxBool" use="optional"/>
86
93
  // <xsd:attribute name="noexceptexpression" type="xsd:string" use="optional"/>
87
94
  // <xsd:attribute name="nodiscard" type="DoxBool" use="optional"/>
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -0,0 +1,50 @@
1
+ /*
2
+ * This file is part of the xPack project (http://xpack.github.io).
3
+ * Copyright (c) 2026 Liviu Ionescu. All rights reserved.
4
+ *
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
+ *
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
+ */
11
+
12
+ // ----------------------------------------------------------------------------
13
+
14
+ // <xsd:complexType name="requirementslistType">
15
+ // <xsd:sequence>
16
+ // <xsd:element name="requirement" type="requirementType" minOccurs="1" maxOccurs="unbounded" />
17
+ // </xsd:sequence>
18
+ // </xsd:complexType>
19
+
20
+ // <xsd:complexType name="requirementType">
21
+ // <xsd:sequence>
22
+ // <xsd:element name="title" type="docTitleType" />
23
+ // <xsd:element name="location" type="locationType" />
24
+ // <xsd:element name="satisfiedby" type="compoundRefType" minOccurs="0" maxOccurs="unbounded" />
25
+ // <xsd:element name="verifiedby" type="compoundRefType" minOccurs="0" maxOccurs="unbounded" />
26
+ // </xsd:sequence>
27
+ // <xsd:attribute name="refid" type="xsd:string" />
28
+ // <xsd:attribute name="tagfile" type="xsd:string" use="optional" />
29
+ // <xsd:attribute name="page" type="xsd:string" use="optional" />
30
+ // </xsd:complexType>
31
+
32
+ // <xsd:complexType name="requirementRefsType">
33
+ // <xsd:sequence>
34
+ // <xsd:element name="requirement" type="requirementRefType" minOccurs="1" maxOccurs="unbounded"/>
35
+ // </xsd:sequence>
36
+ // </xsd:complexType>
37
+
38
+ // <xsd:complexType name="requirementRefType">
39
+ // <xsd:simpleContent>
40
+ // <xsd:extension base="xsd:string">
41
+ // <xsd:attribute name="refid" type="xsd:string" use="required"/>
42
+ // </xsd:extension>
43
+ // </xsd:simpleContent>
44
+ // </xsd:complexType>
45
+
46
+ // ----------------------------------------------------------------------------
47
+
48
+ // TODO: add content.
49
+
50
+ // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -165,7 +165,8 @@ export class TableOfContentsDataModel extends AbstractTableOfContentsType {
165
165
 
166
166
  // <xsd:complexType name="tableofcontentsKindType">
167
167
  // <xsd:sequence>
168
- // <xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
168
+ // <xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/> <!-- obsolete, use docs instead! -->
169
+ // <xsd:element name="docs" type="tableofcontentsNameType" minOccurs="1" maxOccurs="1"/>
169
170
  // <xsd:element name="reference" type="xsd:string" minOccurs="1" maxOccurs="1"/>
170
171
  // <xsd:element name="tableofcontents" type="tableofcontentsType" minOccurs="0" maxOccurs="unbounded" />
171
172
  // </xsd:sequence>
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -157,14 +157,15 @@ export class DataModel {
157
157
  // ------------------------------------------------------------------------
158
158
  // Parse the top index.xml file.
159
159
 
160
- if (!this.options.verbose) {
161
- console.log('Parsing Doxygen generated .xml files...')
162
- }
163
-
164
160
  await this.parseDoxygenIndex()
165
161
 
166
162
  assert(this.doxygenindex !== undefined)
167
163
 
164
+ if (!this.options.verbose) {
165
+ const version = this.doxygenindex.version
166
+ console.log(`Parsing .xml files generated by Doxygen ${version}...`)
167
+ }
168
+
168
169
  // ------------------------------------------------------------------------
169
170
  // Parse all compound *.xml files mentioned in the index.
170
171
 
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -2,11 +2,11 @@
2
2
  * This file is part of the xPack project (http://xpack.github.io).
3
3
  * Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
4
4
  *
5
- * Permission to use, copy, modify, and/or distribute this software
6
- * for any purpose is hereby granted, under the terms of the MIT license.
5
+ * Permission to use, copy, modify, and/or distribute this software for any
6
+ * purpose is hereby granted, under the terms of the MIT license.
7
7
  *
8
- * If a copy of the license was not distributed with this file, it can
9
- * be obtained from https://opensource.org/licenses/MIT.
8
+ * If a copy of the license was not distributed with this file, it can be
9
+ * obtained from https://opensource.org/licenses/mit.
10
10
  */
11
11
 
12
12
  // ----------------------------------------------------------------------------
@@ -1,6 +1,6 @@
1
1
  # README
2
2
 
3
- These files were generated by Doxygen 1.13.2, and are kept here to
4
- keep track of future changes.
3
+ These files were generated by Doxygen 1.17.0 and are retained here to
4
+ track future changes.
5
5
 
6
- Snippets were included as comments in each class description.
6
+ Snippets are included as comments in each class description.