Skip to content

Commit

Permalink
[fix] use ex-parse 0.7.12
Browse files Browse the repository at this point in the history
  • Loading branch information
apb2006 committed Sep 20, 2022
1 parent 84f8ab4 commit 07e65e6
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 22 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ The code to be processed must be syntactically valid from the perspective of the

## Usage

XQDocA uses XML files to define the documentation task. These typically use the extension `.xqdoca`
`xqdoca -h` will display a summary of the options.

XQDocA uses XML files to define documentation tasks. These typically use the extension `.xqdoca`

For example the file `samples/dba.xqdoca`
```xml
Expand All @@ -46,9 +48,11 @@ For example the file `samples/dba.xqdoca`
Then `xqdoca samples/dba.xqdoca` will generate documentation for XQuery sources below `C:\Users\andy\basex.home\basex.951\webapp\dba` and write it to
`file:///tmp/dba/`

If `source` or `target` are relative urls they are resolved relative to the xqdoca file location.
If `source` or `target` are relative urls they are resolved relative to the xqdoca file location. Additional elements can be used to control the generated outputs. Such as which renderers to run.
Options not specified in the .xqdoca file are taken from [config.xqdoca](src/main/config.xqdoca)



`xqdoca -h` will display a summary of the options.



Expand Down
4 changes: 2 additions & 2 deletions src/main/expath-pkg.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- semver from https://exist-db.org/exist/apps/doc/repo-->
<package abbrev="xqdoca" name="https://github.com/Quodatum/xqdoca"
version="0.7.0" spec="1.0" xmlns="http://expath.org/ns/pkg">
version="0.7.1" spec="1.0" xmlns="http://expath.org/ns/pkg">
<title>XQdocA - XQuery code documentation generator</title>
<dependency processor="http://basex.org/" semver-min="9.5.1" semver-max="9.99.99"/>
<dependency name="http://expkg-zone58.github.io/ex-xparse" semver-min="0.7.10" />
<dependency name="http://expkg-zone58.github.io/ex-xparse" semver-min="0.7.12" />
</package>
19 changes: 14 additions & 5 deletions src/main/lib/repositories.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
<!-- where to find packages -->
<repositories>
<repository xml:base="https://github.com/expkg-zone58/ex-xparse/releases/download/">
<package name="http://expkg-zone58.github.io/ex-xparse">
<release version="0.7.10">v0.7.10/ex-xparse-0.7.10.xar</release>
<release version="0.7.8">v0.7.8/ex-xparse-0.7.8.xar</release>
</package>
<repository>

<package name="http://expkg-zone58.github.io/ex-xparse" xml:base="https://github.com/expkg-zone58/ex-xparse/releases/download/">
<release version="0.7.12">v0.7.12/ex-xparse-0.7.12.xar</release>
<release version="0.7.8">v0.7.8/ex-xparse-0.7.8.xar</release>
</package>

<package name="http://line-o.de/xq/xbow" xml:base="https://github.com/line-o/xbow/releases/download/">
<release version="2.2.0">v2.2.0/xbow-2.2.0.xar</release>
</package>

<package name="http://github.com/Schematron/schematron-basex" xml:base="https://github.com/Schematron/schematron-basex/raw/master/dist/schematron-basex-1.2.xar">
<release version="1.2.0">raw/master/dist/schematron-basex-1.2.xar</release>
</package>
</repository>
</repositories>
4 changes: 4 additions & 0 deletions src/main/lib/resources/prism/1.29.0/prism.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 07e65e6

Please sign in to comment.