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

svn commit: r424797 - in /jakarta/commons/proper/vfs/trunk: maven.xml project.properties project.xml xdocs/cvs-usage.xml xdocs/issue-tracking.xml xdocs/navigation.xml xdocs/style/ xdocs/style/project.css

Author: niallp
Date: Sun Jul 23 13:22:24 2006
New Revision: 424797

URL: http://svn.apache.org/viewvc?rev=424797&view=rev
Log:
Update VFS build/site:
- remove dependency on commons build
- correct mail-archive links
- add custom "Source Repository" page
- add custom "Issue Tracking" page
- improve site navigation
- add md5 checksums

Added:
    jakarta/commons/proper/vfs/trunk/xdocs/cvs-usage.xml   (with props)
    jakarta/commons/proper/vfs/trunk/xdocs/issue-tracking.xml   (with props)
    jakarta/commons/proper/vfs/trunk/xdocs/style/
    jakarta/commons/proper/vfs/trunk/xdocs/style/project.css   (with props)
Modified:
    jakarta/commons/proper/vfs/trunk/maven.xml
    jakarta/commons/proper/vfs/trunk/project.properties
    jakarta/commons/proper/vfs/trunk/project.xml
    jakarta/commons/proper/vfs/trunk/xdocs/navigation.xml

Modified: jakarta/commons/proper/vfs/trunk/maven.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/vfs/trunk/maven.xml?rev=424797&r1=424796&r2=424797&view=diff
==============================================================================
--- jakarta/commons/proper/vfs/trunk/maven.xml (original)
+++ jakarta/commons/proper/vfs/trunk/maven.xml Sun Jul 23 13:22:24 2006
@@ -1,4 +1,4 @@
-<project default="jar:jar" xmlns:j="jelly:core">
+<project default="jar:jar" xmlns:ant="jelly:ant" xmlns:j="jelly:core">
 
     <!-- we can customize the Maven build here -->
 
@@ -76,5 +76,37 @@
         </copy>
 
     </preGoal>
+
+    <!-- ================================================================== -->
+    <!-- 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>

Modified: jakarta/commons/proper/vfs/trunk/project.properties
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/vfs/trunk/project.properties?rev=424797&r1=424796&r2=424797&view=diff
==============================================================================
--- jakarta/commons/proper/vfs/trunk/project.properties (original)
+++ jakarta/commons/proper/vfs/trunk/project.properties Sun Jul 23 13:22:24 2006
@@ -19,7 +19,6 @@
 maven.javadoc.private = off
 maven.javadoc.links=http://java.sun.com/j2se/1.3/docs/api/
 
-maven.xdoc.jsl=../commons-build/commons-site.jsl
 maven.xdoc.date=bottom
 maven.xdoc.poweredby.image=maven-feather.png
 maven.xdoc.version=${pom.currentVersion}

Modified: jakarta/commons/proper/vfs/trunk/project.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/vfs/trunk/project.xml?rev=424797&r1=424796&r2=424797&view=diff
==============================================================================
--- jakarta/commons/proper/vfs/trunk/project.xml (original)
+++ jakarta/commons/proper/vfs/trunk/project.xml Sun Jul 23 13:22:24 2006
@@ -45,13 +45,13 @@
             <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.eu.apache.org/mod_mbox/jakarta-commons-dev/</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.eu.apache.org/mod_mbox/jakarta-commons-user/</archive>
+            <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/</archive>
         </mailingList>
     </mailingLists>
 
@@ -163,6 +163,21 @@
             <artifactId>oro</artifactId>
             <version>2.0.8</version>
         </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; - Only
+                  required for building the website/documentation.
+              </comment>
+            </properties>
+        </dependency>
+
     </dependencies>
 
     <build>

