ChangeLog 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  2. * UrlAuthorizationModule.cs: tell the application not to run any other
  3. step apart from EndRequest.
  4. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  5. * FormsAuthentication.cs: implemented RedirectFromLoginPage and
  6. GetRedirectUrl.
  7. * FormsAuthenticationModule.cs: redirect to the login page when a 401
  8. error happens.
  9. * UrlAuthorizationModule.cs: check for valid user or render error page.
  10. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  11. * DefaultAuthenticationModule.cs: implemented. It just create a default
  12. unauthenticated user when no one else provided one.
  13. * FormsAuthenticationModule.cs: removed debug output.
  14. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  15. * FormsAuthenticationModule.cs: remove debug lines.
  16. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  17. * FormsAuthentication.cs: return a null ticket when an exception is
  18. thrown creating it. Implemented RenewTicketIfOld.
  19. * FormsAuthenticationModule.cs: implemented event handlers for
  20. AuthenticateRequest and EndRequest.
  21. * FormsAuthenticationTicket.cs: implemented SetDates and Clone methods.
  22. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  23. * FormsAuthentication.cs: implemented GetAuthCookie, SetAuthCookie,
  24. SignOut, FormsCookieName and FormsCookiePath.
  25. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  26. * FormsAuthentication.cs: implemented Authenticate, unencrypted Encrypt
  27. and Decrypt, HashPasswordForStoringInConfigFile and Initialize.
  28. * FormsAuthenticationTicket.cs: set cookiePath to the default when no
  29. other provided.
  30. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  31. * DefaultAuthenticationEventHandler.cs:
  32. * DefaultAuthenticationModule.cs:
  33. * FileAuthorizationModule.cs:
  34. * FormsAuthentication.cs:
  35. * FormsAuthenticationEventArgs.cs:
  36. * FormsAuthenticationEventHandler.cs:
  37. * FormsAuthenticationModule.cs:
  38. * FormsAuthenticationTicket.cs:
  39. * FormsIdentity.cs:
  40. * PassportAuthenticationEventArgs.cs:
  41. * PassportAuthenticationEventHandler.cs:
  42. * PassportAuthenticationModule.cs:
  43. * PassportIdentity.cs:
  44. * UrlAuthorizationModule.cs:
  45. * WindowsAuthenticationEventArgs.cs:
  46. * WindowsAuthenticationEventHandler.cs:
  47. * WindowsAuthenticationModule.cs: new files. Some of them implemented,
  48. some others stubbed out.
  49. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  50. * DefaultAuthenticationEventArgs.cs: added file.