ChangeLog 21 KB

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