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/02/14 09:23:26 UTC

svn commit: r1446062 - in /incubator/jspwiki/trunk: ./ src/org/apache/wiki/ src/org/apache/wiki/auth/ tests/org/apache/wiki/auth/ tests/org/apache/wiki/auth/user/

Author: metskem
Date: Thu Feb 14 08:23:26 2013
New Revision: 1446062

URL: http://svn.apache.org/r1446062
Log:
2013-02-14  Harry Metske <me...@apache.org>

       * 2.9.1-svn-26

       * changed test email addresses testville.com to example.com (reported by Tony Stevenson from infra)

Modified:
    incubator/jspwiki/trunk/ChangeLog
    incubator/jspwiki/trunk/src/org/apache/wiki/Release.java
    incubator/jspwiki/trunk/src/org/apache/wiki/auth/SecurityVerifier.java
    incubator/jspwiki/trunk/tests/org/apache/wiki/auth/UserManagerTest.java
    incubator/jspwiki/trunk/tests/org/apache/wiki/auth/user/JDBCUserDatabaseTest.java
    incubator/jspwiki/trunk/tests/org/apache/wiki/auth/user/XMLUserDatabaseTest.java

Modified: incubator/jspwiki/trunk/ChangeLog
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/ChangeLog?rev=1446062&r1=1446061&r2=1446062&view=diff
==============================================================================
--- incubator/jspwiki/trunk/ChangeLog (original)
+++ incubator/jspwiki/trunk/ChangeLog Thu Feb 14 08:23:26 2013
@@ -1,3 +1,9 @@
+2013-02-14  Harry Metske <me...@apache.org>
+
+       * 2.9.1-svn-26
+
+       * changed test email addresses testville.com to example.com (reported by Tony Stevenson from infra)
+
 2013-02-12  Harry Metske <me...@apache.org>
 
        * 2.9.1-svn-25

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=1446062&r1=1446061&r2=1446062&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/org/apache/wiki/Release.java (original)
+++ incubator/jspwiki/trunk/src/org/apache/wiki/Release.java Thu Feb 14 08:23:26 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         = "25";
+    public static final String     BUILD         = "26";
     
     /**
      *  This is the generic version string you should use

Modified: incubator/jspwiki/trunk/src/org/apache/wiki/auth/SecurityVerifier.java
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/org/apache/wiki/auth/SecurityVerifier.java?rev=1446062&r1=1446061&r2=1446062&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/org/apache/wiki/auth/SecurityVerifier.java (original)
+++ incubator/jspwiki/trunk/src/org/apache/wiki/auth/SecurityVerifier.java Thu Feb 14 08:23:26 2013
@@ -864,7 +864,7 @@ public final class SecurityVerifier
         try
         {
             UserProfile profile = db.newProfile();
-            profile.setEmail( "testuser@testville.com" );
+            profile.setEmail( "testuser@example.com" );
             profile.setLoginName( loginName );
             profile.setFullname( "FullName"+loginName );
             profile.setPassword( "password" );

Modified: incubator/jspwiki/trunk/tests/org/apache/wiki/auth/UserManagerTest.java
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/tests/org/apache/wiki/auth/UserManagerTest.java?rev=1446062&r1=1446061&r2=1446062&view=diff
==============================================================================
--- incubator/jspwiki/trunk/tests/org/apache/wiki/auth/UserManagerTest.java (original)
+++ incubator/jspwiki/trunk/tests/org/apache/wiki/auth/UserManagerTest.java Thu Feb 14 08:23:26 2013
@@ -108,7 +108,7 @@ public class UserManagerTest extends Tes
       String newLogin     = "RenamedLogin" + now;
       String newName      = "Renamed User " + now;
       UserProfile profile = m_db.newProfile();
-      profile.setEmail( "testuser@testville.com" );
+      profile.setEmail( "testuser@example.com" );
       profile.setLoginName( oldLogin );
       profile.setFullname ( oldName );
       profile.setPassword ( "password" );
@@ -150,7 +150,7 @@ public class UserManagerTest extends Tes
       
       // Setup Step 4: change the user name in the profile and see what happens
       profile = m_db.newProfile();
-      profile.setEmail    ( "testuser@testville.com" );
+      profile.setEmail    ( "testuser@example.com" );
       profile.setLoginName( oldLogin );
       profile.setFullname ( newName );
       profile.setPassword ( "password" );
@@ -209,7 +209,7 @@ public class UserManagerTest extends Tes
       
       // Setup Step 8: re-save the profile with the new login name
       profile = m_db.newProfile();
-      profile.setEmail    ( "testuser@testville.com" );
+      profile.setEmail    ( "testuser@example.com" );
       profile.setLoginName( newLogin );
       profile.setFullname ( oldName );
       profile.setPassword ( "password" );
@@ -266,7 +266,7 @@ public class UserManagerTest extends Tes
       WikiSession session = m_engine.guestSession();
       String loginName = "TestUser" + String.valueOf( System.currentTimeMillis() );
       UserProfile profile = m_db.newProfile();
-      profile.setEmail( "testuser@testville.com" );
+      profile.setEmail( "testuser@example.com" );
       profile.setLoginName( loginName );
       profile.setFullname( "FullName"+loginName );
       profile.setPassword( "password");
@@ -293,7 +293,7 @@ public class UserManagerTest extends Tes
       WikiSession session = m_engine.guestSession();
       String loginName = "TestUser" + String.valueOf( System.currentTimeMillis() );
       UserProfile profile = m_db.newProfile();
-      profile.setEmail( "testuser@testville.com" );
+      profile.setEmail( "testuser@example.com" );
       profile.setLoginName( loginName );
       profile.setFullname( "FullName"+loginName );
       profile.setPassword( "password");
@@ -347,7 +347,7 @@ public class UserManagerTest extends Tes
       WikiSession session = m_engine.guestSession();
       String loginName = "TestUser" + String.valueOf( System.currentTimeMillis() );
       UserProfile profile = m_db.newProfile();
-      profile.setEmail( "testuser@testville.com" );
+      profile.setEmail( "testuser@example.com" );
       profile.setLoginName( loginName );
       profile.setFullname( "FullName"+loginName );
       profile.setPassword( "password");
@@ -395,7 +395,7 @@ public class UserManagerTest extends Tes
       WikiSession session = m_engine.guestSession();
       String loginName = "TestUser" + String.valueOf( System.currentTimeMillis() );
       UserProfile profile = m_db.newProfile();
-      profile.setEmail( "testuser@testville.com" );
+      profile.setEmail( "testuser@example.com" );
       profile.setLoginName( loginName );
       profile.setFullname( "FullName"+loginName );
       profile.setPassword( "password");

Modified: incubator/jspwiki/trunk/tests/org/apache/wiki/auth/user/JDBCUserDatabaseTest.java
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/tests/org/apache/wiki/auth/user/JDBCUserDatabaseTest.java?rev=1446062&r1=1446061&r2=1446062&view=diff
==============================================================================
--- incubator/jspwiki/trunk/tests/org/apache/wiki/auth/user/JDBCUserDatabaseTest.java (original)
+++ incubator/jspwiki/trunk/tests/org/apache/wiki/auth/user/JDBCUserDatabaseTest.java Thu Feb 14 08:23:26 2013
@@ -148,7 +148,7 @@ public class JDBCUserDatabaseTest extend
         // Create a new user with random name
         String loginName = "TestUser" + String.valueOf( System.currentTimeMillis() );
         UserProfile profile = m_db.newProfile();
-        profile.setEmail("testuser@testville.com");
+        profile.setEmail("testuser@example.com");
         profile.setLoginName( loginName );
         profile.setFullname( "FullName"+loginName );
         profile.setPassword("password");

Modified: incubator/jspwiki/trunk/tests/org/apache/wiki/auth/user/XMLUserDatabaseTest.java
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/tests/org/apache/wiki/auth/user/XMLUserDatabaseTest.java?rev=1446062&r1=1446061&r2=1446062&view=diff
==============================================================================
--- incubator/jspwiki/trunk/tests/org/apache/wiki/auth/user/XMLUserDatabaseTest.java (original)
+++ incubator/jspwiki/trunk/tests/org/apache/wiki/auth/user/XMLUserDatabaseTest.java Thu Feb 14 08:23:26 2013
@@ -65,7 +65,7 @@ public class XMLUserDatabaseTest extends
       // Create a new user with random name
       String loginName = "TestUser" + String.valueOf( System.currentTimeMillis() );
       UserProfile profile = m_db.newProfile();
-      profile.setEmail("testuser@testville.com");
+      profile.setEmail("testuser@example.com");
       profile.setLoginName( loginName );
       profile.setFullname( "FullName"+loginName );
       profile.setPassword("password");