ChangeLog 21 KB

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