You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2004/02/28 18:12:35 UTC

cvs commit: jakarta-commons-sandbox/functor/xdocs/stylesheets project.xml

scolebourne    2004/02/28 09:12:35

  Modified:    functor/xdocs index.xml
               functor  project.properties project.xml
  Added:       functor/xdocs navigation.xml
  Removed:     functor/xdocs/stylesheets project.xml
  Log:
  Update to new website design
  
  Revision  Changes    Path
  1.8       +40 -12    jakarta-commons-sandbox/functor/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/functor/xdocs/index.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- index.xml	3 Dec 2003 18:22:10 -0000	1.7
  +++ index.xml	28 Feb 2004 17:12:34 -0000	1.8
  @@ -1,4 +1,19 @@
   <?xml version="1.0"?>
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
  +
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +-->
   <document>
     <properties>
       <title>Overview</title>
  @@ -7,7 +22,7 @@
     </properties>
   
     <body>
  -    <section name="Functor: Function Objects for Java">
  +    <section name="Commons Functor: Function Objects for Java">
         <p>
            A <em>functor</em> is a function that can be manipulated 
            as an object, or an object representing a single, generic
  @@ -33,18 +48,19 @@
            See the <a href="examples.html">examples</a> for more information on some of 
            these techniques.
         </p>
  +<subsection name="Status">
  +<p>
  + <ul>
  +  <li>This code is in the commons <i>sandbox</i></li>
  +  <li>The code is unreleased</li>
  +  <li>Methods and classes can and will appear and disappear without warning</li>
  +  <li>If you like the code and want to push it towards a release, join the mailing list!</li>
  + </ul>
  +</p>
  +</subsection>
       </section>
  -    <section name="Status">
  -      <p>
  -         Functor has not yet had an official binary release, but
  -         daily binary and source snapshots are available from 
  -         <a href="http://cvs.apache.org/builds/jakarta-commons/nightly/commons-functor/">http://cvs.apache.org/builds/jakarta-commons/nightly/commons-functor/</a>.
  -      </p>
  -      <p>
  -         See the <a href="http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-commons-sandbox/functor/STATUS.txt">STATUS</a> file for 
  -         the official project status.
  -      </p>
  -    </section>
  +    
  +    
       <section name="Overview">
         <p>
            <emphasis>Commons Functor</emphasis> defines three general types of
  @@ -70,5 +86,17 @@
           provide common functor implementations, adapters and utilities.
         </p>
       </section>
  +    
  +    
  +<section name="Releases">
  +<p>
  +None. This is a <i>sandbox</i> component.
  +</p>
  +<p>
  +Unofficial <a href="http://cvs.apache.org/builds/jakarta-commons/nightly/commons-functor/">nightly builds</a>
  +are available, however these should be treated with care.
  +</p>
  +</section>
  +
     </body>
   </document>
  
  
  
  1.1                  jakarta-commons-sandbox/functor/xdocs/navigation.xml
  
  Index: navigation.xml
  ===================================================================
  <?xml version="1.0" encoding="ISO-8859-1"?>
  <!--
     Copyright 2004 The Apache Software Foundation
  
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
  
         http://www.apache.org/licenses/LICENSE-2.0
  
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
  -->
  
  <!DOCTYPE project [
  <!ENTITY commons-nav SYSTEM "../../sandbox-build/incl_nav.xml">
  ]>
  
  <project name="Functor">
  
    <title>Functor</title>
    <organizationLogo href="/images/jakarta-logo-blue.gif">
     Jakarta
    </organizationLogo>
  
    <body>
      <links>
        <item name="Jakarta Commons" href="http://jakarta.apache.org/commons/"/>
      </links>
  
      <menu name="Commons Functor">
        <item name="Overview" href="/index.html"/>
        <item name="Examples" href="/examples.html"/>
        <item name="Javadoc" href="apidocs/index.html"/>
        <item name="Mailing lists" href="/mail-lists.html"/>
        <item name="Downloads" href="/download.html"/>
      </menu>
      <menu name="Development">
        <item name="Building" href="/building.html"/>
        <item name="Test Coverage" href="/clover/index.html"/>
        <item name="Team" href="/team-list.html"/>
        <item name="Status" href="http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-commons-sandbox/functor/STATUS.txt"/>
        <item name="CVS" href="http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/functor/"/>
      </menu>
      
      &commons-nav;
  
    </body>
  </project>
  
  
  
  1.5       +20 -3     jakarta-commons-sandbox/functor/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/functor/project.properties,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.properties	3 Dec 2003 01:04:12 -0000	1.4
  +++ project.properties	28 Feb 2004 17:12:35 -0000	1.5
  @@ -1,10 +1,27 @@
  +#   Copyright 2003-2004 The Apache Software Foundation
  +#
  +#   Licensed under the Apache License, Version 2.0 (the "License");
  +#   you may not use this file except in compliance with the License.
  +#   You may obtain a copy of the License at
  +#
  +#       http://www.apache.org/licenses/LICENSE-2.0
  +#
  +#   Unless required by applicable law or agreed to in writing, software
  +#   distributed under the License is distributed on an "AS IS" BASIS,
  +#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +#   See the License for the specific language governing permissions and
  +#   limitations under the License.
  +
  +maven.xdoc.jsl=../sandbox-build/commons-site.jsl
  +maven.xdoc.date=left
  +maven.xdoc.poweredby.image=maven-feather.png
  +maven.xdoc.version=${pom.currentVersion}
  +maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
  +
   maven.checkstyle.properties=src/conf/checkstyle.properties
   
   maven.javadoc.author=false
   maven.javadoc.links=http://java.sun.com/products/jdk/1.4/docs/api
  -
  -maven.xdoc.date=left
  -#maven.xdoc.version=${pom.currentVersion}
   
   maven.compile.debug=on
   maven.compile.deprecation=off
  
  
  
  1.8       +27 -7     jakarta-commons-sandbox/functor/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/functor/project.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- project.xml	28 Feb 2004 05:13:13 -0000	1.7
  +++ project.xml	28 Feb 2004 17:12:35 -0000	1.8
  @@ -1,15 +1,30 @@
   <?xml version="1.0"?>
  -<project> 
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
  +
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +-->
  +
  +<project>
     <extend>../sandbox-build/project.xml</extend>
  -  <name>commons-functor</name>
  +  <name>Functor</name>
     <id>commons-functor</id>
  +  
  +  <logo><!--/images/logo.png--></logo>
  +  
     <currentVersion>1.0-dev</currentVersion>
  -
     <inceptionYear>2003</inceptionYear>
  -  <package>org.apache.commons.functor</package>
  -
  -  <shortDescription>Commons Functor Component</shortDescription>
  -
  +  <shortDescription>Commons Functor</shortDescription>
     <description>
       A "functor" is an entity that serves the role of a function
       but can be operated upon like an object.  Commons Functor
  @@ -61,6 +76,11 @@
           </resource>
         </resources>
       </unitTest>
  +    <resources>
  +      <resource>
  +        <include>NOTICE.txt</include>
  +      </resource>
  +    </resources>
     </build>
   </project>
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org