You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by ps...@apache.org on 2012/01/30 17:23:01 UTC

svn commit: r1237757 - /incubator/wookie/site/trunk/content/wookie/docs/portable.mdtext

Author: psharples
Date: Mon Jan 30 16:23:01 2012
New Revision: 1237757

URL: http://svn.apache.org/viewvc?rev=1237757&view=rev
Log:
Corrected layout.

Modified:
    incubator/wookie/site/trunk/content/wookie/docs/portable.mdtext

Modified: incubator/wookie/site/trunk/content/wookie/docs/portable.mdtext
URL: http://svn.apache.org/viewvc/incubator/wookie/site/trunk/content/wookie/docs/portable.mdtext?rev=1237757&r1=1237756&r2=1237757&view=diff
==============================================================================
--- incubator/wookie/site/trunk/content/wookie/docs/portable.mdtext (original)
+++ incubator/wookie/site/trunk/content/wookie/docs/portable.mdtext Mon Jan 30 16:23:01 2012
@@ -22,15 +22,15 @@ While having Wookie installed on your ma
 situations where also having a Wookie environment on a removable USB pen/flash drive could be handy. 
 Having such a Wookie setup allows you to plug and play Wookie on more than one machine.
 
-The most simple method to create such an environment would be to use one of the current Wookie standalone  
+The most simple method to create such an environment would be to use one of the current Wookie standalone 
 builds and configure that to run from your USB drive.  Another more slightly complicated method might be to 
 install the Wookie source code onto your USB drive, along with any developer tools needed to compile and run 
 that code.  What follows are some instructions on how you might go about doing these tasks. 
 
 In order to run Wookie from a USB drive, we assume that you would also want to install a JDK onto your drive 
-(in case another machine does not have Java already installed).  However, bear in mind that because of the  
+(in case another machine does not have Java already installed).  However, bear in mind that because of the 
 differences in Java implementations on various platforms (Windows, Mac OS, Linux etc), you may be limited to a 
-windows/Mac OS/Linux portable version.  It may be possible to install more than one JDK onto your USB drive to  
+windows/Mac OS/Linux portable version.  It may be possible to install more than one JDK onto your USB drive to 
 achieve a cross platform version, but this guide does not try to describe such an environment. 
 
 ## Making a USB drive environment from a Wookie standalone build (Windows only)
@@ -45,7 +45,7 @@ achieve a cross platform version, but th
 	<li>Create a new "Java" folder at the ROOT of your USB drive. (e.g F:\Java)</li>
 	Copy the contents of C:\Program Files\Java\jdk1.6.0_24 to F:\Java.
 	<br/><br/>
-	<li>If you haven't already, download the latest Wookie Standalone build</li>
+	<li>If you haven't already, download the latest Wookie Standalone build.</li>
 	Download [apache-wookie-0.9.1-incubating-standalone.zip][2]
 	<br/><br/>
 	<li>Unzip the download to the ROOT of your USB drive.</li>
@@ -53,24 +53,27 @@ achieve a cross platform version, but th
 	<br/><br/>
 	<li>Next you will need to modify Wookies startup.bat and shutdown.bat scripts</li>
 	First find the file F:\apache-wookie-0.9.1-incubating-standalone\startup.bat and open it to edit.
+	<br/>
 	Under the line...
-
+	<p>
 	Set PROGARGS=
-
+	</p>
 	...add the following two lines underneath...
-
-	set pathDrive=%cd:~0,2%
-	set PATH=%PATH%;%pathDrive%\Java\bin 
+	<p>
+	set pathDrive=%cd:~0,2%<br/>
+	set PATH=%PATH%;%pathDrive%\Java\bin
+	</p>
 	Now find the file F:\apache-wookie-0.9.1-incubating-standalone\shutdown.bat and open it to edit.
+	<br/>
 	Under the line...
-	
+	<p>
 	REM under the License.
-
+	</p>
 	...also add the same two lines underneath...
-
-	set pathDrive=%cd:~0,2%
+	<p>
+	set pathDrive=%cd:~0,2%<br/>
 	set PATH=%PATH%;%pathDrive%\Java\bin
-	
+	</p>
 	Save both files.
 	<br/><br/>
 	<li>You should now be able to use the USB installed version of the JDK to run Wookie on another Windows machine.</li>