The branch "master" has been updated. The following is a summary of the commits.
from: d570d2a3e7158206c0cb65731d25718f20b457d0 880314e... Auth:: (CVS) -> Horde_Auth:: ----------------------------------------------------------------------- commit 880314e236f67912136bd1494d4dc177ade28846 Author: Michael M Slusarz <[email protected]> Date: Mon Jul 6 19:08:53 2009 -0600 Auth:: (CVS) -> Horde_Auth:: framework/Auth/lib/Horde/Auth.php | 1001 ++++++++++++++++ framework/Auth/lib/Horde/Auth/Application.php | 199 +++ framework/Auth/lib/Horde/Auth/Auto.php | 70 ++ framework/Auth/lib/Horde/Auth/Composite.php | 254 ++++ framework/Auth/lib/Horde/Auth/Customsql.php | 297 +++++ framework/Auth/lib/Horde/Auth/Cyrsql.php | 497 ++++++++ framework/Auth/lib/Horde/Auth/Cyrus.php | 302 +++++ framework/Auth/lib/Horde/Auth/Driver.php | 304 +++++ framework/Auth/lib/Horde/Auth/Ftp.php | 68 ++ framework/Auth/lib/Horde/Auth/Http.php | 140 +++ framework/Auth/lib/Horde/Auth/HttpRemote.php | 46 + framework/Auth/lib/Horde/Auth/Imap.php | 165 +++ framework/Auth/lib/Horde/Auth/Imsp.php | 42 + framework/Auth/lib/Horde/Auth/Ipbasic.php | 90 ++ framework/Auth/lib/Horde/Auth/Kolab.php | 208 ++++ framework/Auth/lib/Horde/Auth/Krb5.php | 72 ++ framework/Auth/lib/Horde/Auth/Ldap.php | 566 +++++++++ framework/Auth/lib/Horde/Auth/Login.php | 76 ++ framework/Auth/lib/Horde/Auth/Msad.php | 304 +++++ framework/Auth/lib/Horde/Auth/Pam.php | 71 ++ framework/Auth/lib/Horde/Auth/Passwd.php | 421 +++++++ framework/Auth/lib/Horde/Auth/Peclsasl.php | 79 ++ framework/Auth/lib/Horde/Auth/Radius.php | 163 +++ framework/Auth/lib/Horde/Auth/Shibboleth.php | 96 ++ framework/Auth/lib/Horde/Auth/Signup.php | 305 +++++ framework/Auth/lib/Horde/Auth/Signup/Datatree.php | 141 +++ framework/Auth/lib/Horde/Auth/Signup/Sql.php | 358 ++++++ framework/Auth/lib/Horde/Auth/Smb.php | 87 ++ framework/Auth/lib/Horde/Auth/Smbclient.php | 82 ++ framework/Auth/lib/Horde/Auth/Sql.php | 484 ++++++++ framework/Auth/package.xml | 238 ++++ framework/Auth/test/Horde/Auth/AllTests.php | 88 ++ framework/Auth/test/Horde/Auth/KolabScenarioTest.php | 57 + framework/Auth/test/Horde/Auth/KolabTest.php | 92 ++ framework/Auth/test/Horde/Auth/credentials.php | Bin 0 -> 895 bytes framework/Auth/test/Horde/Auth/getCryptedPassword.phpt | Bin 0 -> 1002 bytes framework/Auth/test/Horde/Auth/getSalt.phpt | Bin 0 -> 530 bytes framework/Auth/test/Horde/Auth/passwd.phpt | 24 + framework/Auth/test/Horde/Auth/test.passwd | 1 + framework/History/lib/Horde/History.php | 2 +- framework/Kolab_Server/lib/Horde/Kolab/Test/Server.php | 2 +- framework/Kolab_Session/lib/Horde/Kolab/Session.php | 12 +- framework/LoginTasks/lib/Horde/LoginTasks.php | 4 +- framework/Notification/lib/Horde/Notification.php | 2 +- framework/Rpc/lib/Horde/Rpc.php | 6 +- framework/Rpc/lib/Horde/Rpc/Phpgw.php | 3 +- framework/Rpc/lib/Horde/Rpc/Soap.php | 2 +- framework/Rpc/lib/Horde/Rpc/Webdav.php | 6 +- framework/SessionHandler/lib/Horde/SessionHandler.php | 4 +- 49 files changed, 7509 insertions(+), 22 deletions(-) create mode 100644 framework/Auth/lib/Horde/Auth.php create mode 100644 framework/Auth/lib/Horde/Auth/Application.php create mode 100644 framework/Auth/lib/Horde/Auth/Auto.php create mode 100644 framework/Auth/lib/Horde/Auth/Composite.php create mode 100644 framework/Auth/lib/Horde/Auth/Customsql.php create mode 100644 framework/Auth/lib/Horde/Auth/Cyrsql.php create mode 100644 framework/Auth/lib/Horde/Auth/Cyrus.php create mode 100644 framework/Auth/lib/Horde/Auth/Driver.php create mode 100644 framework/Auth/lib/Horde/Auth/Ftp.php create mode 100644 framework/Auth/lib/Horde/Auth/Http.php create mode 100644 framework/Auth/lib/Horde/Auth/HttpRemote.php create mode 100644 framework/Auth/lib/Horde/Auth/Imap.php create mode 100644 framework/Auth/lib/Horde/Auth/Imsp.php create mode 100644 framework/Auth/lib/Horde/Auth/Ipbasic.php create mode 100644 framework/Auth/lib/Horde/Auth/Kolab.php create mode 100644 framework/Auth/lib/Horde/Auth/Krb5.php create mode 100644 framework/Auth/lib/Horde/Auth/Ldap.php create mode 100644 framework/Auth/lib/Horde/Auth/Login.php create mode 100644 framework/Auth/lib/Horde/Auth/Msad.php create mode 100644 framework/Auth/lib/Horde/Auth/Pam.php create mode 100644 framework/Auth/lib/Horde/Auth/Passwd.php create mode 100644 framework/Auth/lib/Horde/Auth/Peclsasl.php create mode 100644 framework/Auth/lib/Horde/Auth/Radius.php create mode 100644 framework/Auth/lib/Horde/Auth/Shibboleth.php create mode 100644 framework/Auth/lib/Horde/Auth/Signup.php create mode 100644 framework/Auth/lib/Horde/Auth/Signup/Datatree.php create mode 100644 framework/Auth/lib/Horde/Auth/Signup/Sql.php create mode 100644 framework/Auth/lib/Horde/Auth/Smb.php create mode 100644 framework/Auth/lib/Horde/Auth/Smbclient.php create mode 100644 framework/Auth/lib/Horde/Auth/Sql.php create mode 100644 framework/Auth/package.xml create mode 100644 framework/Auth/test/Horde/Auth/AllTests.php create mode 100644 framework/Auth/test/Horde/Auth/KolabScenarioTest.php create mode 100644 framework/Auth/test/Horde/Auth/KolabTest.php create mode 100644 framework/Auth/test/Horde/Auth/credentials.php create mode 100644 framework/Auth/test/Horde/Auth/getCryptedPassword.phpt create mode 100644 framework/Auth/test/Horde/Auth/getSalt.phpt create mode 100644 framework/Auth/test/Horde/Auth/passwd.phpt create mode 100644 framework/Auth/test/Horde/Auth/test.passwd http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Application.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Auto.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Composite.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Customsql.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Cyrsql.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Cyrus.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Driver.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Ftp.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Http.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/HttpRemote.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Imap.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Imsp.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Ipbasic.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Kolab.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Krb5.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Ldap.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Login.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Msad.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Pam.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Passwd.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Peclsasl.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Radius.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Shibboleth.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Signup.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Signup/Datatree.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Signup/Sql.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Smb.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Smbclient.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/lib/Horde/Auth/Sql.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/package.xml?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/test/Horde/Auth/AllTests.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/test/Horde/Auth/KolabScenarioTest.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/test/Horde/Auth/KolabTest.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/test/Horde/Auth/credentials.php?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/test/Horde/Auth/getCryptedPassword.phpt?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/test/Horde/Auth/getSalt.phpt?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/test/Horde/Auth/passwd.phpt?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/co.php/framework/Auth/test/Horde/Auth/test.passwd?rt=horde-git&r=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/diff.php/framework/History/lib/Horde/History.php?rt=horde-git&r1=7e97490d9aed4bc012a1b35fcd7958f60dfacff2&r2=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/diff.php/framework/Kolab_Server/lib/Horde/Kolab/Test/Server.php?rt=horde-git&r1=1c32a899a2854c23618a86b6cf7233b12dc6f627&r2=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/diff.php/framework/Kolab_Session/lib/Horde/Kolab/Session.php?rt=horde-git&r1=dd748777b5c0e37f3fe645b865e2372474bda0b9&r2=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/diff.php/framework/LoginTasks/lib/Horde/LoginTasks.php?rt=horde-git&r1=5168b02808a6d578f229b4258c63b90f0a683cae&r2=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/diff.php/framework/Notification/lib/Horde/Notification.php?rt=horde-git&r1=59fa30018ae20160422119959133aa2f7a64d78f&r2=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/diff.php/framework/Rpc/lib/Horde/Rpc.php?rt=horde-git&r1=2034451a4a82bccd119fa5b2816785b4589337a6&r2=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/diff.php/framework/Rpc/lib/Horde/Rpc/Phpgw.php?rt=horde-git&r1=92b8da560be0b6b01e8916ec8d6f6704734b6624&r2=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/diff.php/framework/Rpc/lib/Horde/Rpc/Soap.php?rt=horde-git&r1=92b8da560be0b6b01e8916ec8d6f6704734b6624&r2=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/diff.php/framework/Rpc/lib/Horde/Rpc/Webdav.php?rt=horde-git&r1=2034451a4a82bccd119fa5b2816785b4589337a6&r2=880314e236f67912136bd1494d4dc177ade28846 http://git.horde.org/diff.php/framework/SessionHandler/lib/Horde/SessionHandler.php?rt=horde-git&r1=1b11a038e49027d2e05182b0726397dd6aed650d&r2=880314e236f67912136bd1494d4dc177ade28846 __ commits mailing list Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [email protected]
