jcastura 00/12/01 22:00:07
Modified: examples README.txt
Log:
velocity jar is now 0.7
Revision Changes Path
1.3 +6 -6 jakarta-velocity/examples/README.txt
Index: README.txt
===================================================================
RCS file: /home/cvs/jakarta-velocity/examples/README.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- README.txt 2000/11/02 16:10:26 1.2
+++ README.txt 2000/12/02 06:00:07 1.3
@@ -1,11 +1,11 @@
Welcome to Velocity!
-This directory contains to demonstrations of how the Velocity template engine
+The files in this directory demonstrate how the Velocity template engine
can be used.
-1) Example.java : This is a simple example to show how to use the Velocity
Template Engine
-in a standalone program. It should be pre-compiled for you, so to run it using the
example
-template provided (example.vm) :
+1) Example.java: This simple example shows how to use the Velocity Template Engine
+in a standalone program. It should be pre-compiled for you. Run it using the
example
+template provided (example.vm):
./test.sh
@@ -14,13 +14,13 @@
If you wish to recompile the example, remember to include the velocity jar in your
classpath, or
just specify it on the command line :
- javac -classpath .:../bin/velocity-0.4.jar Example.java
+ javac -classpath .:../bin/velocity-0.7.jar Example.java
(If there is a problem, make sure that the filename of the velocity jar hasn't
changed. We can
be forgetful at times :)
-2) SimpleServlet.java : This is a simple example of how Velocity can be used with
your favorite servlet
+2) SimpleServlet.java: This is a simple example of how Velocity can be used with
your favorite servlet
engine. <need to review the code - gmj>