You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by an...@apache.org on 2011/01/07 14:49:19 UTC

svn commit: r1056313 - in /ant/core/trunk: CONTRIBUTORS contributors.xml src/script/complete-ant-cmd.pl

Author: antoine
Date: Fri Jan  7 13:49:18 2011
New Revision: 1056313

URL: http://svn.apache.org/viewvc?rev=1056313&view=rev
Log:
update of complete-ant-cmd.pl suggested by Ondra Medeksee http://mail-archives.apache.org/mod_mbox/ant-user/201101.mbox/%3CAANLkTinbngSscXy5nAQJaCRQPcVHJQqRJSyuzdneyene@mail.gmail.com%3E

Modified:
    ant/core/trunk/CONTRIBUTORS
    ant/core/trunk/contributors.xml
    ant/core/trunk/src/script/complete-ant-cmd.pl

Modified: ant/core/trunk/CONTRIBUTORS
URL: http://svn.apache.org/viewvc/ant/core/trunk/CONTRIBUTORS?rev=1056313&r1=1056312&r2=1056313&view=diff
==============================================================================
--- ant/core/trunk/CONTRIBUTORS (original)
+++ ant/core/trunk/CONTRIBUTORS Fri Jan  7 13:49:18 2011
@@ -245,6 +245,7 @@ Nico Seessle
 Nigel Magnay
 Oliver Merkel
 Oliver Rossmueller
+Ondra Medek
 Omer Shapira
 Oystein Gisnas
 Patrick C. Beard

Modified: ant/core/trunk/contributors.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/contributors.xml?rev=1056313&r1=1056312&r2=1056313&view=diff
==============================================================================
--- ant/core/trunk/contributors.xml (original)
+++ ant/core/trunk/contributors.xml Fri Jan  7 13:49:18 2011
@@ -1013,6 +1013,10 @@
     <last>Shapira</last>
   </name>
   <name>
+    <first>Ondra</first>
+    <last>Medek</last>
+  </name>
+  <name>
     <first>&#216;ystein</first>
     <last>Gisn&#229;s</last>
   </name>

Modified: ant/core/trunk/src/script/complete-ant-cmd.pl
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/script/complete-ant-cmd.pl?rev=1056313&r1=1056312&r2=1056313&view=diff
==============================================================================
--- ant/core/trunk/src/script/complete-ant-cmd.pl (original)
+++ ant/core/trunk/src/script/complete-ant-cmd.pl Fri Jan  7 13:49:18 2011
@@ -19,7 +19,7 @@
 #
 # To install for Bash 2.0 or better, add the following to ~/.bashrc:
 # 
-#     $ complete -C complete-ant-cmd ant build.sh
+#     complete -C complete-ant-cmd.pl ant build.sh
 #
 # To install for Z-Shell 2.5 or better, add the following to ~/.zshrc:
 #
@@ -27,7 +27,7 @@
 #         local args_line args
 #         read -l args_line
 #         set -A args $args_line
-#         set -A reply $(COMP_LINE=$args_line complete-ant-cmd ${args[1]} $1)
+#         set -A reply $(COMP_LINE=$args_line complete-ant-cmd.pl ${args[1]} $1)
 #     }
 #     compctl -K ant_complete ant build.sh
 #