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