Author: bodewig
Date: Thu Aug 24 20:46:29 2006
New Revision: 436633
URL: http://svn.apache.org/viewvc?rev=436633&view=rev
Log:
re-generate site
Modified:
ant/core/trunk/docs/antlibs/antunit/index.html
ant/core/trunk/docs/antlibs/dotnet/index.html
ant/core/trunk/docs/external.html
ant/core/trunk/docs/manual/CoreTasks/diagnostics.html
ant/core/trunk/docs/manual/CoreTasks/java.html
ant/core/trunk/docs/manual/CoreTasks/style.html
ant/core/trunk/docs/manual/CoreTasks/subant.html
ant/core/trunk/docs/manual/listeners.html
Modified: ant/core/trunk/docs/antlibs/antunit/index.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/antlibs/antunit/index.html?rev=436633&r1=436632&r2=436633&view=diff
==============================================================================
--- ant/core/trunk/docs/antlibs/antunit/index.html (original)
+++ ant/core/trunk/docs/antlibs/antunit/index.html Thu Aug 24 20:46:29 2006
@@ -247,9 +247,10 @@
interface that can be used to record test results. The
<antunit> task accepts arbitrary many listeners and
relays test results to them.</p>
- <p>Currently only a single implementation
- <code><plainlistener></code> modelled after the "plain"
- JUnit listener is bundled with the library.</p>
+ <p>Currently two implementations -
+ <code><plainlistener></code> and <code>xmllistener</code>
+ modelled after the "plain" and "xml"
+ JUnit listeners - are bundled with the library.</p>
<h3 class="section">
<a name="Examples"></a>
Examples
@@ -263,7 +264,7 @@
<property name="foo" value="foo"/>
</target>
- <!-- is called after the test, if if that causes an error -->
+ <!-- is called after the test, even if that caused an error -->
<target name="tearDown">
<delete file="${foo}" quiet="true"/>
</target>
Modified: ant/core/trunk/docs/antlibs/dotnet/index.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/antlibs/dotnet/index.html?rev=436633&r1=436632&r2=436633&view=diff
==============================================================================
--- ant/core/trunk/docs/antlibs/dotnet/index.html (original)
+++ ant/core/trunk/docs/antlibs/dotnet/index.html Thu Aug 24 20:46:29 2006
@@ -126,6 +126,9 @@
<p>Based on this a few tasks to run well known .NET
utilities
from within Ant are provided, namely tasks to run <a href="http://www.nunit.org/">NUnit</a>,
<a href="http://nant.sf.net/">NAnt</a>, <a href="http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=27&SiteID=1">MSBuild</a>
and the <a href="http://wix.sf.net/">Wix</a> toolkit.</p>
+ <p>The initial .NET tasks of Ant (compiler tasks for
C#, J# and VB.NET
+ for example) have also been moved to this Antlib and will see further
+ development here.</p>
<h3 class="section">
<a name="Tasks"></a>
Tasks
Modified: ant/core/trunk/docs/external.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/external.html?rev=436633&r1=436632&r2=436633&view=diff
==============================================================================
--- ant/core/trunk/docs/external.html (original)
+++ ant/core/trunk/docs/external.html Thu Aug 24 20:46:29 2006
@@ -6413,7 +6413,7 @@
</th>
<td colspan="1" rowspan="1"
valign="top" align="left">
- bundles Ant 1.6.2 as of NetBeans 4.1; 1.6.5 for NetBeans 5.0
+ bundles 1.6.5 for NetBeans 5.0 and 5.5
</td>
</tr>
<tr>
@@ -6443,7 +6443,7 @@
</th>
<td colspan="1" rowspan="1"
valign="top" align="left">
- Sun Public License
+ Common Development and Distribution License
</td>
</tr>
</table>
Modified: ant/core/trunk/docs/manual/CoreTasks/diagnostics.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/CoreTasks/diagnostics.html?rev=436633&r1=436632&r2=436633&view=diff
==============================================================================
--- ant/core/trunk/docs/manual/CoreTasks/diagnostics.html (original)
+++ ant/core/trunk/docs/manual/CoreTasks/diagnostics.html Thu Aug 24 20:46:29 2006
@@ -1,34 +1,34 @@
-<html>
-
-<head>
-<meta http-equiv="Content-Language" content="en-us">
-<link rel="stylesheet" type="text/css" href="../stylesheets/style.css">
-<title>Diagnostics Task</title>
-</head>
-
-<body>
-
-<h2><a name="echo">Diagnostics</a></h2>
-<h3>Diagnostics</h3>
-<p>
-
-Runs Ant's <code>-diagnostics</code> code inside Ant itself. This is good for
-debugging Ant's configuration under an IDE.
-
-<h3>Examples</h3>
-
-<pre>
- <target name="diagnostics" description="diagnostics">
- <diagnostics/>
- </target>
-</pre>
-
-<p>
- Prints out the current diagnostics dump.
-</p>
-<hr>
-<p align="center">Copyright © 2006 The Apache Software Foundation. All rights
-Reserved.</p>
-
-</body>
-</html>
+<html>
+
+<head>
+<meta http-equiv="Content-Language" content="en-us">
+<link rel="stylesheet" type="text/css" href="../stylesheets/style.css">
+<title>Diagnostics Task</title>
+</head>
+
+<body>
+
+<h2><a name="echo">Diagnostics</a></h2>
+<h3>Diagnostics</h3>
+<p>
+
+Runs Ant's <code>-diagnostics</code> code inside Ant itself. This is good for
+debugging Ant's configuration under an IDE.
+
+<h3>Examples</h3>
+
+<pre>
+ <target name="diagnostics" description="diagnostics">
+ <diagnostics/>
+ </target>
+</pre>
+
+<p>
+ Prints out the current diagnostics dump.
+</p>
+<hr>
+<p align="center">Copyright © 2006 The Apache Software Foundation. All rights
+Reserved.</p>
+
+</body>
+</html>
Modified: ant/core/trunk/docs/manual/CoreTasks/java.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/CoreTasks/java.html?rev=436633&r1=436632&r2=436633&view=diff
==============================================================================
--- ant/core/trunk/docs/manual/CoreTasks/java.html (original)
+++ ant/core/trunk/docs/manual/CoreTasks/java.html Thu Aug 24 20:46:29 2006
@@ -378,4 +378,4 @@
Reserved.</p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: ant/core/trunk/docs/manual/CoreTasks/style.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/CoreTasks/style.html?rev=436633&r1=436632&r2=436633&view=diff
==============================================================================
--- ant/core/trunk/docs/manual/CoreTasks/style.html (original)
+++ ant/core/trunk/docs/manual/CoreTasks/style.html Thu Aug 24 20:46:29 2006
@@ -463,4 +463,4 @@
Reserved.</p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: ant/core/trunk/docs/manual/CoreTasks/subant.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/CoreTasks/subant.html?rev=436633&r1=436632&r2=436633&view=diff
==============================================================================
--- ant/core/trunk/docs/manual/CoreTasks/subant.html (original)
+++ ant/core/trunk/docs/manual/CoreTasks/subant.html Thu Aug 24 20:46:29 2006
@@ -585,4 +585,4 @@
</table>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: ant/core/trunk/docs/manual/listeners.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/listeners.html?rev=436633&r1=436632&r2=436633&view=diff
==============================================================================
--- ant/core/trunk/docs/manual/listeners.html (original)
+++ ant/core/trunk/docs/manual/listeners.html Thu Aug 24 20:46:29 2006
@@ -395,4 +395,4 @@
Reserved.</p>
</body>
-</html>
\ No newline at end of file
+</html>
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org
|