You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2005/12/12 19:56:55 UTC

svn commit: r356327 - /incubator/roller/trunk/src/org/roller/presentation/xmlrpc/BaseAPIHandler.java

Author: agilliland
Date: Mon Dec 12 10:56:48 2005
New Revision: 356327

URL: http://svn.apache.org/viewcvs?rev=356327&view=rev
Log:
uncommenting the validateUser() method.  i'm not sure why this was commented out, but this method is still needed by BloggerAPIHandler.


Modified:
    incubator/roller/trunk/src/org/roller/presentation/xmlrpc/BaseAPIHandler.java

Modified: incubator/roller/trunk/src/org/roller/presentation/xmlrpc/BaseAPIHandler.java
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/src/org/roller/presentation/xmlrpc/BaseAPIHandler.java?rev=356327&r1=356326&r2=356327&view=diff
==============================================================================
--- incubator/roller/trunk/src/org/roller/presentation/xmlrpc/BaseAPIHandler.java (original)
+++ incubator/roller/trunk/src/org/roller/presentation/xmlrpc/BaseAPIHandler.java Mon Dec 12 10:56:48 2005
@@ -174,7 +174,6 @@
      * @param username Username sent in request
      * @param password Password sent in requeset
      */
-    /*
     protected boolean validateUser(String username, String password) 
     throws Exception
     {
@@ -228,7 +227,7 @@
                 AUTHORIZATION_EXCEPTION, AUTHORIZATION_EXCEPTION_MSG);
         }
         return authenticated;
-    }*/
+    }
     
     //------------------------------------------------------------------------
     protected void flushPageCache(WebsiteData website) throws Exception