remm        2002/06/06 08:29:57

  Modified:    webapps/tomcat-docs manager-howto.xml
  Log:
  - Make the example from the manager HOWTO valid XML (bug 9658).
  
  Revision  Changes    Path
  1.15      +6 -6      jakarta-tomcat-4.0/webapps/tomcat-docs/manager-howto.xml
  
  Index: manager-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/manager-howto.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- manager-howto.xml 8 Apr 2002 18:28:36 -0000       1.14
  +++ manager-howto.xml 6 Jun 2002 15:29:57 -0000       1.15
  @@ -734,18 +734,18 @@
   <tr><td><pre>
   &lt;project name="My Application" default="compile" basedir="."&gt;
   
  -  &lt;-- Configure the directory into which the web application is built --&gt;
  +  &lt;!-- Configure the directory into which the web application is built --&gt;
     &lt;property name="build"    value="${basedir}/build"/&gt;
   
  -  &lt;-- Configure the context path for this application --&gt;
  +  &lt;!-- Configure the context path for this application --&gt;
     &lt;property name="path"     value="/myapp"/&gt;
   
  -  &lt;-- Configure properties to access the Manager application --&gt;
  +  &lt;!-- Configure properties to access the Manager application --&gt;
     &lt;property name="url"      value="http://localhost:8080/manager"/&gt;
     &lt;property name="username" value="myusername"/&gt;
     &lt;property name="password" value="mypassword"/&gt;
   
  -  &lt;-- Configure the custom Ant tasks for the Manager application --&gt;
  +  &lt;!-- Configure the custom Ant tasks for the Manager application --&gt;
     &lt;taskdef name="deploy"    classname="org.apache.catalina.ant.DeployTask"/&gt;
     &lt;taskdef name="install"   classname="org.apache.catalina.ant.InstallTask"/&gt;
     &lt;taskdef name="list"      classname="org.apache.catalina.ant.ListTask"/&gt;
  @@ -757,9 +757,9 @@
     &lt;taskdef name="stop"      classname="org.apache.catalina.ant.StopTask"/&gt;
     &lt;taskdef name="undeploy"  classname="org.apache.catalina.ant.UndeployTask"/&gt;
   
  -  &lt;-- Executable Targets --&gt;
  +  &lt;!-- Executable Targets --&gt;
     &lt;target name="compile" description="Compile web application"&gt;
  -    ... construct web application in ${build} subdirectory ...
  +    &lt;!-- ... construct web application in ${build} subdirectory ... --&gt;
     &lt;/target&gt;
   
     &lt;target name="install" description="Install web application"
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to