ChangeLog 21 KB

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