Author: Derick Rethans Date: 2007-05-07 09:34:47 +0200 (Mon, 07 May 2007) New Revision: 5092
Log: - Released Authentication version 1.0beta1 Added: releases/Authentication/1.0beta1/ Modified: releases/Authentication/1.0beta1/ChangeLog releases/Authentication/1.0beta1/src/authentication.php releases/Authentication/1.0beta1/src/authentication_autoload.php releases/Authentication/1.0beta1/src/credentials/credentials.php releases/Authentication/1.0beta1/src/credentials/id_credentials.php releases/Authentication/1.0beta1/src/credentials/password_credentials.php releases/Authentication/1.0beta1/src/exceptions/authentication_exception.php releases/Authentication/1.0beta1/src/filters/group/group_filter.php releases/Authentication/1.0beta1/src/filters/group/group_options.php releases/Authentication/1.0beta1/src/filters/htpasswd/htpasswd_filter.php releases/Authentication/1.0beta1/src/filters/htpasswd/htpasswd_options.php releases/Authentication/1.0beta1/src/filters/ldap/ldap_exception.php releases/Authentication/1.0beta1/src/filters/ldap/ldap_filter.php releases/Authentication/1.0beta1/src/filters/ldap/ldap_info.php releases/Authentication/1.0beta1/src/filters/ldap/ldap_options.php releases/Authentication/1.0beta1/src/filters/session/session_filter.php releases/Authentication/1.0beta1/src/filters/session/session_options.php releases/Authentication/1.0beta1/src/filters/token/token_filter.php releases/Authentication/1.0beta1/src/filters/token/token_options.php releases/Authentication/1.0beta1/src/filters/typekey/typekey_exception.php releases/Authentication/1.0beta1/src/filters/typekey/typekey_filter.php releases/Authentication/1.0beta1/src/filters/typekey/typekey_options.php releases/Authentication/1.0beta1/src/interfaces/authentication_filter.php releases/Authentication/1.0beta1/src/interfaces/authentication_session.php releases/Authentication/1.0beta1/src/interfaces/authentication_status.php releases/Authentication/1.0beta1/src/options/authentication_options.php releases/Authentication/1.0beta1/src/options/filter_options.php releases/Authentication/1.0beta1/tests/filters/group/group_test.php releases/Authentication/1.0beta1/tests/filters/htpasswd/htpasswd_test.php releases/Authentication/1.0beta1/tests/filters/ldap/ldap_test.php releases/Authentication/1.0beta1/tests/filters/session/session_test.php releases/Authentication/1.0beta1/tests/filters/token/token_test.php releases/Authentication/1.0beta1/tests/filters/typekey/typekey_test.php releases/Authentication/1.0beta1/tests/general/authentication_test.php releases/Authentication/1.0beta1/tests/suite.php Copied: releases/Authentication/1.0beta1 (from rev 5084, trunk/Authentication) Modified: releases/Authentication/1.0beta1/ChangeLog =================================================================== --- trunk/Authentication/ChangeLog 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/ChangeLog 2007-05-07 07:34:47 UTC (rev 5092) @@ -1,4 +1,4 @@ -1.0beta1 - [RELEASEDATE] +1.0beta1 - Monday 07 May 2007 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - Initial release of this package. Modified: releases/Authentication/1.0beta1/src/authentication.php =================================================================== --- trunk/Authentication/src/authentication.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/authentication.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -72,7 +72,7 @@ * The user credentials to pass to the authentication filters. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @mainclass */ class ezcAuthentication Modified: releases/Authentication/1.0beta1/src/authentication_autoload.php =================================================================== --- trunk/Authentication/src/authentication_autoload.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/authentication_autoload.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -4,7 +4,7 @@ * * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License - * @version //autogentag// + * @version 1.0beta1 * @filesource * @package Authentication */ Modified: releases/Authentication/1.0beta1/src/credentials/credentials.php =================================================================== --- trunk/Authentication/src/credentials/credentials.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/credentials/credentials.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Base class for all authentication credentials structures. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ abstract class ezcAuthenticationCredentials extends ezcBaseStruct { Modified: releases/Authentication/1.0beta1/src/credentials/id_credentials.php =================================================================== --- trunk/Authentication/src/credentials/id_credentials.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/credentials/id_credentials.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Structure containing an id, used as authentication credentials. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationIdCredentials extends ezcAuthenticationCredentials { Modified: releases/Authentication/1.0beta1/src/credentials/password_credentials.php =================================================================== --- trunk/Authentication/src/credentials/password_credentials.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/credentials/password_credentials.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Structure containing an id and password, used as authentication credentials. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationPasswordCredentials extends ezcAuthenticationCredentials { Modified: releases/Authentication/1.0beta1/src/exceptions/authentication_exception.php =================================================================== --- trunk/Authentication/src/exceptions/authentication_exception.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/exceptions/authentication_exception.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Thrown when an exceptional state occurs in the Authentication component. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationException extends ezcBaseException { Modified: releases/Authentication/1.0beta1/src/filters/group/group_filter.php =================================================================== --- trunk/Authentication/src/filters/group/group_filter.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/group/group_filter.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -74,7 +74,7 @@ * </code> * * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @mainclass */ class ezcAuthenticationGroupFilter extends ezcAuthenticationFilter Modified: releases/Authentication/1.0beta1/src/filters/group/group_options.php =================================================================== --- trunk/Authentication/src/filters/group/group_options.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/group/group_options.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Class containing the options for group authentication filter. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationGroupOptions extends ezcAuthenticationFilterOptions { Modified: releases/Authentication/1.0beta1/src/filters/htpasswd/htpasswd_filter.php =================================================================== --- trunk/Authentication/src/filters/htpasswd/htpasswd_filter.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/htpasswd/htpasswd_filter.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -69,7 +69,7 @@ * The path and file name of the htpasswd file to use. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @mainclass */ class ezcAuthenticationHtpasswdFilter extends ezcAuthenticationFilter Modified: releases/Authentication/1.0beta1/src/filters/htpasswd/htpasswd_options.php =================================================================== --- trunk/Authentication/src/filters/htpasswd/htpasswd_options.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/htpasswd/htpasswd_options.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -32,7 +32,7 @@ * filter from the password stored in the htpasswd file. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationHtpasswdOptions extends ezcAuthenticationFilterOptions { Modified: releases/Authentication/1.0beta1/src/filters/ldap/ldap_exception.php =================================================================== --- trunk/Authentication/src/filters/ldap/ldap_exception.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/ldap/ldap_exception.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Thrown when an exceptional state occurs in the LDAP authentication. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationLdapException extends ezcAuthenticationException { Modified: releases/Authentication/1.0beta1/src/filters/ldap/ldap_filter.php =================================================================== --- trunk/Authentication/src/filters/ldap/ldap_filter.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/ldap/ldap_filter.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -62,7 +62,7 @@ * and port. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @mainclass */ class ezcAuthenticationLdapFilter extends ezcAuthenticationFilter Modified: releases/Authentication/1.0beta1/src/filters/ldap/ldap_info.php =================================================================== --- trunk/Authentication/src/filters/ldap/ldap_info.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/ldap/ldap_info.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Structure for defining the LDAP directory to authenticate against. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationLdapInfo extends ezcBaseStruct { Modified: releases/Authentication/1.0beta1/src/filters/ldap/ldap_options.php =================================================================== --- trunk/Authentication/src/filters/ldap/ldap_options.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/ldap/ldap_options.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -33,7 +33,7 @@ * - ezcAuthenticationLdapFilter::PROTOCOL_TLS - TLS connection * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationLdapOptions extends ezcAuthenticationFilterOptions { Modified: releases/Authentication/1.0beta1/src/filters/session/session_filter.php =================================================================== --- trunk/Authentication/src/filters/session/session_filter.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/session/session_filter.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -66,7 +66,7 @@ * </code> * * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @mainclass */ class ezcAuthenticationSessionFilter extends ezcAuthenticationFilter implements ezcAuthenticationSession Modified: releases/Authentication/1.0beta1/src/filters/session/session_options.php =================================================================== --- trunk/Authentication/src/filters/session/session_options.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/session/session_options.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -30,7 +30,7 @@ * The amount of seconds the session can be idle. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationSessionOptions extends ezcAuthenticationFilterOptions { Modified: releases/Authentication/1.0beta1/src/filters/token/token_filter.php =================================================================== --- trunk/Authentication/src/filters/token/token_filter.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/token/token_filter.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -60,7 +60,7 @@ * The encryption function to use when comparing tokens. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @mainclass */ class ezcAuthenticationTokenFilter extends ezcAuthenticationFilter Modified: releases/Authentication/1.0beta1/src/filters/token/token_options.php =================================================================== --- trunk/Authentication/src/filters/token/token_options.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/token/token_options.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Class containing the options for the token authentication filter. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationTokenOptions extends ezcAuthenticationFilterOptions { Modified: releases/Authentication/1.0beta1/src/filters/typekey/typekey_exception.php =================================================================== --- trunk/Authentication/src/filters/typekey/typekey_exception.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/typekey/typekey_exception.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Thrown when an exceptional state occurs in the TypeKey authentication. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationTypekeyException extends ezcAuthenticationException { Modified: releases/Authentication/1.0beta1/src/filters/typekey/typekey_filter.php =================================================================== --- trunk/Authentication/src/filters/typekey/typekey_filter.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/typekey/typekey_filter.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -170,7 +170,7 @@ * before calling run(). * * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @mainclass */ class ezcAuthenticationTypekeyFilter extends ezcAuthenticationFilter Modified: releases/Authentication/1.0beta1/src/filters/typekey/typekey_options.php =================================================================== --- trunk/Authentication/src/filters/typekey/typekey_options.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/filters/typekey/typekey_options.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -35,7 +35,7 @@ * the servers might not be synchronized. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationTypekeyOptions extends ezcAuthenticationFilterOptions { Modified: releases/Authentication/1.0beta1/src/interfaces/authentication_filter.php =================================================================== --- trunk/Authentication/src/interfaces/authentication_filter.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/interfaces/authentication_filter.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** @@ -22,7 +22,7 @@ * property $options, and the public methods setOptions() and getOptions(). * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ abstract class ezcAuthenticationFilter { Modified: releases/Authentication/1.0beta1/src/interfaces/authentication_session.php =================================================================== --- trunk/Authentication/src/interfaces/authentication_session.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/interfaces/authentication_session.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Interface to provide session functionality. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ interface ezcAuthenticationSession { Modified: releases/Authentication/1.0beta1/src/interfaces/authentication_status.php =================================================================== --- trunk/Authentication/src/interfaces/authentication_status.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/interfaces/authentication_status.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Holds the statuses returned from each authentication filter. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationStatus { Modified: releases/Authentication/1.0beta1/src/options/authentication_options.php =================================================================== --- trunk/Authentication/src/options/authentication_options.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/options/authentication_options.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Class containing the basic options for the authentication main class. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationOptions extends ezcBaseOptions { Modified: releases/Authentication/1.0beta1/src/options/filter_options.php =================================================================== --- trunk/Authentication/src/options/filter_options.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/src/options/filter_options.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,14 +6,14 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ /** * Class containing the basic options for authentication filters. * * @package Authentication - * @version //autogen// + * @version 1.0beta1 */ class ezcAuthenticationFilterOptions extends ezcBaseOptions { Modified: releases/Authentication/1.0beta1/tests/filters/group/group_test.php =================================================================== --- trunk/Authentication/tests/filters/group/group_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/tests/filters/group/group_test.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -4,13 +4,13 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ /** * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ class ezcAuthenticationGroupTest extends ezcTestCase Modified: releases/Authentication/1.0beta1/tests/filters/htpasswd/htpasswd_test.php =================================================================== --- trunk/Authentication/tests/filters/htpasswd/htpasswd_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/tests/filters/htpasswd/htpasswd_test.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -4,13 +4,13 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ /** * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ class ezcAuthenticationHtpasswdTest extends ezcTestCase Modified: releases/Authentication/1.0beta1/tests/filters/ldap/ldap_test.php =================================================================== --- trunk/Authentication/tests/filters/ldap/ldap_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/tests/filters/ldap/ldap_test.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -4,13 +4,13 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ /** * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ class ezcAuthenticationLdapTest extends ezcTestCase Modified: releases/Authentication/1.0beta1/tests/filters/session/session_test.php =================================================================== --- trunk/Authentication/tests/filters/session/session_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/tests/filters/session/session_test.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -4,13 +4,13 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ /** * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ class ezcAuthenticationSessionTest extends ezcTestCase Modified: releases/Authentication/1.0beta1/tests/filters/token/token_test.php =================================================================== --- trunk/Authentication/tests/filters/token/token_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/tests/filters/token/token_test.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -4,13 +4,13 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ /** * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ class ezcAuthenticationTokenTest extends ezcTestCase Modified: releases/Authentication/1.0beta1/tests/filters/typekey/typekey_test.php =================================================================== --- trunk/Authentication/tests/filters/typekey/typekey_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/tests/filters/typekey/typekey_test.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -4,13 +4,13 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ /** * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ class ezcAuthenticationTypekeyTest extends ezcTestCase Modified: releases/Authentication/1.0beta1/tests/general/authentication_test.php =================================================================== --- trunk/Authentication/tests/general/authentication_test.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/tests/general/authentication_test.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -4,13 +4,13 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ /** * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ class ezcAuthenticationTest extends ezcTestCase Modified: releases/Authentication/1.0beta1/tests/suite.php =================================================================== --- trunk/Authentication/tests/suite.php 2007-05-07 07:00:00 UTC (rev 5084) +++ releases/Authentication/1.0beta1/tests/suite.php 2007-05-07 07:34:47 UTC (rev 5092) @@ -6,7 +6,7 @@ * @license http://ez.no/licenses/new_bsd New BSD License * @filesource * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ @@ -23,7 +23,7 @@ /** * @package Authentication - * @version //autogen// + * @version 1.0beta1 * @subpackage Tests */ class ezcAuthenticationSuite extends PHPUnit_Framework_TestSuite -- svn-components mailing list [email protected] http://lists.ez.no/mailman/listinfo/svn-components
