You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ba...@apache.org on 2006/07/20 06:26:23 UTC

svn commit: r423752 - in /jakarta/commons/sandbox/csv/trunk: ./ xdocs/ xdocs/style/

Author: bayard
Date: Wed Jul 19 21:26:20 2006
New Revision: 423752

URL: http://svn.apache.org/viewvc?rev=423752&view=rev
Log:
Applying all of Niall's nice work for finder back over to csv (from which finder was copied)

Added:
    jakarta/commons/sandbox/csv/trunk/maven.xml   (with props)
    jakarta/commons/sandbox/csv/trunk/xdocs/changes.xml   (with props)
    jakarta/commons/sandbox/csv/trunk/xdocs/cvs-usage.xml   (with props)
    jakarta/commons/sandbox/csv/trunk/xdocs/downloads.xml   (with props)
    jakarta/commons/sandbox/csv/trunk/xdocs/examples.xml   (with props)
    jakarta/commons/sandbox/csv/trunk/xdocs/issue-tracking.xml   (with props)
    jakarta/commons/sandbox/csv/trunk/xdocs/navigation.xml   (with props)
    jakarta/commons/sandbox/csv/trunk/xdocs/style/
    jakarta/commons/sandbox/csv/trunk/xdocs/style/project.css   (with props)
Modified:
    jakarta/commons/sandbox/csv/trunk/project.properties
    jakarta/commons/sandbox/csv/trunk/project.xml

Added: jakarta/commons/sandbox/csv/trunk/maven.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/maven.xml?rev=423752&view=auto
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/maven.xml (added)
+++ jakarta/commons/sandbox/csv/trunk/maven.xml Wed Jul 19 21:26:20 2006
@@ -0,0 +1,83 @@
+<!--
+   Copyright 2006 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 default="java:jar"
+  xmlns:ant="jelly:ant"
+  xmlns:j="jelly:core">
+
+    <!-- ================================================================== -->
+    <!-- Copy into the binary distribution                                  -->
+    <!-- ================================================================== -->
+    <postGoal name="dist:prepare-bin-filesystem">
+
+        <copy todir="${maven.dist.bin.assembly.dir}">
+            <fileset file='${basedir}/NOTICE.txt'/>
+            <fileset file="${basedir}/RELEASE-NOTES.txt"/>
+        </copy>
+
+    </postGoal>
+
+    <!-- ================================================================== -->
+    <!-- Copy into the source distribution                                  -->
+    <!-- ================================================================== -->
+    <postGoal name="dist:prepare-src-filesystem">
+
+        <!-- Copy the NOTICE -->
+        <copy todir="${maven.dist.src.assembly.dir}">
+            <fileset file='${basedir}/NOTICE.txt'/>
+            <fileset file="${basedir}/checkstyle.xml"/>
+            <fileset file="${basedir}/license-header.txt"/>
+        </copy>
+
+        <!-- Copy xdoc files -->
+        <copy todir="${maven.dist.src.assembly.dir}/xdocs">
+            <fileset dir="xdocs"/>
+        </copy>
+
+    </postGoal>
+
+    <!-- ================================================================== -->
+    <!-- Create MD5 Check Sums                                              -->
+    <!-- ================================================================== -->
+    <postGoal name="dist">
+
+         <!-- create checksum for jar -->
+         <ant:checksum file="${maven.build.dir}/${maven.final.name}.jar" property="jar.md5"/>
+         <ant:echo message="${jar.md5} *${maven.final.name}.jar" 
+                   file="${maven.build.dir}/${maven.final.name}.jar.md5" />
+
+         <!-- create checksum for binary zip -->
+         <ant:checksum file="${maven.dist.dir}/${maven.final.name}.zip" property="zip.md5"/>
+         <ant:echo message="${zip.md5} *${maven.final.name}.zip" 
+                   file="${maven.dist.dir}/${maven.final.name}.zip.md5" />
+
+         <!-- create checksum for binary tar.gz -->
+         <ant:checksum file="${maven.dist.dir}/${maven.final.name}.tar.gz" property="tar.gz.md5"/>
+         <ant:echo message="${tar.gz.md5} *${maven.final.name}.tar.gz" 
+                   file="${maven.dist.dir}/${maven.final.name}.tar.gz.md5" />
+
+         <!-- create checksum for source zip -->
+         <ant:checksum file="${maven.dist.dir}/${maven.final.name}-src.zip" property="src.zip.md5"/>
+         <ant:echo message="${src.zip.md5} *${maven.final.name}-src.zip" 
+                   file="${maven.dist.dir}/${maven.final.name}-src.zip.md5" />
+
+         <!-- create checksum for source tar.gz -->
+         <ant:checksum file="${maven.dist.dir}/${maven.final.name}-src.tar.gz" property="src.tar.gz.md5"/>
+         <ant:echo message="${src.tar.gz.md5} *${maven.final.name}-src.tar.gz" 
+                   file="${maven.dist.dir}/${maven.final.name}-src.tar.gz.md5" />
+
+    </postGoal>
+  
+</project>

