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