You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by je...@apache.org on 2002/11/03 16:41:16 UTC

cvs commit: xml-forrest forrestbot.conf.xml

jefft       2002/11/03 07:41:16

  Added:       src/resources/forrestbot/samples forrestbot-old.conf.xml
  Removed:     .        forrestbot.conf.xml
  Log:
  Move broken forrestbot.conf.xml script inside src/resources/forrestbot/samples.
  
  Revision  Changes    Path
  1.1                  xml-forrest/src/resources/forrestbot/samples/forrestbot-old.conf.xml
  
  Index: forrestbot-old.conf.xml
  ===================================================================
  <?xml version="1.0" encoding="ISO-8859-1"?>
  <!--
  
    <!DOCTYPE forrest-config SYSTEM "forrest-config.dtd">
  
    DTD will be added once the remote build process
    has been finished and debugged (SN)
  
    This file contains the configuration for the forrestbot:
      - which projects to build
      - using which parameters
  
  -->
  <forrest-config>
    <defaults>
      <get-src type="cvs">
        <host name="cvs.apache.org"/>
        <root name="/home/cvspublic"/>
        <user name="anoncvs"/>
        <passwd name="anoncvs"/>
      </get-src>
      <get-src type="local-copy" >
        <project-dir name="." />
      </get-src>
      <deploy type="scp">
        <host name="krysalis.sourceforge.net"/>
        <root name="/home/groups/k/kr/krysalis/htdocs"/>
        <user name="forrestbot"/>
      </deploy>
      <generate>
        <skin name="forrest-site"/>
        <debuglevel name="ERROR" />
      </generate>
    </defaults>
  
    <project name="xml-forrest">
      <prepare>
          <skin name="forrest-site"/>
      </prepare>
  
      <get-src type="cvs">
        <module name="xml-forrest"/>
        <dir name="src/documentation"/>
      </get-src>
      <!-- as long as the skin is set using the <filter> tricks:
           the decision for which one to choose is taken in the prepare stage
           rather then the generate stage
      <generate>
        <skin name="forrest-site" />
      </generate>
      -->
      <deploy type="scp">
        <dir name="forrest"/>
      </deploy>
    </project>
  
    <project name="xml-forrest-local">
      <prepare>
          <skin name="forrest-site"/>
      </prepare>
      <get-src type="local-copy">
        <content-dir name="src/documentation"/>
      </get-src>
      <deploy type="local-copy">
        <destination name="build/site"/>
      </deploy>
    </project>
  
    <!-- will not work on other server, depends on local content -->
    <project name="outerthought.net">
      <prepare>
         <skin name="forrest-site"/>
      </prepare>
      <get-src type="local-copy">
        <content-dir name="../outerthought.net"/>
      </get-src>
      <deploy type="local-copy">
        <destination name="/usr/local/apache/htdocs"/>
      </deploy>
    </project>
  
  </forrest-config>