Propchange: jakarta/commons/sandbox/csv/trunk/maven.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: jakarta/commons/sandbox/csv/trunk/project.properties
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/project.properties?rev=423752&r1=423751&r2=423752&view=diff
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/project.properties (original)
+++ jakarta/commons/sandbox/csv/trunk/project.properties Wed Jul 19 21:26:20 2006
@@ -21,6 +21,7 @@
 maven.xdoc.version=${pom.currentVersion}
 maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
 maven.xdoc.includeProjectDocumentation=yes
+maven.changes.issue.template=%URL%/browse/%ISSUE%
 
 # Jar Manifest Additional Attributes
 maven.jar.manifest.attributes.list=Implementation-Vendor-Id,X-Compile-Source-JDK,X-Compile-Target-JDK

Modified: jakarta/commons/sandbox/csv/trunk/project.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/project.xml?rev=423752&r1=423751&r2=423752&view=diff
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/project.xml (original)
+++ jakarta/commons/sandbox/csv/trunk/project.xml Wed Jul 19 21:26:20 2006
@@ -16,15 +16,18 @@
 -->
 <project>
   <name>Commons CSV</name>
-  <id>commons-csv</id>
+  <groupId>org.apache.commons</groupId>
+  <artifactId>commons-csv</artifactId>
   <logo>/images/csv-logo-white.png</logo>
   <inceptionYear>2005</inceptionYear>
   <shortDescription>Commons CSV</shortDescription>
   <description>
     Commons CSV is a component that parses comma separated value files. 
   </description>
-  <currentVersion>0.1-dev</currentVersion>
-  <issueTrackingUrl>http://issues.apache.org/jira/browse/SANDBOX</issueTrackingUrl>
+  <currentVersion>0.1-SNAPSHOT</currentVersion>
+  <url>http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url>
+  <package>org.apache.commons.${pom.artifactId.substring(8)}</package>
+  <issueTrackingUrl>http://issues.apache.org/jira/</issueTrackingUrl>
   <siteAddress>people.apache.org</siteAddress>
     <organization>
         <name>The Apache Software Foundation</name>
@@ -42,13 +45,14 @@
             <name>Commons Dev List</name>
             <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
             <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
-            <archive>http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive>
+            <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/</archive>
         </mailingList>
+
         <mailingList>
             <name>Commons User List</name>
             <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
             <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
-            <archive>http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</archive>
+            <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/</archive>
         </mailingList>
     </mailingLists>
 
@@ -69,6 +73,27 @@
     <dependency>
       <id>junit</id>
       <version>3.8.1</version>
