You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ch...@apache.org on 2005/02/17 09:41:38 UTC

svn commit: r154141 [4/4] - in webservices/axis/trunk/java/dev/scratch/prototype2/xdocs: ./ Axis 2 OM Tutorial_files/ Axis2 Archteture Guide_files/ images/

Added: webservices/axis/trunk/java/dev/scratch/prototype2/xdocs/siteHowTo.html
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/dev/scratch/prototype2/xdocs/siteHowTo.html?view=auto&rev=154141
==============================================================================
--- webservices/axis/trunk/java/dev/scratch/prototype2/xdocs/siteHowTo.html (added)
+++ webservices/axis/trunk/java/dev/scratch/prototype2/xdocs/siteHowTo.html Thu Feb 17 00:41:34 2005
@@ -0,0 +1,51 @@
+<h1>How To Build Axis Project's Website</h1>
+<h2>Installing Maven</h2>
+<p>The Axis 2.0 website build system solely depends
+<a href="http://maven.apache.org/">Maven</a>.Specifically the build has been 
+tested to work with Maven version 1.0.1. To install Maven download the 
+distributions and follow the instructions in their documentation. Make sure you 
+don't forget to put MAVEN_HOME/bin directory in the path. </p>
+<h2>Checking out Axis 2.0</h2>
+<p>Checkout latest source from
+<a href="http://svn.apache.org/repos/asf/webservices/axis/trunk/java/src">here</a> 
+using your favorite svn client. If you are a committer get a commiter check out 
+from <a href="https://svn.apache.org/repos/asf/webservices/axis/trunk/java/src">
+here</a>.</p>
+<h2>Running the build</h2>
+<div align="center">
+	<table border="1" style="border-collapse: collapse" width="56%" id="table1">
+		<tr>
+			<td width="176" align="center"><b>Target</b></td>
+			<td align="center"><b>Description</b></td>
+		</tr>
+		<tr>
+			<td width="176">maven clean</td>
+			<td>Erase all the stuff built earlier</td>
+		</tr>
+		<tr>
+			<td width="176">maven</td>
+			<td>Compile and Run the tests in Axis 2.0</td>
+		</tr>
+		<tr>
+			<td width="176">maven site</td>
+			<td>Create the site within the target folder</td>
+		</tr>
+		<tr>
+			<td width="176">maven html2xdoc</td>
+			<td>&nbsp;</td>
+		</tr>
+	</table>
+</div>
+<h2>FAQ</h2>
+<ol>
+	<li>How can I update a document in the site ?<br> Get a commiter check out. 
+	All the documents are in html format under the xdocs folder, and you can 
+	change only the documents found under this folder. Change the relevant file 
+	and run maven &quot;html2xdoc:transform&quot;. New documentation will be available 
+	under target folder.</li>
+	<li>How can I add a new document<br>Put the new document in xdocs folder. 
+	Change the navigation.xml found under the xdocs folder to put a link to the 
+	newly added document. Re-generate the site.</li>
+</ol>
+<p>&nbsp;</p>
+<p align="right">-- Eran Chinthaka</p>

Added: webservices/axis/trunk/java/dev/scratch/prototype2/xdocs/svn.html
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/dev/scratch/prototype2/xdocs/svn.html?view=auto&rev=154141
==============================================================================
--- webservices/axis/trunk/java/dev/scratch/prototype2/xdocs/svn.html (added)
+++ webservices/axis/trunk/java/dev/scratch/prototype2/xdocs/svn.html Thu Feb 17 00:41:34 2005
@@ -0,0 +1,32 @@
+<h1>Working with SubVersion</h1>
+<h2>Setting up the initial environment</h2>
+<ol type="1">
+	<li>Get the latest copy from SVN -
+	<a href="https://svn.apache.org/repos/asf/webservices/axis/trunk/java/src">
+	https://svn.apache.org/repos/asf/webservices/axis/trunk/java</a> . <br><b>
+	Note for committers</b> : If it's your first time for Apache SVN, you need 
+	to activate your account for SVN. Please log on svn.apache.org with your 
+	Apache ID and run svnpasswd once. </li>
+	<li>Install Maven (you can download that from
+	<a href="http://maven.apache.org/">http://maven.apache.org/</a>) </li>
+	<li>Go to the prototype2 folder in the command prompt and type &quot;maven&quot;. This 
+	will automatically download all the jars, compile, test and build the 
+	system. </li>
+	<li>If you want to set up this in your favorite IDE: 
+	<ol type="1">
+		<li>For IntellijIDEA type &quot;maven idea&quot; (without quotes). This will 
+		generate IDEA .ipr, .iml and .iws project files </li>
+		<li>For eclipse type &quot;maven eclipse&quot; (without quotes). This will 
+		generate project files for eclipse. </li>
+		<li>To find support for other IDE's (or the list of goals) type &quot;maven 
+		-g&quot;. </li>
+	</ol>
+	</li>
+</ol>
+<p>To learn more about svn, go
+<a href="http://svnbook.red-bean.com/en/1.1/svn-book.html">here</a>.</p>
+<h2>Some SVN Clients</h2>
+<ul>
+	<li><a href="http://tortoisesvn.tigris.org/">Tortoise SVN</a></li>
+</ul>
+<p>&nbsp;</p>