You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@gump.apache.org by aj...@apache.org on 2004/06/21 06:06:10 UTC

cvs commit: gump/src/documentation/content/xdocs site.xml

ajack       2004/06/20 21:06:10

  Modified:    python/gump/syndication Tag: CleanUp rss.py atom.py
               src/documentation/content/xdocs/traditional Tag: CleanUp
                        index.xml
               python/gump/core Tag: CleanUp gumprun.py
               project  Tag: CleanUp ws-xmlrpc.xml depot.xml
                        jakarta-commons-codec-11.xml xml-xmlbeans.xml
                        jakarta-commons-sandbox.xml james-server.xml
                        jakarta-tomcat-5.xml jakarta-jmeter-20.xml
                        logging-log4j.xml jakarta-tomcat-catalina.xml
                        avalon-excalibur.xml jakarta-jmeter.xml dom4j.xml
               repository Tag: CleanUp codehaus.xml
               src/documentation/content/xdocs/metadata Tag: CleanUp
                        ant.xml repository.xml
               src/documentation/content/xdocs/python Tag: CleanUp
                        index.xml
               profile  Tag: CleanUp gump.xml
               src/documentation/content/xdocs Tag: CleanUp site.xml
  Added:       repository Tag: CleanUp forrest.xml
               src/documentation/content/xdocs/metadata Tag: CleanUp
                        builder.xml maven.xml
  Log:
  1) Merge w/ HEAD
  2) Reduced log level on RSS/Atom (less verbose)
  3) Set the project 'total' correctly.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.24.2.4  +1 -1      gump/python/gump/syndication/rss.py
  
  Index: rss.py
  ===================================================================
  RCS file: /home/cvs/gump/python/gump/syndication/rss.py,v
  retrieving revision 1.24.2.3
  retrieving revision 1.24.2.4
  diff -u -r1.24.2.3 -r1.24.2.4
  --- rss.py	20 Jun 2004 21:34:34 -0000	1.24.2.3
  +++ rss.py	21 Jun 2004 04:06:09 -0000	1.24.2.4
  @@ -196,7 +196,7 @@
           log.debug("RSS Newsfeed written to : " + self.rssFile);          
           
       def serialize(self):
  -        log.info("RSS Newsfeed to : " + self.rssFile);         
  +        log.debug("RSS Newsfeed to : " + self.rssFile);         
           self.rssStream = open(self.rssFile,'w')
           
           self.startRSS()
  
  
  
  1.17.2.5  +1 -1      gump/python/gump/syndication/atom.py
  
  Index: atom.py
  ===================================================================
  RCS file: /home/cvs/gump/python/gump/syndication/atom.py,v
  retrieving revision 1.17.2.4
  retrieving revision 1.17.2.5
  diff -u -r1.17.2.4 -r1.17.2.5
  --- atom.py	18 Jun 2004 22:46:49 -0000	1.17.2.4
  +++ atom.py	21 Jun 2004 04:06:09 -0000	1.17.2.5
  @@ -111,7 +111,7 @@
   """)
                   
       def serialize(self):
  -        log.info("Atom Feed to : " + self.file);         
  +        log.debug("Atom News Feed to : " + self.file);         
           stream = open(self.file,'w')
           
           modified=time.strftime('%Y-%m-%dT%H:%M:%SZ', gmtime())
  
  
  
  No                   revision
  No                   revision
  1.2.4.1   +2 -0      gump/src/documentation/content/xdocs/traditional/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/gump/src/documentation/content/xdocs/traditional/index.xml,v
  retrieving revision 1.2
  retrieving revision 1.2.4.1
  diff -u -r1.2 -r1.2.4.1
  --- index.xml	27 Feb 2004 09:38:57 -0000	1.2
  +++ index.xml	21 Jun 2004 04:06:09 -0000	1.2.4.1
  @@ -30,6 +30,8 @@
       <link href="http://nagoya.apache.org/wiki/apachewiki.cgi?GumpPython">Python</link>.
     </p>
     <p>Traditional Gump is written in shell (BASH/DOS), XSLT, and Perl.</p>
  +  	<warning>Traditional Gump will likely soon be retired from service, since
  +  		extension (added to Python Gump) would be non-trivial to support.</warning>
     </section>
   </body>
   </document>
  
  
  
  No                   revision
  No                   revision
  1.9.2.9   +9 -3      gump/python/gump/core/gumprun.py
  
  Index: gumprun.py
  ===================================================================
  RCS file: /home/cvs/gump/python/gump/core/gumprun.py,v
  retrieving revision 1.9.2.8
  retrieving revision 1.9.2.9
  diff -u -r1.9.2.8 -r1.9.2.9
  --- gumprun.py	18 Jun 2004 22:02:21 -0000	1.9.2.8
  +++ gumprun.py	21 Jun 2004 04:06:09 -0000	1.9.2.9
  @@ -291,7 +291,6 @@
               self.addToTodoList(project,todo)
               
           projectIndex=0
  -        projectTotal=len(projects)
               
           while todo:
               # one by one, remove the first ready project and append 
  @@ -304,7 +303,6 @@
                           sequence.append(todoProject)
                           projectIndex += 1
                           todoProject.setPosition(projectIndex)
  -                        todoProject.setTotal(projectTotal)
      
                           log.debug('Identify ' + todoProject.getName() + ' at position #' + `todoProject.getPosition()`)     
                       #else:
  @@ -320,7 +318,15 @@
                               break
                       else:
                           loop=", ".join([project.getName() for todoProject in todo])
  -                        raise RuntimeError, "Circular Dependency Loop: " + str(loop)              
  +                        raise RuntimeError, "Circular Dependency Loop: " + str(loop) 
  +                        
  +                        
  +        # Identify the size of overall sequence
  +        projectTotal=len(sequence)
  +        for project in sequence:
  +            project.setTotal(projectTotal)               
  +            log.debug('Identify ' + project.getName() + ' at position #' + `project.getPosition()`)     
  +                       
           return sequence
   
                   
  
  
  
  No                   revision
  No                   revision
  1.2.4.1   +1 -1      gump/project/ws-xmlrpc.xml
  
  Index: ws-xmlrpc.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/ws-xmlrpc.xml,v
  retrieving revision 1.2
  retrieving revision 1.2.4.1
  diff -u -r1.2 -r1.2.4.1
  --- ws-xmlrpc.xml	27 Feb 2004 09:22:56 -0000	1.2
  +++ ws-xmlrpc.xml	21 Jun 2004 04:06:09 -0000	1.2.4.1
  @@ -31,7 +31,7 @@
       </ant>
   
       <depend project="xml-xerces"/>
  -    <depend project="commons-codec"/>
  +    <depend project="commons-codec-11"/>
       <depend project="commons-httpclient-2.0-branch"/>
       <depend project="ant" inherit="runtime"/>
       <option project="jakarta-servletapi"/>
  
  
  
  1.53.2.1  +6 -7      gump/project/depot.xml
  
  Index: depot.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/depot.xml,v
  retrieving revision 1.53
  retrieving revision 1.53.2.1
  diff -u -r1.53 -r1.53.2.1
  --- depot.xml	26 May 2004 23:23:34 -0000	1.53
  +++ depot.xml	21 Jun 2004 04:06:09 -0000	1.53.2.1
  @@ -40,8 +40,8 @@
           <jar name="dist/depot-common-gump-@@DATE@@.jar"/>
   
           <ant basedir="common" buildfile="build.xml" target="gump" vm="1.4">
  -          <property name="ant.home" project="ant" reference="home" />
  -          <property name="DATE_STAMP" value="@@DATE@@"/>        	
  +          <property name="ant.home" project="ant" reference="home" />        
  +          <property name="DSTAMP" value="@@DATE@@"/>        	  	
           </ant>
   
           <nag 
  @@ -91,8 +91,8 @@
           <jar name="dist/depot-version-gump-@@DATE@@.jar"/>
   
           <ant basedir="version" buildfile="build.xml" target="gump" vm="1.4">
  -          <property name="ant.home" project="ant" reference="home" />
  -          <property name="DATE_STAMP" value="@@DATE@@"/>        	
  +          <property name="ant.home" project="ant" reference="home" />        
  +          <property name="DSTAMP" value="@@DATE@@"/>        	
           </ant>
   
           <nag 
  @@ -163,9 +163,8 @@
          <package>org.apache.depot.version</package>
          <depend project="depot-version" inherit="all"/>
          <depend project="antworks-antlets" inherit="runtime"/>
  -        <ant basedir="version" buildfile="build.xml" target="install-antlet" vm="1.4">
  -          
  -          <property name="DATE_STAMP" value="@@DATE@@"/>        	
  +        <ant basedir="version" buildfile="build.xml" target="install-antlet" vm="1.4">          
  +          <property name="DSTAMP" value="@@DATE@@"/>        	
           </ant>
           <nag 
              to="depot-dev@incubator.apache.org"
  
  
  
  1.2.2.1   +2 -18     gump/project/jakarta-commons-codec-11.xml
  
  Index: jakarta-commons-codec-11.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/jakarta-commons-codec-11.xml,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- jakarta-commons-codec-11.xml	4 Jun 2004 18:22:38 -0000	1.2
  +++ jakarta-commons-codec-11.xml	21 Jun 2004 04:06:09 -0000	1.2.2.1
  @@ -21,27 +21,11 @@
       Jakarta Commons Codec 1.1
     </description>
   
  -  <cvs repository="jakarta"  tag="CODEC_1_1" module="jakarta-commons/codec"/>
  -
  -  <project name="commons-codec-11">
  +  <project name="commons-codec-11">  	
       <package>org.apache.commons.codec</package>
       <description>Commons Encoding/Decoding Package</description>
       <url href="http://jakarta.apache.org/commons/codec/"/>
  -
  -    <ant basedir="codec" target="dist">
  -      <property name="component.version"  value="@@DATE@@"/>
  -    </ant>
  -    <depend project="ant" inherit="runtime"/>
  -    <depend project="xml-xerces"/>
  -
  -    <!-- tests -->
  -    <depend project="junit"/>
  -    <work nested="codec/target/classes"/>
  -    <work nested="codec/target/test-classes"/>
  -    <jar name="codec/dist/commons-codec-@@DATE@@.jar"/>
  -    <javadoc nested="codec/dist/docs/api"/>
  -    <nag to="commons-dev@jakarta.apache.org"
  -         from="Tim OBrien &lt;tobrien@apache.org&gt;"/>
  +    <jar name="commons-codec-1.1.jar"/>    
     </project>
   
   </module>
  
  
  
  1.7.4.1   +1 -0      gump/project/xml-xmlbeans.xml
  
  Index: xml-xmlbeans.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/xml-xmlbeans.xml,v
  retrieving revision 1.7
  retrieving revision 1.7.4.1
  diff -u -r1.7 -r1.7.4.1
  --- xml-xmlbeans.xml	27 Feb 2004 09:22:57 -0000	1.7
  +++ xml-xmlbeans.xml	21 Jun 2004 04:06:09 -0000	1.7.4.1
  @@ -27,6 +27,7 @@
       <url href='http://xml.apache.org/xmlbeans/'/>         
       <depend project="bootstrap-ant"/>
       <depend project="xml-xerces"/>
  +    <depend project='jaxen'/>
       <depend project='junit'/>
       <home nested="v1/build"/>
       <work nested="v1/build/classes/common"/>    
  
  
  
  1.161.2.1 +21 -0     gump/project/jakarta-commons-sandbox.xml
  
  Index: jakarta-commons-sandbox.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/jakarta-commons-sandbox.xml,v
  retrieving revision 1.161
  retrieving revision 1.161.2.1
  diff -u -r1.161 -r1.161.2.1
  --- jakarta-commons-sandbox.xml	3 Jun 2004 14:38:27 -0000	1.161
  +++ jakarta-commons-sandbox.xml	21 Jun 2004 04:06:09 -0000	1.161.2.1
  @@ -51,6 +51,27 @@
            to="commons-dev@jakarta.apache.org"/>
     </project>
   
  +  <project name="commons-compress">
  +     <package>org.apache.commons.compress</package>
  +     <description>Commons Compression Package</description>
  +     <maven basedir="compress" goal="jar">
  +       <property name="component.version"  value="@@DATE@@"/>
  +     </maven>
  +
  +    <depend project="ant" inherit="runtime"/>
  +    <depend project="junit" />
  +    <depend project="xml-xerces" />
  +
  +    <work nested="target/classes" />
  +    <home nested="compress/target" />
  +
  +    <jar name="compress/target/commons-compress-@@DATE@@.jar" />
  +
  +    <javadoc nested="target/docs/apidocs" />
  +
  +    <nag to="commons-dev@jakarta.apache.org" from="commons-compress development &lt;commons-dev@jakarta.apache.org&gt;" />
  +  </project>
  +
     <project name="commons-email">
       <package>org.apache.commons.email</package>
       <description>Commons Email Package</description>
  
  
  
  1.6.4.1   +1 -1      gump/project/james-server.xml
  
  Index: james-server.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/james-server.xml,v
  retrieving revision 1.6
  retrieving revision 1.6.4.1
  diff -u -r1.6 -r1.6.4.1
  --- james-server.xml	10 May 2004 08:15:10 -0000	1.6
  +++ james-server.xml	21 Jun 2004 04:06:09 -0000	1.6.4.1
  @@ -55,7 +55,7 @@
       <javadoc nested="www/mailet"/>
   
       <nag from="Gump Build Robot &lt;general@gump.apache.org&gt;"
  -         to="james-dev@jakarta.apache.org"/>
  +         to="server-dev@james.apache.org"/>
     </project>
   
     <project name="dnsjava">
  
  
  
  1.25.2.1  +1 -1      gump/project/jakarta-tomcat-5.xml
  
  Index: jakarta-tomcat-5.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/jakarta-tomcat-5.xml,v
  retrieving revision 1.25
  retrieving revision 1.25.2.1
  diff -u -r1.25 -r1.25.2.1
  --- jakarta-tomcat-5.xml	26 May 2004 14:24:17 -0000	1.25
  +++ jakarta-tomcat-5.xml	21 Jun 2004 04:06:09 -0000	1.25.2.1
  @@ -60,7 +60,7 @@
                 project="jakarta-servletapi-5-servlet"/>
         <depend property="jsp-api.jar" project="jakarta-servletapi-5-jsp"/>
         <depend property="xercesImpl.jar" project="xml-xerces" id="parser"/>
  -      <depend property="xmlParserAPIs.jar" project="xml-xerces" id="parser"/>
  +      <depend property="xml-apis.jar" project="xml-xerces" id="apis"/>
         <depend property="tomcat-util.jar" project="jakarta-tomcat-util"/>
         <depend property="commons-beanutils.jar" project="commons-beanutils-core"
           runtime="true"/>
  
  
  
  1.6.2.1   +7 -7      gump/project/jakarta-jmeter-20.xml
  
  Index: jakarta-jmeter-20.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/jakarta-jmeter-20.xml,v
  retrieving revision 1.6
  retrieving revision 1.6.2.1
  diff -u -r1.6 -r1.6.2.1
  --- jakarta-jmeter-20.xml	24 May 2004 09:43:52 -0000	1.6
  +++ jakarta-jmeter-20.xml	21 Jun 2004 04:06:09 -0000	1.6.2.1
  @@ -109,7 +109,7 @@
       <jar name="NOTICE" />
       <jar name="INSTALLING" />
   
  -    <nag from="Sebb &lt;sebb@apache.org&gt;"
  +    <nag from="Gump-build &lt;sebb@apache.org&gt;"
            to="jmeter-dev@jakarta.apache.org">
           <regexp pattern="/BUILD FAILED/" subject="JMeter CVS Build Failure"/>
       </nag>
  @@ -174,7 +174,7 @@
       <work nested="lib/ext/ApacheJMeter_monitors.jar"/>
       <work nested="lib/ext/ApacheJMeter_tcp.jar"/>
   
  -    <nag from="Sebb &lt;sebb@apache.org&gt;"
  +    <nag from="Gump-build &lt;sebb@apache.org&gt;"
            to="jmeter-dev@jakarta.apache.org">
           <regexp pattern="/FAILURES!!!|OK \(0 tests\)/" subject="JMeter Unit Test Failure"/>
       </nag>
  
  
  
  1.4.4.1   +1 -0      gump/project/logging-log4j.xml
  
  Index: logging-log4j.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/logging-log4j.xml,v
  retrieving revision 1.4
  retrieving revision 1.4.4.1
  diff -u -r1.4 -r1.4.4.1
  --- logging-log4j.xml	21 Apr 2004 09:51:01 -0000	1.4
  +++ logging-log4j.xml	21 Jun 2004 04:06:09 -0000	1.4.4.1
  @@ -36,6 +36,7 @@
   
       <depend project="ant" inherit="runtime"/>
       <depend project="xml-xerces"/>
  +    <depend project="jakarta-oro"/>
       <work nested="dist/classes"/>
       <option project="jakarta-servletapi-4"/>
       <option project="jms"/>
  
  
  
  1.14.2.1  +1 -1      gump/project/jakarta-tomcat-catalina.xml
  
  Index: jakarta-tomcat-catalina.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/jakarta-tomcat-catalina.xml,v
  retrieving revision 1.14
  retrieving revision 1.14.2.1
  diff -u -r1.14 -r1.14.2.1
  --- jakarta-tomcat-catalina.xml	26 May 2004 05:39:10 -0000	1.14
  +++ jakarta-tomcat-catalina.xml	21 Jun 2004 04:06:09 -0000	1.14.2.1
  @@ -64,8 +64,8 @@
         <depend property="servlet-api.jar"
                 project="jakarta-servletapi-5-servlet"/>
         <depend property="jsp-api.jar" project="jakarta-servletapi-5-jsp"/>
  +      <depend property="xml-apis.jar" project="xml-xerces" id="apis"/>
         <depend property="xercesImpl.jar" project="xml-xerces" id="parser"/>
  -      <depend property="xmlParserAPIs.jar" project="xml-xerces" id="parser"/>
         <depend property="tomcat-util.jar" project="jakarta-tomcat-util"/>
         <property name="tomcat-coyote.home" reference="home"
           project="jakarta-tomcat-coyote"/>
  
  
  
  1.151.2.1 +3 -3      gump/project/avalon-excalibur.xml
  
  Index: avalon-excalibur.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/avalon-excalibur.xml,v
  retrieving revision 1.151
  retrieving revision 1.151.2.1
  diff -u -r1.151 -r1.151.2.1
  --- avalon-excalibur.xml	27 May 2004 05:56:42 -0000	1.151
  +++ avalon-excalibur.xml	21 Jun 2004 04:06:09 -0000	1.151.2.1
  @@ -24,7 +24,7 @@
       
       <cvs repository="avalon"/>
   
  -    <project name="excalibur-compatibility">
  +      <project name="excalibur-compatibility">
           <!-- this project is the merge of several packages which previously
                existed seperately:
   
  @@ -87,10 +87,10 @@
           <depend project="ant" inherit="runtime"/>
           <depend project="xml-xalan2"/>
           <depend project="xml-xerces"/>
  +        <depend project="jakarta-servletapi" inherit="runtime"/>
   
           <!-- optional dependencies -->
           <option project="checkstyle" inherit="runtime"/>
  -        <option project="jakarta-servletapi" inherit="runtime"/>
   
           <mkdir dir="component/target/classes"/>
           <mkdir dir="component/target/test-classes"/>
  @@ -579,9 +579,9 @@
           <depend project="junit"/>
           <depend project="xml-xerces"/>
           <depend project="xml-xalan2"/>
  +        <depend project="avalon-framework" runtime="true" id="combined"/>
   
           <!-- optional dependencies -->
  -        <option project="avalon-framework" runtime="true" id="combined"/>
           <option project="checkstyle" inherit="runtime"/>
   
           <work nested="instrument/target/classes"/>
  
  
  
  1.97.2.1  +30 -9     gump/project/jakarta-jmeter.xml
  
  Index: jakarta-jmeter.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/jakarta-jmeter.xml,v
  retrieving revision 1.97
  retrieving revision 1.97.2.1
  diff -u -r1.97 -r1.97.2.1
  --- jakarta-jmeter.xml	20 May 2004 22:14:47 -0000	1.97
  +++ jakarta-jmeter.xml	21 Jun 2004 04:06:09 -0000	1.97.2.1
  @@ -85,6 +85,8 @@
       <depend project="excalibur-pool"/>
       <depend project="excalibur-instrument"/>
   
  +    <depend project="xml-batik"/>
  +
       <depend project="commons-logging"/>
       <depend project="commons-httpclient"/>
   
  @@ -95,6 +97,10 @@
       <work nested="build/htmlparser"/>
       <work nested="build/jorphan"/>
       
  +    <!-- Not available as Gump projects -->
  +    <work nested="lib/xpp3-1.1.3.4.D.jar"/>
  +    <work nested="lib/xstream-1.0.1.jar"/>
  +
       <!-- Allow http to build: -->
       <work nested="build/components"/>
   
  @@ -156,6 +162,11 @@
       <work nested="build/protocol/http"/>
       <work nested="build/monitor/model"/>
       
  +    <work nested="lib/batik-awt-util.jar"/>
  +
  +    <work nested="lib/xpp3-1.1.3.4.D.jar"/>
  +    <work nested="lib/xstream-1.0.1.jar"/>
  +
       <work nested="lib/excalibur-logger-1.1.jar"/>
       <work nested="lib/excalibur-compatibility-1.1.jar"/>
       <work nested="lib/excalibur-i18n-1.1.jar"/>
  @@ -228,6 +239,11 @@
       <option project="beanshell" ids="bsh-core"/>
       <option project="jakarta-bsf"/>
   
  +    <work nested="lib/batik-awt-util.jar"/>
  +
  +    <work nested="lib/xpp3-1.1.3.4.D.jar"/>
  +    <work nested="lib/xstream-1.0.1.jar"/>
  +
       <work nested="lib/excalibur-logger-1.1.jar"/>
       <work nested="lib/excalibur-compatibility-1.1.jar"/>
       <work nested="lib/excalibur-i18n-1.1.jar"/>
  @@ -292,6 +308,11 @@
   
       <option project="beanshell" ids="bsh-core"/>
       <option project="jakarta-bsf"/>
  +
  +    <work nested="lib/batik-awt-util.jar"/>
  +
  +    <work nested="lib/xpp3-1.1.3.4.D.jar"/>
  +    <work nested="lib/xstream-1.0.1.jar"/>
   
       <work nested="lib/excalibur-logger-1.1.jar"/>
       <work nested="lib/excalibur-compatibility-1.1.jar"/>
  
  
  
  1.35.4.1  +4 -0      gump/project/dom4j.xml
  
  Index: dom4j.xml
  ===================================================================
  RCS file: /home/cvs/gump/project/dom4j.xml,v
  retrieving revision 1.35
  retrieving revision 1.35.4.1
  diff -u -r1.35 -r1.35.4.1
  --- dom4j.xml	6 May 2004 16:03:40 -0000	1.35
  +++ dom4j.xml	21 Jun 2004 04:06:09 -0000	1.35.4.1
  @@ -30,6 +30,7 @@
       <ant target="gump">
         <property name="jaxen.src" project="jaxen-from-packaged-dom4j"
                   path="src/java/main"/>
  +      <sysproperty name="build.clonevm" value="true"/>
       </ant>
       <depend project="ant" inherit="runtime"/>
       <depend project="xml-xerces"/>
  @@ -43,8 +44,11 @@
       <depend project="relaxng"/>
       <depend project="stax" ids="api"/>
       <depend project="xml-fop" inherit="runtime"/>
  +    <depend project="jtidy"/>
  +    <depend project="junitperf"/>
       <jar name="build/dom4j.jar" id="dom4j"/>
       <license name="LICENSE.txt"/>
  +    <nag from="Maarten Coene &lt;MacBelgium@toughguy.net&gt;" to="dom4j-dev@lists.sourceforge.net" />
     </project>
   
     <project name="xpp">
  
  
  
  No                   revision
  No                   revision
  1.4.4.1   +3 -3      gump/repository/codehaus.xml
  
  Index: codehaus.xml
  ===================================================================
  RCS file: /home/cvs/gump/repository/codehaus.xml,v
  retrieving revision 1.4
  retrieving revision 1.4.4.1
  diff -u -r1.4 -r1.4.4.1
  --- codehaus.xml	27 Feb 2004 08:56:58 -0000	1.4
  +++ codehaus.xml	21 Jun 2004 04:06:09 -0000	1.4.4.1
  @@ -18,13 +18,13 @@
   <repository name="codehaus" type="cvs">
     <title>codehaus</title>
     <home-page>http://www.codehaus.org/</home-page>
  -  <cvsweb>http://cvs.codehaus.org/viewcvs.cgi/</cvsweb>
  +  <cvsweb>http://cvs.codehaus.org/</cvsweb>
   
     <root>
       <method>pserver</method>
       <user>anonymous</user>
       <password></password>
  -    <hostname>cvs.codehaus.org</hostname>
  -    <path>/cvsroot</path>
  +    <hostname>codehaus.org</hostname>
  +    <path>/scm</path>
     </root>
   </repository>
  
  
  
  No                   revision
  
  Index: codehaus.xml
  ===================================================================
  RCS file: /home/cvs/gump/repository/codehaus.xml,v
  retrieving revision 1.4
  retrieving revision 1.4.4.1
  diff -u -r1.4 -r1.4.4.1
  --- codehaus.xml	27 Feb 2004 08:56:58 -0000	1.4
  +++ codehaus.xml	21 Jun 2004 04:06:09 -0000	1.4.4.1
  @@ -18,13 +18,13 @@
   <repository name="codehaus" type="cvs">
     <title>codehaus</title>
     <home-page>http://www.codehaus.org/</home-page>
  -  <cvsweb>http://cvs.codehaus.org/viewcvs.cgi/</cvsweb>
  +  <cvsweb>http://cvs.codehaus.org/</cvsweb>
   
     <root>
       <method>pserver</method>
       <user>anonymous</user>
       <password></password>
  -    <hostname>cvs.codehaus.org</hostname>
  -    <path>/cvsroot</path>
  +    <hostname>codehaus.org</hostname>
  +    <path>/scm</path>
     </root>
   </repository>
  
  
  
  No                   revision
  
  Index: codehaus.xml
  ===================================================================
  RCS file: /home/cvs/gump/repository/codehaus.xml,v
  retrieving revision 1.4
  retrieving revision 1.4.4.1
  diff -u -r1.4 -r1.4.4.1
  --- codehaus.xml	27 Feb 2004 08:56:58 -0000	1.4
  +++ codehaus.xml	21 Jun 2004 04:06:09 -0000	1.4.4.1
  @@ -18,13 +18,13 @@
   <repository name="codehaus" type="cvs">
     <title>codehaus</title>
     <home-page>http://www.codehaus.org/</home-page>
  -  <cvsweb>http://cvs.codehaus.org/viewcvs.cgi/</cvsweb>
  +  <cvsweb>http://cvs.codehaus.org/</cvsweb>
   
     <root>
       <method>pserver</method>
       <user>anonymous</user>
       <password></password>
  -    <hostname>cvs.codehaus.org</hostname>
  -    <path>/cvsroot</path>
  +    <hostname>codehaus.org</hostname>
  +    <path>/scm</path>
     </root>
   </repository>
  
  
  
  1.1.2.1   +0 -0      gump/repository/forrest.xml
  
  Index: forrest.xml
  ===================================================================
  RCS file: /home/cvs/gump/repository/forrest.xml,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  No                   revision
  No                   revision
  1.5.4.1   +8 -182    gump/src/documentation/content/xdocs/metadata/ant.xml
  
  Index: ant.xml
  ===================================================================
  RCS file: /home/cvs/gump/src/documentation/content/xdocs/metadata/ant.xml,v
  retrieving revision 1.5
  retrieving revision 1.5.4.1
  diff -u -r1.5 -r1.5.4.1
  --- ant.xml	6 Apr 2004 07:17:00 -0000	1.5
  +++ ant.xml	21 Jun 2004 04:06:10 -0000	1.5.4.1
  @@ -19,7 +19,7 @@
   
     <header>
       
  -    <title>Gump</title>
  +    <title>Gump:Ant</title>
     	<authors>
     	<person name="Sam Ruby" email="rubys@us.ibm.com"/>
     	<person name="Adam R. B. Jack" email="ajack@apache.org"/>
  @@ -38,196 +38,22 @@
           <th>Required?</th>
         </tr>
         <tr>
  -        <td>basedir</td>
  -        <td>The base directory in which the build is executed.  The generated
  -          build script will make this directory the current working directory
  -          prior to invoking Ant.
  -        </td>
  -        <td>No</td>
  -      </tr>
  -      <tr>
           <td>buildfile</td>
           <td>The ant build file to execute.  Defaults to <strong>build.xml</strong>.
           </td>
  -        <td>No</td>
  +        <td>No Defaults to <strong>build.xml</strong>.</td>
         </tr>
         <tr>
           <td>target</td>
  -        <td>The ant target to invoke.</td>
  -        <td>No</td>
  -      </tr>
  -      <tr>
  -        <td>debug</td>
  -        <td>Set to "true" to turn on ant debugging.</td>
  -        <td>No</td>
  +        <td>
  +        	The ant target to invoke. <em>This can be a space separated list.</em>
  +        </td>
  +        <td>No Defaults to <strong>gump</strong>.</td>
         </tr>
       </table>
       
  -    <warning>Only Python Gump supports &lt;ant debug=&quot;true&quot;</warning>
  -     
  -    <section><title>property</title>
  -      <p>Property overrides to be passed to the Ant command</p>
  -
  -      <table>
  -        <tr>
  -          <th>Attribute</th>
  -          <th>Description</th>
  -          <th>Required?</th>
  -        </tr>
  -        <tr>
  -          <td>name</td>
  -          <td>Name of the property to set.</td>
  -          <td>Yes</td>
  -        </tr>
  -        <tr>
  -          <td>value</td>
  -          <td>Desired value</td>
  -          <td>No</td>
  -        </tr>
  -        <tr>
  -          <td>project</td>
  -          <td>The name of the referenced project.  Required if the reference
  -          attribute is "home", "jar", "jarpath", or "srcdir".</td>
  -          <td>No</td>
  -        </tr>
  -        <tr>
  -          <td>reference</td>
  -          <td>
  -            One of the following values:<br/>
  -            <strong>home:</strong> the home directory for the referenced project<br/>
  -            <strong>jar:</strong> the simple name (path relative to home) of the jar in a
  -              referenced project.<br/>
  -            <strong>jarpath:</strong> the fully qualified path of the jar in a referenced
  -              project.<br/>
  -            <strong>srcdir:</strong> the srcdir for the module containing the project.<br/>
  -          </td>
  -          <td>No</td>
  -        </tr>
  -        <tr>
  -          <td>path</td>
  -          <td>a path which is to be interpreted relative to the srcdir for the module containing 
  -          	the project if specified, or this project otherwise.  This option is 
  -          ignored if reference is specified.</td>
  -          <td>No</td>
  -        </tr>
  -        <tr>
  -          <td>id</td>
  -          <td>Specifies which jar is desired.  Required only for projects which
  -          define more than one jar.</td>
  -          <td>No</td>
  -        </tr>
  -      </table>
  -    </section>
  -
  -    <section><title>depend</title>
  -      <p>This is equivalent to a property reference="jarpath" as well as a
  -      dependency element in the enclosing project.  This was introduced as
  -      that has become a common enough practice that it makes sense to
  -      introduce this element</p>
  -
  -      <table>
  -        <tr>
  -          <th>Attribute</th>
  -          <th>Description</th>
  -          <th>Required?</th>
  -        </tr>
  -        <tr>
  -          <td>property</td>
  -          <td>The name of the property which will receive the full jarpath
  -          of the specified jar.</td>
  -          <td>Yes</td>
  -        </tr>
  -        <tr>
  -          <td>project</td>
  -          <td>The name of the project depended on.</td>
  -          <td>Yes</td>
  -        </tr>
  -        <tr>
  -          <td>id</td>
  -          <td>Specifies which jar is desired.  Required only for projects which
  -          define more than one jar.</td>
  -          <td>No</td>
  -        </tr>
  -        <tr>
  -          <td>runtime</td>
  -          <td>Specifies whether this dependency is needed at runtime.
  -          Choices are "true" and "false" with the default being false.</td>
  -          <td>No</td>
  -        </tr>
  -      </table>
  -    </section>
  -
  -    <section><title>jvmarg</title>
  -      <p>Additional command line parameters to pass to the Java
  -          Virtual Machine running Ant.</p>
  -
  -      <table>
  -        <tr>
  -          <th>Attribute</th>
  -          <th>Description</th>
  -          <th>Required?</th>
  -        </tr>
  -        <tr>
  -          <td>value</td>
  -          <td>The parameter to pass to the command line.  This will be
  -            passed verbatim without any additional quotes.</td>
  -          <td>Yes</td>
  -        </tr>
  -      </table>
  -    </section>
  -
  -    <section><title>sysproperty</title>
  -      <p>Java system property to be passed to the Java Virtual Machine.</p>
  -
  -      <table>
  -        <tr>
  -          <th>Attribute</th>
  -          <th>Description</th>
  -          <th>Required?</th>
  -        </tr>
  -        <tr>
  -          <td>name</td>
  -          <td>Name of the property to set.</td>
  -          <td>Yes</td>
  -        </tr>
  -        <tr>
  -          <td>value</td>
  -          <td>Desired value</td>
  -          <td>No</td>
  -        </tr>
  -        <tr>
  -          <td>project</td>
  -          <td>The name of the referenced project.  Required if the reference
  -          attribute is "home", "jar", "jarpath", or "srcdir".</td>
  -          <td>No</td>
  -        </tr>
  -        <tr>
  -          <td>reference</td>
  -          <td>
  -            One of the following values:<br/>
  -            <strong>home:</strong> the home directory for the referenced project<br/>
  -            <strong>jar:</strong> the simple name (path relative to home) of the jar in a
  -              referenced project.<br/>
  -            <strong>jarpath:</strong> the fully qualified path of the jar in a referenced
  -              project.<br/>
  -            <strong>srcdir:</strong> the srcdir for the module containing the project.<br/>
  -          </td>
  -          <td>No</td>
  -        </tr>
  -        <tr>
  -          <td>path</td>
  -          <td>a path which is to be interpreted relative to the srcdir for the module containing 
  -          	the project if specified, or this project otherwise.  This option is 
  -          ignored if reference is specified.</td>
  -          <td>No</td>
  -        </tr>
  -        <tr>
  -          <td>id</td>
  -          <td>Specifies which jar is desired.  Required only for projects which
  -          define more than one jar.</td>
  -          <td>No</td>
  -        </tr>
  -      </table>
  +    <section><title>Ant as a Builder</title>
  +		<p>&lt;ant is an extension of the <link href="builder.html">"Generic Builder"</link> and supports those attributes/sub-elements.</p>
       </section>
   
     </section>
  
  
  
  1.3.4.1   +12 -5     gump/src/documentation/content/xdocs/metadata/repository.xml
  
  Index: repository.xml
  ===================================================================
  RCS file: /home/cvs/gump/src/documentation/content/xdocs/metadata/repository.xml,v
  retrieving revision 1.3
  retrieving revision 1.3.4.1
  diff -u -r1.3 -r1.3.4.1
  --- repository.xml	27 Feb 2004 09:38:56 -0000	1.3
  +++ repository.xml	21 Jun 2004 04:06:10 -0000	1.3.4.1
  @@ -72,7 +72,12 @@
         </tr>
         <tr>
           <td>cvsweb</td>
  -        <td>Web interface to the repository</td>
  +        <td>Web interface to the repository. <strong>To be deprecated, see &lt;web.</strong></td>
  +        <td>No</td>
  +      </tr>
  +      <tr>
  +        <td>web</td>
  +        <td>Web interface to the repository. (More approprice for multiple types).</td>
           <td>No</td>
         </tr>
         <tr>
  @@ -83,9 +88,11 @@
       </table>
       <p/>
   
  -    <section><title>root</title>
  -      <note>This is for type='cvs' only.</note>
  -      <p>This specifies all of the elements which are combined to form
  +	<section>
  +		<title>CVS Usage</title>
  +		<section><title>root</title>
  +			<note>This is for type='cvs' only.</note>
  +			<p>This specifies all of the elements which are combined to form
         a CVSROOT.  They are split out into separate entities so that each
         can be individually overridden in a workspace definition.  When an
         entity is listed a required below, it means that when all of the
  @@ -126,7 +133,7 @@
           </tr>
         </table>
       </section>
  -
  +	</section>
     </section>
   </body>
   </document>
  
  
  
  No                   revision
  
  Index: repository.xml
  ===================================================================
  RCS file: /home/cvs/gump/src/documentation/content/xdocs/metadata/repository.xml,v
  retrieving revision 1.3
  retrieving revision 1.3.4.1
  diff -u -r1.3 -r1.3.4.1
  --- repository.xml	27 Feb 2004 09:38:56 -0000	1.3
  +++ repository.xml	21 Jun 2004 04:06:10 -0000	1.3.4.1
  @@ -72,7 +72,12 @@
         </tr>
         <tr>
           <td>cvsweb</td>
  -        <td>Web interface to the repository</td>
  +        <td>Web interface to the repository. <strong>To be deprecated, see &lt;web.</strong></td>
  +        <td>No</td>
  +      </tr>
  +      <tr>
  +        <td>web</td>
  +        <td>Web interface to the repository. (More approprice for multiple types).</td>
           <td>No</td>
         </tr>
         <tr>
  @@ -83,9 +88,11 @@
       </table>
       <p/>
   
  -    <section><title>root</title>
  -      <note>This is for type='cvs' only.</note>
  -      <p>This specifies all of the elements which are combined to form
  +	<section>
  +		<title>CVS Usage</title>
  +		<section><title>root</title>
  +			<note>This is for type='cvs' only.</note>
  +			<p>This specifies all of the elements which are combined to form
         a CVSROOT.  They are split out into separate entities so that each
         can be individually overridden in a workspace definition.  When an
         entity is listed a required below, it means that when all of the
  @@ -126,7 +133,7 @@
           </tr>
         </table>
       </section>
  -
  +	</section>
     </section>
   </body>
   </document>
  
  
  
  No                   revision
  
  Index: repository.xml
  ===================================================================
  RCS file: /home/cvs/gump/src/documentation/content/xdocs/metadata/repository.xml,v
  retrieving revision 1.3
  retrieving revision 1.3.4.1
  diff -u -r1.3 -r1.3.4.1
  --- repository.xml	27 Feb 2004 09:38:56 -0000	1.3
  +++ repository.xml	21 Jun 2004 04:06:10 -0000	1.3.4.1
  @@ -72,7 +72,12 @@
         </tr>
         <tr>
           <td>cvsweb</td>
  -        <td>Web interface to the repository</td>
  +        <td>Web interface to the repository. <strong>To be deprecated, see &lt;web.</strong></td>
  +        <td>No</td>
  +      </tr>
  +      <tr>
  +        <td>web</td>
  +        <td>Web interface to the repository. (More approprice for multiple types).</td>
           <td>No</td>
         </tr>
         <tr>
  @@ -83,9 +88,11 @@
       </table>
       <p/>
   
  -    <section><title>root</title>
  -      <note>This is for type='cvs' only.</note>
  -      <p>This specifies all of the elements which are combined to form
  +	<section>
  +		<title>CVS Usage</title>
  +		<section><title>root</title>
  +			<note>This is for type='cvs' only.</note>
  +			<p>This specifies all of the elements which are combined to form
         a CVSROOT.  They are split out into separate entities so that each
         can be individually overridden in a workspace definition.  When an
         entity is listed a required below, it means that when all of the
  @@ -126,7 +133,7 @@
           </tr>
         </table>
       </section>
  -
  +	</section>
     </section>
   </body>
   </document>
  
  
  
  1.1.2.1   +0 -0      gump/src/documentation/content/xdocs/metadata/builder.xml
  
  Index: builder.xml
  ===================================================================
  RCS file: /home/cvs/gump/src/documentation/content/xdocs/metadata/builder.xml,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  1.1.2.1   +0 -0      gump/src/documentation/content/xdocs/metadata/maven.xml
  
  Index: maven.xml
  ===================================================================
  RCS file: /home/cvs/gump/src/documentation/content/xdocs/metadata/maven.xml,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  No                   revision
  No                   revision
  1.4.4.1   +4 -4      gump/src/documentation/content/xdocs/python/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/gump/src/documentation/content/xdocs/python/index.xml,v
  retrieving revision 1.4
  retrieving revision 1.4.4.1
  diff -u -r1.4 -r1.4.4.1
  --- index.xml	27 Feb 2004 09:38:57 -0000	1.4
  +++ index.xml	21 Jun 2004 04:06:10 -0000	1.4.4.1
  @@ -27,18 +27,18 @@
   <body>
     <section><title>Python Gump</title>
     <p>
  -    See the <link href="http://nagoya.apache.org/wiki/apachewiki.cgi?GumpPython">background</link> on why
  +    See the <link href="http://wiki.apache.org/gump/GumpPython">background</link> on why
       the Python Gump re-write was initiated.
     </p>
     
     <note>
  -  	Python Gump has matured to the point it is live, and generating builds. Current activity is
  -  	primarily towards maturing the outputs (documentation, syndicated micro-content, etc.) Next
  -  	phases are increasing the capabilities of Gump.
  +  	Python Gump has matured to the point it is the live run, and will soon replace Traditional 
  +  	all together.
     </note>
     
         <section><title>Python GUI</title>
         	<p>The Python Gump metadata viewer/UI.</p>
  +      	<warning>This GUI is a work in progress (that hasn't progressed recently).</warning>
         	<p>
         		<img alt="GUI" src="../graphics/view.jpg"/>
         	</p>
  
  
  
  No                   revision
  No                   revision
  1.351.2.1 +1 -0      gump/profile/gump.xml
  
  Index: gump.xml
  ===================================================================
  RCS file: /home/cvs/gump/profile/gump.xml,v
  retrieving revision 1.351
  retrieving revision 1.351.2.1
  diff -u -r1.351 -r1.351.2.1
  --- gump.xml	4 Jun 2004 04:22:25 -0000	1.351
  +++ gump.xml	21 Jun 2004 04:06:10 -0000	1.351.2.1
  @@ -275,6 +275,7 @@
     <project name="concurrent"       package="dougLea"/>
     <project name="cos"              package="cos-05Nov2002"/>
     <project name="cryptix"          package="cryptix32-20001002-r3.2.0"/>
  +  <project name="commons-codec-11" package="commons-codec-1.1"/>
     <project name="ejb"              package="ejb-2_0-fr"/>
     <!--project name="fesi"             package="fesi"/-->
     <project name="iso-relax"        package="isorelax.20020707"/>
  
  
  
  No                   revision
  No                   revision
  1.15.2.1  +1 -10     gump/src/documentation/content/xdocs/site.xml
  
  Index: site.xml
  ===================================================================
  RCS file: /home/cvs/gump/src/documentation/content/xdocs/site.xml,v
  retrieving revision 1.15
  retrieving revision 1.15.2.1
  diff -u -r1.15 -r1.15.2.1
  --- site.xml	25 May 2004 22:46:01 -0000	1.15
  +++ site.xml	21 Jun 2004 04:06:10 -0000	1.15.2.1
  @@ -60,18 +60,9 @@
       	    <module href="metadata/module.html" label="Module"/>
   	    <project href="metadata/project.html" label="Project"/>
   	    <ant href="metadata/ant.html" label="Ant"/>
  +	    <maven href="metadata/maven.html" label="Maven"/>
   	    <goodpractices href="metadata/practices.html" label="Good Practices"/>
   	</om>
  -
  -	<menu label="Object Model" tab="metadata">
  -	    <index href="metadata/index.html" label="Overview"/>
  -	    <index href="metadata/workspace.html" label="Workspace"/>
  -	    <index href="metadata/profile.html" label="Profile"/>
  -	    <index href="metadata/repository.html" label="Repository"/>
  -    	    <index href="metadata/module.html" label="Module"/>
  -	    <index href="metadata/project.html" label="Project"/>
  -	    <index href="metadata/ant.html" label="Ant"/>
  -	</menu>
   
   	<traditional label="Traditional" tab="traditional">
   	    <overview href="traditional/index.html" label="Overview"/>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@gump.apache.org
For additional commands, e-mail: general-help@gump.apache.org