Author: ajaquith
Date: Sun May 17 14:23:20 2009
New Revision: 775658
URL: http://svn.apache.org/viewvc?rev=775658&view=rev
Log:
Bumped changelog and release; minor doc fixes.
Modified:
incubator/jspwiki/trunk/ChangeLog
incubator/jspwiki/trunk/src/java/org/apache/wiki/Release.java
incubator/jspwiki/trunk/src/java/org/apache/wiki/WikiEngine.java
incubator/jspwiki/trunk/tests/java/org/apache/wiki/ui/stripes/HandlerInfoTest.java
Modified: incubator/jspwiki/trunk/ChangeLog
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/ChangeLog?rev=775658&r1=775657&r2=775658&view=diff
==============================================================================
--- incubator/jspwiki/trunk/ChangeLog (original)
+++ incubator/jspwiki/trunk/ChangeLog Sun May 17 14:23:20 2009
@@ -1,3 +1,34 @@
+2009-05-18 Andrew Jaquith <ajaquith AT apache DOT org>
+
+ * 3.0.0-svn-119
+
+ * Reverted WikiPage.save() so that this method is no longer
+ deprecated. Added documentation requiring implementations
+ to delegate to ContentManager.save() so that events are
+ fired correctly.
+
+ * Added experimental FileBasedActionResolver, which allows
+ arbitrary ActionBean URL bindings to be specified in an
+ external file. This will allow fully customized URL binding schemes
+ to be defined without hard-coding them in the ActionBean
+ classes themselves. Currently the configuration file is
+ hard-coded as WEB-INF/urlpattern.properties. This restriction
+ will be loosened later. FileBasedActionResolver is turned
+ off by default.
+
+ * Added experimental ShortUrlRedirectFilter, which intercepts
+ URLs written in the "short URL" scheme and redirects them
+ to the correct ActionBean URLs. When used in conjunction with
+ FileBasedActionResolver, it allows backwards compatibility to
+ be preserved with "permalink" short URLs for viewing, while
+ freeing up implementors to specify their own completely
+ customized URL schemes. This filter is turned off by default.
+ So that it can be more easily turned on and off, this may be
+ refactored into a Stripes Interceptor later. But for now, it's a
+ filter. Murray, this one's for you.
+
+ * Supplemental tweaks for JSPWIKI-534.
+
2009-05-17 Harry Metske <[email protected]>
* 3.0.0-svn-118
Modified: incubator/jspwiki/trunk/src/java/org/apache/wiki/Release.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/java/org/apache/wiki/Release.java?rev=775658&r1=775657&r2=775658&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/java/org/apache/wiki/Release.java (original)
+++ incubator/jspwiki/trunk/src/java/org/apache/wiki/Release.java Sun May 17
14:23:20 2009
@@ -77,7 +77,7 @@
* <p>
* If the build identifier is empty, it is not added.
*/
- public static final String BUILD = "118";
+ public static final String BUILD = "119";
/**
* This is the generic version string you should use
Modified: incubator/jspwiki/trunk/src/java/org/apache/wiki/WikiEngine.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/java/org/apache/wiki/WikiEngine.java?rev=775658&r1=775657&r2=775658&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/java/org/apache/wiki/WikiEngine.java (original)
+++ incubator/jspwiki/trunk/src/java/org/apache/wiki/WikiEngine.java Sun May 17
14:23:20 2009
@@ -781,7 +781,8 @@
}
/**
- * Returns the base URL, telling where this Wiki actually lives.
+ * Returns the base URL, telling where this Wiki actually lives. The
baseURL
+ * is guaranteed to be returned with a trailing slash (/).
*
* @since 1.6.1
* @return The Base URL.
Modified:
incubator/jspwiki/trunk/tests/java/org/apache/wiki/ui/stripes/HandlerInfoTest.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/tests/java/org/apache/wiki/ui/stripes/HandlerInfoTest.java?rev=775658&r1=775657&r2=775658&view=diff
==============================================================================
---
incubator/jspwiki/trunk/tests/java/org/apache/wiki/ui/stripes/HandlerInfoTest.java
(original)
+++
incubator/jspwiki/trunk/tests/java/org/apache/wiki/ui/stripes/HandlerInfoTest.java
Sun May 17 14:23:20 2009
@@ -28,7 +28,6 @@
import org.apache.wiki.TestEngine;
import org.apache.wiki.action.EditActionBean;
import org.apache.wiki.action.GroupActionBean;
-import org.apache.wiki.action.ViewActionBean;
import org.apache.wiki.auth.permissions.GroupPermission;
import org.apache.wiki.auth.permissions.WikiPermission;
import org.apache.wiki.ui.stripes.HandlerInfo;