You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by me...@apache.org on 2013/01/26 13:16:03 UTC

svn commit: r1438885 - in /incubator/jspwiki/trunk: ChangeLog UPGRADING src/org/apache/wiki/Release.java src/org/apache/wiki/providers/RCSFileProvider.java

Author: metskem
Date: Sat Jan 26 12:16:03 2013
New Revision: 1438885

URL: http://svn.apache.org/viewvc?rev=1438885&view=rev
Log:
2013-01-26  Harry Metske <me...@apache.org>

       * 2.9.1-svn-20
       
       * JSPWIKI-758 - deprecate RCS support.
       

Modified:
    incubator/jspwiki/trunk/ChangeLog
    incubator/jspwiki/trunk/UPGRADING
    incubator/jspwiki/trunk/src/org/apache/wiki/Release.java
    incubator/jspwiki/trunk/src/org/apache/wiki/providers/RCSFileProvider.java

Modified: incubator/jspwiki/trunk/ChangeLog
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/ChangeLog?rev=1438885&r1=1438884&r2=1438885&view=diff
==============================================================================
--- incubator/jspwiki/trunk/ChangeLog (original)
+++ incubator/jspwiki/trunk/ChangeLog Sat Jan 26 12:16:03 2013
@@ -1,4 +1,10 @@
-2012-01-24 Glen Mazza
+2013-01-26  Harry Metske <me...@apache.org>
+
+       * 2.9.1-svn-20
+       
+       * JSPWIKI-758 - deprecate RCS support.
+       
+2013-01-24 Glen Mazza
 
        Minor tweak to testSerialization() in AclImplTest so it will work with both Maven and Ant 
        running the test. 

Modified: incubator/jspwiki/trunk/UPGRADING
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/UPGRADING?rev=1438885&r1=1438884&r2=1438885&view=diff
==============================================================================
--- incubator/jspwiki/trunk/UPGRADING (original)
+++ incubator/jspwiki/trunk/UPGRADING Sat Jan 26 12:16:03 2013
@@ -41,6 +41,11 @@ shouldn't affect your custom plugins.
 The package org.apache.wiki.api aims to provide an API to give access to JSPWiki internals. Check
 doc/2.10-API.txt to see its packages, classes affected and to be removed when 2.10, etc.
 
+3. RCS Support deprecated
+
+2.9.1 will be the last JSPWiki version to support RCS as a Provider.
+In the next JSPWiki version, RCS support will be removed (JSPWIKI-758).
+ 
 
 Upgrading JSPWiki from 2.8.x to 2.9.0
 -------------------------------------

Modified: incubator/jspwiki/trunk/src/org/apache/wiki/Release.java
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/org/apache/wiki/Release.java?rev=1438885&r1=1438884&r2=1438885&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/org/apache/wiki/Release.java (original)
+++ incubator/jspwiki/trunk/src/org/apache/wiki/Release.java Sat Jan 26 12:16:03 2013
@@ -75,7 +75,7 @@ public final class Release
      *  <p>
      *  If the build identifier is empty, it is not added.
      */
-    public static final String     BUILD         = "19";
+    public static final String     BUILD         = "20";
     
     /**
      *  This is the generic version string you should use

Modified: incubator/jspwiki/trunk/src/org/apache/wiki/providers/RCSFileProvider.java
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/org/apache/wiki/providers/RCSFileProvider.java?rev=1438885&r1=1438884&r2=1438885&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/org/apache/wiki/providers/RCSFileProvider.java (original)
+++ incubator/jspwiki/trunk/src/org/apache/wiki/providers/RCSFileProvider.java Sat Jan 26 12:16:03 2013
@@ -43,8 +43,11 @@ import org.apache.wiki.util.TextUtil;
  *  If you decide to dabble with the default commands, please make sure
  *  that you do not check the default archive suffix ",v".  File deletion
  *  depends on it.
+ *  
+ *  <p> @deprecated RCS support will be removed in 3.0.
  */
 // FIXME: Not all commands read their format from the property file yet.
+@Deprecated
 public class RCSFileProvider
     extends AbstractFileProvider
 {