This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jelly.git
The following commit(s) were added to refs/heads/master by this push:
new 849869cb Replace some stale SVN links
849869cb is described below
commit 849869cb1a5f2c2205e2b138aa1c94241bddede6
Author: Sebb <[email protected]>
AuthorDate: Mon Jan 23 15:07:41 2023 +0000
Replace some stale SVN links
Moved to Git, and moved to resources
This fixes #19
---
xdocs/jellyunit.xml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/xdocs/jellyunit.xml b/xdocs/jellyunit.xml
index c0e9b460..ff0180f9 100644
--- a/xdocs/jellyunit.xml
+++ b/xdocs/jellyunit.xml
@@ -50,18 +50,18 @@
<section name="Examples">
<p>
There is a simple example JellyUnit script
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/jelly-tags/junit/src/test/org/apache/commons/jelly/tags/junit/suite.jelly">here</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/junit/src/test/resources/org/apache/commons/jelly/tags/junit/suite.jelly">here</a>
</p>
<p>
An example demonstrating the use of the <a
href="libs/betwixt/tags.html">Betwixt</a> library is
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/betwixt/src/test/org/apache/commons/jelly/betwixt/suite.jelly">here</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/betwixt/src/test/resources/org/apache/commons/jelly/betwixt/suite.jelly">here</a>
along with a common shared test script
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/betwixt/src/test/org/apache/commons/jelly/betwixt/common.jelly">here</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/betwixt/src/test/resources/org/apache/commons/jelly/betwixt/common.jelly">here</a>
</p>
<p>
The <a href="libs/validate/tags.html">validate</a> library can be
used to perform XML validation inside JellyUnit.
For example there's an example JellyUnit script validating XML
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/validate/src/test/org/apache/commons/jelly/tags/validate/suite.jelly">here</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/validate/src/test/resources/org/apache/commons/jelly/tags/validate/suite.jelly">here</a>
</p>
</section>
@@ -84,9 +84,9 @@
</p>
<p>
There's an and example of using Mock Tags via the <a
href="libs/define/tags.html">define</a> library
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/define/src/test/org/apache/commons/jelly/tags/mock/suite.jelly">here</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/define/src/test/org/apache/commons/jelly/tags/mock/suite.jelly">here</a>
which creates the mock tags, inside a JellyUnit test case and then
invokes this example
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/define/src/test/org/apache/commons/jelly/tags/mock/service.jelly">service</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/define/src/test/org/apache/commons/jelly/tags/mock/service.jelly">service</a>
using the mock tags rather than the underlying SQL and web service
tags.
Running the same service from outside of the Mock Tags JellyUnit test
case would use the real tag implementations.
</p>
@@ -101,7 +101,7 @@
to produce a single Java class which has a static <i>suite()</i>
method to create a TestSuite object
containing all the test cases created by the JellyUnit files.
There is an
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/junit/src/test/org/apache/commons/jelly/junit/TestJUnit.java">example</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/junit/src/test/org/apache/commons/jelly/junit/TestJUnit.java">example</a>
of this in action.
</p>
<p>So if you had a test suite defined in a jelly script
<a>suite.jelly</a> in a package com.acme.foo