Author: jalkanen
Date: Sun Jun 15 10:39:02 2008
New Revision: 667980
URL: http://svn.apache.org/viewvc?rev=667980&view=rev
Log:
JSPWIKI-145: jspwiki.applicationName is now cleaned to be a
proper WikiName. This is probably a good idea...
Modified:
incubator/jspwiki/trunk/ChangeLog
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/WikiEngine.java
Modified: incubator/jspwiki/trunk/ChangeLog
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/ChangeLog?rev=667980&r1=667979&r2=667980&view=diff
==============================================================================
--- incubator/jspwiki/trunk/ChangeLog (original)
+++ incubator/jspwiki/trunk/ChangeLog Sun Jun 15 10:39:02 2008
@@ -1,5 +1,12 @@
2008-06-14 Janne Jalkanen <[EMAIL PROTECTED]>
+ * 2.7.0-svn-43
+
+ * JSPWIKI-145: jspwiki.applicationName is now cleaned to be a
+ proper WikiName. This is probably a good idea...
+
+2008-06-14 Janne Jalkanen <[EMAIL PROTECTED]>
+
* 2.7.0-svn-42
* JSPWIKI-185: There should be no more NPEs upon startup. Improved
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=667980&r1=667979&r2=667980&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java (original)
+++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java Sun Jun 15
10:39:02 2008
@@ -77,7 +77,7 @@
* <p>
* If the build identifier is empty, it is not added.
*/
- public static final String BUILD = "42";
+ public static final String BUILD = "43";
/**
* This is the generic version string you should use
Modified: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/WikiEngine.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/WikiEngine.java?rev=667980&r1=667979&r2=667980&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/WikiEngine.java (original)
+++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/WikiEngine.java Sun Jun 15
10:39:02 2008
@@ -1072,7 +1072,7 @@
{
String appName =
TextUtil.getStringProperty(m_properties,PROP_APPNAME,Release.APPNAME);
- return appName;
+ return MarkupParser.cleanLink( appName );
}
/**