Author: niallp
Date: Thu Nov 30 03:43:52 2006
New Revision: 480899

URL: http://svn.apache.org/viewvc?view=rev&rev=480899
Log:
Site and build improvements
- remove dependency on commons build
- add xdocs and proposal to source distro
- make source/binary distros unpack to different directories
- correct mail archive links (eyebrowse is dead)
- add source repository and issue tracking pages

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

Modified: jakarta/commons/proper/net/trunk/maven.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/net/trunk/maven.xml?view=diff&rev=480899&r1=480898&r2=480899
==============================================================================
--- jakarta/commons/proper/net/trunk/maven.xml (original)
+++ jakarta/commons/proper/net/trunk/maven.xml Thu Nov 30 03:43:52 2006
@@ -20,23 +20,6 @@
   xmlns:ant="jelly:ant">
 
   <!-- ================================================================== -->
-  <!-- START : C O M M O N S - B U I L D                                  -->
-  <!-- ================================================================== -->
-  <!-- Required: Look and Feel for documentation within distributions     -->
-  <!-- ================================================================== -->
-  <postGoal name="xdoc:copy-resources">  
-    <copy todir="${basedir}/target/docs/style/" failonerror="false">
-      <fileset dir="${basedir}/../commons-build/xdocs/style">
-       <include name='**/*'/>
-       <exclude name='**/CVS/**'/>
-      </fileset>
-    </copy>
-  </postGoal>
-  <!-- ================================================================== -->
-  <!-- END: C O M M O N S - B U I L D                                     -->
-  <!-- ================================================================== -->
-
-  <!-- ================================================================== -->
   <!-- T E S T : F U N C T I O N A L                                      -->
   <!-- ================================================================== -->
   <!-- Run any tests with FunctionalTest as the suffix.  These are for    -->
@@ -74,6 +57,14 @@
     <copy file="${basedir}/NOTICE.txt"
           tofile="${maven.dist.src.assembly.dir}/NOTICE.txt"
           overwrite="yes"/>
+
+    <copy todir="${maven.dist.src.assembly.dir}/xdocs">
+        <fileset dir="./xdocs"/>
+    </copy>
+
+    <copy todir="${maven.dist.src.assembly.dir}/proposal">
+        <fileset dir="./proposal"/>
+    </copy>
 
   </postGoal>
 

Modified: jakarta/commons/proper/net/trunk/project.properties
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/net/trunk/project.properties?view=diff&rev=480899&r1=480898&r2=480899
==============================================================================
--- jakarta/commons/proper/net/trunk/project.properties (original)
+++ jakarta/commons/proper/net/trunk/project.properties Thu Nov 30 03:43:52 2006
@@ -28,8 +28,10 @@
 maven.jar.manifest.attribute.X-Compile-Source-JDK=${maven.compile.source}
 maven.jar.manifest.attribute.X-Compile-Target-JDK=${maven.compile.target}
 
+# Make the source distro unzip to a different directory
+maven.dist.src.assembly.dir=${maven.dist.assembly.dir}/src/${maven.final.name}-src
+
 # commons site L&F
-maven.xdoc.jsl=../commons-build/commons-site.jsl
 maven.xdoc.date=left
 maven.xdoc.version=${pom.currentVersion}
 maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html

Modified: jakarta/commons/proper/net/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/net/trunk/project.xml?view=diff&rev=480899&r1=480898&r2=480899
==============================================================================
--- jakarta/commons/proper/net/trunk/project.xml (original)
+++ jakarta/commons/proper/net/trunk/project.xml Thu Nov 30 03:43:52 2006
@@ -61,13 +61,13 @@
                        <name>Commons Dev List</name>
                        <subscribe>[EMAIL PROTECTED]</subscribe>
                        <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
-                       
<archive>http://mail-archives.apache.org/eyebrowse/[EMAIL PROTECTED]</archive>
+                       
<archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/</archive>
                </mailingList>
                <mailingList>
                        <name>Commons User List</name>
                        <subscribe>[EMAIL PROTECTED]</subscribe>
                        <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
-                       
<archive>http://mail-archives.apache.org/eyebrowse/[EMAIL PROTECTED]</archive>
+                       
<archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/</archive>
                </mailingList>
        </mailingLists>
 
@@ -174,6 +174,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 Only&lt;/strong&gt; - v1.9.2 (minimum)
+              required for building the Site documentation.
+          </comment>
+        </properties>
+      </dependency>
+
        </dependencies>
 
        <build>
