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