You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tv...@apache.org on 2015/04/14 22:02:19 UTC

svn commit: r1673542 - in /commons/proper/jcs/trunk: RELEASE-NOTES.txt doap_jcs.rdf pom.xml src/site/site.xml xdocs/download_jcs.xml

Author: tv
Date: Tue Apr 14 20:02:19 2015
New Revision: 1673542

URL: http://svn.apache.org/r1673542
Log:
Some housekeeping

Added:
    commons/proper/jcs/trunk/RELEASE-NOTES.txt   (with props)
Modified:
    commons/proper/jcs/trunk/doap_jcs.rdf
    commons/proper/jcs/trunk/pom.xml
    commons/proper/jcs/trunk/src/site/site.xml
    commons/proper/jcs/trunk/xdocs/download_jcs.xml   (contents, props changed)

Added: commons/proper/jcs/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/RELEASE-NOTES.txt?rev=1673542&view=auto
==============================================================================
--- commons/proper/jcs/trunk/RELEASE-NOTES.txt (added)
+++ commons/proper/jcs/trunk/RELEASE-NOTES.txt Tue Apr 14 20:02:19 2015
@@ -0,0 +1,61 @@
+
+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.
+
+
+                        Apache Commons JCS
+                            Version 2.0-SNAPSHOT
+                           Release Notes
+
+
+INTRODUCTION:
+
+This document contains the release notes for the 2.0-SNAPSHOT version of Apache Commons JCS.
+Commons JCS is a distributed caching system written in Java. It is intend to speed up 
+applications by providing a means to manage cached data of various dynamic natures.
+
+JCS 2.0 and onwards now targets Java 6.0, making use of features that arrived with Java 5.0 
+such as generics and concurrency.
+
+For the advice on upgrading from 1.x to 2.x, see the following page: 
+
+    http://commons.apache.org/proper/commons-jcs/UpgradingFrom13.html
+
+Apache Commons JCS is a distributed, versatile caching system.
+
+JDK 1.6 based major release
+
+Changes in this version include:
+
+New features:
+o JCS-147:  Provide file size limitation for Block Disk Cache and Indexed Disk Cache Thanks to Wiktor Niesiobedzki.
+
+Fixed Bugs:
+o JCS-96:   Incomplete shutdown of RemoteCacheServer Thanks to Gregory Fernandez.
+o JCS-148:  Unnecessary use of FileChannel.force() in Indexed and Block Disk Caches Thanks to Wiktor Niesiobedzki.
+o JCS-146:  IndexedDiskCache: Mismatched memory and disk length (0) for 
+            [DED:  pos = 63802 len = 9658] during optimization Thanks to Wiktor Niesiobedzki.
+o JCS-145:  AbstractDiskCacheAttributes logs error, when directory already exists Thanks to Wiktor Niesiobedzki.
+o JCS-144:  BlockDiskCache hangs on SEVERE: Region [TMS] Failure getting from disk--IOException Thanks to Wiktor Niesiobedzki.
+o JCS-141:  RemoteCacheServerFactory ignores configuration Thanks to validruk.
+
+
+
+Historical list of changes: http://commons.apache.org/proper/commons-jcs/changes-report.html
+
+For complete information on Apache Commons JCS, including instructions on how to submit bug reports,
+patches, or suggestions for improvement, see the Apache Apache Commons JCS website:
+
+http://commons.apache.org/proper/commons-jcs/
\ No newline at end of file

Propchange: commons/proper/jcs/trunk/RELEASE-NOTES.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: commons/proper/jcs/trunk/doap_jcs.rdf
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/doap_jcs.rdf?rev=1673542&r1=1673541&r2=1673542&view=diff
==============================================================================
--- commons/proper/jcs/trunk/doap_jcs.rdf (original)
+++ commons/proper/jcs/trunk/doap_jcs.rdf Tue Apr 14 20:02:19 2015
@@ -18,14 +18,14 @@
  under the License.
 -->
 <rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:asfext="http://projects.apache.org/ns/asfext#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:doap="http://usefulinc.com/ns/doap#" xml:lang="en">
-  <Project rdf:about="http://commons.apache.org/jcs/">
+  <Project rdf:about="http://commons.apache.org/proper/commons-jcs/">
     <name>Apache Commons JCS</name>
-    <homepage rdf:resource="http://commons.apache.org/jcs/"/>
+    <homepage rdf:resource="http://commons.apache.org/proper/commons-jcs/"/>
     <programming-language>Java</programming-language>
     <category rdf:resource="http://projects.apache.org/category/library"/>
     <license rdf:resource="http://usefulinc.com/doap/licenses/asl20"/>
     <bug-database rdf:resource="http://issues.apache.org/jira/browse/JCS"/>
