You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2015/03/02 06:29:45 UTC

[1/3] ant git commit: Clean up whitespace in build.xml example

Repository: ant
Updated Branches:
  refs/heads/master d11cb1454 -> b626ed991


Clean up whitespace in build.xml example


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/66adc2e3
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/66adc2e3
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/66adc2e3

Branch: refs/heads/master
Commit: 66adc2e34619ed47772a7f5bc302bf856394b8bc
Parents: d11cb14
Author: Razzi Abuissa <ra...@gmail.com>
Authored: Sun Mar 1 22:38:20 2015 -0500
Committer: Razzi Abuissa <ra...@gmail.com>
Committed: Sun Mar 1 22:38:20 2015 -0500

----------------------------------------------------------------------
 manual/using.html | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/66adc2e3/manual/using.html
----------------------------------------------------------------------
diff --git a/manual/using.html b/manual/using.html
index 653c345..3b6e85d 100644
--- a/manual/using.html
+++ b/manual/using.html
@@ -166,9 +166,9 @@ task instances at all, only proxies.
 <h3><a name="example">Example Buildfile</a></h3>
 <pre>
 &lt;project name=&quot;MyProject&quot; default=&quot;dist&quot; basedir=&quot;.&quot;&gt;
-    &lt;description&gt;
-        simple example build file
-    &lt;/description&gt;
+  &lt;description&gt;
+    simple example build file
+  &lt;/description&gt;
   &lt;!-- set global properties for this build --&gt;
   &lt;property name=&quot;src&quot; location=&quot;src&quot;/&gt;
   &lt;property name=&quot;build&quot; location=&quot;build&quot;/&gt;
@@ -182,13 +182,13 @@ task instances at all, only proxies.
   &lt;/target&gt;
 
   &lt;target name=&quot;compile&quot; depends=&quot;init&quot;
-        description=&quot;compile the source &quot; &gt;
+        description=&quot;compile the source&quot;&gt;
     &lt;!-- Compile the java code from ${src} into ${build} --&gt;
     &lt;javac srcdir=&quot;${src}&quot; destdir=&quot;${build}&quot;/&gt;
   &lt;/target&gt;
 
   &lt;target name=&quot;dist&quot; depends=&quot;compile&quot;
-        description=&quot;generate the distribution&quot; &gt;
+        description=&quot;generate the distribution&quot;&gt;
     &lt;!-- Create the distribution directory --&gt;
     &lt;mkdir dir=&quot;${dist}/lib&quot;/&gt;
 
@@ -197,7 +197,7 @@ task instances at all, only proxies.
   &lt;/target&gt;
 
   &lt;target name=&quot;clean&quot;
-        description=&quot;clean up&quot; &gt;
+        description=&quot;clean up&quot;&gt;
     &lt;!-- Delete the ${build} and ${dist} directory trees --&gt;
     &lt;delete dir=&quot;${build}&quot;/&gt;
     &lt;delete dir=&quot;${dist}&quot;/&gt;


[3/3] ant git commit: close #6

Posted by bo...@apache.org.
close #6


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/b626ed99
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/b626ed99
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/b626ed99

Branch: refs/heads/master
Commit: b626ed991a980fe583f38108144108fded3725c6
Parents: 3072293
Author: Stefan Bodewig <bo...@apache.org>
Authored: Mon Mar 2 06:29:18 2015 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Mon Mar 2 06:29:18 2015 +0100

----------------------------------------------------------------------

----------------------------------------------------------------------



[2/3] ant git commit: Fix an extra space in the

Posted by bo...@apache.org.
Fix an extra space in the <pre>


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/30722933
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/30722933
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/30722933

Branch: refs/heads/master
Commit: 3072293399420e4190764194f8fb17cc2b87fd66
Parents: 66adc2e
Author: Razzi Abuissa <ra...@gmail.com>
Authored: Sun Mar 1 22:54:52 2015 -0500
Committer: Razzi Abuissa <ra...@gmail.com>
Committed: Sun Mar 1 22:54:52 2015 -0500

----------------------------------------------------------------------
 manual/using.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/30722933/manual/using.html
----------------------------------------------------------------------
diff --git a/manual/using.html b/manual/using.html
index 3b6e85d..4adb38b 100644
--- a/manual/using.html
+++ b/manual/using.html
@@ -172,7 +172,7 @@ task instances at all, only proxies.
   &lt;!-- set global properties for this build --&gt;
   &lt;property name=&quot;src&quot; location=&quot;src&quot;/&gt;
   &lt;property name=&quot;build&quot; location=&quot;build&quot;/&gt;
-  &lt;property name=&quot;dist&quot;  location=&quot;dist&quot;/&gt;
+  &lt;property name=&quot;dist&quot; location=&quot;dist&quot;/&gt;
 
   &lt;target name=&quot;init&quot;&gt;
     &lt;!-- Create the time stamp --&gt;