This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-build-plugin.git
The following commit(s) were added to refs/heads/master by this push: new a390911 Migrate some XML temlates to xdoc-2.0.xsd. a390911 is described below commit a3909110d5824aab44e9d1513fe2a419f63310d1 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jan 14 09:43:30 2025 -0500 Migrate some XML temlates to xdoc-2.0.xsd. --- src/changes/changes.xml | 4 ++++ .../commons-xdoc-templates/issue-tracking-template.xml | 10 ++++++---- .../resources/commons-xdoc-templates/mail-lists-template.xml | 10 ++++++---- .../commons-xdoc-templates/no-download-page-template.xml | 4 +++- .../commons-xdoc-templates/sandbox-issue-tracking-template.xml | 10 ++++++---- 5 files changed, 25 insertions(+), 13 deletions(-) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 4fc8d7a..c9cabdd 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -28,6 +28,10 @@ <body> <release version="1.15.1" date="YYYY-MM-DD" description="This is a feature and maintenance release. Java 8 or later is required."> <!-- FIX --> + <action dev="ggregory" type="fix" due-to="Gary Gregory">Migrate issue-tracking-template.xml to xdoc-2.0.xsd.</action> + <action dev="ggregory" type="fix" due-to="Gary Gregory">Migrate mail-lists-template.xml to xdoc-2.0.xsd.</action> + <action dev="ggregory" type="fix" due-to="Gary Gregory">Migrate no-download-page-template.xml to xdoc-2.0.xsd.</action> + <action dev="ggregory" type="fix" due-to="Gary Gregory">Migrate sandbox-issue-tracking-template.xml to xdoc-2.0.xsd.</action> <!-- ADD --> <!-- UPDATE --> </release> diff --git a/src/main/resources/commons-xdoc-templates/issue-tracking-template.xml b/src/main/resources/commons-xdoc-templates/issue-tracking-template.xml index bce9906..12bd5dd 100644 --- a/src/main/resources/commons-xdoc-templates/issue-tracking-template.xml +++ b/src/main/resources/commons-xdoc-templates/issue-tracking-template.xml @@ -41,7 +41,9 @@ limitations under the License. | | +======================================================================+ --> -<document> +<document xmlns="http://maven.apache.org/XDOC/2.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd"> <properties> <title>@NAME@ Issue tracking</title> <author email="d...@commons.apache.org">Apache Commons Documentation Team</author> @@ -64,6 +66,7 @@ limitations under the License. <p> If you would like to report a bug, or raise an enhancement request with @NAME@ please do the following: + </p> <ol> <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=@JIRA_PID@&sorter/field=issuekey&sorter/order=DESC&status=1&status=3&status=4">Search existing open bugs</a>. If you find your issue listed then please add a comment with your details.</li> @@ -73,16 +76,15 @@ limitations under the License. <li>Submit either a <a href="https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=@JIRA_PID@&issuetype=1&priority=4&assignee=-1">bug report</a> or <a href="https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=@JIRA_PID@&issuetype=4&priority=4&assignee=-1">enhancement request</a>.</li> </ol> - </p> <p> Please also remember these points: + </p> <ul> <li>the more information you provide, the better we can help you</li> <li>test cases are vital, particularly for any proposed enhancements</li> <li>the developers of @NAME@ are all unpaid volunteers</li> </ul> - </p> <p> For more information on creating patches see the @@ -91,12 +93,12 @@ limitations under the License. <p> You may also find these links useful: + </p> <ul> <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=@JIRA_PID@&sorter/field=issuekey&sorter/order=DESC&status=1&status=3&status=4">All Open @NAME@ bugs</a></li> <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=@JIRA_PID@&sorter/field=issuekey&sorter/order=DESC&status=5&status=6">All Resolved @NAME@ bugs</a></li> <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=@JIRA_PID@&sorter/field=issuekey&sorter/order=DESC">All @NAME@ bugs</a></li> </ul> - </p> </section> </body> </document> diff --git a/src/main/resources/commons-xdoc-templates/mail-lists-template.xml b/src/main/resources/commons-xdoc-templates/mail-lists-template.xml index d719618..037c739 100644 --- a/src/main/resources/commons-xdoc-templates/mail-lists-template.xml +++ b/src/main/resources/commons-xdoc-templates/mail-lists-template.xml @@ -39,7 +39,9 @@ limitations under the License. | | +======================================================================+ --> -<document> +<document xmlns="http://maven.apache.org/XDOC/2.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd"> <properties> <title>@NAME@ Mailing Lists</title> <author email="d...@commons.apache.org">Apache Commons Documentation Team</author> @@ -53,10 +55,10 @@ limitations under the License. To make it easier for people to only read messages related to components they are interested in, the convention in Commons is to prefix the subject line of messages with the component's name, for example: - <ul> - <li>[@ID@] Problem with the ...</li> - </ul> </p> + <ul> + <li>[@ID@] Problem with the ...</li> + </ul> <p> Questions related to the usage of @NAME@ should be posted to the <a href="https://lists.apache.org/list.html?u...@commons.apache.org">User List</a>. diff --git a/src/main/resources/commons-xdoc-templates/no-download-page-template.xml b/src/main/resources/commons-xdoc-templates/no-download-page-template.xml index e3e94b8..a4e6aee 100644 --- a/src/main/resources/commons-xdoc-templates/no-download-page-template.xml +++ b/src/main/resources/commons-xdoc-templates/no-download-page-template.xml @@ -40,7 +40,9 @@ limitations under the License. | | +======================================================================+ --> -<document> +<document xmlns="http://maven.apache.org/XDOC/2.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd"> <properties> <title>Download @NAME@</title> <author email="d...@commons.apache.org">Apache Commons Documentation Team</author> diff --git a/src/main/resources/commons-xdoc-templates/sandbox-issue-tracking-template.xml b/src/main/resources/commons-xdoc-templates/sandbox-issue-tracking-template.xml index 4070961..5e8ab0c 100644 --- a/src/main/resources/commons-xdoc-templates/sandbox-issue-tracking-template.xml +++ b/src/main/resources/commons-xdoc-templates/sandbox-issue-tracking-template.xml @@ -39,7 +39,9 @@ limitations under the License. | | +======================================================================+ --> -<document> +<document xmlns="http://maven.apache.org/XDOC/2.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd"> <properties> <title>@NAME@ Issue tracking</title> <author email="d...@commons.apache.org">Apache Commons Documentation Team</author> @@ -62,6 +64,7 @@ limitations under the License. <p> If you would like to report a bug, or raise an enhancement request with @NAME@ please do the following: + </p> <ol> <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310491&component=@JIRA_COMPONENTID@&sorter/field=issuekey&sorter/order=DESC&status=1&status=3&status=4">Search existing open bugs</a>. If you find your issue listed then please add a comment with your details.</li> @@ -71,16 +74,15 @@ limitations under the License. <li>Submit either a <a href="https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310491&components=@JIRA_COMPONENTID@&issuetype=1&priority=4&assignee=-1">bug report</a> or <a href="https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310491&components=@JIRA_COMPONENTID@&issuetype=4&priority=4&assignee=-1">enhancement request</a>.</li> </ol> - </p> <p> Please also remember these points: + </p> <ul> <li>the more information you provide, the better we can help you</li> <li>test cases are vital, particularly for any proposed enhancements</li> <li>the developers of @NAME@ are all unpaid volunteers</li> </ul> - </p> <p> For more information on creating patches see the @@ -89,12 +91,12 @@ limitations under the License. <p> You may also find these links useful: + </p> <ul> <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310491&component=@JIRA_COMPONENTID@&sorter/field=issuekey&sorter/order=DESC&status=1&status=3&status=4">All Open @NAME@ bugs</a></li> <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310491&component=@JIRA_COMPONENTID@&sorter/field=issuekey&sorter/order=DESC&status=5&status=6">All Resolved @NAME@ bugs</a></li> <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310491&component=@JIRA_COMPONENTID@&sorter/field=issuekey&sorter/order=DESC">All @NAME@ bugs</a></li> </ul> - </p> </section> </body> </document>