-    <download-page rdf:resource="http://commons.apache.org/jcs/DownloadPage.html"/>
+    <download-page rdf:resource="http://commons.apache.org/proper/commons-jcs/download_jcs.cgi"/>
     <asfext:pmc rdf:resource="http://commons.apache.org/"/>
     <shortdesc xml:lang="en">Java Caching System</shortdesc>
     <description xml:lang="en">Comprehensive Caching System</description>
@@ -35,6 +35,6 @@
         <location rdf:resource="http://svn.apache.org/repos/asf/commons/proper/jcs"/>
       </SVNRepository>
     </repository>
-    <mailing-list rdf:resource="http://commons.apache.org/jcs/mail-lists.html"/>
+    <mailing-list rdf:resource="http://commons.apache.org/proper/commons-jcs/mail-lists.html"/>
   </Project>
 </rdf:RDF>

Modified: commons/proper/jcs/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/pom.xml?rev=1673542&r1=1673541&r2=1673542&view=diff
==============================================================================
--- commons/proper/jcs/trunk/pom.xml (original)
+++ commons/proper/jcs/trunk/pom.xml Tue Apr 14 20:02:19 2015
@@ -37,6 +37,14 @@
   <description>Apache Commons JCS is a distributed, versatile caching system.</description>
   <inceptionYear>2002</inceptionYear>
 
+  <!-- Required for staging to work -->
+  <distributionManagement>
+      <site>
+          <id>commons.jcs.apache.org</id>
+          <url>http://commons.apache.org/proper/commons-jcs/</url>
+      </site>
+  </distributionManagement>
+
   <issueManagement>
     <system>jira</system>
     <url>http://issues.apache.org/jira/browse/JCS</url>

Modified: commons/proper/jcs/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/site/site.xml?rev=1673542&r1=1673541&r2=1673542&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/site/site.xml (original)
+++ commons/proper/jcs/trunk/src/site/site.xml Tue Apr 14 20:02:19 2015
@@ -34,7 +34,7 @@
       <item name="Mailing Lists" href="/mail-lists.html"/>
       <item name="Issue Tracking" href="/issue-tracking.html"/>
       <item name="Source Repository" href="/source-repository.html"/>
-      <item name="Javadoc (SVN latest)" href="apidocs/index.html"/>
+      <item name="Core Javadoc (SVN latest)" href="commons-jcs-core/apidocs/index.html"/>
     </menu>
 
     <menu name="Getting Started">
@@ -71,6 +71,8 @@
       </item>
     </menu>
 
+    <menu ref="modules" />
+
   </body>
 
 </project>

Modified: commons/proper/jcs/trunk/xdocs/download_jcs.xml
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/xdocs/download_jcs.xml?rev=1673542&r1=1673541&r2=1673542&view=diff
==============================================================================
--- commons/proper/jcs/trunk/xdocs/download_jcs.xml (original)
+++ commons/proper/jcs/trunk/xdocs/download_jcs.xml Tue Apr 14 20:02:19 2015
@@ -95,32 +95,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Apache Commons JCS 2.0 (Java 6.0+)">
+    <section name="Apache Commons JCS 2.0-beta-1 (Java 6.0+)">
       <subsection name="Binaries">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/jcs/binaries/commons-jcs-2.0-bin.tar.gz">commons-jcs-2.0-bin.tar.gz</a></td>
-              <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.tar.gz.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/jcs/binaries/commons-jcs-dist-2.0-beta-1-bin.tar.gz">commons-jcs-dist-2.0-beta-1-bin.tar.gz</a></td>
+              <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-dist-2.0-beta-1-bin.tar.gz.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-dist-2.0-beta-1-bin.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/jcs/binaries/commons-jcs-2.0-bin.zip">commons-jcs-2.0-bin.zip</a></td>
-              <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.zip.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/jcs/binaries/commons-jcs-dist-2.0-beta-1-bin.zip">commons-jcs-dist-2.0-beta-1-bin.zip</a></td>
+              <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-dist-2.0-beta-1-bin.zip.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-dist-2.0-beta-1-bin.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/jcs/source/commons-jcs-2.0-src.tar.gz">commons-jcs-2.0-src.tar.gz</a></td>
-              <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.tar.gz.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/jcs/source/commons-jcs-dist-2.0-beta-1-src.tar.gz">commons-jcs-dist-2.0-beta-1-src.tar.gz</a></td>
+              <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-dist-2.0-beta-1-src.tar.gz.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-dist-2.0-beta-1-src.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/jcs/source/commons-jcs-2.0-src.zip">commons-jcs-2.0-src.zip</a></td>
-              <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.zip.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/jcs/source/commons-jcs-dist-2.0-beta-1-src.zip">commons-jcs-dist-2.0-beta-1-src.zip</a></td>
+              <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-dist-2.0-beta-1-src.zip.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-dist-2.0-beta-1-src.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>

Propchange: commons/proper/jcs/trunk/xdocs/download_jcs.xml
------------------------------------------------------------------------------
    svn:executable = *