You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by br...@apache.org on 2003/02/19 06:35:52 UTC

cvs commit: jakarta-commons/net/xdocs release-notes.xml navigation.xml changes.xml

brekke      2003/02/18 21:35:52

  Modified:    net      README project.xml
               net/xdocs navigation.xml
  Added:       net/xdocs release-notes.xml
  Removed:     net/xdocs changes.xml
  Log:
  Moved changes from the current format into a release-notes.xml xdoc and added
  to navigation.  Changed version numbers up to release version 1.0.0 and fixed
  a small typo in README.
  
  Revision  Changes    Path
  1.5       +1 -1      jakarta-commons/net/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/README,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- README	26 Jan 2003 05:25:44 -0000	1.4
  +++ README	19 Feb 2003 05:35:51 -0000	1.5
  @@ -13,4 +13,4 @@
   
   You can build the documentation with:
   
  -ant maven:site
  +maven site
  
  
  
  1.20      +22 -4     jakarta-commons/net/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/project.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- project.xml	9 Feb 2003 04:44:35 -0000	1.19
  +++ project.xml	19 Feb 2003 05:35:52 -0000	1.20
  @@ -4,7 +4,7 @@
     <pomVersion>3</pomVersion>
     <name>Jakarta Commons/Net</name>
     <id>commons-net</id>
  -  <currentVersion>1.0.0-dev</currentVersion>
  +  <currentVersion>1.0.0</currentVersion>
     <organization>
       <name>Apache Software Foundation</name>
       <url>http://jakarta.apache.org/</url>
  @@ -42,7 +42,7 @@
     <issueTrackingUrl>http://nagoya.apache.org/bugzilla/</issueTrackingUrl>
     <siteAddress>jakarta.apache.org</siteAddress>
     <siteDirectory>/www/jakarta.apache.org/commons/net/</siteDirectory> 
  -  <distributionDirectory/>
  +  <distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/release/commons-net/</distributionDirectory>
   
     <repository>
       <connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/net</connection>
  @@ -51,8 +51,13 @@
   
     <versions>
       <version>
  -      <id>1.0.0-dev</id>
  -      <name>1.0.0-dev</name>
  +      <id>1.0.0</id>
  +      <name>1.0.0</name>
  +      <tag>NET_1_0_0</tag>
  +    </version>
  +    <version>
  +      <id>1.0.1-dev</id>
  +      <name>1.0.1</name>
         <tag>HEAD</tag>
       </version>
     </versions>
  @@ -120,4 +125,17 @@
       </unitTest>
       
     </build>
  +
  +  <reports>
  +    <report>maven-jdepend-plugin</report>
  +    <report>maven-checkstyle-plugin</report>
  +    <report>maven-changelog-plugin</report>
  +    <report>maven-file-activity-plugin</report>
  +    <report>maven-developer-activity-plugin</report>
  +    <report>maven-javadoc-plugin</report>
  +    <report>maven-jxr-plugin</report>
  +    <report>maven-junit-report-plugin</report>
  +    <report>maven-tasklist-plugin</report>
  +  </reports>
  +
   </project>
  
  
  
  1.6       +1 -0      jakarta-commons/net/xdocs/navigation.xml
  
  Index: navigation.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/xdocs/navigation.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- navigation.xml	9 Feb 2003 04:44:35 -0000	1.5
  +++ navigation.xml	19 Feb 2003 05:35:52 -0000	1.6
  @@ -7,6 +7,7 @@
       <menu name="Documentation">
         <item name="Migration How-to"      href="/migration.html"/>
         <item name="Download"              href="/download.html"/>
  +      <item name="Release Notes"         href="/release-notes.html"/>
       </menu>
       <menu name="Development">
         <item name="Coding Specifications" href="/code-standards.html"/>
  
  
  
  1.1                  jakarta-commons/net/xdocs/release-notes.xml
  
  Index: release-notes.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <document>
    <properties>
      <title>Release Notes</title>
      <author email="brekke@apache.org">Jeffrey D. Brekke</author>
    </properties>
  
    <body>
      <section name="Release 1.0.0">
      <ul>
        <li><b>brekke</b> -- Added a migration document for moving from NetComponents to Commons/Net.</li>
        <li><b>brekke</b> -- Moved the ftp2 tree with tests to a proposal directory and setup a build for that code.  This can grow in this area so users don't think it is production ready.</li>
        <li><b>dfs</b> -- Cleaned up license header on some source.</li>
        <li><b>dfs</b> -- Moved .io and .util to .net.io and .net.util in preparation for 1.0 release.</li>
        <li><b>dfs</b> -- Fixed typo in NNTP.removeProtocolCommandListener() method name.  It was missing an L.  From joev@atg.com</li>
        <li><b>brekke</b> -- Various site updates including this changes doc and publish date information.</li>
        <li><b>dfs</b> -- Patch for restarting FTP file transfers.  The offset was not being sent immediately before the data transfer command on account.  The bug was apparently introduced in NetComponents when it was decided to always send a PORT command before each data transfer to avoid socket reuse problems on Windows.  From Tapan Karecha.</li>
        <li><b>dfs</b> -- Applied a fix for potential deadlock in TelnetInputStream by changing a wait() to a wait(100).  From Tapan Karecha.</li>
        <li><b>dfs</b> -- FTP examples now use passive ftp connections.</li>
      </ul>
      </section>
  
    </body>
  </document>
  
  
  
  

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