jstrachan 02/04/25 09:35:56
Modified: jelly PROPOSAL.html STATUS.html
jelly/src/java/org/apache/commons/jelly jelly.properties
jelly/src/test/org/apache/commons/jelly example.jelly
example2.jelly example3.jelly hello_world.jelly
show_properties.jelly testing123.jelly
Log:
Patched the examples to use the core tags
Revision Changes Path
1.5 +1 -1 jakarta-commons-sandbox/jelly/PROPOSAL.html
Index: PROPOSAL.html
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/jelly/PROPOSAL.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- PROPOSAL.html 24 Apr 2002 11:59:12 -0000 1.4
+++ PROPOSAL.html 25 Apr 2002 16:35:55 -0000 1.5
@@ -10,7 +10,7 @@
<h3>(0) Rationale</h3>
-<p>The <em>Jelly</em> is an XML based scripting and processing engine. Jelly
borrows many
+<p><em>Jelly</em> is an XML based scripting and processing engine. Jelly borrows
many
good ideas from both JSP custom tags, Velocity, Cocoon, XMLC and the
scripting engine inside XDoclet. Jelly can be used from the command line, inside
Ant or inside a Servlet.
1.4 +3 -3 jakarta-commons-sandbox/jelly/STATUS.html
Index: STATUS.html
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/jelly/STATUS.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- STATUS.html 24 Apr 2002 11:59:12 -0000 1.3
+++ STATUS.html 25 Apr 2002 16:35:55 -0000 1.4
@@ -7,7 +7,7 @@
<div align="center">
<h1>The Jakarta Commons <em>Jelly</em> Package</h1>
-$Id: STATUS.html,v 1.3 2002/04/24 11:59:12 jstrachan Exp $<br>
+$Id: STATUS.html,v 1.4 2002/04/25 16:35:55 jstrachan Exp $<br>
<a href="#Introduction">[Introduction]</a>
<a href="#Dependencies">[Dependencies]</a>
<a href="#Release Info">[Release Info]</a>
@@ -20,8 +20,8 @@
<a name="Introduction"></a>
<h3>1. INTRODUCTION</h3>
-<p>The <em>Jelly</em> is an XML based scripting and processing engine. Jelly
borrows many
-good ideas from both JSP custom tags, Velocity, Cocoon, XMLC and the
+<p><em>Jelly</em> is an XML based scripting and processing engine. Jelly borrows
many
+good ideas from both JSP custom tags, Velocity, Cocoon and the
scripting engine inside XDoclet. Jelly can be used from the command line, inside
Ant or inside a Servlet.
</p>
1.3 +1 -0
jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/jelly.properties
Index: jelly.properties
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/jelly.properties,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- jelly.properties 7 Mar 2002 03:57:12 -0000 1.2
+++ jelly.properties 25 Apr 2002 16:35:55 -0000 1.3
@@ -1,4 +1,5 @@
# register the default tag libraries with an abbreviated name
+core = org.apache.commons.jelly.tags.core.CoreTagLibrary
beanshell = org.apache.commons.jelly.tags.beanshell.BeanShellTagLibrary
bsf = org.apache.commons.jelly.tags.bsf.BSFTagLibrary
javascript = org.apache.commons.jelly.tags.bsf.JavaScriptTagLibrary
1.4 +1 -1
jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/example.jelly
Index: example.jelly
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/example.jelly,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- example.jelly 7 Mar 2002 02:46:04 -0000 1.3
+++ example.jelly 25 Apr 2002 16:35:55 -0000 1.4
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
-<j:jelly xmlns:j="jelly:beanshell" xmlns:x="jelly:xml">
+<j:jelly xmlns:j="jelly:core" xmlns:x="jelly:xml">
<x:parse var="doc">
<html>
<title>It works!</title>
1.3 +1 -1
jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/example2.jelly
Index: example2.jelly
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/example2.jelly,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- example2.jelly 7 Mar 2002 02:46:04 -0000 1.2
+++ example2.jelly 25 Apr 2002 16:35:55 -0000 1.3
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
-<j:jelly xmlns:j="jelly:beanshell" xmlns:x="jelly:xml">
+<j:jelly xmlns:j="jelly:core" xmlns:x="jelly:xml">
<x:parse var="doc">
<web-app>
<servlet>
1.3 +1 -1
jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/example3.jelly
Index: example3.jelly
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/example3.jelly,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- example3.jelly 7 Mar 2002 02:46:04 -0000 1.2
+++ example3.jelly 25 Apr 2002 16:35:55 -0000 1.3
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
-<jelly xmlns="jelly:beanshell">
+<jelly xmlns="jelly:core">
<!-- a really silly way to do this but -->
<!-- this should test the choose/when/otherwise tags -->
<forEach var="iter" items="System.getProperties()">
1.3 +1 -1
jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/hello_world.jelly
Index: hello_world.jelly
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/hello_world.jelly,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hello_world.jelly 7 Mar 2002 02:46:04 -0000 1.2
+++ hello_world.jelly 25 Apr 2002 16:35:55 -0000 1.3
@@ -1,4 +1,4 @@
<?xml version="1.0"?>
-<j:jelly xmlns:j="jelly:beanshell">
+<j:jelly xmlns:j="jelly:core">
Hello World!
</j:jelly>
1.3 +1 -1
jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/show_properties.jelly
Index: show_properties.jelly
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/show_properties.jelly,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- show_properties.jelly 7 Mar 2002 02:46:04 -0000 1.2
+++ show_properties.jelly 25 Apr 2002 16:35:55 -0000 1.3
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
-<j:jelly xmlns:j="jelly:beanshell">
+<j:jelly xmlns:j="jelly:core">
<html>
<body>
<h1>System properties</h1>
1.4 +1 -1
jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/testing123.jelly
Index: testing123.jelly
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/testing123.jelly,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- testing123.jelly 7 Mar 2002 02:46:04 -0000 1.3
+++ testing123.jelly 25 Apr 2002 16:35:55 -0000 1.4
@@ -1,4 +1,4 @@
<?xml version="1.0"?>
-<j:jelly xmlns:j="jelly:beanshell">
+<j:jelly xmlns:j="jelly:core">
<j:forEach var="arg" items="args"><j:expr value="arg"/> </j:forEach>
</j:jelly>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>