+      <url>http://www.junit.org/</url>
+      <properties>
+          <scope>test</scope>
+          <comment>
+              &lt;strong&gt;Test&lt;/strong&gt; - required
+              only to run the unit tests.
+          </comment>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>maven</groupId>
+      <artifactId>maven-xdoc-plugin</artifactId>
+      <version>1.9.2</version>
+      <url>http://maven.apache.org/reference/plugins/xdoc/</url>
+      <type>plugin</type>
+      <properties>
+          <comment>
+              &lt;strong&gt;Site&lt;/strong&gt; - required
+              only to generate the Site/Documentation.
+          </comment>
+      </properties>
     </dependency>
   </dependencies>
 
@@ -77,9 +102,18 @@
     <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
     <unitTest>
       <includes>
-        <include>**/*Test*</include>
+        <include>**/*Test.java</include>
       </includes>
     </unitTest>
+    <resources>
+      <resource>
+        <directory>${basedir}</directory>
+        <targetPath>META-INF</targetPath>
+        <includes>
+          <include>NOTICE.txt</include>
+        </includes>
+      </resource>
+    </resources>
   </build>
 
 </project>

Added: jakarta/commons/sandbox/csv/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/xdocs/changes.xml?rev=423752&view=auto
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/xdocs/changes.xml (added)
+++ jakarta/commons/sandbox/csv/trunk/xdocs/changes.xml Wed Jul 19 21:26:20 2006
@@ -0,0 +1,45 @@
+<?xml version="1.0"?>
+<!--
+   Copyright 2006 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.
+-->
+
+<!--
+This file is used by the maven-changes-plugin to generate the release notes.
+Useful ways of finding items to add to this file are:
+
+1.  Add items when you fix a bug or add a feature (this makes the 
+release process easy :-).
+
+2.  Do a JIRA search for tickets closed since the previous release.
+
+3.  Use the report generated by the maven-changelog-plugin to see all
+SVN commits.  Set the project.properties' maven.changelog.range 
+property to the number of days since the last release.
+
+
+The <action> type attribute can be add,update,fix,remove.
+-->
+
+<document>
+  <properties>
+    <title>Release Notes</title>
+  </properties>
+  <body>
+
+    <release version="0.1" date="in SVN">
+    </release>
+    
+  </body>
+</document>

