2
0

ChangeLog 2.5 KB

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