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> <project name="My Application" default="compile" basedir="."> - <-- Configure the directory into which the web application is built --> + <!-- Configure the directory into which the web application is built --> <property name="build" value="${basedir}/build"/> - <-- Configure the context path for this application --> + <!-- Configure the context path for this application --> <property name="path" value="/myapp"/> - <-- Configure properties to access the Manager application --> + <!-- Configure properties to access the Manager application --> <property name="url" value="http://localhost:8080/manager"/> <property name="username" value="myusername"/> <property name="password" value="mypassword"/> - <-- Configure the custom Ant tasks for the Manager application --> + <!-- Configure the custom Ant tasks for the Manager application --> <taskdef name="deploy" classname="org.apache.catalina.ant.DeployTask"/> <taskdef name="install" classname="org.apache.catalina.ant.InstallTask"/> <taskdef name="list" classname="org.apache.catalina.ant.ListTask"/> @@ -757,9 +757,9 @@ <taskdef name="stop" classname="org.apache.catalina.ant.StopTask"/> <taskdef name="undeploy" classname="org.apache.catalina.ant.UndeployTask"/> - <-- Executable Targets --> + <!-- Executable Targets --> <target name="compile" description="Compile web application"> - ... construct web application in ${build} subdirectory ... + <!-- ... construct web application in ${build} subdirectory ... --> </target> <target name="install" description="Install web application"
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>