Author: metskem
Date: Sun Aug 23 12:04:27 2009
New Revision: 806956

URL: http://svn.apache.org/viewvc?rev=806956&view=rev
Log:
3.0.0-svn-145
          
        * corrected propname in build.properties : 
           war.compile.jsps => compile.jsps
           
        * added dummy SimpleCredentials login to ContentManager.newSession()
          this is required since priha 0.1.25 (not sure if this is the 
          right place/approach but at least we can run our JUnit tests again,
          although still many tests fail (92.15%))
          
        * upgrade priha : 0.1.30 => 0.1.32

Added:
    incubator/jspwiki/trunk/src/WebContent/WEB-INF/lib/priha-0.1.32.jar   (with 
props)
Removed:
    incubator/jspwiki/trunk/src/WebContent/WEB-INF/lib/priha-0.1.30.jar
Modified:
    incubator/jspwiki/trunk/ChangeLog
    incubator/jspwiki/trunk/build.properties
    incubator/jspwiki/trunk/src/java/org/apache/wiki/Release.java
    incubator/jspwiki/trunk/src/java/org/apache/wiki/content/ContentManager.java

Modified: incubator/jspwiki/trunk/ChangeLog
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/ChangeLog?rev=806956&r1=806955&r2=806956&view=diff
==============================================================================
--- incubator/jspwiki/trunk/ChangeLog (original)
+++ incubator/jspwiki/trunk/ChangeLog Sun Aug 23 12:04:27 2009
@@ -1,3 +1,17 @@
+2009-08-22 Harry Metske <[email protected]>
+
+        * 3.0.0-svn-145
+          
+        * corrected propname in build.properties : 
+           war.compile.jsps => compile.jsps
+           
+        * added dummy SimpleCredentials login to ContentManager.newSession()
+          this is required since priha 0.1.25 (not sure if this is the 
+          right place/approach but at least we can run our JUnit tests again,
+          although still many tests fail (92.15%))
+          
+        * upgrade priha : 0.1.30 => 0.1.32
+
 2009-08-19 Andrew Jaquith <ajaquith AT apache DOT org>
 
         * 3.0.0-svn-144

Modified: incubator/jspwiki/trunk/build.properties
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/build.properties?rev=806956&r1=806955&r2=806956&view=diff
==============================================================================
--- incubator/jspwiki/trunk/build.properties (original)
+++ incubator/jspwiki/trunk/build.properties Sun Aug 23 12:04:27 2009
@@ -46,7 +46,7 @@
 
 #  Set this property to 'true' if you want to build WARs
 #  that contain pre-compiled JSPs (which load faster).
-war.compile.jsps = true
+compile.jsps = true
 
 #  Enable these if you wish to create a static content tarball
 #  for use with Apache or another front-end web server.

Added: incubator/jspwiki/trunk/src/WebContent/WEB-INF/lib/priha-0.1.32.jar
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/WebContent/WEB-INF/lib/priha-0.1.32.jar?rev=806956&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/jspwiki/trunk/src/WebContent/WEB-INF/lib/priha-0.1.32.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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=806956&r1=806955&r2=806956&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/java/org/apache/wiki/Release.java (original)
+++ incubator/jspwiki/trunk/src/java/org/apache/wiki/Release.java Sun Aug 23 
12:04:27 2009
@@ -77,7 +77,7 @@
      *  <p>
      *  If the build identifier is empty, it is not added.
      */
-    public static final String     BUILD         = "144";
+    public static final String     BUILD         = "145";
 
     /**
      *  This is the generic version string you should use

Modified: 
incubator/jspwiki/trunk/src/java/org/apache/wiki/content/ContentManager.java
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/java/org/apache/wiki/content/ContentManager.java?rev=806956&r1=806955&r2=806956&view=diff
==============================================================================
--- 
incubator/jspwiki/trunk/src/java/org/apache/wiki/content/ContentManager.java 
(original)
+++ 
incubator/jspwiki/trunk/src/java/org/apache/wiki/content/ContentManager.java 
Sun Aug 23 12:04:27 2009
@@ -1703,8 +1703,8 @@
          */
         public Session newSession() throws LoginException, RepositoryException
         {
-            Session session = m_repository.login(m_workspaceName);
-            
+            Session session = m_repository.login( new SimpleCredentials( 
"jspwikiUser", "passwordDoesNotMatter".toCharArray() ),
+                                                  m_workspaceName );
             return session;
         }
         


Reply via email to