Propchange: jakarta/commons/sandbox/csv/trunk/xdocs/changes.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: jakarta/commons/sandbox/csv/trunk/xdocs/cvs-usage.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/xdocs/cvs-usage.xml?rev=423752&view=auto
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/xdocs/cvs-usage.xml (added)
+++ jakarta/commons/sandbox/csv/trunk/xdocs/cvs-usage.xml Wed Jul 19 21:26:20 2006
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!-- 
+/*
+ * Copyright 2006 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>Source repository</title>
+  <author email="commons-dev@jakarta.apache.org">Commons Documentation Team</author>
+ </properties>
+ <body>
+<!-- ================================================== -->
+<section name="Source repository">
+<p>
+  Jakarta Commons CSV is hosted on the Apache
+  <a href="http://subversion.tigris.org/">subversion</a> repository.
+</p>
+<p>
+  The project URL is:<br />
+  <code>http://svn.apache.org/repos/asf/jakarta/commons/sandbox/csv/trunk</code>
+</p>
+<p>
+  The best way to view the repository is via the
+  <a href="http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/">subversion viewer</a>.
+</p>
+<p>
+  The alternative is to use the
+  <a href="http://svn.apache.org/repos/asf/jakarta/commons/sandbox/csv/trunk/">native subversion</a> display.
+</p>
+<p>
+  For more information on subversion and creating patches see the
+  <a href="http://www.apache.org/dev/contributors.html">Apache Contributors Guide</a>.
+</p>
+</section>
+<!-- ================================================== -->
+</body>
+</document>
\ No newline at end of file

Propchange: jakarta/commons/sandbox/csv/trunk/xdocs/cvs-usage.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: jakarta/commons/sandbox/csv/trunk/xdocs/downloads.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/xdocs/downloads.xml?rev=423752&view=auto
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/xdocs/downloads.xml (added)
+++ jakarta/commons/sandbox/csv/trunk/xdocs/downloads.xml Wed Jul 19 21:26:20 2006
@@ -0,0 +1,56 @@
+<?xml version="1.0"?>
+<!--
+   Copyright 2006 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>Downloads</title>
+   </properties>
+
+   <body>
+      <section name="Download CSV">
+         
+         <subsection name="Releases">
+            <p>
+               There are currently no official downloads, and will not be until CSV moves out of the Sandbox.
+<!--
+               Download the <a href="http://jakarta.apache.org/site/downloads/downloads_commons-csv.cgi">Latest Release</a>
+               of Commons CSV.
+-->
+            </p>
+
+         </subsection>
+
+         <subsection name="Nightly Builds">
+            <p>
+               <a href="http://people.apache.org/builds/jakarta-commons/nightly/commons-csv/">Nightly Builds</a>
+               are built once a day from the current SVN HEAD. This is (nearly) the latest code and so should
+               be treated with caution.
+            </p>
+         </subsection>
+<!--
+         <subsection name="Archived Releases">
+            <p>
+               Older releases are retained by the Apache Software Foundation but are
+               moved into a
+               <a href="http://archive.apache.org/dist/jakarta/commons/csv/">
+             special archive area</a>.
+            </p>
+         </subsection>
+-->
+      </section>
+
+   </body>
+</document>

Propchange: jakarta/commons/sandbox/csv/trunk/xdocs/downloads.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: jakarta/commons/sandbox/csv/trunk/xdocs/examples.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/xdocs/examples.xml?rev=423752&view=auto
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/xdocs/examples.xml (added)
+++ jakarta/commons/sandbox/csv/trunk/xdocs/examples.xml Wed Jul 19 21:26:20 2006
@@ -0,0 +1,30 @@
+<?xml version="1.0"?>
+<!--
+Copyright 2006 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>Code Examples</title>
+  <author email="commons-dev@jakarta.apache.org">Commons Documentation Team</author>
+ </properties>
+<body>
+<!-- ================================================== -->
+<section name="Code Examples">
+  <pre>
+  </pre>
+</section>
+<!-- ================================================== -->
+</body>
+</document>

Propchange: jakarta/commons/sandbox/csv/trunk/xdocs/examples.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: jakarta/commons/sandbox/csv/trunk/xdocs/issue-tracking.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/xdocs/issue-tracking.xml?rev=423752&view=auto
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/xdocs/issue-tracking.xml (added)
+++ jakarta/commons/sandbox/csv/trunk/xdocs/issue-tracking.xml Wed Jul 19 21:26:20 2006
@@ -0,0 +1,71 @@
+<?xml version="1.0"?>
+<!--
+Copyright 2006 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>Issue tracking</title>
+  <author email="commons-dev@jakarta.apache.org">Commons Documentation Team</author>
+ </properties>
+<body>
+<!-- ================================================== -->
+<section name="Issue tracking">
+<p>
+  Commons CSV uses <a href="http://issues.apache.org/jira/">ASF JIRA</a> for for tracking issues.
+  See the <a href="http://issues.apache.org/jira/browse/SANDBOX">Sandbox JIRA project page</a>.
+</p>
+<p>
+  To use JIRA you may need to <a href="http://issues.apache.org/jira/secure/Signup!default.jspa">create an account</a>
+  (if you have previously created/updated Commons issues using Bugzilla an account will have been automatically
+  created and you can use the <a href="http://issues.apache.org/jira/secure/ForgotPassword!default.jspa">Forgot Password</a>
+  page to get a new password).
+</p>
+<p>
+  If you would like to report a bug, or raise an enhancement request with
+  Commons CSV please do the following:
+  <ol>
+  <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12310491&amp;component=12311267&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=1&amp;status=4">Search existing open bugs</a>.
+  If you find your issue listed then please add a comment with your details.</li>
+  <li><a href="http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/">Search the mailing list archive</a>.
+  You may find your issue or idea has already been discussed.</li>
+  <li>Decide if your issue is a bug or an enhancement.</li>
+  <li>Submit either a <a href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310491&amp;component=12311267&amp;issuetype=1&amp;priority=4&amp;assignee=-1">bug report</a>
+  or <a href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310491&amp;component=12311267&amp;issuetype=4&amp;priority=4&amp;assignee=-1">enhancement request</a>.</li>
+  </ol>
+</p>
+<p>
+  Please also remember these points:
+  <ul>
+  <li>the more information you provide, the better we can help you</li>
+  <li>test cases are vital, particularly for any proposed enhancements</li>
+  <li>the developers of Commons CSV are all unpaid volunteers</li>
+  </ul>
+</p>
+<p>
+  For more information on subversion and creating patches see the
+  <a href="http://www.apache.org/dev/contributors.html">Apache Contributors Guide</a>.
+</p>
+<p>
+  You may also find these links useful:
+  <ul>
+  <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12310491&amp;component=12311267&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=1&amp;status=4">All Open CSV bugs</a></li>
+  <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12310491&amp;component=12311267&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=5&amp;status=6">All Resolved CSV bugs</a></li>
+  <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12310491&amp;component=12311267&amp;sorter/field=issuekey&amp;sorter/order=DESC">All CSV bugs</a></li>
+  </ul>
+</p>
+</section>
+<!-- ================================================== -->
+</body>
+</document>

Propchange: jakarta/commons/sandbox/csv/trunk/xdocs/issue-tracking.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: jakarta/commons/sandbox/csv/trunk/xdocs/navigation.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/xdocs/navigation.xml?rev=423752&view=auto
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/xdocs/navigation.xml (added)
+++ jakarta/commons/sandbox/csv/trunk/xdocs/navigation.xml Wed Jul 19 21:26:20 2006
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+   Copyright 2006 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 org.apache.commons.menus SYSTEM 'http://jakarta.apache.org/commons/build/maven-build.dtd'>
+<project name="CSV">
+
+  <title>CSV</title>
+  <organizationLogo href="/images/jakarta-logo-blue.gif">Jakarta</organizationLogo>
+
+  <body>
+    <links>
+      <item name="Apache"      href="http://www.apache.org"/>
+      <item name="Jakarta"     href="http://jakarta.apache.org"/>
+      <item name="Commons"     href="http://jakarta.apache.org/commons/"/>
+    </links>
+
+    <menu name="CSV">
+      <item name="Overview"    href="/index.html"/>
+      <item name="Download"    href="/downloads.html"/>
+      <item name="Javadoc"     href="/apidocs/index.html"/>
+      <item name="Wiki"        href="http://wiki.apache.org/jakarta-commons/CSV"/>
+    </menu>
+    
+    <menu name="Development">
+      <item name="History"                 href="/changes-report.html"/>
+      <!-- item name="Building"                href="/building.html"/ -->
+      <item name="Mailing Lists"           href="/mail-lists.html"/>
+      <item name="Issue Tracking"          href="/issue-tracking.html"/>
+      <item name="Team"                    href="/team-list.html"/>
+      <item name="Source Repository"       href="/cvs-usage.html"/>
+      <item name="Javadoc (latest)"        href="http://jakarta.apache.org/commons/sandbox/csv/apidocs/"/>
+    </menu>
+
+    &commons;
+    
+  </body>
+</project>

Propchange: jakarta/commons/sandbox/csv/trunk/xdocs/navigation.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: jakarta/commons/sandbox/csv/trunk/xdocs/style/project.css
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/xdocs/style/project.css?rev=423752&view=auto
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/xdocs/style/project.css (added)
+++ jakarta/commons/sandbox/csv/trunk/xdocs/style/project.css Wed Jul 19 21:26:20 2006
@@ -0,0 +1 @@
+@import url("http://jakarta.apache.org/style/jakarta-maven.css");

Propchange: jakarta/commons/sandbox/csv/trunk/xdocs/style/project.css
------------------------------------------------------------------------------
    svn:eol-style = native



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