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