You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by re...@apache.org on 2001/03/29 21:25:15 UTC

cvs commit: jakarta-slide/src/doc installation.xml

remm        01/03/29 11:25:15

  Modified:    src/doc  installation.xml
  Log:
  - Updated the installation instructions.
    Thanks to Ian Kallen <iank at covalent.net> for reporting the problems.
  
  Revision  Changes    Path
  1.11      +102 -0    jakarta-slide/src/doc/installation.xml
  
  Index: installation.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/installation.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- installation.xml	2001/03/26 07:14:36	1.10
  +++ installation.xml	2001/03/29 19:25:15	1.11
  @@ -6,6 +6,105 @@
       
     <title>Installation</title>
     
  +  <section title="Installation">
  +    
  +    <p>
  +      In order to successfully build Slide, you will need to do the 
  +      following. In the instructions below, $JAKARTA_HOME is assumed to be 
  +      the directory into which you are installing all of the required 
  +      distributions. The detailed dependency list is available in the next 
  +      section.
  +    </p>
  +
  +    <ul>
  +
  +    <li>
  +      Download and install a version 1.1 or later Java Development Kit
  +      implementation for your operating system platform.  Set a "JAVA_HOME"
  +      environment variable to point at the directory where your JDK is 
  +      installed, and add "$JAVA_HOME/bin" to your PATH.  Configure the 
  +      CLASSPATH environment variable as well, if required.
  +    </li>
  +
  +    <li>
  +      Download and install the Java API for XML Parsing implementation (current
  +      version number is 1.1) from 
  +      <a href="http://java.sun.com/xml">the Java API for XML site</a>. 
  +      Make sure that the "jaxp.jar" and "parser.jar" files are on your 
  +      classpath.  
  +    </li>
  +
  +    <li>
  +      Download and install the Java Transaction API (current version number is 
  +      1.0.1) from <a href="http://java.sun.com/products/jta/">the JTA site</a>.
  +      Make sure that the "jta.jar" is in the "lib" directory in the Slide 
  +      source distribution.
  +    </li>
  +
  +    <li>
  +      Make sure the other dependencies listed below are available on your 
  +      system classpath.
  +    </li>
  +
  +    <li>
  +      Download and install the Ant distribution (subproject "jakarta-ant") into
  +      a directory named "$JAKARTA_HOME/jakarta-ant".  If you have 
  +      downloaded the source distribution, you will need to build the 
  +      executable version by executing the following commands:
  +      <pre>
  +        cd $JAKARTA_HOME/jakarta-ant
  +        ./bootstrap.sh	        for Unix
  +        bootstrap               for Windows
  +      </pre>
  +      This should result in the creation of a file "ant.jar" in the "lib"
  +      subdirectory.
  +    </li>
  +
  +    <li>
  +      Download and install the Servletapi distribution (subproject
  +      "jakarta-servletapi") into a subdirectory named
  +      "$JAKARTA_HOME/jakarta-servletapi".  If you have downloaded the source
  +      distribution, you will need to build the executable version by
  +      executing the following commands:
  +      <pre>
  +        cd $JAKARTA_HOME/jakarta-servletapi
  +        ./build.sh dist		for Unix
  +        build dist		for Windows
  +      </pre>
  +      This should result in the creation of a file "servlet.jar" in the "lib"
  +      subdirectory.
  +    </li>
  +
  +    <li>
  +      Download the source distribution of Slide (subpackage "jakarta-slide"),
  +      or check it out via anonymous CVS, into a subdirectory named
  +      "$JAKARTA_HOME/jakarta-slide".
  +      <pre>
  +        cd $JAKARTA_HOME/jakarta-slide
  +        ./build.sh              for Unix
  +        build                   for Windows
  +      </pre>
  +    </li>
  +
  +    <li>
  +      A web application which can be used in any Servlet 2.2 compliant can 
  +      be found $JAKARTA_HOME/jakarta-slide/dist/webapp/slide.war.
  +    </li>
  +
  +    <li>
  +      You can delete the generated files in the "build/slide" and "dist/slide"
  +      directories by executing the following:
  +      <pre>
  +	cd $JAKARTA_HOME/jakarta-slide
  +	./build.sh clean	for Unix
  +	build clean		for Windows
  +      </pre>
  +    </li>
  +
  +    </ul>
  +
  +  </section>
  +
     <section title="Dependencies">
       
       <p>
  @@ -24,6 +123,8 @@
           <li>SAX 2 API (org.xml.* packages)</li>
           <li>Sun Servlet API 2.2</li>
           <li>Sun Java Transaction API 1.0</li>
  +        <li>Sun Servlet API 2.2</li>
  +        <li>JDOM 1.0</li>
           <li>JDK 1.1 or later</li>
         </ul>
       </p>
  @@ -35,6 +136,7 @@
           <li>A JAXP-compliant XML parser (DOM level 2 support recommended)</li>
           <li>Sun Servlet API 2.2 or later</li>
           <li>Sun Java Transaction API 1.0</li>
  +        <li>JDOM 1.0 (optional)</li>
           <li>JRE 1.1 or later (1.3 recommended)</li>
         </ul>
       </p>