Added: jakarta/commons/proper/vfs/trunk/xdocs/cvs-usage.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/vfs/trunk/xdocs/cvs-usage.xml?rev=424797&view=auto
==============================================================================
--- jakarta/commons/proper/vfs/trunk/xdocs/cvs-usage.xml (added)
+++ jakarta/commons/proper/vfs/trunk/xdocs/cvs-usage.xml Sun Jul 23 13:22:24 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 VFS 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/proper/vfs/trunk</code>
+</p>
+<p>
+  The best way to view the repository is via the
+  <a href="http://svn.apache.org/viewvc/jakarta/commons/proper/vfs/trunk/">subversion viewer</a>.
+</p>
+<p>
+  The alternative is to use the
+  <a href="http://svn.apache.org/repos/asf/jakarta/commons/proper/vfs/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/proper/vfs/trunk/xdocs/cvs-usage.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/commons/proper/vfs/trunk/xdocs/cvs-usage.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: jakarta/commons/proper/vfs/trunk/xdocs/issue-tracking.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/vfs/trunk/xdocs/issue-tracking.xml?rev=424797&view=auto
==============================================================================
--- jakarta/commons/proper/vfs/trunk/xdocs/issue-tracking.xml (added)
+++ jakarta/commons/proper/vfs/trunk/xdocs/issue-tracking.xml Sun Jul 23 13:22:24 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 VFS 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/VFS">VFS 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 VFS please do the following:
+  <ol>
+  <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12310495&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=12310495&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=12310495&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 VFS 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=12310495&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=1&amp;status=4">All Open VFS bugs</a></li>
+  <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12310495&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=5&amp;status=6">All Resolved VFS bugs</a></li>
+  <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12310495&amp;sorter/field=issuekey&amp;sorter/order=DESC">All VFS bugs</a></li>
+  </ul>
+</p>
+</section>
+<!-- ================================================== -->
+</body>
+</document>

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

Propchange: jakarta/commons/proper/vfs/trunk/xdocs/issue-tracking.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/vfs/trunk/xdocs/navigation.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/vfs/trunk/xdocs/navigation.xml?rev=424797&r1=424796&r2=424797&view=diff
==============================================================================
--- jakarta/commons/proper/vfs/trunk/xdocs/navigation.xml (original)
+++ jakarta/commons/proper/vfs/trunk/xdocs/navigation.xml Sun Jul 23 13:22:24 2006
@@ -14,10 +14,17 @@
    See the License for the specific language governing permissions and
    limitations under the License.
   -->
-<!DOCTYPE org.apache.commons.menus SYSTEM '../../commons-build/menus/menus.dtd'>
+<!DOCTYPE org.apache.commons.menus SYSTEM 'http://jakarta.apache.org/commons/build/maven-build.dtd'>
 <project name="Commons&#xA0;VFS">
   <title>Commons&#xA0;VFS</title>
   <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="Commons&#xA0;VFS">
       <item name="Overview"                href="/index.html"/>
       <item name="Download and Build"      href="/download.html"/>
@@ -25,9 +32,18 @@
       <item name="API JavaDocs"            href="/apidocs/index.html"/>
       <item name="File Systems"            href="/filesystems.html"/>
       <item name="Ant Tasks"               href="/anttasks.html"/>
+      <item name="Wiki"                    href="http://wiki.apache.org/jakarta-commons/VFS"/>
+    </menu>
+
+    <menu name="Development">
+      <item name="Test Server"             href="/testserver.html"/>
+      <item name="Mailing Lists"           href="/mail-lists.html"/>
+      <item name="Issue Tracking"          href="/issue-tracking.html"/>
+      <item name="Source Repository"       href="/cvs-usage.html"/>
       <item name="To Do List"              href="/todo.html"/>
-      <item name="Development"             href="/testserver.html"/>
     </menu>
-    &common-menus;
+
+    &commons;
+
   </body>
 </project>

Added: jakarta/commons/proper/vfs/trunk/xdocs/style/project.css
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/vfs/trunk/xdocs/style/project.css?rev=424797&view=auto
==============================================================================
--- jakarta/commons/proper/vfs/trunk/xdocs/style/project.css (added)
+++ jakarta/commons/proper/vfs/trunk/xdocs/style/project.css Sun Jul 23 13:22:24 2006
@@ -0,0 +1 @@
+@import url("http://jakarta.apache.org/style/jakarta-maven.css");

Propchange: jakarta/commons/proper/vfs/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