added Play button to Scratchpad;
renamed DJ Bag to Scratchpad in resource bundle files; put loginEntry->grab_focus() in LoginWindow; fixed crash in GLiveSupport::login() on incorrect login name and password
This commit is contained in:
parent
96e5fd0f1a
commit
ffaee61d4d
9 changed files with 55 additions and 21 deletions
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
Author : $Author: fgerlits $
|
||||
Version : $Revision: 1.7 $
|
||||
Version : $Revision: 1.8 $
|
||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/include/LiveSupport/Authentication/AuthenticationClientInterface.h,v $
|
||||
|
||||
------------------------------------------------------------------------------*/
|
||||
|
@ -69,7 +69,7 @@ using namespace LiveSupport::Core;
|
|||
* An interface for authentication clients.
|
||||
*
|
||||
* @author $Author: fgerlits $
|
||||
* @version $Revision: 1.7 $
|
||||
* @version $Revision: 1.8 $
|
||||
*/
|
||||
class AuthenticationClientInterface
|
||||
{
|
||||
|
@ -79,6 +79,9 @@ class AuthenticationClientInterface
|
|||
* Login to the authentication server.
|
||||
* Returns a new session ID; in case of an error, throws
|
||||
* AuthenticationException or one of its subclasses.
|
||||
* Note that an incorrect login or password is considered an error
|
||||
* and will throw an XmlRpcException (in the case of WebStorageClient,
|
||||
* an XmlRpcMethodFaultException, which is also an XmlRpcException).
|
||||
*
|
||||
* @param login the login to the server
|
||||
* @param password the password to the server
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
Author : $Author: fgerlits $
|
||||
Version : $Revision: 1.8 $
|
||||
Version : $Revision: 1.9 $
|
||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/src/TestAuthenticationClient.h,v $
|
||||
|
||||
------------------------------------------------------------------------------*/
|
||||
|
@ -95,7 +95,7 @@ using namespace LiveSupport::Core;
|
|||
* </code></pre>
|
||||
*
|
||||
* @author $Author: fgerlits $
|
||||
* @version $Revision: 1.8 $
|
||||
* @version $Revision: 1.9 $
|
||||
*/
|
||||
class TestAuthenticationClient :
|
||||
virtual public Configurable,
|
||||
|
@ -185,6 +185,8 @@ class TestAuthenticationClient :
|
|||
* configuration file.
|
||||
* Returns a new session ID; in case of an error, returns a
|
||||
* null pointer.
|
||||
* Note that an incorrect login or password is considered an error
|
||||
* and will throw an XmlRpcException.
|
||||
*
|
||||
* @return the new session ID
|
||||
* @exception XmlRpcException login or password is incorrect
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
Author : $Author: fgerlits $
|
||||
Version : $Revision: 1.5 $
|
||||
Version : $Revision: 1.6 $
|
||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/src/WebAuthenticationClient.h,v $
|
||||
|
||||
------------------------------------------------------------------------------*/
|
||||
|
@ -93,7 +93,7 @@ using namespace LiveSupport::Core;
|
|||
* </code></pre>
|
||||
*
|
||||
* @author $Author: fgerlits $
|
||||
* @version $Revision: 1.5 $
|
||||
* @version $Revision: 1.6 $
|
||||
*/
|
||||
class WebAuthenticationClient :
|
||||
virtual public Configurable,
|
||||
|
@ -163,6 +163,8 @@ class WebAuthenticationClient :
|
|||
* configuration file.
|
||||
* Returns a new session ID; in case of an error, throws one of three
|
||||
* types of AuthenticationException.
|
||||
* Note that an incorrect login or password is considered an error
|
||||
* and will throw an XmlRpcMethodFaultException.
|
||||
*
|
||||
* @param login the login to the server
|
||||
* @param password the password to the server
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue