Author: jalkanen
Date: Mon May  5 11:51:48 2008
New Revision: 653555

URL: http://svn.apache.org/viewvc?rev=653555&view=rev
Log:
JSPWIKI-239: Was using the word "authorization" instead of "authentication".

Modified:
    incubator/jspwiki/trunk/ChangeLog
    incubator/jspwiki/trunk/etc/jspwiki.properties.tmpl
    incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java
    
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/login/CookieAuthenticationLoginModule.java

Modified: incubator/jspwiki/trunk/ChangeLog
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/ChangeLog?rev=653555&r1=653554&r2=653555&view=diff
==============================================================================
--- incubator/jspwiki/trunk/ChangeLog (original)
+++ incubator/jspwiki/trunk/ChangeLog Mon May  5 11:51:48 2008
@@ -1,4 +1,10 @@
-2008-04-20  Janne Jalkanen <[EMAIL PROTECTED]>
+2008-05-05  Janne Jalkanen <[EMAIL PROTECTED]>
+
+        * 2.7.0-svn-18
+
+        * [JSPWIKI-239] jspwiki.cookieAuthorization.expiry is now called
+        jspwiki.cookieAuthentication.expiry, because that is correct.  Thanks
+        to Florian!
 
         * 2.7.0-svn-17
         

Modified: incubator/jspwiki/trunk/etc/jspwiki.properties.tmpl
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/etc/jspwiki.properties.tmpl?rev=653555&r1=653554&r2=653555&view=diff
==============================================================================
--- incubator/jspwiki/trunk/etc/jspwiki.properties.tmpl (original)
+++ incubator/jspwiki/trunk/etc/jspwiki.properties.tmpl Mon May  5 11:51:48 2008
@@ -515,9 +515,9 @@
 #
 #  Defines how many days the cookies are kept, and how often the people have 
to log in.  
 #  The default is two weeks, i.e. 14 days.  If you need a shorter period than 
one day,
-#  turn off cookie authorization, then tweak your web.xml to allow for longer 
sessions.
+#  turn off cookie authentication, then tweak your web.xml to allow for longer 
sessions.
 #
-#jspwiki.cookieAuthorization.expiry=14
+#jspwiki.cookieAuthentication.expiry=14
 
 #
 #

Modified: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java?rev=653555&r1=653554&r2=653555&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java (original)
+++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java Mon May  5 
11:51:48 2008
@@ -77,7 +77,7 @@
      *  <p>
      *  If the build identifier is empty, it is not added.
      */
-    public static final String     BUILD         = "17";
+    public static final String     BUILD         = "18";
     
     /**
      *  This is the generic version string you should use

Modified: 
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/login/CookieAuthenticationLoginModule.java
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/login/CookieAuthenticationLoginModule.java?rev=653555&r1=653554&r2=653555&view=diff
==============================================================================
--- 
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/login/CookieAuthenticationLoginModule.java
 (original)
+++ 
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/login/CookieAuthenticationLoginModule.java
 Mon May  5 11:51:48 2008
@@ -78,7 +78,7 @@
      *  User property for setting how long the cookie is stored on the user's 
computer.
      *  The value is [EMAIL PROTECTED]  The default expiry time is 14 days.
      */
-    public static final  String PROP_LOGIN_EXPIRY_DAYS  = 
"jspwiki.cookieAuthorization.expiry";
+    public static final  String PROP_LOGIN_EXPIRY_DAYS  = 
"jspwiki.cookieAuthentication.expiry";
 
     /**
      *  Built-in value for storing the cookie.


Reply via email to