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 47bb73d6 Replace some stale SVN links
47bb73d6 is described below
commit 47bb73d6c91b2490bc48b9fad6e7204b091ef3e1
Author: Sebb <[email protected]>
AuthorDate: Mon Jan 23 15:50:31 2023 +0000
Replace some stale SVN links
Moved to Git, and moved to resources
---
xdocs/jellyswing.xml | 8 ++++----
xdocs/jellyswt.xml | 2 +-
xdocs/tutorial.xml | 12 ++++++------
3 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/xdocs/jellyswing.xml b/xdocs/jellyswing.xml
index 67133c9b..a9610335 100644
--- a/xdocs/jellyswing.xml
+++ b/xdocs/jellyswing.xml
@@ -37,7 +37,7 @@
</p>
<p>
There is an example JellySwing script
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/example.jelly">here</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/swing/src/test/resources/org/apache/commons/jelly/swing/example.jelly">here</a>
</p>
<p>
To run the example type the following command (from within the
<code>jelly-tags/swing</code>
@@ -58,7 +58,7 @@
<p>
JellyRunner is a simple example Swing user interface written with
JellySwing.
You can view the source to it
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/run.jelly">here</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/swing/src/test/resources/org/apache/commons/jelly/swing/run.jelly">here</a>
</p>
<p>
If you invoke it via the following command you will get a small Swing
UI that allows you to
@@ -82,11 +82,11 @@
</p>
<p>
The demo was originally written in
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/demos/HomepageBuilder.java">Java
code</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/swing/src/test/java/org/apache/commons/jelly/demos/HomepageBuilder.java">Java
code</a>
to implement a simple Swing UI
As an experiment the same Swing user interface has been written
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/demos/homepageBuilder.jelly">as
a JellyScript</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/swing/src/test/resources/org/apache/commons/jelly/demos/homepageBuilder.jelly">as
a JellyScript</a>
as well.
While this is a fairly simple Swing UI and not a particularly great
example of the power of JellySwing,
it does highlight the main difference between the two approaches.
diff --git a/xdocs/jellyswt.xml b/xdocs/jellyswt.xml
index 26b04c9f..14fc544a 100644
--- a/xdocs/jellyswt.xml
+++ b/xdocs/jellyswt.xml
@@ -37,7 +37,7 @@
</p>
<p>
There is an example JellySWT script
- <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/jelly-tags/swt/src/test/org/apache/commons/jelly/tags/swt/example.jelly">here</a>
+ <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/swt/src/test/resources/org/apache/commons/jelly/tags/swt/example.jelly">here</a>
</p>
<p>
To try running the example, cd into the
<i>[jelly-home]/jelly-tags/swt</i> directory
diff --git a/xdocs/tutorial.xml b/xdocs/tutorial.xml
index cafc329f..baf94e96 100644
--- a/xdocs/tutorial.xml
+++ b/xdocs/tutorial.xml
@@ -105,7 +105,7 @@ application using a rich set of functions and beans exposed
via jelly tags.
<p>
To run the swing demo, go to directory jelly-tags/swing and type "maven
demo:swing"
-(View the <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/example.jelly">demo
script</a>). You should see a window open with
+(View the <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/swing/src/test/resources/org/apache/commons/jelly/swing/example.jelly">demo
script</a>). You should see a window open with
some swing components. You can test the actions by selecting a menu item or
pressing the button. The actions in this demo simply output a message to the
console. A more practical action could be to invoke a bean, call a script
@@ -113,7 +113,7 @@ that opens another window, etc.
</p>
<p>
-If you look at the <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/swing/example.jelly">jelly
code for this demo</a>, you will see
+If you look at the <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/swing/src/test/resources/org/apache/commons/jelly/swing/example.jelly">jelly
code for this demo</a>, you will see
that building a UI is pretty simple. For example, a menu bar is simply:
</p>
@@ -169,7 +169,7 @@ To start the JellyRunner type "maven jelly:runner" (View
the <a href="jelly-tags
<subsection name="Homepage Builder (JellySwing Edition)">
<p>
-This is a good chance to use the Jelly Runner. Find HomepageBuilder.jelly,
which is located in /src/test/org/apache/commons/jelly/demos/ (View the <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/demos/homepageBuilder.jelly">demo
source</a>).
+This is a good chance to use the Jelly Runner. Find HomepageBuilder.jelly,
which is located in /src/test/resouces/org/apache/commons/jelly/demos/ (View
the <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/swing/src/test/resources/org/apache/commons/jelly/demos/homepageBuilder.jelly">demo
source</a>).
</p>
<p>
@@ -219,7 +219,7 @@ When you run the program, it will open a window where you
can choose a template,
</p>
<p>
-To run the demo type "maven demo:embed" (View the <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/swing/src/test/org/apache/commons/jelly/demos/HomepageBuilder.java">demo
source</a>).
+To run the demo type "maven demo:embed" (View the <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/swing/src/test/java/org/apache/commons/jelly/demos/HomepageBuilder.java">demo
source</a>).
</p>
<p>
@@ -290,7 +290,7 @@ With the <a href="libs/jsl/tags.html">JSL tag library</a>,
you can transform XML
</p>
<p>
-To run the demo type "maven demo:jsl" (View the <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/jsl/src/test/org/apache/commons/jelly/jsl/example.jelly">demo
source</a>). The demo transforms the demo source into HTML and outputs it to
the command line, like this:
+To run the demo type "maven demo:jsl" (View the <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/jsl/src/test/resources/org/apache/commons/jelly/jsl/example.jelly">demo
source</a>). The demo transforms the demo source into HTML and outputs it to
the command line, like this:
</p>
<source>
@@ -330,7 +330,7 @@ This demo demonstrates the use the handy parse tag in the
<A HREF="libs/html/tag
</p>
<p>
-To run the demo type "maven demo:html" (View the <a
href="http://svn.apache.org/repos/asf/commons/proper/jelly/trunk/jelly-tags/html/src/test/org/apache/commons/jelly/html/example.jelly">demo
source</a>).
+To run the demo type "maven demo:html" (View the <a
href="https://github.com/apache/commons-jelly/blob/master/jelly-tags/html/src/test/resources/org/apache/commons/jelly/html/example.jelly">demo
source</a>).
</p>
<p>