bodewig 00/08/11 07:18:05
Modified: docs index.html
Log:
Fixed typo and changed second <script> example to use NetRexx.
Revision Changes Path
1.81 +6 -5 jakarta-ant/docs/index.html
Index: index.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/index.html,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- index.html 2000/08/11 13:58:29 1.80
+++ index.html 2000/08/11 14:18:04 1.81
@@ -664,7 +664,7 @@
If you do not want these default excludes applied, you may disable them with
the
<code>defaultexcludes="no"</code> attribute.</p>
<h3><a name="patternset">PatternSets</a></h3>
-<p>Patterns can be group to sets and later be referenced by their id
+<p>Patterns can be grouped to sets and later be referenced by their id
attribute. They are defined via a <code>patternset</code> element -
which can currently only appear nested into a <a
href="#fileset">FileSet</a> or a directory based task that constitutes
@@ -4414,7 +4414,8 @@
BUILD SUCCESSFUL
</pre></blockquote>
-<p>Another example, using <a href="#references">references by id</a>.</p>
+<p>Another example, using <a href="#references">references by id</a>
+and two different scripting languages:</p>
<blockquote><pre>
<project name="testscript" default="main">
<target name="sub">
@@ -4422,9 +4423,9 @@
</target>
<target name="sub1">
- <script language="javascript"><![CDATA[
- theEcho.setMessage("In sub1");
- sub.execute();
+ <script language="netrexx"><![CDATA[
+ theEcho.setMessage("In sub1")
+ sub.execute
]]></script>
</target>