You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2006/02/27 08:14:12 UTC

svn commit: r381277 - /forrest/trunk/site-author/content/xdocs/tools/forrestbot.xml

Author: crossley
Date: Sun Feb 26 23:14:07 2006
New Revision: 381277

URL: http://svn.apache.org/viewcvs?rev=381277&view=rev
Log:
Use "<source><![CDATA[" so that don't need to mess around with pointy brackets.

Modified:
    forrest/trunk/site-author/content/xdocs/tools/forrestbot.xml

Modified: forrest/trunk/site-author/content/xdocs/tools/forrestbot.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/site-author/content/xdocs/tools/forrestbot.xml?rev=381277&r1=381276&r2=381277&view=diff
==============================================================================
--- forrest/trunk/site-author/content/xdocs/tools/forrestbot.xml (original)
+++ forrest/trunk/site-author/content/xdocs/tools/forrestbot.xml Sun Feb 26 23:14:07 2006
@@ -75,36 +75,33 @@
       <code>forrestbot.xml</code>) that executes the four workstages (getsrc,
       build, deploy, notify) sequentially.</p>
 
-      <source>&lt;project name="mysampleproject" default="main"&gt;
-	&lt;property name="notify.email.host" value="smtp.myhost.com"/&gt;
-	&lt;property name="notify.email.to" value="me@domain.com"/&gt;
-	&lt;property name="notify.administrator" value="Your Name 
-&amp;lt;me@domain.com&gt;"/&gt;
-	&lt;property name="getsrc.cvs.user" value="anoncvs"/&gt;
-	&lt;property name="getsrc.cvs.password" value="anoncvs"/&gt;
-	&lt;property name="getsrc.cvs.root" value="/home/cvspublic"/&gt;
-	&lt;property name="getsrc.cvs.host" value="cvs.myhost.com"/&gt;
-	&lt;property name="getsrc.cvs.module" value="myproject"/&gt;
-	&lt;property name="deploy.scp.dest" 
-value="username@myhost.com:/var/www/mydomain/htdocs"/&gt;
+      <source><![CDATA[
+<project name="mysampleproject" default="main">
+  <property name="notify.email.host" value="smtp.myhost.com"/>
+  <property name="notify.email.to" value="me@domain.com"/>
+  <property name="notify.administrator" value="Your Name"/>
+  <property name="getsrc.cvs.user" value="anoncvs"/>
+  <property name="getsrc.cvs.password" value="anoncvs"/>
+  <property name="getsrc.cvs.root" value="/home/cvspublic"/>
+  <property name="getsrc.cvs.host" value="cvs.myhost.com"/>
+  <property name="getsrc.cvs.module" value="myproject"/>
+  <property name="deploy.scp.dest" 
+      value="username@myhost.com:/var/www/mydomain/htdocs"/>
 
-	&lt;!-- here we specify to use two notification implementations --&gt;
-	&lt;target name="notify" depends="notify.local, notify.email"/&gt;
+  <!-- here we specify to use two notification implementations -->
+  <target name="notify" depends="notify.local, notify.email"/>
 
-	&lt;!-- here we specify to deploy with the scp implementation --&gt;
-	&lt;target name="deploy" depends="deploy.scp"/&gt;
+  <!-- here we specify to deploy with the scp implementation -->
+  <target name="deploy" depends="deploy.scp"/>
 
-	&lt;!-- the default implementation for getsrc is getsrc.cvs, which is 
-what we want --&gt;
+  <!-- the default implementation for getsrc is getsrc.cvs,
+       which is what we want -->
 
-	&lt;!-- assumes FORREST_HOME has been set as an environment variable 
---&gt;
-	&lt;property environment="env"/&gt;
-	&lt;import 
-file="${env.FORREST_HOME}/tools/forrestbot/core/forrestbot.xml"/&gt;
-&lt;/project&gt;
-
-</source>
+  <!-- assumes FORREST_HOME has been set as an environment variable -->
+  <property environment="env"/>
+  <import file="${env.FORREST_HOME}/tools/forrestbot/core/forrestbot.xml"/>
+</project>
+]]></source>
 
       <section>
         <title>Workstages</title>