You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by sg...@apache.org on 2010/09/15 21:47:09 UTC

svn commit: r997475 - in /commons/proper/exec/trunk/src: changes/changes.xml site/apt/commandline.apt site/apt/index.apt site/apt/tutorial.apt

Author: sgoeschl
Date: Wed Sep 15 19:47:09 2010
New Revision: 997475

URL: http://svn.apache.org/viewvc?rev=997475&view=rev
Log:
Updating documentation

Modified:
    commons/proper/exec/trunk/src/changes/changes.xml
    commons/proper/exec/trunk/src/site/apt/commandline.apt
    commons/proper/exec/trunk/src/site/apt/index.apt
    commons/proper/exec/trunk/src/site/apt/tutorial.apt

Modified: commons/proper/exec/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/changes/changes.xml?rev=997475&r1=997474&r2=997475&view=diff
==============================================================================
--- commons/proper/exec/trunk/src/changes/changes.xml (original)
+++ commons/proper/exec/trunk/src/changes/changes.xml Wed Sep 15 19:47:09 2010
@@ -60,6 +60,9 @@
             <action dev="sgoeschl" type="fix" date="2010-08-15" issue="EXEC-46" due-to="Zimmermann Nir">
                 Process.waitFor should clear interrupt status when throwing InterruptedException
             </action>
+            <action dev="sgoeschl" type="update" date="2010-06-01">
+                Added 'DefaultExecuteResultHandler'
+            </action>
             <action dev="sgoeschl" type="update" date="2010-06-01" issue="EXEC-42" due-to="Pablo Hoertner">
                 Added a new section to the tutorial to show working with asynchronous
                 processes. Thanks to Pablo for providing this documentation update.

Modified: commons/proper/exec/trunk/src/site/apt/commandline.apt
URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/site/apt/commandline.apt?rev=997475&r1=997474&r2=997475&view=diff
==============================================================================
--- commons/proper/exec/trunk/src/site/apt/commandline.apt (original)
+++ commons/proper/exec/trunk/src/site/apt/commandline.apt Wed Sep 15 19:47:09 2010
@@ -25,13 +25,11 @@ Apache Commons Exec - Building the comma
 
 Building the command line
 
-* Introduction
+You have two ways to create the command line to be executed
 
-  You have two ways to create the command line to be executed
-
-    * parsing the entire command line string
-
-    * building the command line incrementally
+  * parsing the entire command line string
+  
+  * building the command line incrementally
 
 * General Considerations
 

Modified: commons/proper/exec/trunk/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/site/apt/index.apt?rev=997475&r1=997474&r2=997475&view=diff
==============================================================================
--- commons/proper/exec/trunk/src/site/apt/index.apt (original)
+++ commons/proper/exec/trunk/src/site/apt/index.apt Wed Sep 15 19:47:09 2010
@@ -51,7 +51,7 @@ Jakarta Commons Exec
 
 * Releases 
    
-  The latest version v1.0.1, is JDK 1.3 compatible - 
+  The latest version v1.1, is JDK 1.3 compatible - 
   {{{http://commons.apache.org/downloads/download_exec.cgi}Download now!}}. 
 
   For previous releases, see the {{{http://archive.apache.org/dist/commons/exec/}Apache Archive}}. 
\ No newline at end of file

Modified: commons/proper/exec/trunk/src/site/apt/tutorial.apt
URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/site/apt/tutorial.apt?rev=997475&r1=997474&r2=997475&view=diff
==============================================================================
--- commons/proper/exec/trunk/src/site/apt/tutorial.apt (original)
+++ commons/proper/exec/trunk/src/site/apt/tutorial.apt Wed Sep 15 19:47:09 2010
@@ -173,3 +173,7 @@ executor.execute(commandLine, resultHand
 int exitValue = resultHandler.waitFor();
 +----------------------------------------------------------------------------
   
+* Get Your Hands Dirty
+
+  A tutorial is nice but executing the tutorial code is even nicer. You find
+  the ready-to-run tutorial under {{{http://commons.apache.org/exec/xref-test/org/apache/commons/exec/TutorialTest.html}src/test/java/org/apache/commons/exec/TutorialTest.java}}.