diff --git a/xdoc/xdocs/changes.xml b/xdoc/xdocs/changes.xml index 779affaa..563a6f2a 100644 --- a/xdoc/xdocs/changes.xml +++ b/xdoc/xdocs/changes.xml @@ -27,6 +27,7 @@
xdoc:validate.The following tag libraries and tags are provided by this plugin.
+Deregister a report from xdoc.
+| Attribute | Optional? | Description |
|---|---|---|
| name | +No | +Report to deregister, must be same as name used to register. | +
A tag to register a report with xdoc.
+| Attribute | Optional? | Description |
|---|---|---|
| name | +No | +The name of the report to register. | +
| pluginName | +No | +The name of the plugin. the plugin:report goal must exist | +
| description | +Yes | +A text description of the report. | +
| link | +No | +The nav-bar link for this report. | +
| target | +Yes | +The target for the new page (_self, _blank, ...). | +
Calls org.apache.maven.util.DVSLFormatter
+| Attribute | Optional? | Description |
|---|---|---|
| string | +No | +The string to format. | +
| pattern | +No | +The pattern. | +
+ Basic tag for performing arbitrary jsl transformations + on arbitrary jsl inputs. +
+| Attribute | Optional? | Description |
|---|---|---|
| input | +Yes | +The input file. | +
| output | +No | +The output file. | +
| stylesheet | +No | +The stylesheet to use in the transformation. | +
| encoding | +Yes | +The encoding of the output file. | +
| omitXmlDeclaration | +Yes | ++ |
| outputMode | +No | ++ |
| prettyPrint | +Yes | ++ |
+ This tag has a lot of defaults suitable for transforming + documents easily. +
+| Attribute | Optional? | Description |
|---|---|---|
| input | +Yes | +The input file. | +
| outputDirectory | +Yes | +Will be placed under ${maven.gen.docs}. |
+
| stylesheet | +No | +The stylesheet to use in the transformation. | +
| encoding | +Yes | +Defaults to ${maven.docs.outputencoding}. |
+
| omitXmlDeclaration | +Yes | +Defaults to ${maven.docs.omitXmlDeclaration}. |
+
| outputMode | +No | ++ |
| prettyPrint | +Yes | ++ |
Used to generate the links in the navigation bar.
+| Attribute | Optional? | Description |
|---|---|---|
| link | +No | +The link URL. | +
| relativePath | +Yes | +The relative path to the link location. | +
| name | +No | +The name of the link. | +
| img | +Yes | +An optional image to display instead of the link name. | +
| state | +Yes | +expanded | collapsed | none. | +
| target | +Yes | ++ |
Wraps a text in a CDATA section.
+| Attribute | Optional? | Description |
|---|---|---|
| output | +No | +The output file. | +
| title | +Yes | +The title for the page. | +
| section | +Yes | +The section heading. | +
| encoding | +Yes | +Defaults to ${maven.docs.outputencoding}. |
+
| preamble | +Yes | +Placed in paragraph block prior to text. | +
| inputText | +No | +Will be wrapped in a CDATA, will not escape CDATA tags (as yet). | +
| inputFile | +Yes | +Will be read in and wrapped in CDATA. Overrides inputText if set. | +
Alternator for row style in a table.
++ Generates the JSL files on the given srcdir attribute depending on + the locale wanted. +
+| Attribute | Optional? | Description |
|---|---|---|
| srcdir | +No | +
+ Input will be read from ${srcdir}/${locale}
+ and put into ${destdir}/${locale} for every locale
+ defined (except the default locale).
+ |
+
Generates the JSL files on the given srcdir attribute.
+| Attribute | Optional? | Description |
|---|---|---|
| srcdir | +No | +The input directory. | +
Generates the JSL files on the given srcdir attribute.
+| Attribute | Optional? | Description |
|---|---|---|
| srcdir | +No | +The input directory. | +
| destdir | +No | +The output directory. | +
+ Transforms files in the given dir using the site stylesheet and
+ navigation and place them in maven.docs.dest
+ (typically target/docs).
+
| Attribute | Optional? | Description |
|---|---|---|
| srcdir | +No | +The input directory. | +
+ Escapes a string for generating a valid name token + (needed for "name" attribute in html anchors). + Replaces the characters " .,;!?/'\()[]{}+*°" by an underscore. +
+| Attribute | Optional? | Description |
|---|---|---|
| value | +No | +The string to be escaped. | +