Author: as
Date: Thu Jul  5 16:36:26 2007
New Revision: 5702

Log:
- Moved exceptions and options to more logical directories.

Added:
    trunk/Authentication/src/authentication.php
      - copied unchanged from r5701, 
trunk/Authentication/src/authentication/authentication.php
    trunk/Authentication/src/exceptions/
    trunk/Authentication/src/exceptions/authentication_exception.php
      - copied unchanged from r5701, 
trunk/Authentication/src/authentication/authentication_exception.php
    trunk/Authentication/src/exceptions/ldap_exception.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/ldap/ldap_exception.php
    trunk/Authentication/src/exceptions/openid_exception.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/openid/openid_exception.php
    trunk/Authentication/src/exceptions/typekey_exception.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/typekey/typekey_exception.php
    trunk/Authentication/src/options/
    trunk/Authentication/src/options/authentication_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/authentication/authentication_options.php
    trunk/Authentication/src/options/filter_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/filter_options.php
    trunk/Authentication/src/options/group_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/group/group_options.php
    trunk/Authentication/src/options/htpasswd_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/htpasswd/htpasswd_options.php
    trunk/Authentication/src/options/ldap_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/ldap/ldap_options.php
    trunk/Authentication/src/options/openid_file_store_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/openid/openid_file_store_options.php
    trunk/Authentication/src/options/openid_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/openid/openid_options.php
    trunk/Authentication/src/options/openid_store_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/openid/openid_store_options.php
    trunk/Authentication/src/options/session_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/session/session_options.php
    trunk/Authentication/src/options/token_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/token/token_options.php
    trunk/Authentication/src/options/typekey_options.php
      - copied unchanged from r5701, 
trunk/Authentication/src/filters/typekey/typekey_options.php
Removed:
    trunk/Authentication/src/authentication/
    trunk/Authentication/src/filters/filter_options.php
    trunk/Authentication/src/filters/group/group_options.php
    trunk/Authentication/src/filters/htpasswd/htpasswd_options.php
    trunk/Authentication/src/filters/ldap/ldap_exception.php
    trunk/Authentication/src/filters/ldap/ldap_options.php
    trunk/Authentication/src/filters/openid/openid_exception.php
    trunk/Authentication/src/filters/openid/openid_file_store_options.php
    trunk/Authentication/src/filters/openid/openid_options.php
    trunk/Authentication/src/filters/openid/openid_store_options.php
    trunk/Authentication/src/filters/token/token_options.php
    trunk/Authentication/src/filters/typekey/typekey_exception.php
    trunk/Authentication/src/filters/typekey/typekey_options.php
    trunk/Authentication/src/session/session_options.php
Modified:
    trunk/Authentication/design/class_diagram.png
    trunk/Authentication/src/authentication_autoload.php

Modified: trunk/Authentication/design/class_diagram.png
==============================================================================
Binary files - no diff available.