@@ -203,6 +218,16 @@
                                <exclude>**/*POP3*.java</exclude>
                        </excludes>
                </unitTest>
+
+               <resources>
+                       <resource>
+                               <directory>${basedir}</directory>
+                               <targetPath>META-INF</targetPath>
+                               <includes>
+                                       <include>NOTICE.txt</include>
+                               </includes>
+                       </resource>
+               </resources>
 
        </build>
 

Added: jakarta/commons/proper/net/trunk/xdocs/cvs-usage.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/net/trunk/xdocs/cvs-usage.xml?view=auto&rev=480899
==============================================================================
--- jakarta/commons/proper/net/trunk/xdocs/cvs-usage.xml (added)
+++ jakarta/commons/proper/net/trunk/xdocs/cvs-usage.xml Thu Nov 30 03:43:52 
2006
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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="[email protected]">Commons Documentation 
Team</author>
+ </properties>
+ <body>
+<!-- ================================================== -->
+<section name="Source repository">
+<p>
+  Jakarta Commons Net 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/net/trunk</code>
+</p>
+<p>
+  The best way to view the repository is via the
+  <a 
href="http://svn.apache.org/viewvc/jakarta/commons/proper/net/trunk/";>subversion
 viewer</a>.
+</p>
+<p>
+  The alternative is to use the
+  <a 
href="http://svn.apache.org/repos/asf/jakarta/commons/proper/net/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/net/trunk/xdocs/cvs-usage.xml
------------------------------------------------------------------------------
    svn:eol-style = native

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

Added: jakarta/commons/proper/net/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/net/trunk/xdocs/issue-tracking.xml?view=auto&rev=480899
==============================================================================
--- jakarta/commons/proper/net/trunk/xdocs/issue-tracking.xml (added)
+++ jakarta/commons/proper/net/trunk/xdocs/issue-tracking.xml Thu Nov 30 
03:43:52 2006
@@ -0,0 +1,72 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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="[email protected]">Commons Documentation 
Team</author>
+ </properties>
+<body>
+<!-- ================================================== -->
+<section name="Issue tracking">
+<p>
+  Commons Net 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/NET";>Net 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 Net please do the following:
+  <ol>
+  <li><a 
href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12310487&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=12310487&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=12310487&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 Net 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=12310487&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=1&amp;status=4";>All
 Open Net bugs</a></li>
+  <li><a 
href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12310487&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=5&amp;status=6";>All
 Resolved Net bugs</a></li>
+  <li><a 
href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12310487&amp;sorter/field=issuekey&amp;sorter/order=DESC";>All
 Net bugs</a></li>
+  </ul>
+</p>
+</section>
+<!-- ================================================== -->
+</body>
+</document>

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

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

Modified: jakarta/commons/proper/net/trunk/xdocs/navigation.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/net/trunk/xdocs/navigation.xml?view=diff&rev=480899&r1=480898&r2=480899
==============================================================================
--- jakarta/commons/proper/net/trunk/xdocs/navigation.xml (original)
+++ jakarta/commons/proper/net/trunk/xdocs/navigation.xml Thu Nov 30 03:43:52 
2006
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
-<!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'>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
@@ -21,6 +21,11 @@
   <title>Jakarta Commons/Net</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="Documentation">
       <item name="Migration How-to"      href="/migration.html"/>
       <item name="FAQ"                   href="/faq.html"/>
@@ -31,9 +36,11 @@
     <menu name="Development">
       <item name="To-Do List" href="/tasks.html"/>
       <item name="Coding Specifications" href="/code-standards.html"/>
+      <item name="Issue Tracking"        href="/issue-tracking.html"/>
+      <item name="Source Repository"     href="/cvs-usage.html"/>
     </menu>
 
-       &common-menus;
+    &commons;
   </body>
 
 </project>

Added: jakarta/commons/proper/net/trunk/xdocs/style/project.css
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/net/trunk/xdocs/style/project.css?view=auto&rev=480899
==============================================================================
--- jakarta/commons/proper/net/trunk/xdocs/style/project.css (added)
+++ jakarta/commons/proper/net/trunk/xdocs/style/project.css Thu Nov 30 
03:43:52 2006
@@ -0,0 +1 @@
[EMAIL PROTECTED] url("http://jakarta.apache.org/style/jakarta-maven.css";);

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



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to