ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612
  1. 2006-09-26 Vladimir Krasnov <[email protected]>
  2. * Membership.cs: fixed GetAllUsers, typo bug
  3. * SqlRoleProvider.cs, SqlMembershipProvider.cs: refactored to use
  4. aspnetdb built in stored procedures,
  5. fixed application name and membership relation,
  6. improved exception handling
  7. 2006-09-03 Igor Zelmanovich <[email protected]>
  8. * RolePrincipal.cs: refactoring: instance can be serialized.
  9. 2006-09-03 Igor Zelmanovich <[email protected]>
  10. * SqlMembershipProvider.cs: fixed GetUser,
  11. when username is String.Empty methods returns null.
  12. 2006-08-31 Konstantin Triger <[email protected]>
  13. * SqlRoleProvider.cs: fixed initialization.
  14. 2006-08-31 Igor Zelmanovich <[email protected]>
  15. * SqlMembershipProvider.cs: fixed CreateUser,
  16. password is checked, properties MinRequiredPasswordLength and
  17. MinRequiredNonAlphanumericCharacters are considered.
  18. 2006-08-29 Konstantin Triger <[email protected]>
  19. * SqlMembershipProvider.cs: fix dispose order of reader vs connection.
  20. 2006-08-28 Igor Zelmanovich <[email protected]>
  21. * SqlMembershipProvider.cs: fixed CreateUser, parameter isApproved is
  22. considered.
  23. 2006-08-28 Konstantin Triger <[email protected]>
  24. * SqlMembershipProvider.cs: ensure GetUser() returns null if it cannot
  25. retrieve user information.
  26. 2006-08-28 Konstantin Triger <[email protected]>
  27. * SqlRoleProvider.cs, SqlMembershipProvider.cs:
  28. "use SqlClientFactory in case the ProviderName is not specified.
  29. 2006-08-27 Konstantin Triger <[email protected]>
  30. * SqlRoleProvider.cs: enable concurrent usage, refactoring.
  31. 2006-08-27 Konstantin Triger <[email protected]>
  32. * SqlMembershipProvider.cs: enable concurrent usage, refactoring.
  33. 2006-08-27 Vladimir Krasnov <[email protected]>
  34. * SqlMembershipProvider.cs: fixed ValidateUser, bug when user
  35. not exists
  36. 2006-08-14 Gonzalo Paniagua Javier <[email protected]>
  37. * FormsAuthentication.cs: set the Secure attribute of the authentication
  38. cookie when required.
  39. 2006-07-06 Konstantin Triger <[email protected]>
  40. * FormsAuthentication.cs: Ensure initialized, fix url mapping.
  41. 2006-05-03 Chris Toshok <[email protected]>
  42. * SqlMembershipProvider.cs (GetAlg): move this here for the time
  43. being, as it's the only class that uses it.
  44. (HashAndBase64Encode): nuke.
  45. (EncryptAndBase64Encode): nuke.
  46. (Base64DecodeAndDecrypt): nuke.
  47. (DecryptPassword): new function.
  48. (EncryptPassword): new function.
  49. (ChangePassword): replace the switch with a call to
  50. EncodePassword.
  51. (ChangePasswordQuestionAndAnswer): same.
  52. (CreateUser): same.
  53. (ResetPassword): same.
  54. (ValidateUsingPassword): same.
  55. (ValidateUsingPasswordAnswer): same.
  56. (GetPassword): same, and throw MembershipPasswordException if the
  57. password answer is incorrect.
  58. * MembershipProvider.cs (InitVector): nuke this. it's actually
  59. the salt from the database (for the sql provider, anyway).
  60. (EncodePassword): based on the password format, password, and
  61. salt, encode it. Makes use of EncryptPassword.
  62. (DecodePassword): likewise for decoding, makes use of
  63. DecryptPassword.
  64. (DecryptPassword): revert this to throwing
  65. NotImplementedException, as the sql provideroverrides it to
  66. perform the actual decryption.
  67. (EncryptPassword): same.
  68. 2006-05-02 Chris Toshok <[email protected]>
  69. * SqlMembershipProvider.cs: 85% complete, maybe more. The major
  70. functionality should work. Password retrieval (and encrypted
  71. passwords in general) is untested.
  72. 2006-05-01 Chris Toshok <[email protected]>
  73. * Membership.cs (GeneratePassword): don't include quotes (',",`)
  74. in the set of characters in the generated passwords.
  75. 2006-05-01 Chris Toshok <[email protected]>
  76. * MembershipProvider.cs (GetAlg): switch from Exception to
  77. ProviderException to match MS behavior (and fix the unit test.)
  78. * Membership.cs (GeneratePassword): implement.
  79. 2006-05-01 Chris Toshok <[email protected]>
  80. * SqlMembershipProvider.cs: lots more work. checking this in in
  81. its present state because I don't want to lose it. It still needs
  82. work.
  83. * Membership.cs (.cctor): remove the fallback.
  84. (ValidatingPassword): remove the MonoTODO.
  85. * MembershipProvider.cs (DecryptPassword): implement.
  86. (EncryptPassword): implement.
  87. (GetAlg): helper function for Decrypt/EncryptPassword.
  88. (InitVector): same.
  89. 2006-04-27 Chris Toshok <[email protected]>
  90. * SqlMembershipProvider.cs (GeneratePassword): call
  91. Membership.GeneratePassword with the configured minimum strength
  92. requirements.
  93. 2006-04-27 Chris Toshok <[email protected]>
  94. * SqlMembershipProvider.cs (UnlockUser): fix sql query, and move
  95. the CheckPararm call to the top of the method.
  96. 2006-04-12 Chris Toshok <[email protected]>
  97. * SqlMembershipProvider.cs: commit initial pass at
  98. SqlMembershipProvider work. lots of stuff untested in here.
  99. 2006-04-11 Chris Toshok <[email protected]>
  100. * MembershipUser.cs (.ctor): per Shackow's book, all DateTime's
  101. are converted using ToUniversalTime when passed into this class.
  102. (UpdateSelf): update ourselves from the passed in MembershipUser,
  103. swallowing NotSupportedExceptions.
  104. (UpdateUser): fetch a new MembershipUser from the db and call
  105. UpdateSelf with it.
  106. (ChangePassword): call UpdateUser after changing the password.
  107. (ChangePasswordQuestionAndAnswer): same.
  108. (ResetPassword): same.
  109. (UnlockUser): same. Also, don't explicitly set isLockedOut.
  110. It'll be updated in UpdateSelf.
  111. (CreationDate): getter calls ToLocalTime, setter calls
  112. ToUniversalTime.
  113. (LastActivityDate): same.
  114. (LastLoginDate): same.
  115. (LastPasswordChangedDate): same.
  116. (LastLockoutDate): same.
  117. * Membership.cs (.cctor): use
  118. ProvidersHelper.InstantitateProviders, and remove some unnecessary
  119. #if NET_2_0's.
  120. 2006-03-29 Chris Toshok <[email protected]>
  121. * SqlRoleProvider.cs: do the LOWER's in SQL, not in C#.
  122. 2006-03-23 Chris Toshok <[email protected]>
  123. * Roles.cs: make this 2.0 configuration aware.
  124. * SqlRoleProvider.cs: flesh out all the operations. the only
  125. things that need dealing with are the Initialize method's handling
  126. of a few parameters, and the ApplicationName property.
  127. 2006-03-23 Chris Toshok <[email protected]>
  128. * DefaultAuthenticationModule.cs (OnDefaultAuthentication): always
  129. set Thread.CurrentPrincipal, not just if we set it to the
  130. GenericPrincipal.
  131. 2006-03-22 Chris Toshok <[email protected]>
  132. * RoleManagerModule.cs: implement using info in Shackow's book.
  133. * RolePrincipal.cs: flesh this out a bit more.
  134. * DefaultAuthenticationModule.cs (OnDefaultAuthentication):
  135. according to Shackow's book, this sets Thread.CurrentPrincipal as
  136. well as HttpContext.Current.User.
  137. 2006-02-28 Chris Toshok <[email protected]>
  138. * FormsAuthentication.cs: corcompare work.
  139. * MembershipCreateUserException.cs: same.
  140. * MembershipPasswordException.cs: same.
  141. * AnonymousIdentificationModule.cs: same.
  142. 2006-02-01 Chris Toshok <[email protected]>
  143. * FormsAuthentication.cs, Membership.cs,
  144. FormsAuthenticationModule.cs, UrlAuthorizationModule.cs: oops,
  145. replace GetWebApplicationSection with GetSection.
  146. 2006-02-01 Chris Toshok <[email protected]>
  147. * FormsAuthentication.cs: CONFIGURATION_2_0 => NET_2_0.
  148. simplifies the ifdef mess quite a bit.
  149. * Membership.cs: same.
  150. * FormsAuthenticationModule.cs: same.
  151. * UrlAuthorizationModule.cs: same.
  152. 2006-01-04 Chris Toshok <[email protected]>
  153. * FormsAuthentication.cs (Authenticate): add CONFIGURATION_2_0
  154. code.
  155. (Decrypt2): same.
  156. (Decrypt): same.
  157. (Encrypt): same.
  158. (Initialize): same.
  159. 2006-01-04 Chris Toshok <[email protected]>
  160. * Membership.cs (.cctor): enable the code here under
  161. CONFIGURATION_2_0.
  162. 2006-01-03 Chris Toshok <[email protected]>
  163. * UrlAuthorizationModule.cs (OnAuthorizeRequest): add
  164. CONFIGURATION_2_0 code here.
  165. 2005-12-22 Gonzalo Paniagua Javier <[email protected]>
  166. * FormsAuthentication.cs: don't end the request in
  167. RedirectFromLoginPage.
  168. 2005-12-22 Gonzalo Paniagua Javier <[email protected]>
  169. * FormsAuthenticationModule.cs: expire the cookie. Fixes bug #77043.
  170. Patch by Cyrille Colin.
  171. 2005-12-13 Gonzalo Paniagua Javier <[email protected]>
  172. * FormsAuthenticationModule.cs: ignore any exception thrown when mapping
  173. the provided virtual path to the physical one. Patch by Cyrille Colin.
  174. 2005-11-28 Chris Toshok <[email protected]>
  175. * FormsAuthenticationModule.cs (OnAuthenticateRequest):
  176. CONFIGURATION_2_0 work.
  177. (OnEndRequest): same.
  178. 2005-09-09 Sebastien Pouliot <[email protected]>
  179. * DefaultAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  180. * DefaultAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  181. Demand for UnmanagedCode on constructor.
  182. * FileAuthorizationModule.cs: Added LinkDemand for Minimal. Added
  183. Demand for UnmanagedCode on constructor.
  184. * FormsAuthentication.cs: Added LinkDemand for Minimal.
  185. * FormsAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  186. * FormsAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  187. Demand for UnmanagedCode on constructor.
  188. * FormsAuthenticationTicket.cs: Added LinkDemand for Minimal.
  189. * FormsIdentity.cs: Added LinkDemand for Minimal.
  190. * PassportAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  191. * PassportAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  192. Demand for UnmanagedCode on constructor.
  193. * PassportIdentity.cs: Added LinkDemand for Minimal. Added Demand for
  194. UnmanagedCode on constructor.
  195. * UrlAuthorizationModule.cs: Added LinkDemand for Minimal. Added
  196. Demand for UnmanagedCode on constructor.
  197. * WindowsAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  198. * WindowsAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  199. Demand for UnmanagedCode on constructor.
  200. 2005-09-01 Sebastien Pouliot <[email protected]>
  201. * FormsAuthenticationEventArgs.cs: Ensure the setter for User is
  202. protected by a demand for ControlPrincipal.
  203. * PassportAuthenticationEventArgs.cs: Ensure the setter for User is
  204. protected by a demand for ControlPrincipal.
  205. * WindowsAuthenticationEventArgs.cs: Ensure the setter for User is
  206. protected by a demand for ControlPrincipal.
  207. 2005-08-25 Sebastien Pouliot <[email protected]>
  208. * FormsAuthentication.cs: With 2.0 we can get the default properties
  209. and call Initialize without a NRE.
  210. 2005-08-25 Sebastien Pouliot <[email protected]>
  211. * ActiveDirectoryConnectionProtection.cs: New (2.0) enum.
  212. * ActiveDirectoryMembershipProvider.cs: Fixed 2.0 API.
  213. * AnonymousIdentificationEventArgs.cs: Fixed AnonymousID property case.
  214. * AnonymousIdentificationModule.cs: Fixed 2.0 API.
  215. * FileAuthorizationModule.cs: Added static CheckFileAccessForUser in
  216. 2.0 profile (TODO).
  217. * FormsAuthentication.cs: Added missing 2.0 properties with their
  218. default values.
  219. * MembershipCreateStatus.cs: Fixed enum values/names.
  220. * MembershipProvider.cs: Added stub for [Decrypt|Encrypt]Password. Both
  221. methods don't seems to work without an active provider.
  222. * PassportIdentity.cs: Added IDispose for 2.0 profile.
  223. * Roles.cs: Added missing beta2 bits and default values (which are the
  224. only things working without a role provider (web.config).
  225. * RolePrincipal.cs: Fixed 2.0 API. Implemented a few bits.
  226. * SqlRoleProvider.cs: Fixed 2.0 API.
  227. * UrlAuthorizationModule.cs: Added static CheckUrlAccessForPrincipal in
  228. 2.0 profile (TODO).
  229. 2005-08-24 Sebastien Pouliot <[email protected]>
  230. * MembershipUserCollection.cs: Fix exceptions.
  231. 2005-08-22 Sebastien Pouliot <[email protected]>
  232. * FormsAuthentication.cs: Add some 2.0 stuff required for Login*
  233. controls to compile.
  234. 2005-08-18 Sebastien Pouliot <[email protected]>
  235. * Membership.cs: Commented unworking parts of the .cctor to allow
  236. testing the Login control.
  237. * MembershipProviderCollection.cs: Fixed exception handling.
  238. * SqlMembershipProvider.cs: Don't throw NotImplementedException
  239. everywhere so Membership's .cctor (somewhat) works. Removed
  240. Description property (not in beta2).
  241. 2005-07-28 Gonzalo Paniagua Javier <[email protected]>
  242. * FormsAuthentication.cs: allow hardware acceleration support if
  243. available. Sebastien dixit.
  244. 2005-07-26 Gonzalo Paniagua Javier <[email protected]>
  245. * FormsAuthentication.cs: the init_vector must be the same accross
  246. restarts, otherwise the cookie does not work even when a decryption
  247. key is provided. Initialize it to the bytes of the cookie name. Fixes
  248. bug #75635.
  249. 2005-07-25 Eyal Alaluf <[email protected]>
  250. * FormsAuthenticationModule.cs: Check for null config
  251. 2005-07-25 Miguel de Icaza <[email protected]>
  252. * FormsAuthentication.cs (SignOut): Force the cookie to have it
  253. expire in the past.
  254. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  255. * FormsAuthentication.cs: my previous patch missed a "small" detail: it
  256. didn't include the verification key when computing/checking the
  257. validation hash. Now this is really a MAC or HMAC or...
  258. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  259. * FormsAuthentication.cs:
  260. * FormsAuthenticationTicket.cs: added support for validation and
  261. encryption of the auth. cookie and improved serialization of the ticket.
  262. 2005-07-01 Lluis Sanchez Gual <[email protected]>
  263. * Membership.cs: Read provider info from the config file.
  264. 2005-06-10 Lluis Sanchez Gual <[email protected]>
  265. * MembershipUserCollection.cs:
  266. * MembershipPasswordException.cs:
  267. * RoleProviderCollection.cs:
  268. * ActiveDirectoryMembershipProvider.cs:
  269. * SqlMembershipProvider.cs:
  270. * MembershipProvider.cs:
  271. * SqlRoleProvider.cs:
  272. * Membership.cs:
  273. * MembershipUser.cs:
  274. * MembershipProviderCollection.cs:
  275. * Roles.cs:.
  276. * RoleProvider.cs: Track api changes in ASP.NET 2.0. Implemented
  277. some missing methods.
  278. * AccessRoleProvider.cs:
  279. * AccessMembershipProvider.cs: Removed.
  280. * MembershipCreateUserException.cs:
  281. * MembershipValidatePasswordEventHandler.cs:
  282. * ValidatePasswordEventArgs.cs: Implemented.
  283. 2005-05-21 Sebastien Pouliot <[email protected]>
  284. * FormsAuthentication.cs: Hash the UTF8 representation of the password
  285. strings (to be compatible with Microsoft implementation).
  286. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  287. * FormsAuthentication.cs:
  288. * PassportAuthenticationModule.cs:
  289. * WindowsAuthenticationModule.cs: removed warnings.
  290. 2005-03-11 Gonzalo Paniagua Javier <[email protected]>
  291. * FormsAuthenticationModule.cs: fix for bug 73545, which caused
  292. authentication not to work when the cookie was not persistent.
  293. Patch by Ilya Kharmatsky (Mainsoft).
  294. 2005-02-23 Gonzalo Paniagua Javier <[email protected]>
  295. * FormsAuthentication.cs: make the string to be stored in a config.
  296. file uppercase... See bug #72557.
  297. 2005-02-06 Gonzalo Paniagua Javier <[email protected]>
  298. * FormsAuthentication.cs: fixed typo when getting the hash for the
  299. password in SHA1 and MD5. Thanks to Tadas Dailyda.
  300. Lock on a static object instead of typeof(FormsAuthentication).
  301. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  302. * RoleProvider.cs, Roles.cs, SqlRoleProvider.cs, RoleProviderCollection.cs,
  303. AccessRoleProvider.cs: IRoleProvider has been renamed to ProviderBase.
  304. * IMembershipProvider.cs: Deleted.
  305. * MembershipProvider.cs, AccessMembershipProvider.cs, MembershipUser.cs,
  306. Membership.cs, ADMembershipProvider.cs, SqlMembershipProvider.cs
  307. MembershipProviderCollection.cs: MembershipProvider has been deleted
  308. and replaced by the abstract class MembershipProvider.
  309. * MembershipProviderCollection.cs: Minor fixes.
  310. * ADMembershipProvider.cs: Renamed to ActiveDirectoryMembershipProvider.cs.
  311. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  312. * RoleProviderCollection.cs, MembershipProviderCollection.cs:
  313. Fixed warnings.
  314. 2004-08-23 Gonzalo Paniagua Javier <[email protected]>
  315. * FormsAuthentication.cs: patch by Jim Pease to fix the date on renewal.
  316. 2004-08-22 Gonzalo Paniagua Javier <[email protected]>
  317. * FormsAuthenticationModule.cs: don't renew expired cookies. Only renew
  318. the cookie if SlidingExpiration is set. Thanks to Jim Pease.
  319. 2004-08-03 Sanjay Gupta <[email protected]>
  320. * MembershipSortOptions.cs:
  321. * MembershipPasswordFormat.cs:
  322. * MembershipOnlineStatus.cs:
  323. * MembershipCreateStatus.cs:
  324. * CookieProtection.cs: minor modifications.
  325. 2004-06-12 Pedro Martnez Juli <[email protected]>
  326. * FormsAuthentication.cs: Undo last change.
  327. 2004-06-12 Pedro Martnez Juli <[email protected]>
  328. * FormsAuthentication.cs: go to loginUrl from web.config settings
  329. before try with the default ones.
  330. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  331. * DefaultAuthenticationModule.cs: set the IPrincipal for this thread
  332. once we have a user. Fixes bug #59683.
  333. 2004-04-21 Gonzalo Paniagua Javier <[email protected]>
  334. * FormsAuthenticationModule.cs: re-read configuration files if needed
  335. when determining if forms auth. is used.
  336. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  337. * FormsAuthentication.cs: added RequireSSL and SlidingExpiration.
  338. 2004-01-11 Andreas Nahr <[email protected]>
  339. * PassportIdentity.cs: Added v 1.1 members
  340. 2003-11-25 Ben Maurer <[email protected]>
  341. * AccessMembershipProvider.cs: New v2 file
  342. * AccessRoleProvider.cs: New v2 file
  343. * ADMembershipProvider.cs: New v2 file
  344. * AnonymousIdentificationEventArgs.cs: New v2 file
  345. * AnonymousIdentificationEventHandler.cs: New v2 file
  346. * AnonymousIdentificationModule.cs: New v2 file
  347. * CookieProtection.cs: New v2 file
  348. * IMembershipProvider.cs: New v2 file
  349. * IRoleProvider.cs: New v2 file
  350. * Membership.cs: New v2 file
  351. * MembershipCreateStatus.cs: New v2 file
  352. * MembershipCreateUserException.cs: New v2 file
  353. * MembershipOnlineStatus.cs: New v2 file
  354. * MembershipPasswordException.cs: New v2 file
  355. * MembershipPasswordFormat.cs: New v2 file
  356. * MembershipProviderCollection.cs: New v2 file
  357. * MembershipSortOptions.cs: New v2 file
  358. * MembershipUser.cs: New v2 file
  359. * MembershipUserCollection.cs: New v2 file
  360. * RoleManagerEventArgs.cs: New v2 file
  361. * RoleManagerEventHandler.cs: New v2 file
  362. * RoleManagerModule.cs: New v2 file
  363. * RolePrincipal.cs: New v2 file
  364. * RoleProviderCollection.cs: New v2 file
  365. * Roles.cs: New v2 file
  366. * SqlMembershipProvider.cs: New v2 file
  367. * SqlRoleProvider.cs: New v2 file
  368. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  369. * FormsAuthentication.cs: encoding updates.
  370. 2003-10-04 Gonzalo Paniagua Javier <[email protected]>
  371. * FormsAuthenticationModule.cs: fixed for applications other than /.
  372. 2003-08-27 Gonzalo Paniagua Javier <[email protected]>
  373. * UrlAuthorizationModule.cs: fixed description for status code.
  374. 2003-07-31 Gonzalo Paniagua Javier <[email protected]>
  375. * FormsAuthenticationModule.cs: really renew the ticket. Thanks to
  376. Jens Thiel <[email protected]>.
  377. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  378. * UrlAuthorizationModule.cs: tell the application not to run any other
  379. step apart from EndRequest.
  380. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  381. * FormsAuthentication.cs: implemented RedirectFromLoginPage and
  382. GetRedirectUrl.
  383. * FormsAuthenticationModule.cs: redirect to the login page when a 401
  384. error happens.
  385. * UrlAuthorizationModule.cs: check for valid user or render error page.
  386. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  387. * DefaultAuthenticationModule.cs: implemented. It just create a default
  388. unauthenticated user when no one else provided one.
  389. * FormsAuthenticationModule.cs: removed debug output.
  390. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  391. * FormsAuthenticationModule.cs: remove debug lines.
  392. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  393. * FormsAuthentication.cs: return a null ticket when an exception is
  394. thrown creating it. Implemented RenewTicketIfOld.
  395. * FormsAuthenticationModule.cs: implemented event handlers for
  396. AuthenticateRequest and EndRequest.
  397. * FormsAuthenticationTicket.cs: implemented SetDates and Clone methods.
  398. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  399. * FormsAuthentication.cs: implemented GetAuthCookie, SetAuthCookie,
  400. SignOut, FormsCookieName and FormsCookiePath.
  401. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  402. * FormsAuthentication.cs: implemented Authenticate, unencrypted Encrypt
  403. and Decrypt, HashPasswordForStoringInConfigFile and Initialize.
  404. * FormsAuthenticationTicket.cs: set cookiePath to the default when no
  405. other provided.
  406. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  407. * DefaultAuthenticationEventHandler.cs:
  408. * DefaultAuthenticationModule.cs:
  409. * FileAuthorizationModule.cs:
  410. * FormsAuthentication.cs:
  411. * FormsAuthenticationEventArgs.cs:
  412. * FormsAuthenticationEventHandler.cs:
  413. * FormsAuthenticationModule.cs:
  414. * FormsAuthenticationTicket.cs:
  415. * FormsIdentity.cs:
  416. * PassportAuthenticationEventArgs.cs:
  417. * PassportAuthenticationEventHandler.cs:
  418. * PassportAuthenticationModule.cs:
  419. * PassportIdentity.cs:
  420. * UrlAuthorizationModule.cs:
  421. * WindowsAuthenticationEventArgs.cs:
  422. * WindowsAuthenticationEventHandler.cs:
  423. * WindowsAuthenticationModule.cs: new files. Some of them implemented,
  424. some others stubbed out.
  425. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  426. * DefaultAuthenticationEventArgs.cs: added file.