Modified: trunk/Authentication/src/authentication_autoload.php
==============================================================================
--- trunk/Authentication/src/authentication_autoload.php [iso-8859-1] (original)
+++ trunk/Authentication/src/authentication_autoload.php [iso-8859-1] Thu Jul  
5 16:36:26 2007
@@ -10,42 +10,42 @@
  */
 
 return array(
+    'ezcAuthenticationException'              => 
'Authentication/exceptions/authentication_exception.php',
+    'ezcAuthenticationLdapException'          => 
'Authentication/exceptions/ldap_exception.php',
+    'ezcAuthenticationOpenidException'        => 
'Authentication/exceptions/openid_exception.php',
+    'ezcAuthenticationTypekeyException'       => 
'Authentication/exceptions/typekey_exception.php',
     'ezcAuthenticationBignumLibrary'          => 
'Authentication/math/bignum_library.php',
     'ezcAuthenticationCredentials'            => 
'Authentication/credentials/credentials.php',
-    'ezcAuthenticationException'              => 
'Authentication/authentication/authentication_exception.php',
     'ezcAuthenticationFilter'                 => 
'Authentication/filters/authentication_filter.php',
-    'ezcAuthenticationFilterOptions'          => 
'Authentication/filters/filter_options.php',
+    'ezcAuthenticationFilterOptions'          => 
'Authentication/options/filter_options.php',
     'ezcAuthenticationOpenidStore'            => 
'Authentication/filters/openid/openid_store.php',
-    'ezcAuthenticationOpenidStoreOptions'     => 
'Authentication/filters/openid/openid_store_options.php',
-    'ezcAuthentication'                       => 
'Authentication/authentication/authentication.php',
+    'ezcAuthenticationOpenidStoreOptions'     => 
'Authentication/options/openid_store_options.php',
+    'ezcAuthentication'                       => 
'Authentication/authentication.php',
     'ezcAuthenticationBcmathLibrary'          => 
'Authentication/math/bcmath_library.php',
     'ezcAuthenticationGmpLibrary'             => 
'Authentication/math/gmp_library.php',
     'ezcAuthenticationGroupFilter'            => 
'Authentication/filters/group/group_filter.php',
-    'ezcAuthenticationGroupOptions'           => 
'Authentication/filters/group/group_options.php',
+    'ezcAuthenticationGroupOptions'           => 
'Authentication/options/group_options.php',
     'ezcAuthenticationHtpasswdFilter'         => 
'Authentication/filters/htpasswd/htpasswd_filter.php',
-    'ezcAuthenticationHtpasswdOptions'        => 
'Authentication/filters/htpasswd/htpasswd_options.php',
+    'ezcAuthenticationHtpasswdOptions'        => 
'Authentication/options/htpasswd_options.php',
     'ezcAuthenticationIdCredentials'          => 
'Authentication/credentials/id_credentials.php',
-    'ezcAuthenticationLdapException'          => 
'Authentication/filters/ldap/ldap_exception.php',
     'ezcAuthenticationLdapFilter'             => 
'Authentication/filters/ldap/ldap_filter.php',
     'ezcAuthenticationLdapInfo'               => 
'Authentication/filters/ldap/ldap_info.php',
-    'ezcAuthenticationLdapOptions'            => 
'Authentication/filters/ldap/ldap_options.php',
+    'ezcAuthenticationLdapOptions'            => 
'Authentication/options/ldap_options.php',
     'ezcAuthenticationMath'                   => 
'Authentication/math/math.php',
     'ezcAuthenticationOpenidAssociation'      => 
'Authentication/filters/openid/openid_association.php',
-    'ezcAuthenticationOpenidException'        => 
'Authentication/filters/openid/openid_exception.php',
     'ezcAuthenticationOpenidFileStore'        => 
'Authentication/filters/openid/openid_file_store.php',
-    'ezcAuthenticationOpenidFileStoreOptions' => 
'Authentication/filters/openid/openid_file_store_options.php',
+    'ezcAuthenticationOpenidFileStoreOptions' => 
'Authentication/options/openid_file_store_options.php',
     'ezcAuthenticationOpenidFilter'           => 
'Authentication/filters/openid/openid_filter.php',
-    'ezcAuthenticationOpenidOptions'          => 
'Authentication/filters/openid/openid_options.php',
-    'ezcAuthenticationOptions'                => 
'Authentication/authentication/authentication_options.php',
+    'ezcAuthenticationOpenidOptions'          => 
'Authentication/options/openid_options.php',
+    'ezcAuthenticationOptions'                => 
'Authentication/options/authentication_options.php',
     'ezcAuthenticationPasswordCredentials'    => 
'Authentication/credentials/password_credentials.php',
     'ezcAuthenticationSession'                => 
'Authentication/session/authentication_session.php',
-    'ezcAuthenticationSessionOptions'         => 
'Authentication/session/session_options.php',
+    'ezcAuthenticationSessionOptions'         => 
'Authentication/options/session_options.php',
     'ezcAuthenticationStatus'                 => 
'Authentication/status/authentication_status.php',
     'ezcAuthenticationTokenFilter'            => 
'Authentication/filters/token/token_filter.php',
-    'ezcAuthenticationTokenOptions'           => 
'Authentication/filters/token/token_options.php',
-    'ezcAuthenticationTypekeyException'       => 
'Authentication/filters/typekey/typekey_exception.php',
+    'ezcAuthenticationTokenOptions'           => 
'Authentication/options/token_options.php',
     'ezcAuthenticationTypekeyFilter'          => 
'Authentication/filters/typekey/typekey_filter.php',
-    'ezcAuthenticationTypekeyOptions'         => 
'Authentication/filters/typekey/typekey_options.php',
+    'ezcAuthenticationTypekeyOptions'         => 
'Authentication/options/typekey_options.php',
     'ezcAuthenticationUrl'                    => 'Authentication/url/url.php',
 );
 ?>


-- 
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to