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