2010-03-06 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web / ChangeLog
1 2010-03-06  Marek Habersack  <mhabersack@novell.com>
2
3         * HttpUtility.cs: decode entities which use hexadecimal
4         encoding. Fixes bug #585992. Patch from Sebastien Morin
5         <smsisko@gmail.com>, thanks!
6
7 2010-03-04  Marek Habersack  <mhabersack@novell.com>
8
9         * HttpRuntime.cs: do less work in the static constructor. Most of
10         the code was moved to System.Web.Util.RuntimeHelpers. Properties
11         which have been moved: MonoVersion, RunningOnWindows,
12         CaseInsensitive, IsDebuggingEnabled
13
14 2010-02-27  Marek Habersack  <mhabersack@novell.com>
15
16         * HttpRuntime.cs: added internal property DomainUnloading.
17
18         * HttpApplication.cs: when app domain is unloading, catch
19         ThreadAbortExceptions and reset the abort.
20
21 2010-02-03  Marek Habersack  <mhabersack@novell.com>
22
23         * HttpApplication.cs: GetOutputCacheProviderName returns the value
24         of OutputCache.DefaultProviderName
25
26         * HttpRuntime.cs: internal cache is used to hold the dependencies
27         now.
28
29 2010-01-20  Marek Habersack  <mhabersack@novell.com>
30
31         * HttpContext.cs: implemented the 4.0 SetSessionStateBehavior
32         method
33
34         * HttpCacheVaryByContentEncodings.cs, HttpCacheVaryByHeaders.cs,
35         HttpCacheVaryByParams.cs : parameterless constructors are public
36         in 4.0
37
38         * HttpApplication.cs: implemented the 4.0
39         GetOutputCacheProviderName method
40
41 2010-01-19  Marek Habersack  <mhabersack@novell.com>
42
43         * StaticSiteMapProvider.cs: AddNode checks the url of node
44         returned by FindSiteMapNode to see if it indeed was a
45         duplicate. It is necessary if application derives from
46         StaticSiteMapProvider and overrides FindSiteMapNode to return
47         RootNode if rawUrl doesn't match any existing node. Fixes bug
48         #570194
49
50 2010-01-09  Marek Habersack  <mhabersack@novell.com>
51
52         * VirtualPathUtility.cs: small optimizations for GetDirectory
53
54 2009-11-23  Marek Habersack  <mhabersack@novell.com>
55
56         * HttpRequest.cs: PathInfo returns an empty string when worker
57         request is absent or its GetPathInfo method returns a null. Patch
58         from Tiaan <tagdev@gmail.com>, thanks!
59
60 2009-11-19  Marek Habersack  <mhabersack@novell.com>
61
62         * VirtualPathUtility.cs: made Normalize internal
63
64 2009-11-16  Marek Habersack  <mhabersack@novell.com>
65
66         * HttpContext.cs: RewritePath now treats non-rooted and
67         app-relative paths correctly - the former are formed by
68         concatenating base virtual path with the passed file path and the
69         latter by calling VirtualPathUtility.ToAbsolute. Rooted and
70         absolute paths are left unmodified. Fixes bug #550103
71
72 2009-11-13  Marek Habersack  <mhabersack@novell.com>
73
74         * HttpResponse.cs: added parameter checks to Redirect ().
75         If the passed url starts with http:, https:, file: or ftp: then it
76         is treated as a fully qualified one and no attempt to rewrite the
77         url to the fully qualified form (if system.web/httpRuntime
78         UseFullyQualifiedRedirectUrl is true) is made.
79
80 2009-11-09  Marek Habersack  <mhabersack@novell.com>
81
82         * HttpCookie.cs: made HttpCookie.CookieNVC serializable. Patch
83         from Sean Foy <sean.foy+novell@gmail.com>, thanks! Fixes bug
84         #553063
85
86         * HttpCookieCollection.cs: Add allows for duplicate cookie
87         names. Fixes bug #553150
88
89 2009-10-30  Marek Habersack  <mhabersack@novell.com>
90
91         * HttpRequest.cs: added internal property ClientFilePath, which
92         may have a different value than FilePath when virtual path has
93         been rewritten, but the caller specified that the client paths
94         should still be constructed using the original url.
95
96         * HttpContext.cs: RewritePath always sets Request.FilePath,
97         Request.ClientFilePath is set only when setClientFilePath is
98         true. This makes client urls work correctly when url rewriting is
99         being used.
100
101 2009-10-20  Marek Habersack  <mhabersack@novell.com>
102
103         * HttpResponse.cs: implemented the WriteSubstitution method,
104         thus enabling post-cache substitution.
105
106 2009-10-12  Marek Habersack  <mhabersack@novell.com>
107
108         * HttpResponse.cs: actually _use_ the url passed to Redirect when
109         fully qualified redirect url is requested, doh. Fixes bug #542846
110
111 2009-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
112
113         * StaticFileHandler.cs: it's the last flush even when a VPP is used.
114
115 2009-10-07  Marek Habersack  <mhabersack@novell.com>
116
117         * TraceData.cs: make long execution times stand out.
118
119 2009-09-29  Miguel de Icaza  <miguel@novell.com>
120
121         * HttpUtility.cs: Do not use CAS Attributes when using MonoTouch.
122
123         Remove unnecesasry using clause.
124
125 2009-09-29  Marek Habersack  <mhabersack@novell.com>
126
127         * HttpResponse.cs: use full url in redirect if
128         UseFullyQualifiedRedirectUrl is set to true in httpRuntime
129         configuration section. Patch from Brett Kiefer
130         <brett@fogcreek.com>, thanks! Fixes bug #542846
131
132 2009-09-28  Marek Habersack  <mhabersack@novell.com>
133
134         * HttpContext.cs: GetResourceProvider - renamed the 'key' argument
135         to 'virtualPath' in order to reflects its purpose better. Local
136         resource providers are created for the passed virtualPath and not
137         for the current request's path. Fixes bug #542484
138
139 2009-09-25  Marek Habersack  <mhabersack@novell.com>
140
141         * StaticSiteMapProvider.cs: MapUrl must normalize paths. Fixes bug
142         #541969
143
144         * XmlSiteMapProvider.cs: siteMapFile parameter must be mapped in
145         Initialize. Fixes bug #541969
146
147 2009-09-24  Marek Habersack  <mhabersack@novell.com>
148
149         * XmlSiteMapProvider.cs: added "securityTrimmingEnabled" to the
150         list of supported attributes in Initialize. Fixes bug #541607
151
152 2009-09-07  Marek Habersack  <mhabersack@novell.com>
153
154         * HttpContext.cs: when creating local resource provider, pass the
155         current file's virtual path to CreateLocalResourceProvider. Fixes
156         bug #536757
157
158         * XmlSiteMapProvider.cs: do not allow the provider to be
159         intialized more than once.
160         Initialize throws if it finds unknown attributes in the
161         'attributes' collection.
162         AddNode checks its arguments and throws if they are null or aren't
163         from the same provider.
164         FindStartingNode throws exceptions in several erroneous situations
165         now.
166         Added private method GetConfigDocument which performs several
167         checks on the source .sitemap file and throws exceptions if it
168         finds any errors.
169         BuildSiteMap clears provider state before building the map.
170         BuildSiteMapRecursive correctly deals with custom providers. Fixes
171         bug #465696
172         FindSiteMapNode maps url before searching. Fixes bug #465696
173
174         * VirtualPathUtility.cs: Combine a bit more efficient
175
176         * StaticSiteMapProvider.cs: FindSiteMap node checks if rawUrl is
177         relative to application root and if yes, makes it absolute.
178         MapUrl converts both rooted and not rooted urls to absolute.
179
180         * SiteMapProvider.cs: check if HttpContext.Request exists before
181         using it in FindSiteMapnode
182
183         * SiteMap.cs: Providers collection must be read-only.
184
185 2009-09-04  Marek Habersack  <mhabersack@novell.com>
186
187         * HttpRuntime.cs: retrieve real Mono version from the runtime and
188         store it in the MonoVersion internal static property.
189
190         * HttpException.cs: report real Mono version when backtrace is
191         displayed.
192
193 2009-08-24  Marek Habersack  <mhabersack@novell.com>
194
195         * VirtualPath.cs: Added new constructor which takes virtual and
196         physical paths as well as a boolean marking the instance as
197         referring to a fake location. Part of fix for bug #463813
198
199 2009-07-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
200
201         * HttpApplicationFactory.cs: allow subclasses of EventHandler for
202         event handlers in global.asax.
203         Fixes bug #525743.
204
205 2009-07-23  Marek Habersack  <mhabersack@novell.com>
206
207         * HttpException.cs: if an exception is processed which refers to
208         internal "files", don't show the internal name.
209
210 2009-07-18  Marek Habersack  <mhabersack@novell.com>
211
212         * HttpContext.cs: GetGlobalResourceObject must look for resources
213         in the 'Resources' "namespace" - it was a regression from the
214         previous change to that method.
215
216 2009-07-15  Marek Habersack  <mhabersack@novell.com>
217
218         * HttpApplicationFactory.cs: added internal methods to
219         enable/disable specific watchers. Part of fix for bug #522017
220
221 2009-07-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
222
223         * ApplicationShutdownReason.cs: add new 3.5 value.
224         * ParserErrorCollection.cs: add setter for ParserError.
225         Patch from Daniel Gagne.
226
227 2009-07-14  Marek Habersack  <mhabersack@novell.com>
228
229         * HttpApplicationFactory.cs: OnFileChanged doesn't reload
230         application if reload suppression is active.
231
232 2009-07-13  Marek Habersack  <mhabersack@novell.com>
233
234         * HttpApplication.cs: LoadType - wrap call to LoadTypeFromBin in
235         try/catch so that we can decide whether or not to throw
236         exceptions. LoadTypeFromBin - ignore the FileLoadException and
237         BadImageException exceptions as they don't matter in this
238         context.
239
240 2009-07-13  Gert Driesen  <drieseng@users.sourceforge.net>
241
242         * HttpResponseStream.cs: Added argument checks to Write. Modified
243         methods/properties that requires a readable stream to throw
244         NotSupportedException instead of InvalidOperationException for
245         compatibility with MS.
246
247 2009-07-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
248
249         * HttpApplication.cs: use GetSection instead of
250         OpenWebConfiguration+GetSection.
251
252 2009-07-09  Marek Habersack  <mhabersack@novell.com>
253
254         * HttpContext.cs: fall back to default resource provider factory
255         if the factory provided by user doesn't have the required object
256         in Get{Global,Local}ResourceObject. Fixes bug #520397
257         Refactored the GetResourceObject method and the
258         ResourceManagerCacheKey class to DefaultResourceProvider.
259
260 2009-07-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
261
262         * ParserError.cs: add 3 missing setters. Patch from Daniel Gagne.
263
264 2009-06-15  Marek Habersack  <mhabersack@novell.com>
265
266         * HttpCachePolicy.cs: SetHeaders adds max-age when MaxAge is set
267         to TimeSpan.Zero by calling SetMaxAge. Fixes bug #513000
268
269 2009-06-05  Marek Habersack  <mhabersack@novell.com>
270
271         * VirtualPathUtility.cs: IsValidVirtualPath no longer uses
272         WebConfigurationManager.GetSection to retrieve the verification
273         setting. Instead, the setting is retrieved in the static
274         constructor.
275
276         * HttpRequest.cs: ApplyUrlMapping must not use
277         WebConfigurationManager.GetSection as it would cause a recursive
278         call loop. Code to detect whether url mappings are in effect has
279         been moved to a static constructor.
280
281 2009-06-04  Marek Habersack  <mhabersack@novell.com>
282
283         * HttpResponse.cs: version header configuration is read lazily
284         now.
285
286         * HttpException.cs: do not show version info if custom errors are
287         in effect. Fixes bug #509092
288         Don't generate trace for 403. Fixes bug #509092
289
290         * HttpApplicationFactory.cs: OnFileChanged ignores the directory
291         part of the file triggering the event. Fixes bug #509998
292
293 2009-06-03  Marek Habersack  <mhabersack@novell.com>
294
295         * VirtualPathUtility.cs: IsValidVirtualPath now checks the value
296         of the
297         HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ASP.NET\VerificationCompatibility
298         registry key when running on Windows and also consults the
299         mono-specific system.web/monoSettings configuration section to see
300         what is the verificationCompatibility property set to. If either
301         of the two is set to 1, Mono will not verify the validity of
302         the current request's path. Fixes bug #509163
303
304         * HttpApplicationFactory.cs: OnFileChanged must check whether the
305         modified location is a directory before it decides to ignore it
306         when watcher's filter is "?eb.?config". Fixes bug #509450 (see
307         also bug #495011)
308
309         * HttpForbiddenHandler.cs: updated the error message to match
310         .NET, added requested path and description. Fixes bug #509092
311
312         * HttpException.cs: if trace is not requested, don't output <!--
313         following the version information in WriteFileBottom. Fixes bug
314         #509475
315         GetDefaultErrorMessage appends trace only if showTrace is
316         true. Fixes bug #509092
317
318 2009-06-02  Marek Habersack  <mhabersack@novell.com>
319
320         * HttpApplication.cs: LocateHandler needs to pass current request
321         path and filepath to WebConfigurationManager when retrieving
322         system.web/httpHandlers section as only this will guarantee that
323         any <location> elements relating to the current request's which
324         contain system.web/httpHandlers section will be correctly read and
325         used. Also fixes reading httpHandlers section if it's found in
326         web.config located in a subdirectory. Fixes bug #509069
327
328         * HttpException.cs: 403 errors get same treatment as 404
329         below. Fixes bug #509092
330
331 2009-06-01  Marek Habersack  <mhabersack@novell.com>
332
333         * HttpException.cs: if custom errors are enabled and the error
334         code is 404 show the "standard" 404 error message instead of the
335         default custom error mode one. Fixes bug #508649
336
337 2009-05-28  Marek Habersack  <mhabersack@novell.com>
338
339         * HttpUtility.cs: fixed UrlDecode for encoded strings which
340         should be converted to byte sequences longer than 2 bytes. Fixes
341         bug #507666
342
343 2009-05-14  Marek Habersack  <mhabersack@novell.com>
344
345         * HttpApplication.cs: LocateHandler won't cache if a default
346         handler was returned.
347
348 2009-05-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
349
350         * MimeTypes.cs: add silverlight related types.
351
352 2009-04-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
353
354         * HttpContext.cs:
355         * HttpWorkerRequest.cs:
356         * HttpRuntime.cs: if other parts of the system are using the
357         threadpool and we queue requests, once the threadpool is free we
358         might still not get back to use it to the maximum extent possible.
359         Adding a few more calls to QueuePendingRequest ensures that does not
360         happen.
361
362 2009-04-24  Marek Habersack  <mhabersack@novell.com>
363
364         * HtmlizedException.cs: make HtmlException derive from
365         HttpException. System.Web.Mvc relies upon compile and parse
366         exception being descendants of HttpException or otherwise it will
367         catch and ignore compilation/parsing errors.
368
369 2009-04-16  Marek Habersack  <mhabersack@novell.com>
370
371         * HttpContext.cs: local resources code now uses the custom
372         resource provider factory, just like the global resources
373         code. Fixes bug #493263
374
375 2009-04-15  Marek Habersack  <mhabersack@novell.com>
376
377         * HttpApplicationFactory.cs: if a notification is received from a
378         FileSystemWatcher which was configured to watch for
379         subdirectories, uses a filter (currently we have just one such
380         watcher - waiting for changes to '?eb.?onfig') and the event
381         doesn't match the filter, ignore the event. Fixes bug #495011
382
383 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
384
385         * HttpUtility.cs: the collection returned from ParseQueryString knows
386         how to convert the key/value pairs to a string.
387
388 2009-04-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
389
390         * HttpResponseStream.cs: use the unsafe version when copying buffers.
391
392 2009-04-06  Marek Habersack  <mhabersack@novell.com>
393
394         * HttpRuntime.cs: added a new internal static property
395         IsDebuggingEnabled
396
397         * HttpContext.cs: IsDebuggingEnabled now calls
398         HttpRuntime.IsDebuggingEnabled
399
400 2009-04-03  Gert Driesen  <drieseng@users.sourceforge.net>
401
402         * HttpRuntime.cs: Avoid ANE on Windows when HttpRuntime is used
403         outside of ASP.NET. Fixed compiler warning by setting
404         assemblyMappingEnabled.
405
406 2009-04-02  Marek Habersack  <mhabersack@novell.com>
407
408         * HttpException.cs: if there are more lines with errors, display
409         them all.
410
411 2009-03-31  Marek Habersack  <mhabersack@novell.com>
412
413         * HttpApplicationFactory.cs: use glob patterns to watch for
414         changes to global.asax and web.config files.
415         Set up recursive watch on web.config in a separate thread, to
416         minimize application startup delay. Fixes bug #490497
417
418         * VirtualPath.cs: added code to detect whether the VirtualPath
419         instance represents a fake virtual path (IsFake property).
420         Added new property DirectoryNoNormalize which returns
421         non-normalized directory for the VirtualPath instance.
422         Made ToString () a bit more friendly and well-behaved.
423
424 2009-03-26  Marek Habersack  <mhabersack@novell.com>
425
426         * HttpWorkerRequest.cs: use a generic dictionary to keep header
427         names in 2.0+.
428         GetKnown{Request,Response}HeaderIndex doesn't use the switch
429         anymore.
430
431         * HttpResponse.cs: WriteHeaders now checks whether a header to be
432         sent is a known one or not and uses the appropriate method to send
433         that header. Partial fix for bug #488702
434
435 2009-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
436
437         * HttpResponse.cs: ClearHeaders() also resets cacheability.
438         Bug #485557 fixed.
439
440 2009-03-21  Marek Habersack  <mhabersack@novell.com>
441
442         * HttpResponse.cs: added two missing 3.0+ properties -
443         SubStatusCode and TrySkipIisCustomErrors.
444
445 2009-03-04  Marek Habersack  <mhabersack@novell.com>
446
447         * HttpRuntime.cs: do not clean the dynamic base directory in
448         DoUnload, it can cause race conditions.
449
450 2009-03-03  Marek Habersack  <mhabersack@novell.com>
451
452         * HttpResponse.cs: fully implemented the Headers property.
453         It is also used in the 1.1 profile, but is internal.
454
455         * HttpCookie.cs: GetCookieHeader renamed to GetCookieHeaderValue -
456         now returns a string with the header value.
457
458         * HttpCacheVaryByParams.cs: GetResponseHeader renamed to
459         GetResponseHeaderValue - now returns a string with the header
460         value.
461
462         * HttpCachePolicy.cs: SetHeaders now takes a NameValueCollection
463         instead of an ArrayList
464
465         * HttpRequest.cs: avoid calculating the same value twice in
466         MakeInputStream
467
468 2009-03-02 Everaldo Canuto <ecanuto@novell.com>
469
470         * HttpResponse.cs: Headers property implementation.
471         
472 2009-02-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
473
474         * Web/HttpResponseHeader.cs:
475         * Web/HttpResponse.cs:
476         * Web/QueueManager.cs:
477         * Web/HttpRequest.cs:
478         * Web/TraceManager.cs:
479         * Web/HttpServerUtility.cs:
480         * Web/HttpApplication.cs: use GetWebApplication
481         instead of GetSection for application level configuration.
482
483 2009-02-26  Marek Habersack  <mhabersack@novell.com>
484
485         * HttpResponse.cs: added DisableKernelCache and TransmitFile
486         methods.
487
488         * IisTraceListener.cs: added + implemented
489
490 2009-02-25  Marek Habersack  <mhabersack@novell.com>
491
492         * HttpApplication.cs: let the current context known that
493         MapRequestHandler is done.
494
495         * HttpContext.cs: implemented RemapHandler
496
497 2009-02-24  Marek Habersack  <mhabersack@novell.com>
498
499         * TempFileStream.cs: the class is internal
500
501         * VirtualPathUtility.cs: ToAbsolute (string, string, bool) is
502         internal
503
504         * HttpException.cs: made the HttpException (int httpCode, string
505         message, Exception innerException, string resourceName) internal.
506
507 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
508
509         * HttpServerUtility.cs: allow Transfer to static files too.
510
511 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
512
513         * HttpWriter.cs: new Response property and WriteUTF8Ptr
514         method.
515         * HttpResponseStream.cs: added support for writing from an
516         IntPtr. copied the memcpy method from String.cs.
517
518 2009-02-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
519
520         * HttpApplicationFactory.cs: check of global.asax was precompiled.
521
522 2009-01-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
523
524         * HttpApplicationFactory.cs: fix check that avoids lock. Keep one
525         HttpApplication instance ready to be returned in an instance variable
526         to avoid a few locks.
527
528 2009-01-29  Marek Habersack  <mhabersack@novell.com>
529
530         * HttpApplicationFactory.cs: optimize lock usage.
531
532 2009-01-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
533
534         * HttpResponse.cs: make sure config is not null here.
535         * HttpApplication.cs: add a timer (-d:PIPELINE_TIMER) for the pipeline.
536         Handle timeouts for OutputPage() too.
537
538 2009-01-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
539
540         * HttpApplicationFactory.cs: set/reset the context for the application
541         when creating/disposing. Dispose() out of the lock.
542
543 2009-01-24  Marek Habersack  <mhabersack@novell.com>
544
545         * XmlSiteMapProvider.cs: if a nested sitemap is used (via the
546         siteMapFile node attribute) watch the named file for
547         changes. Fixes bug #465693
548
549 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
550
551         * QueueManager.cs: Implement requests queued performance counter.
552         * HttpRuntime.cs: Implement requests total counter.
553         * HttpApplication.cs: Implement requests total counter.
554
555 2009-01-13  Dean Brettle  <dean@brettle.com>
556
557         * HttpApplicationFactory.cs: if there are any *.browser files in
558         App_Data/Mono_Machine_Browsers/, use those instead of the default
559         machine browser files.  This allows app developers to workaround
560         limitations with Mono's default browser files without causing
561         incompatibilities with MS's implementation.
562
563 2009-01-09  Marek Habersack  <mhabersack@novell.com>
564
565         * HttpContext.cs: RewritePath now treats relative and absolute
566         file paths with more care. If a path is of the ~/file.aspx form,
567         then the ~/ part is removed and the rest is combined with the base
568         virtual path. If the file path is of the ~ or /file.aspx forms,
569         then it is combined verbatim with the base virtual path. Fixes bug
570         #463964
571         Make sure the path returned from HttpRequest.BaseVirtualPath
572         contains the trailing slash before combining. Fixes bug #463964
573
574 2008-12-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
575
576         * ServerVariablesCollection.cs: use IndexOf (char).
577
578 2008-12-24  Marek Habersack  <mhabersack@novell.com>
579
580         * HttpApplicationFactory.cs: watch for changes to web.config also
581         in the subdirectories.
582
583 2008-12-20  Marek Habersack  <mhabersack@novell.com>
584
585         * HttpResponse.cs: the code in TransmitFile (VirtualFile, bool)
586         was an abomination - dear children, don't do this at home (never,
587         ever, allocate a buffer to load entire file). I will wear a brown
588         paper bag every 2nd Sunday in the next 6 months for writing the
589         old version of this code.
590         New code optimizes the write when DefaultVirtualFile is used (as
591         it refers to a physical file on disk) and reads/writes other
592         virtual files in chunks.
593
594 2008-12-16  Marek Habersack  <mhabersack@novell.com>
595
596         * StaticFileHandler.cs: use HttpRuntime.RunningOnWindows instead
597         of checking the platform directly.
598
599 2008-12-09  Marek Habersack  <mhabersack@novell.com>
600
601         * HttpServerUtility.cs: when Execute finishes, clear
602         Request.QueryStringRaw. Backport of r121010 by Vladimir Krasnov.
603
604 2008-12-03  Gert Driesen  <drieseng@users.sourceforge.net>
605
606         * NoParamsInvoker.cs:
607         * HttpApplicationFactory.cs: Fixed support for static eventhandlers.
608
609 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
610
611         * HttpContext.cs: MS does not throw. They just return null.
612
613 2008-11-24  Marek Habersack  <mhabersack@novell.com>
614
615         * HttpRuntime.cs: take PlatformID.MacOSX into account when
616         determining whether we're running on Windows or not. Possible fix
617         for #447874
618
619 2008-11-21  Marek Habersack  <mhabersack@novell.com>
620
621         * HttpParseException.cs, HtmlizedException.cs: added
622         deserialization constructor.
623
624 2008-10-31  Marek Habersack  <mhabersack@novell.com>
625
626         * HttpContext.cs: RewritePath correctly rewrites paths for cases
627         when application is running under a virtual directory different to
628         '/'. Fixes bug #371581
629         RewritePath checks the passed virtual path for validity.
630
631         * HttpRequest.cs: MapPath now uses
632         VirtualPathUtility.IsValidVirtualPath.
633
634         * VirtualPathUtility.cs: made Canonize () internal.
635         Added a new method - IsValidVirtualPath () which checks whether a
636         passed path contains only characters allowed for virtual paths.
637
638 2008-10-22  Marek Habersack  <mhabersack@novell.com>
639
640         * HttpApplicationFactory.cs: use only the first matching method in
641         GetApplicationTypeEvents, since it will be the one coming from the
642         topmost type. Partial fix for bug #437691
643
644 2008-10-21  Marek Habersack  <mhabersack@novell.com>
645
646         * HttpApplication.cs: if context.Session is null in get_Session,
647         throw an exception. Fixes bug #437289
648
649         * CapabilitiesLoader.cs: seal BrowserData.
650         Seal CapabilitiesLoader.
651         Do not lock on typeof (CapabilitiesLoader) in GetCapabilities ().
652
653 2008-10-16  Marek Habersack  <mhabersack@novell.com>
654
655         * HttpApplicationFactory.cs: when looking up application type
656         event handlers (the Application_* methods), look deep in the
657         parent chain - we must support private handler methods in base
658         types as well.
659
660 2008-10-15  Marek Habersack  <mhabersack@novell.com>
661
662         * HttpResponse.cs: CacheabilityUpdatedEvent is no longer
663         used. cached_response is allocated only when the IsCached property
664         is assigned the 'true' value. 
665
666         * HttpCachePolicy.cs: CacheabilityUpdatedEvent is no longer used,
667         removed all the traces of it. SetCacheability should not switch
668         output caching on.
669
670 2008-10-12  Gert Driesen  <drieseng@users.sourceforge.net>
671
672         * HttpResponse.cs: Simplify code for outputting ASP.NET version, as
673         version header cannot be configured. MS corrected this documenation
674         error in .NET 2.0 SDK.
675
676 2008-10-03 Gonzalo Paniagua Javier <gonzalo@novell.com>
677
678         * HttpApplication.cs: make sure we release the resources used by the
679         request and/or the response at the end of the request.
680         Fixes bug #430040.
681
682 2008-10-01  Marek Habersack  <mhabersack@novell.com>
683
684         * BrowserCapabilities.cs: IsBrowser needs to compare browser names
685         case insensitively.
686
687 2008-09-29  Marek Habersack  <mhabersack@novell.com>
688
689         * HttpApplication.cs: do not assume the passed IAsyncResult is a
690         is a valid object in async_handler_complete_cb. Fixes bug #430488
691
692 2008-09-28  Sebastien Pouliot  <sebastien@ximian.com>
693
694         * HttpRequest.cs: Make sure the result of the multiplications are
695         longs (not integers casted into longs since they could overflow).
696         [Found using Gendarme's ReviewCastOnIntegerMultiplicationRule]
697
698 2008-09-23  Marek Habersack  <mhabersack@novell.com>
699
700         * HttpWorkerRequest.cs: implemented a SendCalculatedContentLength
701         overload. This method apparently does nothing in MS.NET.
702
703 2008-09-16  Juraj Skripsky  <js@hotfeet.ch>
704
705         * HttpServerUtility.cs (UrlDecode, UrlEncode): Respect request/response
706         encoding. Fixes bug #426539.
707
708 2008-08-29  Marek Habersack  <mhabersack@novell.com>
709
710         * HttpApplication.cs: do not cache handlers which aren't
711         reusable.
712
713 2008-08-20  Marek Habersack  <mhabersack@novell.com>
714
715         * HttpResponseHeader.cs: encode header values if
716         httpRuntime.enableHeaderChecking is true (default). Fixes bug
717         #418620
718
719 2008-08-13  Marek Habersack  <mhabersack@novell.com>
720
721         * HttpException.cs: do not use StringBuilder.AppendFormat when
722         there is no need.
723
724 2008-08-08  Marek Habersack  <mhabersack@novell.com>
725
726         * XmlSiteMapProvider.cs: a better bugfix for bug #412495.
727         Do not call RootNode within BuildSiteMap, as it induces
728         recursion. Fixes bug #415685.
729
730 2008-07-29  Marek Habersack  <mhabersack@novell.com>
731
732         * HttpRequest.cs: if the FilePath contains embedded cookie-less
733         session identifier, remove it before computing the base virtual
734         directory. Fixes bug #397418
735
736 2008-07-28  Marek Habersack  <mhabersack@novell.com>
737
738         * XmlSiteMapProvider.cs: set the base ResourceKey to the name of
739         our associated site map file, so that localization works
740         correctly. Fixes bug #412493
741         Do not add the root node retrieved from BuildSiteMapRecursive in
742         BuildMap, if the node is already the current root node. Fixes bug
743         #412495
744
745 2008-07-26  Gert Driesen  <drieseng@users.sourceforge.net>
746
747         * HttpCachePolicy.cs: Only add Expires header if expire date is
748         actually set. Removed extra tabs and regions. Code formatting.
749
750 2008-07-23  Marek Habersack  <mhabersack@novell.com>
751
752         * HttpApplication.cs: do not register handlers for
753         BeginRequest/EndRequest when called from within the
754         Application_Start handler. Fixes bug #411213
755
756         * HttpApplicationFactory.cs: let the application know we're
757         running the Application_Start handler so that it can suppress
758         registering some events from inside that handler (see bug
759         #381971). Fixes bug #411213
760
761 2008-06-30  Marek Habersack  <mhabersack@novell.com>
762
763         * HttpRuntime.cs, HttpApplication.cs: hush the warnings
764
765         * HttpContext.cs: GetGlobalObjectFromFactory caches the
766         ResourceManager objects now. Patch from Zoltan Varga
767         <vargaz@gmail.com>, thanks!
768         The GetGlobalObjectFromFactory caches are thread local to avoid
769         locking.
770         GetResourceObject ResourceManager cache is now a thread local
771         Dictionary to avoid cloning.
772         Hush the warnings.
773
774 2008-06-27  Robert Jordan  <robertj@gmx.net>
775
776         * HttpCachePolicy.cs: map default HttpCacheability to
777         "Cache-control: private" for MS.NET compatibility.
778         Fixes bug #404083. Contributed by
779         Hubert FONGARNAND <informatique.internet@fiducial.fr>.
780
781 2008-06-21  Robert Jordan  <robertj@gmx.net>
782
783         * HttpRuntime.cs (.cctor): Workaround for bug #402263.
784
785 2008-06-19  Marek Habersack  <mhabersack@novell.com>
786
787         * MimeTypes.cs: added a mime type entry for .xpi files.
788
789 2008-06-18  Juraj Skripsky  <js@hotfeet.ch>
790
791         * HttpResponse.cs (AddHeadersNoCache): Add "X-AspNet-Version" header if
792         enabled.
793
794 2008-06-16  Noam Lampert  <noaml@mainsoft.com>
795
796         * HttpContext.cs: improve support for RewritePath
797
798 2008-06-10  Marek Habersack  <mhabersack@novell.com>
799
800         * HttpRuntime.cs: do not create a new thread to run the
801         application, reuse the thread from the hosting application (XSP's
802         thread comes from threadpool).
803
804 2008-06-06  Marek Habersack  <mhabersack@novell.com>
805
806         * SiteMap.cs: FindCurrentNode is no longer needed. CurrentNode
807         uses Provider.CurrentNode to find the return value.
808         AddNode doesn't throw a duplicate key exception for nodes not
809         belonging to the current provider.
810         Check whether keys exist before removing entries from the
811         dictionaries.
812
813         * XmlSiteMapProvider.cs: implemented support for child providers
814         (the AddProvider method). FindSiteMapNode* methods look for the
815         node also in the collection of child providers. Fixes bug #397040
816
817 2008-06-04  Marek Habersack  <mhabersack@novell.com>
818
819         * HttpResponse.cs: correctly modify virtual path to include the
820         session ID in cookieless session mode. Fixes bug #396628.
821
822         * HttpServerUtility.cs: remove session hash from the URL if in the
823         cookieless mode. Fixes bug #396628.
824
825         * HttpRequest.cs: make sure that BaseVirtualDir always returns
826         some value.
827
828 2008-06-02  Miguel de Icaza  <miguel@novell.com>
829         
830         * HttpRuntime.cs: Thanks to Christian Hergert for finding this
831         one.  
832
833         Do not throw NIEX on IsOnUNCShare, instead compute the value. 
834
835 2008-05-30  Marek Habersack  <mhabersack@novell.com>
836         
837         * HttpApplication.cs, HttpCachePolicy.cs, SiteMapProvider.cs,
838         TraceContext.cs: do not use synthetized event accessors (to avoid
839         locks).
840
841 2008-05-19 Noam Lampert <noaml@mainsoft.com>
842
843         * HttpServerUtility.cs: Fix bug in UrlPathEncode when URL contains '?' 
844
845 2008-05-12 Noam Lampert <noaml@mainsoft.com>
846
847         * HttpApplication.cs: Fix regressions introduced by latest commit
848
849 2008-05-07 Gonzalo Panigua Javier <gonzalo.mono@gmail.com>
850
851         * HttpApplication.cs: create a fake context while loading the
852         modules on the first request so that the modules don't mess up
853         with the actual output of that request.
854
855 2008-05-07  Marek Habersack  <mhabersack@novell.com>
856
857         * HttpRequest.cs: StripPath should handle UNC paths too. Fixes bug
858         #385870. Patch from Ivan Hamilton <ivan@chimerical.com.au>,
859         thanks!
860
861 2008-05-06  Marek Habersack  <mhabersack@novell.com>
862
863         * MimeTypes.cs: mime type keys might not exist in the dictionary,
864         in the 2.0 profile. Patch from Rolf Kvinge <rkvinge@novell.com>
865         and Jean-Baptiste Evain <jbevain@novell.com>, thanks! Fixes bug
866         #386008
867
868 2008-04-30  Marek Habersack  <mhabersack@novell.com>
869
870         * HttpApplication.cs: when the Start method is called in a new
871         thread, the thread's culture and ui culture are set to their
872         defaults, thus ignoring whatever their values were in the parent
873         thread. This is now fixed by passing an array containing the
874         culture values to the Start method, so that the new thread can be
875         properly initialized. Fixes bug #323566
876
877         * SiteMapNode.cs: the implicitResourceKey parameter to one of the
878         constructors sets the value of the ResourceKey property.
879         GetImplicitResourceString uses the provider's ResourceKey as the
880         global resource object key and the node's ResourceKey to construct
881         the resource name. Fixes bug #323994
882         ResourceKey setter throws an InvalidOperationException now, when
883         the node is read-only.
884
885 2008-04-29  Marek Habersack  <mhabersack@novell.com>
886
887         * HttpException.cs: safe guard against context being null in
888         GetHtmlErrorMessage.
889
890 2008-04-26  Marek Habersack  <mhabersack@novell.com>
891
892         * VirtualPath.cs: added a new property, PhysicalPath.
893
894 2008-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
895
896         * HttpResponse.cs: Use double quotes in link to match MS.
897
898 2008-04-25  Marek Habersack  <mhabersack@novell.com>
899
900         * HttpApplication.cs: use Request.CurrentExecutionFilePath when
901         querying for the handler. Makes requests work if request path was
902         rewritten without modifying the FilePath. Fixes bug #383652
903
904         * HttpContext.cs: set Request.FilePath in RewritePath only if
905         setClientFilePath is true. Fixes bug #383652
906         Revert the change in revision 100273 - the real bug was in a
907         different overload of RewritePath, fixed with the commit for the
908         above bug #383652
909
910 2008-04-24  Marek Habersack  <mhabersack@novell.com>
911
912         * HttpApplication.cs: added a new overload of GetHandler which
913         allows the caller to ignore the handler found in the context
914         passed to the method.
915
916         * HttpServerUtility.cs: have HttpApplication.GetHandler ignore the
917         handler found in the current context when Execute'ing another
918         page. Fixes bug #316166
919
920 2008-04-23  Marek Habersack  <mhabersack@novell.com>
921
922         * VirtualPath.cs: introduced the CurrentRequestDirectory property,
923         which returns the virtual directory for the current request. The
924         information is taken from either current request's
925         CurrentExecutionFilePath property (if not null) or from the path
926         set externally (by setting the property or using the appropriate
927         VirtualPath constructor). The new property is used to construct
928         the correct absolute virtual path in the MakeRooted method. Fixes
929         bug #381715.
930
931         * HttpApplication.cs: events registered from Application_Start are
932         silently ignored - any event registered after the one-time
933         application initialization is completed, is ignored. Fixes bug
934         #381971
935
936         * HttpApplicationFactory.cs: call app.DisposeInternal instead of
937         app.Dispose.
938
939         * HttpContext.cs: Fix bug #371581 for 1.1 as well.
940
941 2008-04-19  Marek Habersack  <mhabersack@novell.com>
942
943         * HttpException.cs: don't write the stack trace inside html
944         comment if custom errors are enabled.
945
946 2008-04-15  Kornél Pál  <kornelpal@gmail.com>
947
948         * HttpRuntime.cs: Don't add Date header for error pages either. Fixes bug
949         #363404.
950
951 2008-04-15  Marek Habersack  <mhabersack@novell.com>
952
953         * HttpRequest.cs: dispose of streams the way it should
954         be done.
955
956 2008-04-14  Igor Zelmanovich <igorz@mainsoft.com>
957
958         * HttpRuntime.cs: refactoring.
959
960 2008-04-14  Marek Habersack  <mhabersack@novell.com>
961
962         * XmlSiteMapProvider.cs: FindStartingNode throws an exception when
963         it is passed a file which ends in an extension other than
964         .sitemap.
965         Fixed a check for the siteMapFile attribute presence. Fixes bug
966         #379566.
967
968         * SiteMap.cs: FindCurrent node uses the default provider
969         exclusively. Fixes bug #379566
970
971 2008-04-10  Marek Habersack  <mhabersack@novell.com>
972
973         * HttpApplicationFactory.cs: compile web references before
974         App_Code. Fixes bug #377934
975
976         * MimeTypes.cs: added some missing MIME types. New entries
977         contributed by Albert Ritmeester
978         <aritmeester@vitalhealthsoftware.nl>, thanks! Fixes bug #372290
979
980 2008-04-09  Marek Habersack  <mhabersack@novell.com>
981
982         * HttpContext.cs: make RewritePath work correctly in the 2.0
983         profile, fixes bug #371581
984
985         * HttpApplicationFactory.cs: compile web references. Fixes bug
986         #377934
987
988         * VirtualPath.cs: added a method to convert a physical path into a
989         virtual one, if the physical path is under the application root.
990
991 2008-04-08  Dean Brettle <dean@brettle.com>
992
993         * HttpApplicationFactory.cs (CapabilitiesProcessor): changed to
994         use etc/mono/2.0/Browser/*.browser files in addition to 
995         ~/App_Browsers/*.browser files.
996
997 2008-04-07  Marek Habersack  <mhabersack@novell.com>
998
999         * VirtualPath.cs: added
1000
1001 2008-04-02  Marek Habersack  <mhabersack@novell.com>
1002
1003         * HttpRequest.cs: make sure QueryStringRaw is always returned with
1004         a leading '?' and that we return something meaningful even if the
1005         url components weren't collected before. Fixes bug #376352
1006
1007 2008-04-01  Marek Habersack  <mhabersack@novell.com>
1008
1009         * HttpApplication.cs: set context.Handler to the detected handler
1010         object before firing application events. Fixes bug #372897
1011
1012 2008-03-31  Marek Habersack  <mhabersack@novell.com>
1013
1014         * StaticFileHandler.cs: added code to use custom
1015         VirtualPathProvider, if present, to serve files from virtual
1016         storage.
1017
1018         * HttpResponse.cs: added two internal TransmitFile overloads which
1019         take a VirtualFile as a parameter.
1020
1021 2008-03-27  Marek Habersack  <mhabersack@novell.com>
1022
1023         * HttpRequest.cs: make UrlComponents internal.
1024
1025         * HttpContext.cs: added support for resource provider factories.
1026
1027 2008-03-13  Marek Habersack  <mhabersack@novell.com>
1028
1029         * HttpApplicationFactory.cs: use HttpApplication.BinDirs to
1030         create watchers for binary application directories.
1031
1032         * HttpApplication.cs: use HttpRuntime.CaseInsensitive instead of
1033         own IsRunningOnWindows.
1034         Remove the BinDirectories enumerator property, replaced with a
1035         BinDirectory one returning a string with path to the binary
1036         directory.
1037
1038         * HttpRuntime.cs: introduce two static properties -
1039         CaseInsensitive (set to true whenever the environment is
1040         case-insensitive - i.e. MONO_IOMAP="all" or MONO_IOMAP="case", or
1041         running on Windows) and RunningOnWindows.
1042
1043 2008-03-12  Marek Habersack  <mhabersack@novell.com>
1044
1045         * HttpApplication.cs: HttpContext.Handler may be set by a module
1046         in any of the event handlers between acquiring the initial handler
1047         and processing the request. Honor the setting and use
1048         HttpContext.Handler instead of the matched one if set.
1049
1050 2008-03-10  Marek Habersack  <mhabersack@novell.com>
1051
1052         * HttpApplication.cs: synchronize Modules and Dispose with
1053         InitOnce. Should prevent firing module events before the modules
1054         are fully initialized.
1055
1056 2008-03-09  Dean Brettle <dean@brettle.com> 
1057
1058         * HttpApplicationFactory.cs: Added support for detecting 
1059         App_Browsers/*.browser files and using them to determine capabilities.
1060         Also restart the app if the App_Browsers, App_Code, or App_GlobalResources
1061         directories are created.
1062
1063         * BrowserCapabilities.cs (TagWriter): get value via internal virtual
1064         GetTagWriter() method, which is overridden in nBrowser.Result.
1065
1066         * HttpRequest.cs (BrowserMightHaveSpecialWriter, BrowserMightHaveAdapters):
1067         internal properties added to allow Page and Control methods to avoid
1068         accessing Request.Browser to get browser-specific HtmlTextWriters or 
1069         ControlAdapters.  Those things only exist when there are App_Browsers
1070         files.
1071
1072 2008-03-09  Marek Habersack  <mhabersack@novell.com>
1073
1074         * HttpUtility.cs: HTML-decode the query string prior to parsing
1075         it.
1076
1077 2008-03-01  Marek Habersack  <mhabersack@novell.com>
1078
1079         * HttpRuntime.cs: SettingsMappingManager has been moved to
1080         Mono.Web.
1081
1082 2008-02-28  Marek Habersack  <mhabersack@novell.com>
1083
1084         * HttpParamsCollection.cs: restore the GetValues overrides only to
1085         make sure the collections are merged before invoking the base
1086         implementation. 
1087         Remove code that's no longer needed.
1088
1089 2008-02-27  Marek Habersack  <mhabersack@novell.com>
1090
1091         * HttpException.cs: error message output format changes.
1092
1093 2008-02-26  Kornél Pál  <kornelpal@gmail.com>
1094
1095         * HttpResponse.cs: Don't add Date header because servers usually add
1096         a Date header that would result in duplicate Date header sent to the
1097         client. Fixes bug #363404.
1098
1099 2008-02-25  Marek Habersack  <mhabersack@novell.com>
1100
1101         * HttpException.cs: fix a buglet with unfoldable hidden divs which
1102         contain the full compiler output and the full source code.
1103
1104         * HttpContext.cs: correctly set the timeout if the user has
1105         specified a timeout which, when converted to milliseconds yields a
1106         value larger than one allowed by Timer.Change. This can happen,
1107         for instance, when HttpServerUtility.ScriptTimeout is set to
1108         Int32.MaxValue. Previously, when something like that happened, the
1109         value was converted to 0ms, giving an instantenous timer
1110         expiration and, what follows, a request "timeout".
1111
1112 2008-02-19  Marek Habersack  <mhabersack@novell.com>
1113
1114         * HttpParamsCollection.cs: do not override the NVC behavior for
1115         GetValues - values from different sources (Form, Query, Cookies,
1116         ServerVariables) must be kept separate for this purpose. This is
1117         also the behavior of MS.NET. Fixes bug #362189
1118
1119 2008-02-18  Marek Habersack  <mhabersack@novell.com>
1120
1121         * HttpRuntime.cs: When app is offline, send status code 503
1122         instead of 200. Fixes bug #357565
1123
1124 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
1125
1126         * HttpException.cs: Avoid IndexOutOfRangeException when there are no
1127         error lines.
1128
1129 2008-02-07  Gert Driesen  <drieseng@users.sourceforge.net>
1130
1131         * HttpException.cs: Removed CWL.
1132
1133 2008-02-07  Marek Habersack  <mhabersack@novell.com>
1134
1135         * HttpException.cs: more exception output compatibility changes to
1136         match MS.NET.
1137
1138 2008-02-07  Vladimir Krasnov  <vladimirk@mainsoft.com>
1139
1140         * HttpContext.jvm.cs: added CurrentHandlerInternal property
1141
1142 2008-02-07  Marek Habersack  <mhabersack@novell.com>
1143
1144         * HttpException.cs: moved several strings to constants, for easier
1145         maintenance. 
1146         Added 3 new constructors which let the caller to set the exception
1147         description.
1148         The Description property is now settable.
1149         The stack trace at the bottom of the file is written after the
1150         terminating </html>, inside a HTML comment. Format changed to
1151         match MS.NET.
1152         Error 404 is handled in a special way, to match the output with
1153         MS.NET.
1154
1155         * HttpContext.cs, StaticFileHandler.cs, HttpApplication.cs: use
1156         the new HttpException constructor for 404.
1157
1158 2008-02-07  Vladimir Krasnov  <vladimirk@mainsoft.com>
1159
1160         * HttpResponse.cs: fixed AddHeadersNoCache, removed date_header since
1161         java app server adds it, under TARGET_J2EE.
1162
1163 2008-02-06  Marek Habersack  <mhabersack@novell.com>
1164
1165         * HttpApplicationFactory.cs: in FireOnAppEnd, set app_type to null
1166         after the event has been fired.
1167
1168         * HttpRuntime.cs: when switching to offline mode fire the
1169         shutdown events. Fixes bug #357565.
1170         Watch for Created event in the FileSystemWatcher for the
1171         app_offline.htm files.
1172
1173 2008-01-29  Vladimir Krasnov  <vladimirk@mainsoft.com>
1174
1175         * HttpRequest.cs: performance optimization of QueryStringRaw
1176
1177 2008-01-27  Igor Zelmanovich <igorz@mainsoft.com>
1178
1179         * HttpResponse.cs: rise PreSendRequestHeaders befire headers_sent 
1180         initialization to allow set additional headers or status code at 
1181         PreSendRequestHeaders event handlers.
1182
1183 2008-01-24  Marek Habersack  <mhabersack@novell.com>
1184
1185         * HttpApplicationFactory.cs: use BuildManager.GetCompiledType to
1186         build the application (global.asax) file.
1187
1188 2008-01-22  Konstantin Triger <kostat@mainsoft.com>
1189
1190         * HttpResponse.cs: move headers_sent initialization up to prevent additional
1191                 trial to send headers if an exception is thrown.
1192
1193 2008-01-21  Konstantin Triger <kostat@mainsoft.com>
1194
1195         * HttpRequest.cs: Form validation: ensure the collection is accessible after
1196                 validation failed.
1197
1198 2008-01-16  Juraj Skripsky  <js@hotfeet.ch>
1199
1200         * HttpRequest.cs (get_UrlReferrer): Handle case when headers contain
1201         invalid Url for referer.
1202
1203 2008-01-16  Juraj Skripsky  <js@hotfeet.ch>
1204
1205         * HttpCookieCollection.cs (AllKeys): Use Keys.CopyTo().
1206
1207 2008-01-14  Sebastien Pouliot  <sebastien@ximian.com>
1208
1209         * HttpCookie.cs: Fix HttpOnly setter. Found using Gendarme.
1210
1211 2008-01-02  Vladimir Krasnov  <vladimirk@mainsoft.com>
1212
1213         * HttpContext.cs: added resource manager caching in GetResourceObject
1214         * HttpContext.jvm.cs: added resourceManagerCache storing in appdomain
1215
1216 2007-12-31  Vladimir Krasnov  <vladimirk@mainsoft.com>
1217
1218         * HttpContext.cs: added HasError method
1219         * HttpApplication.cs: refactored thread abort handling
1220
1221 2007-12-31  Vladimir Krasnov  <vladimirk@mainsoft.com>
1222
1223         * HttpRuntime.cs: fixed HttpRuntime, added Cache.DependencyCache
1224         initialization
1225
1226 2007-12-26 Igor Zelmanovich <igorz@mainsoft.com>
1227         
1228         * TraceContext.cs:
1229         * TraceData.cs:
1230         make trace considers control state info.                
1231
1232 2007-12-25 Igor Zelmanovich <igorz@mainsoft.com>
1233         
1234         * HttpApplication.cs: initialize culture each request.
1235         makes it consider culture settings from nested web.config               
1236
1237 2007-12-19  Juraj Skripsky <js@hotfeet.ch>
1238
1239         * HttpContext.cs, HttpApplication.cs: Move timeout tracking from
1240         TimeoutManager into HttpContext. Replace periodic timeout checks with
1241         separate per-context timeout timers.  
1242         * HttpRuntime.cs: remove TimeoutManager.
1243
1244 2007-12-18  Miguel de Icaza  <miguel@novell.com>
1245
1246         * HttpCookieCollection.cs (Get): implement using the indexer to
1247         share some code.   Should fix #349564.
1248
1249 2007-12-16 Igor Zelmanovich <igorz@mainsoft.com>
1250         
1251         * HttpContext.cs: added IsProcessingInclude property.
1252         * HttpServerUtility.cs: set IsProcessingInclude value within Execute.
1253
1254 2007-12-13  Marek Habersack  <mhabersack@novell.com>
1255
1256         * HttpRequest.cs, HttpResponse.cs, SiteMapNode.cs, HttpRuntime.cs,
1257         HttpResponseStream.cs, HttpApplication.cs, HttpCachePolicy.cs:
1258         speed optimization - use String.Concat instead of String.Format in
1259         some cases.
1260
1261 2007-12-13 Igor Zelmanovich <igorz@mainsoft.com>
1262         
1263         * HttpApplication.cs:
1264         * HttpContext.cs:
1265         * HttpRequest.cs:
1266         * HttpServerUtility.cs:
1267         - When Transfer/Execute is called with preserveForm=true, transferred 
1268         page is not processed as PostBack but form collection is preserved.
1269         - When Execute is called more than once, PreviousPage property is set 
1270         correct.
1271
1272 2007-12-09  Vladimir Krasnov  <vladimirk@mainsoft.com>
1273
1274         * HttpApplication.cs: added TARGET_JVM to LoadType method
1275
1276 2007-12-08  Marek Habersack  <mhabersack@novell.com>
1277
1278         * HttpRuntime.cs: initialize the Settings Mapping Manager once per
1279         application, just after initalizing the WebConfigurationManager.
1280
1281 2007-11-28  Marek Habersack  <mhabersack@novell.com>
1282
1283         * HttpApplication.cs: peform the check of whether we're running on
1284         Windows from within a static constructor.
1285
1286 2007-11-23  Marek Habersack  <mhabersack@novell.com>
1287
1288         * RequestNotificationStatus.cs: fix the order of enum members.
1289
1290         * RequestNotification.cs: assign correct values to the enum
1291         members.
1292
1293         * StaticSiteMapProvider.cs: change visibility of the constructor.
1294
1295         * HttpRequest.cs: added missing property LogonUserIdentity.
1296
1297         * HttpCacheVaryByContentEncodings.cs: this constructor should not
1298         be public.
1299
1300 2007-11-23  Daniel Nauck  <dna@mono-project.de>
1301
1302         * TraceContextRecord.cs: implemented
1303
1304 2007-11-23  Marek Habersack  <mhabersack@novell.com>
1305
1306         * BrowserCapabilities.cs: the JavaScript property is obsolete in
1307         2.0sp1.
1308
1309 2007-11-22  Daniel Nauck  <dna@mono-project.de>
1310
1311         * IPartitionResolver.cs: implemented
1312
1313 2007-11-22  Daniel Nauck  <dna@mono-project.de>
1314
1315         * WebPageTraceListener.cs: implemented
1316
1317 2007-11-22  Marek Habersack  <mhabersack@novell.com>
1318
1319         * RequestNotificationStatus.cs: added
1320
1321         * RequestNotification.cs: added
1322
1323         * HttpCacheVaryByContentEncodings.cs: added
1324
1325         * HttpCachePolicy.cs: added the HttpCacheVaryByContentEncodings
1326         property.
1327
1328         * HttpApplication.cs: added 3 new events to the pipeline (for
1329         compatibility with the 2.0sp1/3.5 version of System.Web)
1330
1331 2007-11-22  Daniel Nauck  <dna@mono-project.de>
1332
1333         * WebPageTraceListener.cs: initial checkin (stubs).
1334
1335 2007-11-17  Marek Habersack  <mhabersack@novell.com>
1336
1337         * HttpResponse.cs: make sure fileDependencies is not null before
1338         attempting to use it. Fixes bug #342511.
1339
1340 2007-11-07 Igor Zelmanovich <igorz@mainsoft.com>
1341
1342         * TraceContext.cs:
1343         * TraceData.cs: implemented TraceMode feature.  
1344
1345 2007-11-07 Igor Zelmanovich <igorz@mainsoft.com>
1346
1347         * BaseParamsCollection.cs:
1348         ensure collection will not be changed during enumeration.
1349
1350 2007-11-06  Marek Habersack  <mhabersack@novell.com>
1351
1352         * HttpResponse.cs: trigger the PreSendRequestHeaders event before
1353         setting the output headers. Fixes bugs #334521, #339538
1354
1355         * TraceData.cs: do not use DataTable for trace data storage
1356         anymore. Instead, a set of classes is used to hold data and a
1357         Queue container (generic version in 2.0) is used to hold the data
1358         rows. Fixes bug #325267.
1359
1360 2007-11-05  Marek Habersack  <mhabersack@novell.com>
1361
1362         * HttpRequest.cs: cope with UriBuilder.Query being null.
1363
1364 2007-11-03  Gert Driesen  <drieseng@users.sourceforge.net>
1365
1366         * HttpRuntime.cs: Always return a path with trailing directory
1367         separator character. Spaces to tabs.
1368
1369 2007-11-03  Marek Habersack  <mhabersack@novell.com>
1370
1371         * HttpApplication.cs: removed unused internal PrivateBinPath
1372         property.
1373
1374         * HttpRuntime.cs: BinDirectory returns a path that ends with the
1375         directory separator character.
1376
1377 2007-11-02  Marek Habersack  <mhabersack@novell.com>
1378
1379         * HttpServerUtility.cs: in 2.0, Transfer is allowed only from
1380         pages. Fixes bug #334931
1381         Also, according to MSDN docs, transfer in 2.0+ is possible only to
1382         other pages.
1383
1384         * HttpRuntime.cs: BinDirectory returns a full path to the actual
1385         bin directory in the application root. If no bin directory is
1386         found, it defaults to returning <applicationPath>/bin. Fixes bug
1387         338116.
1388
1389         * HttpApplication.cs: introduced HTTP handler cache to save time
1390         on repetitive handler collection traversals. On busy sites the
1391         traversal of the default 26 handlers may account for thousands of
1392         unnecessary calls to configsystem.LocateHandler method, which may
1393         also involve executing a regex. The cache is cleared whenever the
1394         HTTP handler collection is modified.
1395
1396 2007-10-30 Igor Zelmanovich <igorz@mainsoft.com>
1397
1398         * HttpUtility.cs: fixed HtmlEncode for TARGET_JVM.
1399
1400 2007-10-30 Igor Zelmanovich <igorz@mainsoft.com>
1401
1402         * HttpUtility.cs: fixed UrlPathEncode.
1403
1404 2007-10-24  Gert Driesen  <drieseng@users.sourceforge.net>
1405
1406         * StaticFileHandler.cs: Modified 404 message to match MS.
1407
1408 2007-10-24  Marek Habersack  <mhabersack@novell.com>
1409
1410         * HttpUtility.cs: MS.NET does not support the ';' query parameter
1411         separator. Fixes bug #335615
1412
1413 2007-10-18  Juraj Skripsky  <js@hotfeet.ch>
1414
1415         * StaticSiteMapProvider.cs: Replace Hashtables by Dictionaries,
1416         don't allocate them on-demand, there will never be many
1417         Provider instances around.
1418         AddNode(): Check for duplicate keys before adding any item to
1419         hashtables.
1420         RemoveNode(): Use fact that Hashtable.Remove() never throws,
1421         remove item from keyToNode as well, make symmetric to AddNode().
1422         MapUrl(): Use VirtualPathUtility, allow for full urls
1423         (e.g. http://www.google.com).
1424         
1425 2007-10-17  Marek Habersack  <mhabersack@novell.com>
1426
1427         * StaticFileHandler.cs: fixed an bug with Mono running under
1428         Windows operating systems which caused XSP to return source of the
1429         requested page if the file name used in the request ended in any
1430         number of spaces or dots. The problem lies in the way the Win32
1431         subsystem treats such file names - it ignores the trailing
1432         characters and allows the calling application to open a file on
1433         disk even when its name does not contain the trailing characters
1434         used in the open request. Such file names may be supported by the
1435         underlying filesystem (e.g. NTFS) but they are not supported by
1436         the I/O Win32 subsystem. The security issue is reported in
1437         CVE security report CVE-2007-5473. Fixes bug #332401
1438         
1439 2007-10-17  Igor Zelmanovich <igorz@mainsoft.com>
1440
1441         * HttpResponse.cs:
1442         response status is sent after PreSendRequestHeaders invoked.
1443         Redirect method set RedirectLocation property
1444         fixes bug #334521
1445                 
1446 2007-10-15  Marek Habersack  <mhabersack@novell.com>
1447
1448         * HttpApplication.cs: do not return a non-existing bin directory
1449         from BinDirectories. Patch from Atsushi Enomoto
1450         <atsushi@ximian.com>, thanks! Fixes bug #332434. 
1451
1452 2007-10-04  Marek Habersack  <mhabersack@novell.com>
1453
1454         * HttpApplication.cs: call the Init method after loading the
1455         modules and hooking up application events. Fixes bug #330416.
1456
1457 2007-10-01  Marek Habersack  <mhabersack@novell.com>
1458
1459         * HttpServerUtility.cs: set a flag when transferring control to
1460         another page.
1461
1462         * HttpContext.cs: added an internal InTransit property to carry
1463         information that HttpServerUtility.Transfer has been used, over to
1464         the target page.
1465
1466 2007-09-12  Juraj Skripsky <js@hotfeet.ch>
1467
1468         * StaticSiteMapProvider.cs (AddNode): Add message text to
1469         InvalidOperationException (duplicate url case).
1470
1471 2007-09-06  Marek Habersack  <mhabersack@novell.com>
1472
1473         * HttpCachePolicy.cs: implemented setting the ETag and
1474         Last-Modified headers from file dependencies.
1475
1476         * HttpResponse.cs: implemented file dependency methods.
1477
1478 2007-09-01  Marek Habersack  <mhabersack@novell.com>
1479
1480         * HttpRuntime.cs: rewrote the app_offline.htm support. It now uses
1481         filesystem watchers instead of checking for existence of the
1482         file(s) at the beginning of every request. No performance penalty
1483         that way.
1484
1485 2007-08-31  Marek Habersack  <mhabersack@novell.com>
1486
1487         * HttpApplicationFactory.cs: added methods to enable/disable
1488         watchers.
1489
1490         * HttpRuntime.cs: implemented handling of app_offline.htm file in
1491         the application root directory. Fixes bug #81127.
1492
1493         * HttpResponse.cs: make sure neither context or
1494         context.ApplicationInstance are null in End ().
1495
1496 2007-08-27  Marek Habersack  <mhabersack@novell.com>
1497
1498         * HttpCookie.cs: make sure a key is output even if it has no
1499         values set. Fixes bug #81333.
1500
1501 2007-08-23  Marek Habersack  <mhabersack@novell.com>
1502
1503         * HttpApplication.cs: added a static array BinDirs which contains
1504         the common bin directory names we can encounter.
1505         Added internal static property IsRunningOnWindows.
1506         Added internal enumerable property BinDirectories to iterate over
1507         the full paths of the available binary directories.
1508         Added internal enumerable property BinDirectoryAssemblies to
1509         iterate over .dll files in the bin directories.
1510         LoadTypeFromPrivateBin renamed to LoadTypeFromBin.
1511         LoadTypeFromBin uses BinDirectoryAssemblies.
1512         
1513         * HttpApplicationFactory.cs: use HttpApplication.BinDirectories to
1514         interate over the list of bin dirs.
1515
1516 2007-08-21  Marek Habersack  <mhabersack@novell.com>
1517
1518         * HttpApplicationFactory.cs: watch for changes in all the
1519         private binary directories for the current application domain.
1520
1521         * HttpApplication.cs: turn the PrivateBinPath property into an
1522         internal enumerable, so that code throughout the assembly can
1523         iterate over the list of private bin directories configured for
1524         the application domain.
1525         Added a new internal method LoadTypeFromPrivateBin, for sharing
1526         with other parts of the assembly.
1527
1528 2007-08-18  Juraj Skripsky <js@hotfeet.ch>
1529
1530         * HttpRequest.cs (StripPath): Fix off-by-one error, make static.
1531
1532 2007-08-18  Marek Habersack  <mhabersack@novell.com>
1533
1534         * HttpRequest.cs: IE sends the full input file path when uploading
1535         a file via the upload input control. Detect the situation and
1536         strip the leading path. Fixes bug #82059.
1537
1538         * HttpServerUtility.cs: set the current context's path(s) to the
1539         Transfer/Execute target only to retrieve the new handler, and
1540         restore them immediately afterwards. It has a two-fold effect:
1541         first it avoids an extra round trip to the original page which
1542         called Transfer/Execute, second it makes FilePath etc. return
1543         information about the original page (that is the one which called
1544         Transfer/Execute). Fixes bug #82439.
1545
1546 2007-08-14  Marek Habersack  <mhabersack@novell.com>
1547
1548         * XmlSiteMapProvider.cs: do not hide this_lock.
1549
1550 2007-08-09  Marek Habersack  <mhabersack@novell.com>
1551
1552         * HttpApplicationFactory.cs: unconditionally watch for changes
1553         (including creation) to Global.asax, global.asax, Web.config,
1554         web.config and Web.Config. This makes the application restart once
1555         any of those is created. Patch from Juraj Skripsky
1556         <juraj@hotfeet.ch>, thanks! Fixes bug #82380.
1557
1558 2007-08-08  Marek Habersack  <mhabersack@novell.com>
1559
1560         * StaticSiteMapProvider.cs, HttpApplicationFactory.cs,
1561         HttpStaticObjectsCollection.cs, SiteMapProvider.cs,
1562         XmlSiteMapProvider.cs, HttpApplication.cs, CapabilitiesLoader.cs,
1563         TimeoutManager.cs: do not use lock (this), replace it with lock
1564         (this_object), where this_object is an instance variable. Prevents
1565         deadlocks in situation when external code locks on the class
1566         instance.
1567
1568 2007-08-05  Vladimir Krasnov  <vladimirk@mainsoft.com>
1569
1570         * HttpUtility.cs: performance refactoring, optimized UrlEncode
1571
1572 2007-08-05 Igor Zelmanovich <igorz@mainsoft.com>
1573
1574         * SiteMapNode.cs: refactoring + typo fix: 
1575         variable is declared in scope where is used.
1576
1577 2007-07-31  Vladimir Krasnov  <vladimirk@mainsoft.com>
1578
1579         * VirtualPathUtility.cs: refactored GetDirectory, ToAbsolute, added
1580         internal api to skip path normalizing
1581
1582 2007-07-30  Vladimir Krasnov  <vladimirk@mainsoft.com>
1583
1584         * HttpResponseStream.jvm.cs: optimized CharBucket
1585
1586 2007-07-22  Vladimir Krasnov  <vladimirk@mainsoft.com>
1587
1588         * HttpServerUtility.cs: fixed Execute, SetCurrentExePath should be 
1589         called after ApplicationInstance.GetHandler call in case of GetHandler
1590         fails for some reason
1591
1592 2007-07-21  Marek Habersack  <mhabersack@novell.com>
1593
1594         * HttpRuntime.cs: clean up the dynamic base directory on domain
1595         shutdown.
1596
1597 2007-07-10  Vladimir Krasnov  <vladimirk@mainsoft.com>
1598
1599         * HttpUtility.cs: optimized HtmlEncode and HtmlAttributeEncode methods
1600
1601 2007-07-05  Miguel de Icaza  <miguel@novell.com>
1602
1603         * HttpApplication.cs (AsyncRequestState.Complete): Add the
1604         try/catch for the callback here to ensure that we only call
1605         complete_event.Set once. 
1606
1607         (PipelineDone): This is where the core of the bug fix is: do not
1608         call Complete() or call done.Set() (depending on the invocation
1609         case) until we are actually done cleaning up the request.
1610
1611         The problem was that we signaled that we were done, but we had not
1612         completed the shut down, so another thread could have been
1613         scheduled on the same HttpApplication and had its variables be
1614         modified as we completed the shutdown on the first thread. 
1615
1616         This fixes #81400 which was a very long standing bug.  
1617
1618         (Tick): Remove the pipeline check against null, this is not
1619         necessary and it will help us find problems like this one in the
1620         future.
1621
1622         Reverts patch r66072 which was a described as:
1623
1624                 band-aid patch to help debugging hang running 2.0
1625                 tests.
1626
1627 2007-07-02  Marek Habersack  <mhabersack@novell.com>
1628
1629         * CapabilitiesLoader.cs: provide default capability values for all
1630         the 2.0+ capabilities which are not defined in our
1631         browscap.ini. The default values have been assigned as per
1632         MSDN. Fixes bug #81927
1633
1634 2007-06-28  Vladimir Krasnov  <vladimirk@mainsoft.com>
1635
1636         * HttpResponse.cs: fixed AddHeadersNoCache, removed content-length
1637         header for TARGET_JVM
1638         * HttpWorkerRequest.cs: made this class partial, moved TARGET_JVM stuff
1639         to .jvm part
1640         * HttpWriter.cs: fixed write methods, output_stream can write char[]
1641         and string in TARGET_JVM
1642         added HttpWorkerRequest.jvm.cs, HttpResponseStream.jvm.cs
1643
1644 2007-06-25 Juraj Skripsky <js@hotfeet.ch>
1645
1646         * HttpRuntime.cs (ShutdownAppDomain): Re-introduce call to
1647         "Cache.InvokePrivateCallbacks".
1648
1649 2007-06-24  Vladimir Krasnov  <vladimirk@mainsoft.com>
1650
1651         * HttpUtility.cs: fixed HtmlAttributeEncode, performance improvement
1652
1653 2007-06-20  Marek Habersack  <mhabersack@novell.com>
1654
1655         * HttpRuntime.cs: added new internal property, InternalCache, to
1656         keep all the internal cache entries instead of mixing them with
1657         the public cache ones.
1658         Do not invoke Cache.InvokePrivateCallbacks - this method no longer
1659         exists.
1660
1661         * HttpResponse.cs: private entries are now kept in
1662         Context.InternalCache.
1663
1664         * HttpContext.cs: added new internal property, InternalCache,
1665         which returns the HttpRuntime.InternalCache value.
1666
1667         * HttpApplication.cs: check all the loaded assemblies for the type
1668         being looked up. Patch from Juraj Skripsky <juraj@hotfeet.ch>,
1669         thanks! Fixes bug #81697.
1670
1671 2007-06-18 Igor Zelmanovich <igorz@mainsoft.com>
1672
1673         * HttpUtility.cs: refactoring:
1674         removed constants to another class.     
1675
1676 2007-06-18 Igor Zelmanovich <igorz@mainsoft.com>
1677
1678         * AssemblyResourceLoader.cs: refactoring:
1679         make the code reusable in System.Web.Extenssions.       
1680
1681 2007-05-31  Marek Habersack  <mhabersack@novell.com>
1682
1683         * SiteMapProvider.cs: implemented proper logic of authorizing
1684         user's access to a sitemap node, as per MSDN2 docs. Patch from
1685         Dumitru Ban <dban@dako.ro>, thanks!
1686
1687 2007-05-30  Marek Habersack  <mhabersack@novell.com>
1688
1689         * TraceManager.cs: Catch all the possible exceptions in the
1690         constructor - the object MUST be created successfully (even if
1691         there are errors).
1692
1693         * HttpRequest.cs: do not attempt to apply url mappings if the
1694         configuration manager has errors.
1695
1696         * HttpRuntime.cs: handle static constructor exceptions later on,
1697         during the first call to ReallyProcessRequest.
1698
1699         * QueueManager.cs: provide defaults for the parameters to be read
1700         from the config file(s).
1701         Catch all the possible exceptions in the constructor - the object
1702         MUST be created successfully (even if there are errors).
1703
1704 2007-05-29  Marek Habersack  <mhabersack@novell.com>
1705
1706         * SiteMapProvider.cs: updated the node accessibility comments.
1707         If Roles not null and user is not in at least one of the
1708         specified roles, return false.
1709         If there Url is null or empty, return false.
1710
1711 2007-05-28  Marek Habersack  <mhabersack@novell.com>
1712
1713         * HttpRequest.cs: since Path is used from within
1714         WebConfigurationManager, under some conditions it may lead to
1715         endless recursion if the UrlComponents is not instantiated when
1716         Path_get is called.
1717
1718 2007-05-21  Vladimir Krasnov  <vladimirk@mainsoft.com>
1719
1720         * HttpContext.cs: added ProfileInitialized boolean property
1721
1722 2007-05-16  Vladimir Krasnov  <vladimirk@mainsoft.com>
1723
1724         * VirtualPathUtility.cs: Normalize method check more carefully if need
1725         to normalize, performance fix
1726
1727 2007-05-16  Konstantin Triger <kostat@mainsoft.com>
1728
1729         * HttpContext.cs: correctly check for request locality.
1730
1731 2007-05-15  Marek Habersack  <mhabersack@novell.com>
1732
1733         * HttpApplication.cs: refactoring - moved LoadType from
1734         WebConfigurationHost here and made it internal static, in order to
1735         make the code avaliable from all the places where extended type
1736         loading is required.
1737
1738 2007-05-14  Marek Habersack  <mhabersack@novell.com>
1739  
1740         * HttpUtility.cs: when parsing query strings, skip the leading ?
1741         for the first parameter name.
1742
1743         * HttpRequest.cs: added support for mapping urls, as defined in
1744         the system.web/urlMappings section.
1745
1746 2007-05-14  Vladimir Krasnov  <vladimirk@mainsoft.com>
1747         
1748         * HttpWriter.cs: GetMaxByteCount was used in Write and WriteString
1749         methods to improve performance of HttpWriter
1750
1751 2007-05-14 Igor Zelmanovich <igorz@mainsoft.com>
1752
1753         * HttpApplication.cs:
1754         prevent DOS attack: remove configuration from the cache in case 
1755         of invalid resource not exists  
1756
1757 2007-05-14  Vladimir Krasnov  <vladimirk@mainsoft.com>
1758
1759         * TraceContext.cs: refactoring, cached TraceManager
1760
1761 2007-05-03 Igor Zelmanovich <igorz@mainsoft.com>
1762
1763         * HttpApplication.cs:
1764         * HttpContext.cs:
1765         handling exceptions occurred if  <system.web/customError> 
1766         section is not valid.   
1767
1768 2007-05-08  Vladimir Krasnov  <vladimirk@mainsoft.com>
1769
1770         * BaseParamsCollection.cs: fixed Get(string) property, fixed collection
1771         lazy initialization
1772
1773 2007-05-07  Marek Habersack  <mhabersack@novell.com>
1774
1775         * HttpResponseStream.cs: use BufferOutput
1776
1777         * HttpResponse.cs: support Buffer, but use BufferOutput
1778
1779 2007-05-03 Igor Zelmanovich <igorz@mainsoft.com>
1780
1781         * BrowserCapabilities.cs:
1782         added missing API.      
1783
1784 2007-04-30 Igor Zelmanovich <igorz@mainsoft.com>
1785
1786         * HttpApplication.cs: reverted r74717.
1787
1788 2007-04-29 Igor Zelmanovich <igorz@mainsoft.com>
1789
1790         * HttpContext.jvm.cs: Response.End() must abort thread if not async.    
1791
1792 2007-04-29 Igor Zelmanovich <igorz@mainsoft.com>
1793
1794         * HttpApplication.cs: doesn't cache httpHandlersSection in instance, 
1795         that allows to consider httpHandlers section in nested web.config.      
1796
1797 2007-04-27  Marek Habersack  <mhabersack@novell.com>
1798
1799         * XmlSiteMapProvider.cs: add support for siteMapFile attribute.
1800
1801 2007-04-24  Marek Habersack  <mhabersack@novell.com>
1802
1803         * CapabilitiesLoader.cs: Hashtables used as property containers
1804         should not be case-insensitive as we now preload the property
1805         hashes with default properties, to make the code work in case
1806         browscap.ini is broken or missing. Instead, the keys are
1807         lower-cased and trimmed before indexing the Hashtable.
1808         Added all the missing capabilities to the defaultCaps Hashtable.
1809         The returned Hashtable is not reversed in GetCapabilities anymore
1810         - it might make the code faster, but it also makes it mismatch
1811         browsers (e.g. Firefox 2.0 is mismatched for Mozilla 1.8).
1812         All of the above fixes bug #81437.
1813
1814         * HttpRequest.cs: MS.NET throws HttpException for invalid paths,
1815         not ArgumentNullException.
1816
1817         * HttpException.cs: wrap GetHtmlErrorMessage internals in
1818         try/catch to capture possible exceptions in HttpContext.
1819
1820         * HttpContext.cs: IsCustomErrorEnabled is used from within
1821         HttpException, make sure it gets the section in a safe way and
1822         resorts to the default settings.
1823         
1824         * HttpResponse.cs: HeaderEncoding is used in the same context as
1825         above. Take the same precautions.
1826         
1827 2007-04-22 Joshua Tauberer <jit@occams.info>
1828  
1829         * HttpParamsCollection.cs: Fix IndexOutOfRangeException.
1830
1831 2007-04-19  Miguel de Icaza  <miguel@novell.com>
1832
1833         * BaseParamsCollection.cs (Get (string)): Call LoadInfo here to
1834         fix #81385
1835
1836 2007-04-17 Igor Zelmanovich <igorz@mainsoft.com>
1837
1838         * HttpException.cs: used GetBaseException() instead InnerException.
1839
1840 2007-04-17 Igor Zelmanovich <igorz@mainsoft.com>
1841
1842         * HttpException.cs: shows message of InnerException in head of Page.
1843
1844 2007-04-17 Igor Zelmanovich <igorz@mainsoft.com>
1845
1846         * HttpException.cs: fixed generated HTML formating.
1847
1848 2007-04-17 Igor Zelmanovich <igorz@mainsoft.com>
1849
1850         * HttpContext.cs: GetGlobalResourceObject, GetLocalResourceObject
1851         use case-insensitive ResourceManager
1852
1853 2007-04-15  Marek Habersack  <mhabersack@novell.com>
1854
1855         * VirtualPathUtility.cs: converted to LF line endings and set the
1856         svn:eol-style property to 'native'
1857
1858 2007-04-13  Marek Habersack  <mhabersack@novell.com>
1859
1860         * SiteMap.cs: try to look up the current map node in providers
1861         other than the current one. Patch from Mike Morano
1862         <mmorano@mikeandwan.us>. Fixes bug #81366. 
1863
1864 2007-04-12  Vladimir Krasnov  <vladimirk@mainsoft.com>
1865
1866         * HttpRequest.cs: fixed Params property to be lazy initialzation
1867         collection
1868         * added HttpParamsCollection.cs
1869
1870 2007-04-11  Konstantin Triger <kostat@mainsoft.com>
1871
1872         * HttpRequest.cs: IsLocal should return true for loopback addresses.
1873
1874 2007-04-10  Marek Habersack  <mhabersack@novell.com>
1875
1876         * HttpCookie.cs: format the output of HttpCookie.Values.ToString()
1877         in the same way MS.NET does. Fixes bug #81333. Patch from Mike
1878         Morano <mmorano@mikeandwan.us>.
1879
1880         * XmlSiteMapProvider.cs: add the NotifyFilters.Size to the
1881         watcher flags, so that we watch for modifications to a file when
1882         using Linux inotify.
1883
1884         * HttpApplicationFactory.cs: add the NotifyFilters.Size to the
1885         watcher flags, so that we watch for modifications to a file when
1886         using Linux inotify.
1887         App_Code, App_Browsers and App_GlobalResources watchers must watch
1888         for events with the '*' mask so that they can notice events
1889         related to subdirectory creation/deletion.
1890         Watch for subdirectory events with the App_Code watcher.
1891
1892 2007-04-07  Marek Habersack  <mhabersack@novell.com>
1893
1894         * HttpException.cs: show a default custom error message if custom
1895         errors are enabled.
1896         Cleaned up the errors HTML, made it XHTML-compliant. Generated
1897         HTML now uses inline CSS styles.
1898
1899 2007-04-06  Marek Habersack  <mhabersack@novell.com>
1900
1901         * HttpUtility.cs: added a constant that contains the default query
1902         parameter character.
1903         ParseQueryString supports queries with both '&' and ';' parameter
1904         separators.
1905
1906 2007-04-05  Marek Habersack  <mhabersack@novell.com>
1907
1908         * CapabilitiesLoader.cs: Make sure that the capability names
1909         (keys) are stored in lowercase.
1910
1911 2007-04-05 Igor Zelmanovich <igorz@mainsoft.com>
1912
1913         * XmlSiteMapProvider.cs: 
1914         custom attributes of siteMapNode are loaded properly.
1915
1916 2007-04-05  Marek Habersack  <mhabersack@novell.com>
1917
1918         * CapabilitiesLoader.cs: add a full default set of capabilities
1919         for cases when browscap.ini is broken, missing or doesn't contain
1920         definition for the client's User-Agent. Makes it possible to surf
1921         asp.net sites from unsupported clients.
1922
1923 2007-04-04 Juraj Skripsky <js@hotfeet.ch>
1924
1925         * HttpApplicationFactory.cs: Make sure an web application is
1926         shutdown only once (and Application_End in global.asax is called
1927         only once as well). This is necessary because FileSystemWatcher
1928         emits multiple events when e.g. global.asax is changed.
1929
1930 2007-04-01  Vladimir Krasnov  <vladimirk@mainsoft.com>
1931
1932         * HttpRequest.cs: fixed Headers property to use optimized
1933         HeadersCollection
1934         * WebROCollection.cs: used StringComparer.OrdinalIgnoreCase for
1935         NET_2_0
1936         * ServerVariablesCollection.cs: used lazy collection fill optimization
1937         * added: HeadersCollection.cs, BaseParamsCollection.cs
1938
1939 2007-04-01  Konstantin Triger <kostat@mainsoft.com>
1940
1941         * HttpContext.cs: 
1942                 GetLocalResourceObject - should not prefix resources with 'Resources.'.
1943
1944 2007-04-01  Konstantin Triger <kostat@mainsoft.com>
1945
1946         * BrowserCapabilities.cs: Default Browser (userAgent) property to 'Unknown'.
1947
1948 2007-03-29  Vladimir Krasnov  <vladimirk@mainsoft.com>
1949
1950         * HttpContext.cs: timeout methods removed from TARGET_J2EE compilation
1951         * HttpContext.jvm.cs: added stubs for timeout methods
1952
1953 2007-03-28 Igor Zelmanovich <igorz@mainsoft.com>
1954
1955         * StaticSiteMapProvider.cs:
1956         GetChildNodes does not return null but SiteMapNodeCollection.EmptyCollection.
1957
1958 2007-03-28  Konstantin Triger <kostat@mainsoft.com>
1959
1960         * BrowserCapabilities.cs: 
1961                 1. refactoring.
1962                 2. Break recoursion in case 'browser' capability is not found.
1963
1964 2007-03-28 Igor Zelmanovich <igorz@mainsoft.com>
1965
1966         * SiteMapNode.cs: fixed GetAllNodes method.
1967
1968 2007-03-27 Igor Zelmanovich <igorz@mainsoft.com>
1969
1970         * XmlSiteMapProvider.cs: fixed:
1971         resolve app-relative path from config such siteMapFile="~/Web.sitemap".
1972
1973 2007-03-27 Igor Zelmanovich <igorz@mainsoft.com>
1974
1975         * SiteMapNode.cs:
1976         * XmlSiteMapProvider.cs: fixed: Localize Site-Map Data.
1977
1978 2007-03-26  Konstantin Triger <kostat@mainsoft.com>
1979
1980         * HttpRequest.cs: correctly handle null and empty virtual pathes in MapPath.
1981
1982 2007-03-25  Vladimir Krasnov  <vladimirk@mainsoft.com>
1983
1984         * HttpContext.cs: AppGlobalResourcesAssembly static member stored in
1985         AppDomain for TARGET_JVM
1986
1987 2007-03-24  Marek Habersack  <mhabersack@novell.com>
1988
1989         * HttpRuntime.cs: use ICalls.GetMachineConfigPath instead of
1990         opening the machine.config file and getting its path.
1991
1992         * CapabilitiesLoader.cs: use HttpRuntime.MachineConfigurationDirectory 
1993         instead of opening the machine config file and getting its path.
1994
1995 2007-03-23  Konstantin Triger <kostat@mainsoft.com>
1996
1997         * HttpApplication.cs: complete the pipeline in case of exception during
1998                 InitOnce() to avoid a deadlock.
1999
2000 2007-03-22  Adar Wesley <adarw@mainsoft.com>
2001
2002         * BrowserCapabilities.cs: Added implementation for all capabilities.
2003         changed implementation to throw when capability is not defined in browscaps.ini.
2004
2005         * CapabilitiesLoader.cs: fixed parent resultion bug.  added internal support for
2006         browser and browsers capabilities.
2007
2008 2007-03-21  Vladimir Krasnov  <vladimirk@mainsoft.com>
2009
2010         * HttpContext.jvm.cs, HttpRuntime.cs: cached instance of HttpRuntime
2011         in context in addition to AppDomain
2012
2013 2007-03-21  Vladimir Krasnov  <vladimirk@mainsoft.com>
2014         
2015         * HttpCookie.cs, HttpCookieCollection.cs: used OrdinalIgnoreCase
2016         StringComparer for cookies and values collections 
2017
2018 2007-03-21  Vladimir Krasnov  <vladimirk@mainsoft.com>
2019
2020         * HttpApplication.cs: refactred handlers configuration section as
2021         member of class
2022
2023 2007-03-20  Marek Habersack  <mhabersack@novell.com>
2024
2025         * HttpRequest.cs: implement AppRelativeCurrentExecutionFilePath.
2026
2027 2007-03-18 Igor Zelmanovich <igorz@mainsoft.com>
2028
2029         * VirtualPathUtility.cs: fixed GetFileName(), GetExtension() methods.
2030
2031 2007-03-18 Igor Zelmanovich <igorz@mainsoft.com>
2032
2033         * VirtualPathUtility.cs: fixed GetDirectory() method.
2034
2035 2007-03-15  Marek Habersack  <mhabersack@novell.com>
2036
2037         * XmlSiteMapProvider.cs: handle cases with no default for the
2038         reskey properly.
2039
2040 2007-03-15 Igor Zelmanovich <igorz@mainsoft.com>
2041
2042         * HttpRequest.cs: fixed MapPath () method.
2043
2044 2007-03-15 Igor Zelmanovich <igorz@mainsoft.com>
2045
2046         * VirtualPathUtility.cs: fixed ToAbsolute() method.
2047
2048 2007-03-15 Igor Zelmanovich <igorz@mainsoft.com>
2049
2050         * VirtualPathUtility.cs: refactoring: class is shared with 1.x.
2051
2052 2007-03-15  Marek Habersack  <mhabersack@novell.com>
2053
2054         * XmlSiteMapProvider.cs: add support for the enableLocalization
2055         <siteMap> attribute and handle per-node localization resource
2056         strings for explicit localization as well as the resourceKey
2057         attribute to <siteMapNode> for implicit localization (closes bug
2058         #81103).
2059
2060         * SiteMapNode.cs: add support for the resource keys and foreign
2061         attributes.
2062         Implement GetImplicitResourceString.
2063         Add support for translation of the Title and Description
2064         attributes (closes bug #81103) as well as foreign attributes.
2065
2066 2007-03-15 Igor Zelmanovich <igorz@mainsoft.com>
2067
2068         * VirtualPathUtility.cs: fixed: works properly with appRelative path.
2069
2070 2007-03-13  Marek Habersack  <mhabersack@novell.com>
2071
2072         * HttpApplicationFactory.cs: resources compiler no longer accepts
2073         a boolean parameter.
2074
2075         * HttpRuntime.cs: Do not compile local resources here anymore.
2076
2077         * HttpContext.cs: if App_LocalResources assembly corresponding to
2078         the virtual path is not found, compile it here.
2079         Look up resources in the "Resources." class path.
2080
2081 2007-03-13 Igor Zelmanovich <igorz@mainsoft.com>
2082
2083         * HttpUtility.cs: fixed HttpUtillity.HtmlAttributeEncode
2084          '<' char must be encoded.      
2085
2086 2007-03-12  Vladimir Krasnov  <vladimirk@mainsoft.com>
2087
2088         * CapabilitiesLoader.cs: added TARGET_JVM part of static members,
2089         added caching to GetCapabilities method for performance improvement
2090
2091 2007-03-12  Marek Habersack  <mhabersack@novell.com>
2092
2093         * XmlSiteMapProvider.cs: support custom site map providers. Fixes
2094         bug #81115
2095
2096 2007-03-06  Vladimir Krasnov  <vladimirk@mainsoft.com>
2097
2098         * StaticFileHandler.cs: fixed ProcessRequest TARGET_JVM path,
2099         if_modified_since fixed in WAR mode
2100
2101 2007-02-25  Vladimir Krasnov  <vladimirk@mainsoft.com>
2102
2103         * HttpRequest.jvm.cs: fixed LoadWwwForm, should distinguish between
2104         query string and form values
2105
2106 2007-02-21  Marek Habersack  <grendello@gmail.com>
2107
2108         * HttpRuntime.cs: BinDirectory returns the bin directory
2109         determined by the application host on the application startup.
2110
2111         * HttpApplicationFactory.cs: Watch the bin directory determined by
2112         the application host on the application startup.
2113
2114 2007-02-20  Vladimir Krasnov  <vladimirk@mainsoft.com>
2115
2116         * HttpRequest.cs: fixed MapPath, removed TARGET_J2EE block that checks
2117         war root symbol
2118
2119 2007-02-19  Marek Habersack  <grendello@gmail.com>
2120
2121         * HttpContext.cs: Make sure all the global resource objects are
2122         sought in the Resources. namespace.
2123
2124 2007-02-18  Eyal Alaluf  <eyala@mainsoft.com>
2125
2126         * HttpContext.jvm.cs, HttpRequest.jvm.cs: Adapt for tunning under test
2127           harness where we don't have a SevletRequest/Response.
2128
2129 2007-02-13  Vladimir Krasnov  <vladimirk@mainsoft.com>
2130
2131         * HttpApplication.cs: fixed InitOnce, httpModules section is global and
2132         taken from the root web.config
2133
2134 2007-02-12  Robert Jordan  <robertj@gmx.net>
2135
2136         * HttpResponseStream.cs (BlockManager.EnsureCapacity):
2137         don't call Marshal.ReAllocHGlobal on NULL because, unlike
2138         realloc(3) and g_realloc, it doesn't support this semantic.
2139         Fixes a part of bug #77075.
2140
2141 2007-02-12  Marek Habersack  <grendello@gmail.com>
2142
2143         * HttpRuntime.cs: support for preservation (.compiled) assembly
2144         mapping files.
2145
2146 2007-02-11  Vladimir Krasnov  <vladimirk@mainsoft.com>
2147
2148         * HttpApplication.cs: added exception pass through from processAction
2149         in j2ee portal
2150
2151 2007-02-02  Marek Habersack  <grendello@gmail.com>
2152
2153         * HttpApplicationFactory.cs: make code a bit more compact.
2154
2155 2007-01-30  Vladimir Krasnov  <vladimirk@mainsoft.com>
2156
2157         * HttpResponse.cs: fixed TARGET_J2EE part of Redirect for portlet
2158
2159 2007-01-30  Adar Wesley <adarw@mainsoft.com>
2160
2161         * VirtualPathUtility.cs: fixed exceptions thrown from Combine
2162         so they are compatible with MS.
2163
2164 2007-01-25  Marek Habersack  <grendello@gmail.com>
2165
2166         * HttpApplication.cs: Make sure that a specific culture is used
2167         when setting the current thread culture.
2168
2169 2007-01-21 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
2170
2171         * HttpServerUtility.cs: implement Execute/Transfer overloads that take
2172         an IHttpHandler. Still missing the documented check for page IsCallback.
2173         Also, on MS when i derive from Page for my IHttpHandler, it works fine,
2174         but if I just implement IHttpHandler, an exception is thrown. This needs
2175         to be researched but, by now, the IHttpHandler version works on mono
2176         and fails on MS.
2177
2178 2007-01-20  Miguel de Icaza  <miguel@novell.com>
2179
2180         * SiteMapNode.cs (GetExplicitResourceString): implement.
2181
2182         * HttpContext.cs (GetGlobalResourceObject): remove unused variable.
2183
2184         * StaticFileHandler.cs (ProcessRequest): remove unused variable.
2185
2186         * HttpApplication.cs (ProcessError): Remove unused variable. 
2187
2188         * HttpServerUtility.cs (Execute): Add new overload and rename
2189         parameter to match MS (as they are normative).
2190
2191 2007-01-17  Marek Habersack  <grendello@gmail.com>
2192
2193         * HttpApplicationFactory.cs: Implement code and framework to
2194         enable automatic application restarts on changes to folders/files
2195         in a generic way. Patch from Damien Churchill
2196         <damien.churchill@ukplc.net>, thanks!
2197         Make sure the top-level assemblies (App_Code, resources) are not
2198         referenced twice should a compilation error occur.
2199
2200 2007-01-16  Atsushi Enomoto  <atsushi@ximian.com>
2201
2202         * TraceData.cs : page could be null. Fixed bug #80480.
2203
2204 2007-01-15  Ilya Kharmatsky   <ilya -at- decode-systems.com>
2205
2206         * VirtualPathUtility.cs: fixed bugs in methods - GetDirectory and
2207         GetExtension, according to the VirtualPathUtilityTest
2208
2209 2007-01-15  Vladimir Krasnov  <vladimirk@mainsoft.com>
2210
2211         * SiteMapProvider.cs: fixed IsAccessibleToUser, true if
2212         SecurityTrimmingEnabled not enabled, true if Roles exists on node and
2213         rolename is '*'
2214
2215 2007-01-14  Eyal Alaluf  <eyala@mainsoft.com>
2216
2217         * HttpRequest.jvm.cs, HttpContext.jvm.cs: Added TARGET_J2EE specific files.
2218         * HttpContext.cs, HttpResponse.cs, HttpRequest.cs, HttpCookie.cs:
2219           Add J2EE Portal support for TARGET_J2EE.
2220
2221 2007-01-04  Vladimir Krasnov  <vladimirk@mainsoft.com>
2222
2223         * HttpRequest.cs: fixed IsLocal, should check all ip addresses of host
2224
2225 2007-01-05  Marek Habersack  <grendello@gmail.com>
2226
2227         * HttpApplicationFactory.cs: Use the new app resources compiler.
2228
2229         * HttpRuntime.cs: Use the new app resources compiler.
2230
2231         * HttpContext.cs: Reimplement the GetGlobalResourceObject
2232         methods, implement the GetLocalResourceObject methods.
2233
2234         * HttpResponse.cs: Implement the HeaderEncoding property.
2235
2236 2007-01-04  Andreia Gaita  <avidigal@novell.com>
2237
2238         * HttpRuntime.cs: Add check for NET_2_0 when initializing
2239         WebConfigurationManager, build failing on 1.1 profile
2240         
2241 2007-01-04  Vladimir Krasnov  <vladimirk@mainsoft.com>
2242
2243         * HttpApplicationFactory.cs, HttpRuntime.cs: WebConfigurationManager
2244         should be initializaed before any possible access to it
2245
2246 2007-01-04  Vladimir Krasnov  <vladimirk@mainsoft.com>
2247
2248         * HttpRequest.cs: fixed Path property, add call of
2249         Uri.UnescapeDataString in net_2_0
2250
2251 2007-01-04  Vladimir Krasnov  <vladimirk@mainsoft.com>
2252
2253         * HttpApplication.cs: fixed PreStart, should not set thread culture
2254         to invariant
2255
2256 2007-01-03  Vladimir Krasnov  <vladimirk@mainsoft.com>
2257
2258         * HttpRequest.cs: fixed jvm version of MakeInputStream, should not
2259         throw exception on zero content length
2260
2261 2007-01-03  Vladimir Krasnov  <vladimirk@mainsoft.com>
2262
2263         * SiteMap.cs, SiteMapNodeCollection.cs: TARGET_JVM of static members
2264
2265 2006-12-20  Marek Habersack  <grendello@gmail.com>
2266
2267         * HttpContext.cs: add internal setter for the Profile property.
2268
2269         * HttpApplicationFactory.cs: Added a shortcut version of
2270         InvokeSessionEnd for use from the 2.0 SessionState code.
2271
2272 2006-12-18  Vladimir Krasnov  <vladimirk@mainsoft.com>
2273
2274         * HttpRequest.cs: fixed Path property, returns unescaped url
2275
2276 2006-12-16  Marek Habersack  <grendello@gmail.com>
2277
2278         * HttpRequest.cs: Fix for http exception during first visit to an
2279         application when the visit path is not the app's virtual root.
2280
2281 2006-12-12 Igor Zelmanovich <igorz@mainsoft.com>
2282
2283         * SiteMapProvider.cs.cs:
2284         * XmlSiteMapProvider.cs: fixed: because more then one node with empty url
2285         is allowed unique key is generated for each node.               
2286
2287 2006-12-12 Igor Zelmanovich <igorz@mainsoft.com>
2288
2289         * SiteMapProvider.cs.cs: fixed: IsAccessibleToUser resolvs relative url.
2290         * StaticSiteMapProvider.cs: fixed: RemoveNode   
2291
2292 2006-12-12 Igor Zelmanovich <igorz@mainsoft.com>
2293
2294         * VirtualPathUtility.cs: fixed: Combine(), ToAbsolute() methods.
2295
2296 2006-12-12 Igor Zelmanovich <igorz@mainsoft.com>
2297
2298         * VirtualPathUtility.cs: fixed: IsAppRelative() method.
2299
2300 2006-12-07  Vladimir Krasnov  <vladimirk@mainsoft.com>
2301
2302         * BrowserCapabilities.cs: fixed MSDomVersion property
2303
2304 2006-12-05 Igor Zelmanovich <igorz@mainsoft.com>
2305
2306         * VirtualPathUtility.cs: fixed: ToAbsolute() method.
2307
2308 2006-12-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2309
2310         * HttpRequest.cs: call MapPath on the HttpWorkerRequest so that if
2311         FilePath is changed we get the new physical path, not the one of the
2312         original request. Fixes bug #80152.
2313
2314 2006-12-03 Igor Zelmanovich <igorz@mainsoft.com>
2315
2316         * HttpWriter.cs: reverted r38835.
2317
2318 2006-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2319
2320         * HttpWriter.cs: remove unused WriteBytes method.
2321
2322 2006-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2323
2324         * HttpRequest.cs: physical path comes from GetFilePathTranslated to
2325         avoid trimming in HttpRequest.MapPath.
2326
2327 2006-11-29  Marek Habersack  <grendello@gmail.com>
2328
2329         * HttpApplication.cs: Make use of the handler stack implemented
2330         in HttpContext.
2331
2332         * HttpCacheVaryByHeaders.cs: Optionally omit the vary:* header
2333         value in the 2.0 profile.
2334
2335         * HttpServerUtility.cs: Make use of the handler stack implemented
2336         in HttpContext.
2337         Implemented the UrlToken{Encode,Decode} 2.0 methods.
2338
2339         * HttpResponse.cs: Implemented the IsRequestBeingRedirected
2340         property.
2341
2342         * HttpContext.cs: Implemented the CurrentHandler and PreviousHandler
2343         methods, together with helper functions to handle the handler
2344         stack.
2345         GetSection(string) should be present only in the 2.0 profile.
2346
2347         * HttpCachePolicy.cs: implement the SetNoServerCaching,
2348         SetNoStore, SetNoTransforms, SetValidUntilExpires and
2349         SetOmitVaryStar methods.
2350         Added code to set the no-store and no-transform options of the
2351         Cache-Control header.
2352
2353 2006-11-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2354
2355         * HttpServerUtility.cs: don't prepend extra '?' when the original url
2356         already has a query string. Fixes bug #80042.
2357
2358 2006-11-24  Miguel de Icaza  <miguel@novell.com>
2359
2360         * HttpApplicationFactory.cs (InitType): Also look for "Web.Config"
2361         casing here.
2362
2363 2006-11-20  Marek Habersack  <grendello@gmail.com>
2364
2365         * HttpApplication.cs: Added support for automatic detection of
2366         user's preferred language.
2367
2368 2006-11-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2369
2370         * HttpApplication.cs: don't leak the directory name for non-local
2371         connections.
2372
2373 2006-11-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2374
2375         * CapabilitiesLoader.cs: made the hasstable that contains the properties
2376         for the brower case insensitive. Fixes bug #79795.
2377
2378 2006-11-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2379
2380         * HttpResponse.cs: fix typo that prevented Server.Execute from restoring
2381         the initial output stream used. Closes bug #79916.
2382
2383 2006-11-12  Marek Habersack  <grendello@gmail.com>
2384
2385         * HttpContext.cs: Implemented the 2.0 RewritePath overloads.
2386
2387 2006-11-08  Marek Habersack  <grendello@gmail.com>
2388
2389         * HttpRuntime.cs: Moved the resource compiler results handling to
2390         the resource compiler itself.
2391
2392         * HttpApplicationFactory.cs: Add invocation of the App_Code
2393         compiler. Moved the resource compiler results handling to the
2394         resource compiler itself. Removed compilation of the local
2395         resources from here - it should be done only when a request
2396         determines that the App_LocalResources directory exists.
2397         
2398
2399 2006-11-07  Andrew Skiba  <andrews@mainsoft.com>
2400
2401         * HttpRuntime.cs: TARGET_JVM ifdef
2402
2403 2006-11-05  Andrew Skiba  <andrews@mainsoft.com>
2404
2405         * SiteMapProvider.cs: don't iterate through Roles when they are null.
2406
2407 2006-11-05  Vladimir Krasnov  <vladimirk@mainsoft.com>
2408
2409         * HttpContext.cs: implemented Profile property
2410
2411 2006-11-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2412
2413         * HttpApplication.cs: the unexpected 'tick' exceptions can be an abort
2414         exception due to timeout or end of the request.
2415
2416 2006-10-18  Marek Habersack  <grendello@gmail.com>
2417
2418         * HttpRuntime.cs: add support for compilation of local resources
2419         at the start of request.
2420
2421         * HttpContext.cs: implement the GetGlobalResourceObject APIs
2422
2423         * HttpApplicationFactory.cs: include the bootstrap code for the
2424         global/local resources compiler.
2425
2426 2006-10-09  Marek Habersack  <grendello@gmail.com>
2427
2428         * HttpApplication.cs: change the pipeline order for ASP.NET 2.0 to
2429         comply with the Microsoft documentation.
2430
2431 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2432
2433         * HttpApplication.cs: this makes the test run successfully. Still need
2434         to figure out why that is null.
2435
2436 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2437
2438         * HttpApplication.cs: band-aid patch to help debugging hang running 2.0
2439         tests.
2440
2441 2006-09-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2442
2443         * HttpServerUtility.cs: 1.1 Execute(s) preserves the query string.
2444         Thanks to Hubert Fongarnand. Fixes bug #79506.
2445
2446 2006-09-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2447
2448         * QueueManager.cs: if disposed, always return null for next request.
2449         * HttpRuntime.cs: dispose the queue manager when shutting down the
2450         domain. This will close pending requests with a 503.
2451         * HttpApplication.cs: release the handler before marking the request
2452         as completed. If in PipelineDone context is null, use
2453         HttpContext.Current. Fixes some of those "Tick detected an unhandled
2454         exception" errors printed out.
2455
2456 2006-09-11  Andrew Skiba <andrews@mainsoft.com>
2457
2458         * XmlSiteMapProvider.cs: ifdef TARGET_JVM
2459
2460 2006-09-11  Vladimir Krasnov  <vladimirk@mainsoft.com>
2461
2462         * HttpWriter.cs: fixed WriteLine to work correctly in utf-16 encoding
2463
2464 2006-09-08  Robert Jordan  <robertj@gmx.net>
2465
2466         * TraceData.cs: fixed NRE if `sizes' is null, which may happen
2467         if a page was unable to save its viewstate and size.
2468
2469 2006-09-07 Andrew Skiba <andrews@mainsoft.com>
2470
2471         * HttpApplicationFactory.cs: ifdef the previous fix with TARGET_JVM to
2472         pass compilation.
2473
2474 2006-09-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2475
2476         * HttpApplicationFactory.cs: watch web.config too. Fixes bug #78356.
2477
2478 2006-09-05  Konstantin Triger <kostat@mainsoft.com>
2479
2480         * SiteMapProvider.cs: consider authorization section for access decision.
2481
2482 2006-09-04 Igor Zelmanovich <igorz@mainsoft.com>
2483
2484         * HttpUtility.cs: fixed UrlPathEncode method.
2485
2486 2006-08-31      Boris Kirzner <borisk@mainsoft.com>
2487
2488         * VirtualPathUtility.cs : pass parameters in correct order.
2489
2490 2006-08-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2491
2492         * HttpApplicationFactory.cs: handle the 'renamed' event too.
2493
2494 2006-08-08  Vladimir Krasnov  <vladimirk@mainsoft.com>
2495
2496         * HttpApplication.cs: fixed BeginProcessRequest, TARGET_JVM part
2497         merged
2498
2499 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2500
2501         * HttpApplication.cs: don't leak local path names when a file is not
2502         found.
2503
2504 2006-06-21 Konstantin Triger <kostat@mainsoft.com>
2505
2506         * XmlSiteMapProvider.cs: if the url is relative, make it relative to the
2507                 context root.
2508
2509 2006-06-07 Juraj Skripsky <js@hotfeet.ch>
2510
2511         * HttpException.cs (GetHtmlizedErrorMessage): Beautify compilation error
2512         page by showing multiple errors on separate lines.
2513
2514 2006-06-05 Juraj Skripsky <js@hotfeet.ch>
2515
2516         * HttpRequest.cs: simplify code around uri_builder (and rename 
2517         to url_components). Move storage of query_string into 
2518         uri_builder.Query and initialize it lazily using 
2519         worker_request.GetQueryStringRawBytes() or GetQueryString().
2520         (QueryString): Use HttpUtility.ParseQueryString instead of 
2521         duplicating its functionality.
2522
2523 2006-06-05 Juraj Skripsky <js@hotfeet.ch>
2524
2525         * HttpUtility.cs (ParseQueryString): move core of
2526         ParseQueryString into internal method to make it available to 
2527         HttpRequest.
2528
2529 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2530
2531         * HttpApplication.cs: assign the context when run from a thread not in
2532         the threadpool. Patch by Andrew Skiba. Fixes bug #78583.
2533
2534 2006-05-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2535
2536         * HttpApplication.cs: context.Handler does not change for
2537         HttpServerUtility.Execute, so moved setting it into the pipeline instead
2538         of GetHandler.
2539
2540 2006-05-17  Kazuki Oikawa  <kazuki@panicode.com>
2541
2542         * HttpUtility.cs: implemented ParseQueryString
2543
2544 2006-05-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2545
2546         * HttpUtility.cs: get rid of TryParseHexa.
2547
2548 2006-04-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2549
2550         * HttpApplicationFactory.cs: make sure that the application start event
2551         is run before any request is processed.
2552
2553 2006-04-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2554
2555         * HttpServerUtility.cs: don't reset the query string in Execute() when
2556         the path does not contain it and we have one from the previous request.
2557         Fixes bug #78177.
2558
2559 2006-04-20 Andrew Skiba <andrews@mainsoft.com>
2560
2561         * SiteMapNode.cs: fix few null reference exceptions
2562
2563 2006-04-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2564
2565         * HttpResponse.cs:
2566         (TransmitFile): make sure we can read the file before buffering it.
2567
2568 2006-04-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2569
2570         * HttpApplicationFactory.cs: don't fail on events that are not
2571         EventHandlers. Patch by Matthew Metnetsky.
2572
2573 2006-04-11 Andrew Skiba <andrews@mainsoft.com>
2574
2575         * HttpRequest.cs: remove code duplication (see UrlUtils.Combine)
2576
2577 2006-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2578
2579         * HttpUtility.cs: allow "%%" as a escape for '%' and ignore invalid
2580         hexadecimal characters. Based on a patch by Vladimir Krasnov.
2581
2582 2006-04-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2583
2584         * HttpWriter.cs: only keep the byte buffer around if its size is less
2585         than or equals to 32K.
2586
2587 2006-04-08  Miguel de Icaza  <miguel@novell.com>
2588
2589         * HttpWriter.cs (Write): Added missing check for null string as
2590         something is now calling it like that. 
2591
2592 2006-03-27 Joshua Tauberer <tauberer@for.net>
2593
2594         * HttpWriter.cs: Avoid creation of a byte[] on each Write()
2595           by reusing and resizing a private array.
2596
2597 2006-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2598
2599         * HttpRequest.cs: the field content_length can be < 0 and then we try to
2600         read when there's no data and block.
2601
2602 2006-04-05 Andrew Skiba <andrews@mainsoft.com>
2603
2604         * HttpUtility: UrlEncode and UrlEncodeUnicode logic unified, behaviour
2605         fixed to match dotnet and http://rfc.net/rfc1738.html
2606
2607 2006-03-30 Konstantin Triger <kostat@mainsoft.com>
2608
2609         * HttpApplicationFactory.cs: refactoring: remove static modifier from session_end field.
2610         Does not check the behavior as HttpApplicationFactory is a singleton.
2611
2612 2006-03-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2613
2614         * HttpUtility.cs: UrlDecode does not throw if an hexadecimal sequence
2615         fails to parse as an integer. Fixes bug #77931.
2616
2617 2006-03-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2618
2619         * HttpResponse.cs: more fixes for CacheControl: MS allows to set it to
2620         null and "" and the getter value does not completely depend on Cache.
2621
2622         * HttpRequest.cs: fail validating the request input if there's a control
2623         character after a '<'. Fixes XSS_Null test.
2624
2625         All System.Web tests pass again.
2626 2006-03-22  Robert Jordan  <robertj@gmx.net>
2627
2628         * HttpCachePolicy.cs: fix the Cache-control header. Fixes bug #77826.
2629
2630 2006-03-22  Chris Toshok  <toshok@ximian.com>
2631
2632         * HttpApplication.cs: fix typo - AuthenticateRequest =>
2633         PostAuthenticateRequest.
2634
2635 2006-03-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2636
2637         * ChangeLog:
2638         * HttpRequest.cs: revert part of r58229.
2639
2640 2006-03-21  Vladimir Krasnov  <vladimirk@mainsoft.com>
2641
2642         * ServerVariablesCollection.cs: fixed "URL" variable, it should not
2643         return path info
2644
2645 2006-03-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2646
2647         * HttpRequest.cs:
2648         (CheckString): style and don't index the string twice per iteration.
2649
2650 2006-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2651
2652         * TempFileStream.cs: a FileStream that removes the file once
2653         it is disposed.
2654         * HttpRequest.cs: support for writing request data to on-disk
2655         files if the request is longer than the threshold specified in the
2656         configuration files. In mono this will work for 1.x and 2.0, while with
2657         MS this only works for 2.0.
2658
2659 2006-03-18  Robert Jordan  <robertj@gmx.net>
2660
2661         * HttpCachePolicy.cs: expose the validation callbacks.
2662         Fixes bug #77825.
2663
2664 2006-03-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2665
2666         * HttpApplication.cs: fix upper bound when iterating through the module
2667         collection.
2668
2669 2006-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2670
2671         * HttpRequest.cs: use the provided content encoding to decode the file
2672         name. Fixes bug #77714.
2673
2674 2006-03-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2675
2676         * HttpResponse.cs: allow setting a Cache-Control header through
2677         AppendHeader. Fixes bug #77775.
2678
2679 2006-03-15  Chris Toshok  <toshok@ximian.com>
2680
2681         * XmlSiteMapProvider.cs (RemoveProvider): oops, no override.
2682
2683         * StaticSiteMapProvider.cs (AddNode): call MapUrl.
2684         (FindSiteMapNode): same.
2685
2686 2006-03-15  Chris Toshok  <toshok@ximian.com>
2687
2688         * SiteMapProvider.cs (ReturnNodeIfAccessible): new function,
2689         either return the node or throw InvalidOperationException.
2690         (get_RootNode): use ReturnNodeIfAccessible.
2691         (IsAccessibleToUser): flesh this out a bit, and add comments on
2692         how the rest of the implementation should be written.
2693         (FindSiteMapNodeFromKey): implement to match MS behavior, docs be
2694         damned.
2695
2696         * XmlSiteMapProvider.cs: corcompare work.
2697
2698         * StaticSiteMapProvider.cs (AddNode): Add a check to see if node
2699         == RootNode.  Not sure if this is actually correct, but it's
2700         required given our implementation of XmlSiteMapProvider.  without
2701         this check, we end up assigning RootNode.ParentNode == RootNode,
2702         which makes for an infinite loop when we traverse up the tree.
2703
2704 2006-03-15  Vladimir Krasnov  <vladimirk@mainsoft.com>
2705
2706         * HttpRequest.cs: fixed MakeInputStream method under TARGET_JVM,
2707         fixed if content lenght value is less that byte received
2708
2709 2006-03-10  Chris Toshok  <toshok@ximian.com>
2710
2711         * StaticSiteMapProvider.cs (UrlToNode): this entire file is #if
2712         NET_2_0, no need to embed another #if NET_2_0.
2713
2714         * SiteMapProvider.cs (AddNode): throw NotImplementedException.
2715         (FindSiteMapNode): with null context, return null.  don't throw
2716         ArgumentNullException.
2717         (RemoveNode): throw NotImplementedException.
2718         (IsAccessibleToUser): check arguments to make test pass.  still
2719         lacking the method's actual functionality.
2720         (ResourceKey): add missing property.
2721
2722 2006-03-10  Chris Toshok  <toshok@ximian.com>
2723
2724         * HttpRequest.cs (CheckString): add back in the check for \xff1c
2725         that i took out.  oops.
2726
2727 2006-03-10  Chris Toshok  <toshok@ximian.com>
2728
2729         * HttpRequest.cs (CheckString): implement as described in
2730         Shackow's "Professional ASP.NET 2.0 Security, Membership, and Role
2731         Management", page 310.
2732
2733 2006-03-08  Chris Toshok  <toshok@ximian.com>
2734
2735         * SiteMap.cs: clean this up a bunch.  use the SiteMapSection to
2736         initialize the provider collection, and don't add a provider.
2737         web.config handles that for us.  Also, don't always return true
2738         from get_Enabled.
2739
2740 2006-02-28  Chris Toshok  <toshok@ximian.com>
2741
2742         * HttpCookieMode.cs: corcompare work.
2743
2744         * ProcessShutdownReason.cs: same.
2745
2746         * SiteMapNodeCollection.cs: same.
2747
2748         * SiteMapNode.cs: same.
2749
2750         * SiteMapProvider.cs: same.
2751
2752         * HttpCacheRevalidation.cs: same.
2753
2754         * HttpCacheability.cs: same.
2755
2756         * StaticSiteMapProvider.cs: same.
2757
2758         * HttpValidationStatus.cs: same.
2759         
2760 2006-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2761
2762         * DefaultHttpHandler.cs: New file.
2763
2764 2006-02-01  Chris Toshok  <toshok@ximian.com>
2765
2766         * SiteMap.cs: use GetSection instead of GetWebApplicationSection.
2767
2768 2006-02-01  Chris Toshok  <toshok@ximian.com>
2769
2770         * HttpApplication.cs: CONFIGURATION_2_0 => NET_2_0, and use
2771         GetSection instead of GetWebApplicationSection.
2772
2773         * HttpApplication.jvm.cs: same.
2774         
2775         * HttpApplicationFactory.cs: same.
2776
2777         * HttpContext.cs: same.
2778
2779         * CapabilitiesLoader.cs: same.
2780
2781         * QueueManager.cs: same.
2782
2783         * HttpRuntime.cs: same.
2784
2785         * TraceManager.cs: same.
2786
2787         * HttpRequest.cs: same.
2788         
2789 2006-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2790
2791         * HttpApplication.cs: keep any exception that happens during
2792         initialization.
2793
2794 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2795
2796         * HttpDataTransferMode.cs: Removed file.
2797         * HttpRequestPriority.cs: Removed file.
2798         * ApplicationShutdownReason.cs:
2799         * SiteMap.cs:
2800         * HttpRuntime.cs:
2801         * HttpApplication.cs: minor class status fixes.
2802
2803 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2804
2805         * VirtualPathUtility.cs: done with all the not implemented methods.
2806
2807 2006-01-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2808
2809         * HttpResponse.cs: use UInt64.Parse for content length. In AppendHeader,
2810         set cache_control through the property to update the cachebility
2811         accordingly. When using the cached headers, don't add again all the
2812         headers to that collection.
2813         * HttpCacheVaryByParams.cs: if there are no params, return null.
2814         Otherwise we get an empty 'Vary' header.
2815
2816 2006-01-25  Chris Toshok  <toshok@ximian.com>
2817
2818         * HttpApplication.cs (Start): wrap InitOnce in a try/catch block,
2819         and if there's a configuration error, output it and end things
2820         immediately.
2821
2822 2006-01-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2823
2824         * HttpRequest.cs: fixed the file path when RewritePath is used. Also
2825         add the PathInfo to the Url. Fixes bug #77291.
2826
2827 2006-01-22  Chris Toshok  <toshok@ximian.com>
2828
2829         * HttpRequest.cs (ReadBoundary): remove two unused variables to
2830         quiet mcs.
2831         (IsBoundary): remove unused method.
2832
2833         * MimeTypes.cs (.cctor): use a 2.0 friendly form of the Hashtable
2834         ctor to silence a warning.
2835
2836         * HttpCacheVaryByHeaders.cs (.ctor): same.
2837
2838         * HttpCacheVaryByParams.cs (.ctor): same.
2839
2840         * StaticSiteMapProvider.cs (UrlToNode): same.
2841
2842 2006-01-22  Konstantin Triger <kostat@mainsoft.com>
2843
2844         * HttpWorkerRequest.cs: ensure case insensitivity in header search.
2845
2846 2006-01-19  Konstantin Triger <kostat@mainsoft.com>
2847
2848         * HttpApplication.jvm.cs: merge HttpApplication.cs changes.
2849
2850 2006-01-17  Chris Toshok  <toshok@ximian.com>
2851
2852         * CapabilitiesLoader.cs (Init): use WebConfigurationManager in the
2853         CONFIGURATION_2_0 case.
2854
2855         * HttpRuntime.cs (MachineConfigurationDirectory): same.
2856
2857 2006-01-16  Chris Toshok  <toshok@ximian.com>
2858
2859         * HttpApplicationFactory.cs: call WebConfigurationManager.Init in
2860         the CONFIGURATION_2_0 case.
2861
2862 2006-01-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2863
2864         * HttpWriter.cs: made Write (char) less memory hungry. Thanks to Mike
2865         Glenn for pointing this out.
2866
2867 2006-01-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2868
2869         * HttpApplicationFactory.cs: fix condition for ContextAvailable.
2870
2871 2006-01-11  Vladimir Krasnov  <vladimirk@mainsoft.com>
2872
2873         * HttpResponse.cs: removed TARGET_JVM block from End
2874         * GetJavaTextReader: Merged TARGET_JVM block from LoadFile
2875         to GetJavaTextReader
2876
2877 2006-01-11  Vladimir Krasnov  <vladimirk@mainsoft.com>
2878
2879         * HttpRequest.cs: removed TARGET_JVM block from MapPath
2880
2881 2006-01-11  Vladimir Krasnov  <vladimirk@mainsoft.com>
2882
2883         * HttpRequest.cs: little fix in MapPath(), virtualPath.Replace
2884         return value wasnt stored.
2885
2886 2006-01-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2887
2888         * HttpResponse.cs: typo in comment.
2889
2890         * HttpApplicationFactory.cs:
2891         * HttpApplication.cs: don't discard the application used for running the
2892         Application_Start event to allow for Redirect/Transfer to be used. Fail
2893         to get the request/response from the application object as MS does (it
2894         can still be retrieved through HttpContext.Current.blah). Fixes
2895         bug #77162.
2896
2897 2006-01-09  Vladimir Krasnov <vladimirk@mainsoft.com>
2898
2899         * CapabilitiesLoader.cs: Merged TARGET_JVM parts in LoadFile
2900         from /main/9
2901         * HttpException.cs: Merged TARGET_JVM parts in GetHtmlizedErrorMessage
2902         from /main/13
2903         * HttpRequest.cs: Merged TARGET_JVM parts in MapPath from /main/29
2904         * HttpResponse.cs: Merged TARGET_JVM parts in End() from /main/30
2905         * StaticFileHandler.cs: Merged TARGET_JVM parts in ProcessRequest
2906         from /main/7
2907
2908 2006-01-08  Konstantin Triger <kostat@mainsoft.com>
2909
2910         * BrowserCapabilities.cs, HttpBrowserCapabilities.cs,
2911         HttpResponseStream.cs: TARGET_JVM changes to let the compilation
2912         pass with csc 1.1.
2913
2914 2006-01-04  Chris Toshok  <toshok@ximian.com>
2915
2916         * HttpContext.cs (IsCustomErrorEnabled): add CONFIGURATION_2_0
2917         code.  use a nasty 'using' hack to map the 2.0 CustomErrorsMode to
2918         the 1.x CustomErrorMode name.
2919         (IsDebuggingEnabled): add CONFIGURATION_2_0 code.
2920         (ConfigTimeout): add CONFIGURATION_2_0 code.
2921
2922         * HttpRequest.cs (MakeInputStream): add CONFIGURATION_2_0 code.
2923
2924         * HttpApplication.cs (RedirectCustomError): add CONFIGURATION_2_0
2925         code.
2926
2927         * SiteMap.c (Init): use
2928         WebConfigurationManager.GetWebApplicationSection.
2929
2930 2005-12-21  Miguel de Icaza  <miguel@novell.com>
2931
2932         * HttpUtility.cs (UrlEncodeUnicode): The generated encoding of
2933         unicode values must be in %XXXX format, not %XX sometimes.
2934
2935 2005-12-08 Robert Jordan  <robertj@gmx.net> 
2936
2937         * MimeTypes.cs: added entry for "jpg".
2938
2939 2005-12-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2940
2941         * HttpRequest.cs: only read up to content-length when provided. Patch
2942         by Peter Teichman.
2943
2944 2005-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2945
2946         * HttpCookie.cs: fixed the set_Secure. Closes bug #76906.
2947
2948 2005-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2949
2950         * HttpResponseStream.cs: flush the filter stream before closing.
2951         Patch by Geir Bergum that fixes bug #76753.
2952
2953 2005-11-28  Chris Toshok  <toshok@ximian.com>
2954
2955         * HttpContext.cs (Profile): remove the #if false from around this,
2956         as we now have the ProfileBase type.
2957         (GetConfig): add CONFIGURATION_2_0 version.
2958         (GetSection): add CONFIGURATION_2_0 version.
2959
2960 2005-11-28  Chris Toshok  <toshok@ximian.com>
2961
2962         * TraceManager.cs (..ctor): CONFIGURATION_2_0 work.
2963
2964         * QueueManager.cs (..ctor): CONFIGURATION_2_0 work.
2965
2966         * HttpRequest.cs (AnonymousID): add 2.0 property.
2967         (MakeInputStream): CONFIGURATION_2_0 work.
2968
2969         * HttpApplication.cs (InitOnce): change around the
2970         CONFIGURATION_2_0 stuff since we need additional Culture foo for
2971         it.
2972
2973 2005-11-27  Chris Toshok  <toshok@ximian.com>
2974
2975         * HttpApplication.cs (InitOnce): add Configuration_2.0 code.
2976         (GetHandler): same.
2977
2978 2005-11-26  Miguel de Icaza  <miguel@novell.com>
2979
2980         * HttpResponseStream.cs: Do not try to write zero bytes.
2981
2982 2005-11-24  Miguel de Icaza  <miguel@novell.com>
2983
2984         * WebROCollection.cs: Do not add an empty "=" to the query string
2985         if the key is empty or null.
2986
2987 2005-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2988
2989         * WebROCollection.cs: override ToString and generate a query string from
2990         the key/value pairs. Fixes bug #76779.
2991
2992 2005-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2993
2994         * HttpServerUtility.cs: prevent possible nullref in GetLastError().
2995
2996 2005-11-07  Jason Diamond  <jason@diamond.name>
2997
2998         * HttpRequest.cs: Don't throw exception when Content-Length doesn't
2999         match length of POSTed data. Also, allow charset parameter on
3000         Content-Type header when type is "application/x-www-form-urlencoded".
3001
3002 2005-11-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3003
3004         * WebROCollection.cs: add an ID for the collection. Page needs it.
3005
3006 2005-11-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3007
3008         * HttpRequest.cs: no need to allocate the buffer when all the content
3009         is preloaded.
3010
3011 2005-11-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3012
3013         * HttpApplication.cs: ignore TAE in ProcesssError. The Error event might
3014         redirect or transfer and that causes a TAE to be thrown. Fixes
3015         bug #76573.
3016
3017 2005-11-01  Chris Toshok  <toshok@ximian.com>
3018
3019         * VirtualPathUtility.cs: new (partial implementation) to get some
3020         MS provider examples compiling.
3021
3022 2005-10-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3023
3024         * HttpContext.cs: added a new internal overload for ClearError.
3025
3026 2005-10-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3027
3028         * HttpRuntime.cs: invoke callbacks on private items in the cache before 
3029         calling disposing the app. factory. This way we get notifications of
3030         removal for all sessions stored in the cache (InProc only).
3031
3032 2005-10-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3033
3034         * HttpResponseStream.cs: reworked buffering so that adjacents blocks are
3035         written at once. Also fix bug #76460.
3036
3037 2005-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3038
3039         * HttpResponseStream.cs: when allocating a chunk larger than the
3040         default chunk size, mark all the blocks as taken. Fixes bug
3041         #76452.
3042
3043 2005-10-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3044
3045         * HttpResponse.cs: use HaveFilter instead of Filter.
3046         * HttpResponseStream.cs: allocate chunks of the requested size
3047         when it's > 32KB. Fixes bug #76460.
3048
3049 2005-10-14  Sebastien Pouliot  <sebastien@ximian.com> 
3050
3051         * ServerVariablesCollection.cs: Added a demand for 
3052         SerializationFormatter on GetObjectData method (even if it's not 
3053         really required in this case as it remove warnings from gendarme.
3054
3055 2005-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3056
3057         * HttpResponse.cs:
3058         * HttpRequest.cs: buglets in error checking in Filter.
3059
3060 2005-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3061
3062         * OutputFilterStream.cs: proxy class for response filters.
3063         * HttpResponse.cs: moved all the actual write operations into the
3064         response stream. Handle response filtering. When caching, get the
3065         actual length of the data, not the buffer length.
3066         * HttpApplication.cs: if there's no error, invoke the filters before
3067         updating the request cache.
3068         * HttpResponseStream.cs: new Filter property. SendChunkSize is moved
3069         here and now supports writing the final chunk. New method ApplyFilter
3070         that filters the existing buckets and replaces them with the filtered
3071         ones. Modified Write to deal with buffering and filtering.
3072
3073 2005-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3074
3075         * HttpResponseStream.cs: allow for writes of more than 32K at once.
3076
3077 2005-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3078
3079         * InputFilterStream.cs proxy stream for use by filters.
3080         * HttpRequest.cs: implement input filtering.
3081
3082 2005-10-02 Eyal Alaluf <eyala@mainsoft.com>
3083         * HttpApplication.jvm.cs - Workaround for use of yield in
3084         HttpApplication.cs HttpRuntime.cs: AppDomain.Unload is not supported
3085         * under TARGET_J2EE
3086
3087 2005-09-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3088
3089         * HttpResponseStream.cs: remove dead code.
3090
3091 2005-09-29  Sebastien Pouliot  <sebastien@ximian.com> 
3092
3093         * HttpClientCertificate.cs: Remove last TODO on IsValid. This now 
3094         works when using XSP. Now use flags to determine valid/presence.
3095
3096 2005-09-26  Chris Toshok  <toshok@ximian.com>
3097
3098         * HttpApplicationFactory.cs (OnAppFileChanged): add null checks
3099         for bin_watcher and app_file_watcher so we don't get NRE's here.
3100
3101 2005-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3102
3103         * BrowserCapabilities.cs: don't rely on the win32 attribute to be there.
3104         Just use the platform to determine whether Win32 is true or not. Fixes
3105         bug #74777.
3106
3107 2005-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3108
3109         * HttpApplication.cs: fixed typo when setting UI culture. Closes bug
3110         #76189.
3111
3112 2005-09-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3113
3114         * HttpRequest.cs: new SetFilePath() that does not conflict with
3115         SetCurrentExePath. Now when transfering from a page to another,
3116         CurrentExecutionFilePath and FilePath are correct.
3117
3118 2005-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3119
3120         * TraceContext.cs: add new method to store size of controls.
3121         * TraceData.cs: render control size.
3122         * HttpResponse.cs: new internal method to get the number of bytes of
3123         buffered output.
3124         * HttpResponseStream.cs: added Length property to the Buckets and new
3125         GetTotalLength.
3126
3127 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3128
3129         * TraceData.cs: we have to change the method of getting a control render
3130         size. MS does not do this or otherwise would run into the same bug
3131         (#76051) that this patch fixes. This is temporarily setting the size
3132         to 0.
3133
3134 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3135
3136         * HttpResponseStream.cs: implemented Send(stream) for files. Fixes bug
3137         #76145.
3138
3139 2005-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3140
3141         * HttpRuntime.cs: catch errors when compiling global.asax and
3142         initializing the application. Fixes bug #76090.
3143
3144 2005-09-14  Sebastien Pouliot  <sebastien@ximian.com> 
3145  
3146         * BrowserCapabilities.cs: Fixed changes (in 2.0) with versions. Fixed
3147         compare with "True" (culture and case sensitivity).
3148         * HttpApplicationState.cs: Added LinkDemand for Minimal. Use the 
3149         internal HttpStaticObjectsCollection ctor to avoid the UnmanagedCode
3150         demand.
3151         * HttpContext.cs: Added LinkDemand for Minimal. Added 2.0 properties
3152         and methods to test CAS on them.
3153         * HttpRequest.cs: Added LinkDemand for Minimal. Ensure we return 
3154         proper values when worker_request is null.
3155         * HttpResponse.cs: Added LinkDemand for Minimal. Ensure we return 
3156         proper values when context or WorkerRequest is null. Added 2.0 
3157         properties and methods to test CAS on them.
3158         * HttpRuntime.cs: Added LinkDemand for Minimal. Added PathDiscovery 
3159         demands for properties returning directories. Added demand for High 
3160         level on AppDomainAppId and AppDomainId properties, Low level on 
3161         IsOnUNCShare, Medium level on ProcessRequest and a demand for 
3162         UnmanagedCode on UnloadAppDomain method. Constructor also has a 
3163         UnmanagedCode demand for 1.x.
3164         * HttpStaticObjectsCollection.cs: Added LinkDemand for Minimal. Added
3165         a UnmanagedCode demand to public ctor. Added internal ctor without the
3166         demand. Changed Serialize and Deserialize methods to public for 2.0.
3167
3168 2005-09-14  Sebastien Pouliot  <sebastien@ximian.com>
3169
3170         * HttpWorkerRequest.cs: Removed TODO for 2.0 APIs and return the 
3171         default values for them.
3172
3173 2005-09-13  Sebastien Pouliot  <sebastien@ximian.com>
3174
3175         * HttpApplication.cs: : Added LinkDemand and InheritanceDemand (class)
3176         for Minimal. Changed AssemblyLocation to a property (so it doesn't 
3177         require special permission, PathDiscovery) to create an instance. 
3178         Protected Modules property with a Demand for High level. Added some 
3179         missing HttpException for null context.
3180         * HttpServerUtility.cs: Added LinkDemand for Minimal. Added demands 
3181         for UnmanagedCode on all CreateObject* methods. Added demand for 
3182         Medium level on MachineName and ScriptTimeout properties. Added new
3183         overloaded Transfer method (2.0) to test CAS on it.
3184         * HttpUtility.cs: Added LinkDemand for Minimal. Added [Obsolete] to 
3185         ctor (2.0). Changed some return values when 'count' is 0. Added 
3186         ParseQueryString (overload) methods for 2.0 (to enabled CAS testing on
3187         them).
3188         * HttpWorkerRequest.cs: Added LinkDemand and InheritanceDemand (class)
3189         for Minimal. Added RequestTraceIdentifier and RootWebConfigPath (2.0) 
3190         properties, GetPreloadedEntityBody, GetPreloadedEntityBodyLength, 
3191         GetTotalEntityBodyLength and ReadEntityBody (2.0) methods to test CAS 
3192         on them. Fixed SendResponseFromMemory to ignore IntPtr.Zero (used in 
3193         tests without failures).
3194         * ServerVariablesCollection.cs: Fixed loadServerVariablesCollection 
3195         when HttpWorkerRequest is null.
3196         * TraceContext.cs: Added LinkDemand for Minimal. Fixed default Mode 
3197         (SortByTime). Added new (2.0) TraceFinished event to test CAS on it.
3198
3199 2005-09-13  Sebastien Pouliot  <sebastien@ximian.com> 
3200  
3201         * HttpBrowserCapabilities.cs: Added LinkDemand and InheritanceDemand 
3202         (class) for Minimal. Note that current MCS has problem compiling 
3203         security attributes on partial class (bug #75969).
3204         * HttpCachePolicy.cs: Added LinkDemand for Minimal. Added 2.0 methods
3205         (stub) to enable CAS tests on them.
3206         * HttpCacheVaryByHeaders.cs: Added LinkDemand for Minimal.
3207         * HttpCacheVaryByParams.cs: Added LinkDemand for Minimal.
3208         * HttpClientCertificate.cs: Added LinkDemand and InheritanceDemand 
3209         (class) for Minimal.
3210         * HttpCookie.cs: Added LinkDemand for Minimal.
3211         * HttpCookieCollection.cs: Added LinkDemand for Minimal.
3212         * HttpFileCollection.cs: Added LinkDemand for Minimal.
3213         * HttpModuleCollection.cs: Added LinkDemand for Minimal.
3214         * HttpPostedFile.cs: Added LinkDemand for Minimal.
3215         * HttpRequestPriority.cs: Fix enum values.
3216         * HttpWriter.cs: Added LinkDemand for Minimal.
3217
3218 2005-09-13  Sebastien Pouliot  <sebastien@ximian.com>
3219
3220         * ProcessInfo.cs: Added LinkDemand and InheritanceDemand (class) for
3221         Minimal.
3222         * ProcessModelInfo.cs: Added LinkDemand and InheritanceDemand (class)
3223         for Minimal. Methods GetCurrentProcessInfo and GetHistory are also
3224         protected by Demand for High level.
3225
3226 2005-09-13  Sebastien Pouliot  <sebastien@ximian.com> 
3227  
3228         * HttpCompileException.cs: Added new public ctors and [Serializable]
3229         to 2.0. Added new Message property and GetObjectData (protected by a
3230         demand for SerializationFormatter) for 2.0. Fixed line-ending.
3231         * HttpException.cs: Added LinkDemand and InheritanceDemand (class) for
3232         Minimal. Renamed parameters to match documentation.
3233         * HttpParseException.cs: Added LinkDemand (class) for Minimal. Added
3234         demand for SerializationFormatter on GetObjectData method. Fixed 
3235         line-ending.
3236         * HttpRequestValidationException.cs: Added new public ctors and 
3237         [Serializable] to 2.0. Added LinkDemand for Minimal.
3238         * HttpUnhandledException.cs: Added new public ctors and [Serializable]
3239         to 2.0. Removed unused internal ctor. Added LinkDemand for Minimal.
3240         Fixed line-ending.
3241
3242 2005-09-13  Sebastien Pouliot  <sebastien@ximian.com>
3243
3244         * HttpResponseSubstitutionCallback.cs: New. 2.0 delegate.
3245         * TraceContextEventArgs.cs: New. 2.0 class.
3246         * TraceContextEventHandler.cs: New. 2.0 delegate.
3247
3248 2005-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3249
3250         * HttpRequest.cs: use GetServerName instead of GetLocalAddress when
3251         building the Url.
3252
3253 2005-09-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3254
3255         * HttpRequest.cs: fix the indexer.
3256
3257 2005-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3258
3259         * HttpPostedFile.cs: fixes in Seek and Position.
3260
3261 2005-09-08  Sebastien Pouliot  <sebastien@ximian.com>
3262
3263         * HttpRequest.cs: Make sure the MemoryStream created have their 
3264         contents marked as public - or else you can't call GetBuffer on them!
3265
3266 2005-09-08  Miguel de Icaza  <miguel@novell.com>
3267
3268         * HttpRequest.cs: Patch from Juraj Skripsky <js@hotfeet.ch> that
3269         fixes UrlReferrer. 
3270
3271 2005-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3272
3273         * HttpPostedFile.cs: Make this class actually work. Every time we read,
3274         we have to position the underlying stream.
3275
3276 2005-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3277
3278         * HttpRequest.cs: reading multipart/form-data works again.
3279
3280 2005-09-08 Eyal Alaluf <eyala@mainsoft.com>
3281         * HttpRequest.cs: Under TARGET_JVM the input stream must allow GetBuffer.
3282
3283 2005-09-08 Eyal Alaluf <eyala@mainsoft.com>
3284         * HttpApplicationFactory.cs: TARGET_J2EE/JVM fix.
3285
3286 2005-09-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3287
3288         * HttpRequest.cs: correctly detect multipart/form-data.
3289
3290 2005-09-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3291
3292         * HttpApplicationFactory.cs: recycle after invoking session_end.
3293
3294 2005-09-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3295
3296         * HttpRuntime.cs: remove Console.
3297
3298         * HttpApplicationFactory.cs: don't hook Session_End, but keep
3299         the MethodInfo around for later invocation if needed. Don't call
3300         GetMethods() for every HttpApplication (or derived class) instances.
3301         Added a method, used by SessionStateModule, that will create use an
3302         application without context to invoke Session_End. Keep a pool of
3303         applications that are meant to be used by this method only.
3304
3305         * HttpApplication.cs: add a SetSession method and do not
3306         attach all the events if the application is for Session_End only.
3307
3308 2005-09-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3309
3310         * HttpRuntime.cs: actually unload the domain when requested. Reformatted
3311         FinishUnavailable() and removed the 'Location' header form the error.
3312
3313         * HttpApplicationFactory.cs: set up the watcher for the bin directory.
3314         This also prevents a nullref when global.asax is changed.
3315
3316 2005-09-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3317
3318         * HttpApplication.cs: fixed bug introduced when moving GetHandler call
3319         around. Now we get error pages again.
3320
3321 2005-09-06  Miguel de Icaza  <miguel@novell.com>
3322
3323         * HttpApplication.cs: Catch EndRequest errors as well.
3324
3325 2005-09-05  Miguel de Icaza  <miguel@novell.com>
3326
3327         * HttpApplication.cs: Invoke EndRequest handler before OutputPage
3328         as FormsAuthentication will issue a Redirect from the EndRequest 
3329         handler. 
3330
3331 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3332
3333         * HttpApplication.cs: when writing an error message, catch the possible
3334         write error.
3335
3336 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3337
3338         * HttpResponseStream.cs: prevent invalid cast exception if the first
3339         thing written is a file.
3340
3341 2005-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3342
3343         * HttpApplication.cs: fix invalid cast exception (bug #75926).
3344
3345 2005-09-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3346
3347         * HttpApplicationFactory.cs: only trigger the Application_Start event
3348         once. It was being invoked more than once when several clients were
3349         hitting the server at the same time on startup.
3350
3351 2005-09-01 Eyal Alaluf <eyala@mainsoft.com>
3352
3353         * HttpContext.cs HttpResponse.cs HttpWorkerRequest.cs HttpRuntime.cs
3354           HttpApplicationFactory.cs HttpApplication.cs: TARGET_J2EE/JVM fixes.
3355           Mostly workaround limited AppModel in TARGET_J2EE.
3356
3357 2005-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3358
3359         * HttpResponse.cs: if the request method is HEAD, that's equivalent to
3360         SuppressContent. Added an internal TransmitFile that allows setting the
3361         final_flush flag.
3362         * StaticFileHandler.cs: use the new internal TransmitFile and remove
3363         generation of Content-Length header, as now it's computed correctly.
3364         * HttpApplication.cs: remove debugging stuff.
3365         * HttpResponseStream.cs: suppress_content is checked in HttpResponse.
3366
3367 2005-08-31  Miguel de Icaza  <miguel@novell.com>
3368
3369         Removed debugging info.
3370         
3371         * HttpApplication.cs: Add support for async handlers. 
3372
3373         Add extra 2.x methods. 
3374
3375 2005-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3376
3377         * BrowserCapabilities.cs: removed extra 'using'.
3378
3379         * HttpApplication.cs: use just the 'modcoll' to hold the collection of
3380         modules instead of having a separate 'modules' one.
3381
3382 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3383
3384         * HttpApplication.cs: clone the module collection so that
3385         it's not shared between HttpApplications. Call GetHandler() in the
3386         right place.
3387
3388 2005-08-30  Miguel de Icaza  <miguel@novell.com>
3389
3390         * HttpApplication.cs: Add the new 2.x method overloads that take a
3391         data object.
3392
3393         (RunHooks): Pass the extra data instead of null.
3394
3395         * HttpCookie.cs (HttpOnly): Add 2.x cookie header.
3396
3397         * BrowserCapabilities.cs: Move the core of the capabilities into a
3398         separate file.  Use partial classes to choose what version to
3399         compile against.
3400
3401         * HttpBrowserCapabilities.cs: Update to move the code elsewhere.
3402
3403 2005-08-30 Eyal Alaluf <eyala@mainsoft.com>
3404
3405         * HttpResponseStream.cs: Fix a bug introduced by last fix (thanks to
3406         Ben)
3407
3408 2005-08-30 Eyal Alaluf <eyala@mainsoft.com>
3409
3410         * HttpResponseStream.cs: Compilation fixes for TARGET_JVM. TARGET_JVM
3411         does not support unsafe code. I localized all unsafe code within Chunk
3412         & Block and created a managed version of Chunk.
3413
3414 2005-08-30 Eyal Alaluf <eyala@mainsoft.com>
3415         * HttpApplicationFactory.cs: Compilation fixes for TARGET_J2EE. Under
3416         TARGET_J2EE static fields are shared by all app domains. We handle
3417         this difference by explicitly getting/setting values from the app
3418         domain.  Since HttpApplicationFactory has many static fields, I
3419         refactored it to have one static instance and moved the static fields
3420         into instance fields.
3421
3422 2005-08-29 Eyal Alaluf <eyala@mainsoft.com>
3423
3424         * HttpRequest.cs: Disable use of IntPtrStream for TARGET_JVM
3425
3426 2005-08-29 Eyal Alaluf <eyala@mainsoft.com>
3427
3428         * HttpContext.cs: Compilation fixes for TARGET_J2EE/JVM
3429
3430 2005-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3431
3432         * HttpResponse.cs: don't duplicate the 'charset=' and don't send a
3433         charset for unknown MIME types.
3434         * StaticFileHandler.cs: set the Content-Length header here.
3435         * HttpRequest.cs: prevent nullrefs when we have no 'charset='.
3436
3437 2005-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3438
3439         * StaticFileHandler.cs: use TransmitFile instead of WriteFile. This way
3440         xsp will use sendfile().
3441
3442 2005-08-28  Chris Toshok  <toshok@ximian.com>
3443
3444         * SiteMapNode.cs: fix IHierarchyData.GetParent.
3445
3446 2005-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3447
3448         * HttpRequest.cs:
3449         * IntPtrStream.cs: now we only have a read-only MemoryStream or an
3450         IntPtrStream. The copy is moved into HttpRequest.
3451
3452 2005-08-26  Sebastien Pouliot  <sebastien@ximian.com>
3453
3454         * WebCategoryAttribute.cs: New. Required internal attribute.
3455         * WebSysDescriptionAttribute.cs: New. Required internal attribute.
3456
3457 2005-08-26  Jackson Harper  <jackson@ximian.com>
3458
3459         * HttpResponseStream.cs: Use GetBuffer so the memory isn't
3460         duplicated.
3461
3462 2005-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3463
3464         * HttpApplication.cs: GetHandler might return null when, for example,
3465         a web service fails, but that does not mean that returning a null
3466         handler should throw another exception, as the web service code
3467         serialized the error as a faultString. So if the handler is null, just
3468         don't call ProcessRequest and keep going.
3469
3470 2005-08-26  Jackson Harper  <jackson@ximian.com>
3471
3472         * HttpResponse.cs: Send the cached headers if this is a cached
3473         response. Save the headers, date header, and page data. Fix a typo.
3474         * HttpResponseStream.cs: Add new accesor to get a byte [] of the
3475         page data.
3476
3477 2005-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3478
3479         * HttpWorkerRequest.cs: SetEndOfSendNotification is a noop. No matter
3480         what callback you use that never gets called. In XSP I actually
3481         implement something for this method.
3482         * HttpServerUtility.cs: unused variable.
3483
3484 2005-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3485
3486         * HttpInputStream.cs: new ctor that takes a byte [].
3487         * IntPtrStream.cs: make it work on a byte [] too.
3488
3489         * HttpRequest.cs:
3490         (ContentLength): return 0 for negative numbers or error parsing, but
3491         keep content_length negative in those cases.
3492         (MakeInputStream): when there's no content-length (or it's negative),
3493         we still read the request into a MemoryStream. Use
3494         IsEntireEntityIsPreloaded() as a fast path.
3495
3496 2005-08-25  Sebastien Pouliot  <sebastien@ximian.com>
3497
3498         * HttpClientCertificate.cs: On 1.x the .ctor throws a 
3499         ArgumentNullException (but 2.0 throws a NRE).
3500
3501 2005-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3502
3503         * HttpRequest.cs: HttpMethod deserves its own field. Fix IsLocal.
3504
3505 2005-08-25  Chris Toshok  <toshok@ximian.com>
3506
3507         * HttpApplication.cs (IsReusable): return true.
3508         (InitOnce): remove the initialization of handler_factory from
3509         here.
3510         (GetHandler) and move it here, so we make sure to load handlers
3511         from all needed web.config files.
3512
3513 2005-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3514
3515         * HttpServerUtility.cs: use GetHandler().
3516         * HttpApplication.cs: remove obsolete method. Now Transfe/Execute work.
3517
3518 2005-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3519
3520         * HttpApplication.cs: no need for the local var. here.
3521
3522 2005-08-25  Chris Toshok  <toshok@ximian.com>
3523
3524         * HttpApplication.cs (InitOnce): move the initialization of
3525         modules above the call to HttpApplicationFactory.AttachEvents,
3526         since that method accesses HttpApplication.Modules.  Fixes
3527         nGallery.
3528         (IsReusable): mark TODO.
3529
3530 2005-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3531
3532         * HttpResponseHeader.cs: removed obsolete class.
3533         * HttpResponse.cs: no more 'obsolete' warnings.
3534
3535 2005-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3536
3537         * HttpRuntime.cs: implemeted some missing properties.
3538
3539 2005-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3540
3541         * HttpResponse.cs: implemented RemoveOutputCacheItem().
3542
3543 2005-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3544
3545         * HttpApplication.cs: implemented GetVaryByCustomString().
3546
3547 2005-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3548
3549         * HttpRequest.cs: implemented SetHeader (allows adding a header
3550         circumventing the read-only protection of the collection) and SetForm,
3551         which just assigns a value of the 'form' collection.
3552         * HttpServerUtility.cs: NameValueCollection -> WebROCollection.
3553
3554 2005-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3555
3556         * HttpContext.cs:
3557         * HttpRequest.cs: implemented RewritePath and supporting methods.
3558
3559 2005-08-22  Sebastien Pouliot  <sebastien@ximian.com>
3560
3561         * HttpRequest.cs: Avoid NRE if work_request if null in the ctor.
3562         * HttpResponse.cs: Avoid NRE if work_request if null in the ctor.
3563
3564 2005-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3565
3566         * HttpApplication.cs: if there's any exception thrown when getting the
3567         handler, don't add an extra error to the context, as we already have
3568         one.
3569
3570 2005-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3571
3572         * HttpWriter.cs:
3573         * HttpResponse.cs:
3574         * HttpWorkerRequest.cs:
3575         * HttpApplication.cs: added mising attributes and enabled methods
3576         present in 1.1 SP1.
3577
3578 2005-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3579
3580         * WebROCollection.cs: a collection that allows setting IsReadOnly.
3581         * HttpRequest.cs: implemented MapImageCoordinates(). Use WebROCollection
3582         instead of a NameValueCollection in Form, Headers, Params, QueryString.
3583
3584 2005-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3585
3586         * HttpInputStream.cs: new copy ctor.
3587         * IntPtrStream.cs: getters for base_address and size.
3588         * HttpRequest.cs: implemented SaveAs(). Use a wrapper on top of
3589         InputStream so that reading POST form or files does not modify the state
3590         if InputStream. Don't use uri_builder.Query in QueryStringRaw, as it
3591         returns the '?'.
3592
3593 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3594
3595         * HttpRequest.cs: implemented UserLanguages and reuse code from
3596         AcceptTypes.
3597
3598 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3599
3600         * HttpRequest.cs: implemented AcceptTypes.
3601
3602 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3603
3604         * HttpRequest.cs: implemented this[] in terms of Params. Don't add the
3605         header collection in Params.
3606
3607 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3608
3609         * HttpRequest.cs: fix Files property.
3610         * HttpApplication.cs: invoke the default authentication event after all 
3611         the other auth. modules.
3612
3613 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3614
3615         * ServerVariablesCollection.cs: mark the collection as read-only except
3616         when we fill it. Add the HTTP_blah key/value pairs too.
3617
3618 2005-08-18  Chris Toshok  <toshok@ximian.com>
3619
3620         * HttpRequest.cs (get_Params): implement.
3621
3622 2005-08-17  Chris Toshok  <toshok@ximian.com>
3623
3624         * HttpResponse.cs: HttpResponse's Cookie's collection acts
3625         differently than HttpRequests in that it never returns null from
3626         the "this [string]" accessor.
3627
3628 2005-08-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3629
3630         * HttpRequest.cs: check length 0 case when reading a POST.
3631
3632 2005-08-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3633
3634         * HttpContext.cs: added security attributes for User and
3635         SkipAuthorization properties.
3636         * HttpApplicationFactory.cs: AttachEvents is now called form the
3637         application .ctor. Recycle instead of dispose.
3638         * HttpApplication.cs: attach events to the newly created application.
3639
3640 2005-08-15  Jackson Harper  <jackson@ximian.com>
3641
3642         * ApplicationShutdownReason.cs: make build
3643
3644 2005-08-15  Miguel de Icaza  <miguel@novell.com>
3645
3646         * HttpApplication.cs: Update comments
3647
3648         * HttpPostedFile.cs: Use a substream to read from the uploaded
3649         multiparts. 
3650
3651         * HttpRequest.cs: use new code to read the uploaded files.
3652
3653 2005-08-12  Miguel de Icaza  <miguel@novell.com>
3654
3655         2.x API fixage and small additions:
3656         
3657         * HttpResponse.cs: Make constructor internal.
3658
3659         * HttpRequest.cs (IsLocal): Expose if NET_2.x
3660
3661         * HttpContext.cs: Remove internal routine.
3662
3663         * HttpApplication.cs: Add 2.x events. 
3664
3665         * HttpRequest.cs: Another iFolder issue: I was not setting up the
3666         uri_builder here.
3667
3668         Fixes to get iFolder to work:
3669         
3670         * HttpApplicationFactory.cs: Set the context when we are initting
3671         the application.
3672
3673         * HttpApplication.cs (SetContext): helper routine. 
3674
3675         * HttpResponse.cs: Implement the various cache operations:n
3676         Expires, ExpiresAbsolute, CacheControl.
3677
3678         Actually produce the Cache-Control header, the "Cache" property
3679         takes precedence over the compatibility settings (Expires,
3680         ExpiresAbsolutely and CacheControl). 
3681
3682         * HttpCachePolicy.cs: Fix style.
3683
3684         Fix the generation of the headers, use lower-case values, do not
3685         add the max-value if the value is zero.  
3686
3687         Allow for all possible values in SetCacheability. 
3688
3689         * HttpRuntime.cs (ClrInstallDirectory): Implement.
3690
3691         * HttpResponseStream.cs: Remove debugging stuff. 
3692
3693 2005-08-11  Miguel de Icaza  <miguel@novell.com>
3694
3695         Big chunked handling rewrite, and integration of Ben's unmanaged
3696         output stream.
3697
3698         * HttpWriter.cs: Delegate chunked encoding writing to the
3699         HttpResponse. 
3700
3701         * HttpResponse.cs: Rework the chunked encoding system, centralize
3702         it all. 
3703
3704         * HttpResponseStream.cs: Deploy Ben's bucket-base unmanaged
3705         buffers code. 
3706
3707         Changed the way that we handle chunked encoding, centralize it
3708         all;  
3709
3710         Remove a lot of manual handling of buffering turned off, and
3711         instead delegate it all to Flush, fixes several issues with the
3712         new framework.
3713
3714         * HttpWorkerRequest.cs (SendResponseFromMemory (IntPtr, int)):
3715         Provide a default implementation since currently XSP does not have
3716         this method implemented. 
3717
3718 2005-08-11  Sebastien Pouliot  <sebastien@ximian.com> 
3719  
3720         * HttpClientCertificate.cs: Culture insensitive int parsing. Fixed
3721         NET_2_0 build.
3722
3723 2005-08-10  Miguel de Icaza  <miguel@novell.com>
3724
3725         * ServerVariablesCollection.cs: For Ben.  Implement the header
3726         fetching here, do not implement it in HttpRequest.cs.
3727
3728 2005-08-10  Sebastien Pouliot  <sebastien@ximian.com> 
3729  
3730         * HttpClientCertificate.cs: Changed IsPresent logic so that new unit
3731         tests will work as expected.
3732
3733 2005-08-10  Sebastien Pouliot  <sebastien@ximian.com>
3734
3735         * HttpClientCertificate.cs: Implemented, except for validation. Note 
3736         that the HttpWorkerRequest derived classes must be updated to supply 
3737         the required informations.
3738         * HttpRequest.cs: Create an HttpClientCertificate on first call to
3739         ClientCertificate.
3740
3741 2005-08-09  Miguel de Icaza  <miguel@novell.com>
3742
3743         * HttpRuntime.cs (AspInstallDirectory): Implement.
3744
3745 2005-08-09  Sebastien Pouliot  <sebastien@ximian.com>
3746
3747         * HttpClientCertificate.cs: New. Stub. It won't be fun to test.
3748
3749 2005-08-04  Ben Maurer  <bmaurer@ximian.com>
3750
3751         * HttpContext.cs: Kill a NIE.
3752
3753 2005-08-04  Miguel de Icaza  <miguel@novell.com>
3754
3755         * HttpApplicationFactory.cs: Change "Start" event like the "End"
3756         event, and only do this once, when we init the type.
3757
3758         Fire the "Application_Start" event after we create the type.
3759
3760 2005-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3761
3762         * HttpApplication.cs: catch a ThreadAbort (coming from Response.End)
3763         here too.
3764
3765 2005-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3766
3767         * HttpResponse.cs: setting the Status property resets the
3768         StatusDescription (see the tests) and the default value for the
3769         description is the one provided by GetStatusDescription() in
3770         HttpWorkerRequest.
3771
3772 2005-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3773
3774         * HttpRequest.cs: s/boundry/boundary/ and fix typo in array creation.
3775
3776 2005-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3777
3778         * HttpApplication.cs: add call to EndOfRequest when everything is said
3779         and done.
3780
3781 2005-08-02  Miguel de Icaza  <miguel@novell.com>
3782
3783         * HttpResponse.cs: Stub for TransmitFile.
3784
3785         * HttpRequest.cs (IsAuthenticated): Implement.
3786
3787 2005-08-01  Miguel de Icaza  <miguel@novell.com>
3788
3789         * HttpRequest.cs: Cope with implementations of HttpWorkerRequest
3790         (unpatched xsp) that do not send back the PreloadedEntityBody. 
3791
3792         * HttpApplication.cs: keep track of the factory. 
3793         (Dispose): Only dispose once, clean up other variables, release
3794         the ManualResetEvent.
3795         Release the handler to the factory.
3796
3797         * HttpApplicationFactory.cs: Implement a stack to reuse the
3798         applications. 
3799
3800         * HttpRequest.cs: On uploads, if the ContentLenght is zero, throw
3801         a 411.
3802
3803         * HttpRuntime.cs: Recycle the application after using it.
3804
3805         * HttpPostedFile.cs: Implement SaveAs.
3806
3807         * HttpContext.cs: Return the "Server" property.
3808
3809 2005-08-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3810
3811         * HttpServerUtility.cs: implemented missing bits.
3812
3813 2005-08-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3814
3815         * HttpRequest.cs: query string was getting a '?' as the start of the
3816         first variable name. This makes the asmx help page work again.
3817
3818 2005-08-01  Miguel de Icaza  <miguel@novell.com>
3819
3820         * HttpRequest.cs (Cookies, Forms): Add validation.
3821         (Forms): Add application/x-www-form-urlencoded parsing and
3822         multipart/form-data parsing.
3823         
3824         (HttpMultiPart): Implement new class to load multi-part data from
3825         a stream since there is no longer a byte [] that holds the data
3826         (currently we have an unmanaged IntPtr buffer wrapped as a
3827         stream).  Also the 2.x framework will add support for large
3828         uploads which are sent directly to disk, which will require the
3829         FileStream interface. 
3830         
3831         (Path, PathInfo): Fill a couple more methods to avoid crashes.
3832
3833         * HttpContext.cs: Fill another one to get web services summary
3834         page painting.  The page does not work though.
3835         
3836         * HttpApplication.cs: Rework the pipeline to not depend on
3837         `finally', as `finally' would not be invoked if we choose not to
3838         call the pipeline again (which happens if the `stop' variable is
3839         set). 
3840
3841         Instead force the pipeline to go to the shutdown, and yield from
3842         there after all the release-state callbacks have been invoked. 
3843
3844 2005-07-31  Miguel de Icaza  <miguel@novell.com>
3845
3846         * HttpApplication.cs: Remove debugging messages since the compiler
3847         bug has been fixed.
3848
3849         You must use at least mcs from revision 47879 for the application
3850         pipeline to work. 
3851
3852 2005-07-30  Miguel de Icaza  <miguel@novell.com>
3853
3854         * HttpContext.cs: Error handling methods.
3855
3856         * HttpResponse.cs: Trigger the last event.
3857
3858         * HttpRuntime.cs: Add queueing of the next request. 
3859
3860         * HttpApplication.cs: Deploy the new yield-based application
3861         pipeline, add error handling to the pipeline.
3862         
3863         * HttpApplication.cs (AsyncRequestState): Just use the done event
3864         from the parent.
3865
3866 2005-07-29  Miguel de Icaza  <miguel@novell.com>
3867
3868         * HttpResponseStream.cs, HttpRequest.cs: Fix bugs found by nunit.
3869
3870         * HttpApplication.cs: Fix a race condition. 
3871
3872         * HttpResponseStream.cs: Fix bug, send the size of the buffer that
3873         we have so far instead of the internal size of the buffer.   This
3874         will need work later to ensure we enforce the Content-Length
3875         maximum output size if set.
3876
3877         * ServerVariablesCollection.cs: This class now inherits from
3878         NameValueCollection, we should probably review what the middle
3879         class did, there are no dependencies on it.
3880
3881         I need to write tests to investigate if something is missing or
3882         has changed in this implementation. 
3883
3884 2005-07-27  Miguel de Icaza  <miguel@novell.com>
3885
3886         * HttpRequest.cs: No happy replies here, send a 411.
3887
3888 2005-07-27  Chris Toshok  <toshok@ximian.com>
3889
3890         * HttpResponseHeader.cs: remove spew.
3891         
3892 2005-07-27  Chris Toshok  <toshok@ximian.com>
3893
3894         * HttpResponseHeader.cs (HttpResponseHandler..ctor): use
3895         HttpWorkerRequest.GetKnownResponseHeaderName instead of
3896         GetKnownRequestHeaderName.  Fixes Response.Redirect until miguel's
3897         new HttpReponse is online.
3898
3899 2005-07-26  Miguel de Icaza  <miguel@novell.com>
3900
3901         * HttpResponse.cs: use_chunked is now a byte-array, if not null,
3902         we use it to hold the size of the chunked so we do not have to
3903         allocate many of these. 
3904         (SendSize): Helper routine to send the chunked headers.
3905         (BinaryWrite): First user of the chunked writer.
3906
3907         * HttpApplication.cs: Do not crash if they request a Server
3908         instance, but throw a NotImplementedException.
3909
3910         * HttpRequest.cs: fix a few problems exposed by the regression
3911         test suite.
3912
3913         * HttpRequest.cs (Cookies): use Chris' new constructor to get the
3914         cookies parsed.
3915
3916         : The big Uri rework: instead of using QueryString
3917         as the population mechanism, populate an UriBuilder from the
3918         various HttpWorkerRequest methods.
3919
3920         * HttpWorkerRequest.cs (GetProtocol): Implement in terms of
3921         IsSecure().
3922
3923         * HttpResponse.cs: Pointed by Ben, Write (null) is a nop instead
3924         of a crash.
3925
3926         * HttpContext.cs: Add a couple of properties to help the 2.x
3927         build.
3928         
3929         * HttpResponse.cs: Make ContentLength a long, add back support for
3930         session's app_path_mod.
3931         (ApplyAppPathmodifier): put back.
3932         (End): Pass a flag to abort so we can tell the exceptions appart
3933         in HttpApplication.
3934         (WriteHeaders): Send the HTTP status.
3935         (Redirect): Implement.
3936         (Write): Use the Output property to load writer when needed.
3937         
3938         * HttpRequest.cs (ctor): Temporary use of InitFromWR, will fix
3939         later. 
3940         (MakeInputStream): check content-length size, use routines to load
3941         the preloaded data, handle incomplete transfers.
3942         (Query): Do not insert null keys into the collection.
3943         (Url): implement.
3944         (UrlReferer): implement.
3945
3946         * HttpApplication.cs (RunHooks): Catch Thread.Abort, and call
3947         Thread.ResetAbort after each step.
3948
3949         Ensure that ReleaseState is called if we ever succeed in acquiring
3950         the state even if we have stopped the request pipeline.
3951
3952         Report file not found, directory not found.
3953
3954 2005-07-25  Miguel de Icaza  <miguel@novell.com>
3955
3956         * HttpCookieCollection.cs: Add expiration of the cookie. 
3957
3958         * HttpRequest.cs: Add check for ContentLength, use
3959         GetPreloadedEntityBody, correct number of bytes uploaded.
3960
3961 2005-07-21  Miguel de Icaza  <miguel@novell.com>
3962
3963         * HttpResponseHeader.cs: Our implementation of HttpResponse only
3964         uses the text headers, does not use any constants as XSP would go
3965         through a slower code path anyways.
3966
3967 2005-07-21  Chris Toshok  <toshok@ximian.com>
3968
3969         * HttpBrowserCapabilities.cs: enable support for the W3CDomVersion
3970         and EcmaScriptVersion properties.
3971
3972 2005-07-21  Chris Toshok  <toshok@ximian.com>
3973
3974         * HttpResponseHeader.cs: hi, i'm stupid and missed String.Replace.
3975         
3976 2005-07-21  Chris Toshok  <toshok@ximian.com>
3977
3978         * HttpResponseHeader.cs: url encode just \r and \n if they're
3979         present in the value.
3980
3981 2005-07-20  Chris Toshok  <toshok@ximian.com>
3982
3983         * HttpPostedFile.cs: add missing ContentLength property.
3984
3985 2005-07-20  Chris Toshok  <toshok@ximian.com>
3986
3987         * HttpCookieCollection.cs: add a new ctor that takes a string (the
3988         contents of the Cookies: header).
3989
3990 2005-07-20  Chris Toshok  <toshok@ximian.com>
3991
3992         * HttpCookieCollection.cs: add another ctor (internal, but not
3993         obsolete, so we aren't passing a stupid HttpResponse in in order
3994         to change the behavior of the collection.)
3995
3996         * HttpCookie.cs: init this.values in the internal ctor.
3997
3998 2005-07-20  Chris Toshok  <toshok@ximian.com>
3999
4000         * HttpCookieCollection.cs: use "auto-fill mode" when we're dealing
4001         with an HttpResponse's cookie collection.  That is, create the
4002         cookie if the consumer looks it up.
4003
4004 2005-07-20  Miguel de Icaza  <miguel@novell.com>
4005
4006         * HttpApplication.cs: Ongoing work on pipeline, I will need to
4007         redo this later.
4008
4009 2005-07-19  Miguel de Icaza  <miguel@novell.com>
4010
4011         * HttpContext.cs (GetService): Implement.  Return all of the
4012         properties that we have access to.  Make HttpWorkerRequest the
4013         first match as this is the only likely reason people need to use
4014         this. 
4015
4016         * IntPtrStream.cs: Bring from corlib.
4017
4018         * MultiPartContentParser.cs: use a MemoryStream as HttpInputStream
4019         will now be using IntPtrStream. 
4020
4021         * HttpRequest.cs (MakeInputStream): move code that loads the
4022         request here
4023         (CloseInputStream): Helper method that we will call later to
4024         ensure that we dispose properly the malloced() block. 
4025         (BinaryRead): Implemented.
4026
4027         * HttpInputStream.cs: Rewrite to be a descendant of
4028         IntPtrStream.cs 
4029
4030 2005-07-18  Miguel de Icaza  <miguel@novell.com>
4031
4032         * HttpApplication.cs (Modules): Add modules support and
4033         AsyncResult.
4034
4035 2005-07-18  Chris Toshok  <toshok@ximian.com>
4036
4037         * HttpResponseHeader.cs: initial implementation.
4038
4039 2005-07-18  Chris Toshok  <toshok@ximian.com>
4040
4041         * HttpModuleCollection.cs (HttpModuleCollection.GetKey): add
4042         missing method.
4043
4044         * HttpFileCollection.cs: initial implementation.
4045
4046 2005-07-18  Chris Toshok  <toshok@ximian.com>
4047
4048         * HttpModuleCollection.cs (HttpModuleCollection.CopyTo): implement
4049         missing method.
4050
4051 2005-07-18  Chris Toshok  <toshok@ximian.com>
4052
4053         * HttpModuleCollection.cs: initial implementation.
4054
4055 2005-07-18  Chris Toshok  <toshok@ximian.com>
4056
4057         * HttpCacheVaryByHeaders.cs: only add the header if it's not
4058         already in the hash.
4059
4060         * HttpCacheVaryByParams.cs: only add the param if it's not already
4061         in the hash.
4062
4063 2005-07-18  Chris Toshok  <toshok@ximian.com>
4064
4065         * HttpCookie.cs (HttpCookie+CookieNVC.Set): new override to fix an
4066         MS quirk.
4067
4068 2005-07-17  Miguel de Icaza  <miguel@novell.com>
4069
4070         * HttpRequest.cs (Headers, InputStream): implemented two more
4071         properties.
4072
4073         * HttpInputStream.cs: All we need is a MemoryStream with writable
4074         set to false.
4075
4076         * HttpPostedFile.cs: Use a Stream.
4077
4078 2005-07-16  Chris Toshok  <toshok@ximian.com>
4079
4080         * HttpCacheVaryByHeaders.cs: make sure we set vary_by_unspecified
4081         = false in the custom setter.
4082
4083 2005-07-16  Chris Toshok  <toshok@ximian.com>
4084
4085         * HttpCacheVaryByParams.cs: initial implementation.
4086
4087 2005-07-16  Chris Toshok  <toshok@ximian.com>
4088
4089         * HttpCacheVaryByHeaders.cs: initial implementation.
4090
4091 2005-07-15  Chris Toshok  <toshok@ximian.com>
4092
4093         * HttpCookie.cs: one more time.
4094
4095 2005-07-15  Chris Toshok  <toshok@ximian.com>
4096
4097         * HttpCookie.cs (HttpCookie.GetCookieHeader): use
4098         expires.ToString().
4099         
4100 2005-07-15  Chris Toshok  <toshok@ximian.com>
4101
4102         * HttpCookie.cs (HttpCookie.GetCookieHeader): implement to fix
4103         ben's bug.
4104
4105 2005-07-15  Chris Toshok  <toshok@ximian.com>
4106
4107         * HttpCookieCollection.cs: initial implementation (with a couple
4108         of labeled inefficiencies.)
4109
4110 2005-07-15  Chris Toshok  <toshok@ximian.com>
4111
4112         * HttpCookie.cs (HttpCookie.get_HasKeys): use values.HasKeys()
4113         instead of trying to be smart about it ourselves.
4114
4115 2005-07-15  Chris Toshok  <toshok@ximian.com>
4116
4117         * HttpCookie.cs: initial implementation.  we fail one unit test,
4118         but it might be due to a bug in NameValueCollection.
4119
4120 2005-07-15  Miguel de Icaza  <miguel@novell.com>
4121
4122         * HttpRequest.cs: 
4123
4124 2005-07-14  Miguel de Icaza  <miguel@novell.com>
4125
4126         * HttpRuntime.cs: Return a few of the values from the AppDomain
4127         data. 
4128
4129         Put the application shutdown process.
4130
4131         * HttpApplicationFactory.cs (AddEvent): Fixed bug when more than
4132         one method existed.
4133         
4134         (FireEvent): Do not ignore errors.
4135
4136         * HttpContext.cs (GetAppConfig, GetConfig): First success, use
4137         ConfigurationSettings.GetConfig to get the value that QueueManager
4138         needed.
4139
4140 2005-07-14  Dick Porter  <dick@ximian.com>
4141
4142         * HttpPostedFile.cs: New basic implementation; needs someone to
4143         figure out what a HttpRequestStream does
4144
4145 2005-07-13  Miguel de Icaza  <miguel@novell.com>
4146
4147         * HttpRequest.cs: More work on this file
4148
4149         * HttpRequest.cs, HttpApplication.cs, HttpContext.cs,
4150         HttpRuntime.cs: New from scratch implementation.
4151
4152 2005-07-01  Lluis Sanchez Gual <lluis@novell.com>
4153
4154         * SiteMap.cs: Read provider info from the configuration files.
4155
4156 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4157
4158         * HttpResponseHeader.cs: URL encode \r and \n in header values. Fixes
4159         bug #75392.
4160
4161 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4162
4163         * HttpUtility.cs: fix another stupid buglet in htmldecode.
4164
4165 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4166
4167         * HttpContext.cs:
4168         * HttpResponse.cs:
4169         * HttpRequest.cs: use StrUtils (invariant culture).
4170
4171 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4172
4173         * HttpRequest.cs: use StartsWith when looking for 'multipart/form-data'.
4174         File uploading was broken since a few commits ago.
4175
4176 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4177
4178         * HttpResponse.cs: ensure that the last chunk ('0\r\n\r\n') is sent
4179         even if response.Close is called before a final flush. MS/IIS fails to
4180         do this.
4181
4182 2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4183
4184         * HttpRequest.cs: don't print anything for unknown content types in
4185         ParseFormData. Use lowercase compare.
4186
4187 2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4188
4189         * HttpResponse.cs: invariant love.
4190
4191 2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4192
4193         * HttpResponse.cs: avoid 1 string concat.
4194         * HttpRequest.cs: fix BinaryRead. It was totally wrong.
4195
4196 2005-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4197
4198         * HttpUtility.cs: don't append an extra 0 when no digits seen. Fixes
4199         bug #75370.
4200
4201 2005-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4202
4203         * HttpUtility.cs: the lower limit for using &#xx; encoding is 160, not
4204         128. Reset number back to 0 after use. Fixes bug #75365.
4205
4206 2005-06-19  Svetlana Zholkovsky <svetlanaz-at-mainsoft.com>
4207                 * In following classes added TARGET_J2EE or/and TARGET_JVM
4208                   directives:
4209                         - HttpResponse.cs
4210                         - HttpRuntime.cs
4211                         - HttpUtility.cs
4212                         - CapabilitiesLoader.cs
4213                         - HttpApplication.cs
4214                         - HttpApplicationFactory.cs
4215                         - HttpContext.cs
4216                         - HttpException.cs
4217                         - HttpRequest.cs
4218                 * Added Mainsoft's specific files :
4219                         - GhHttpAsyncResult.jvm.cs
4220
4221 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4222
4223         * HttpRequest.cs: avoid one intermediate buffer when reading the request
4224         body and fail for over limit content length when the content type is
4225         not handled as form or multipart data.
4226
4227 2005-06-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4228
4229         * HttpResponse.cs: fix the check in Close() so that CloseConnection is
4230         called even if there has been no final Flush. Fixes bug #75176.
4231
4232 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4233
4234         * HttpParseException.cs:
4235         * HttpResponse.cs:
4236         * HttpApplication.cs: updates for 1.1 service pack.
4237
4238 2005-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4239
4240         * HttpUtility.cs: fix InvalidCastException.
4241
4242 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
4243
4244         * HttpWriter.cs: Fixed: _OutputFilter.Close () was called twice.
4245
4246 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4247
4248         * HttpUtility.cs: modified HtmlDecode so that it does not need to call
4249         Int32.Parse and handles improper &# sequences. Fixes bug #74907.
4250
4251 2005-05-26  Lluis Sanchez Gual <lluis@novell.com>
4252
4253         * SiteMapNodeCollection.cs: Implemented missing methods. The collection
4254         does not inherit from CollectionBase any more.
4255         * SiteMapNode.cs: Track api changes.
4256         * SiteMapProvider.cs: Moved several methods to the new
4257         StaticSiteMapProvider class. Other fixes.
4258         * XmlSiteMapProvider.cs: Watch changes in the xml files. Other fixes.
4259         * SiteMapProviderCollection.cs: Minor fixes.
4260         * SiteMap.cs: Added missing event. Avoid double check lock.
4261         * StaticSiteMapProvider.cs: New class that implements some of the
4262         funtionality of SiteMapProvider.
4263
4264 2005-05-25  Ben Maurer  <bmaurer@ximian.com>
4265
4266         * MimeTypes.cs: Remove extra spaces, they were typos. Fixes 75049.
4267
4268 2005-05-13 Atsushi Enomoto <atsishi@ximian.com>
4269
4270         * HttpUtility.cs : UrlDecodeToBytes() incorrectly decoded escaped 
4271           characters. Patch by Kazuki Oikawa.
4272
4273 2005-05-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4274
4275         * HttpRuntime.cs: PlatformID.Unix.
4276
4277 2005-05-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4278
4279         * HttpResponse.cs: cleaned up the .ctors, fix IsClientConnected and just
4280         Clear the _Headers array instead of creating a new ArrayList in
4281         ClearHeaders().
4282
4283 2005-05-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4284
4285         * HttpResponse.cs: we had 2 variables to track client connection status.
4286         Use only one. Increase the buffer size to 28KB when writing from a file.
4287
4288         * StaticFileHandler.cs: set the Content-Type before writing the file.
4289         This allows flushing before all the content is written.
4290
4291         * HttpApplication.cs: use the variable instead of the property when
4292         setting the Principal for the current process.
4293
4294 2005-05-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4295
4296         * ReusableMemoryStream.cs:
4297         * HttpWriter.cs: keep a pool of buffers to avoid allocations.
4298
4299 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4300
4301         * HttpResponse.cs: no need to save/restore the thread culture when
4302         getting the Date header. According to Ben's profiling, this is a big
4303         deal in performance.
4304
4305         * HttpRuntime.cs: ignore exceptions that might be thrown when unloading 
4306         a domain.
4307
4308 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4309
4310         * HttpApplicationFactory.cs: ignore any exception thrown when invoking
4311         an application event.
4312
4313 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4314
4315         * HttpBrowserCapabilities.cs: fix Win32 property.
4316
4317 2005-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4318
4319         * HttpResponse.cs: only add the charset when explicitly set or for
4320         well-known content types.
4321
4322 2005-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4323
4324         * HttpCachePolicy.cs:
4325         * HttpAsyncResult.cs:
4326         * HttpClientCertificate.cs:
4327         * HttpException.cs:
4328         * HttpRuntime.cs:
4329         * HttpCacheVaryByHeaders.cs:
4330         * HttpBrowserCapabilities.cs:
4331         * HttpUtility.cs:
4332         * HttpCacheVaryByParams.cs: no more warnings.
4333
4334         * QueueManager.cs: check for local connections with minLocalFreeThreads.
4335
4336 2005-04-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4337
4338         * ServerVariablesCollection.cs: shuffled variables, added missing ones
4339         and call a method in HttpRequest to set the HTTP_ variables.
4340
4341         * HttpRequest.cs: new method to add HTTP_ variables to a collection.
4342
4343 2005-04-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4344
4345         * HttpRequest.cs: GetAllHeaders was returning the value twice instead
4346         of 'name: value'. When HTTP_ is requested on the output, don't include
4347         unknown headers.
4348
4349 2005-03-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4350
4351         * HttpCookieCollection.cs: when adding more than one cookie with the
4352         same name, the last one is the winner.
4353
4354 2005-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4355
4356         * HttpRequest.cs: correctly store the value cookies in Params. Fixes
4357         bug #73345.
4358
4359 2005-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4360
4361         * HttpRequest.cs: Path and FilePath also change when RewritePath is
4362         called. Fixes bug #73055.
4363
4364 2005-02-23  Sebastien Pouliot  <sebastien@ximian.com>
4365
4366         * HttpRequest.cs: Make sure that any access after a ValidateInput 
4367         throws an exception if the data isn't safe.
4368
4369 2005-02-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4370
4371         * CapabilitiesLoader.cs: fix the path, as machine.config is now in a
4372         x.x/ directory below $PREFIX/etc/mono.
4373
4374 2005-02-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4375
4376         * HttpRequest.cs: fail on unicode full-width '<' and '>' too. Fixes
4377         a security report (http://secunia.com/advisories/14325) that wan't
4378         reported to us before public disclosure.
4379
4380 2005-02-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4381
4382         * HttpResponse.cs: send the calculated content length even when it's 0.
4383         Fixes bug #72655.
4384
4385 2005-02-04  Lluis Sanchez Gual <lluis@novell.com>
4386
4387         * HttpContext.cs: Added internal property to keep a reference to
4388         the last accessed page. Page uses this to implement PreviousPage.
4389
4390 2005-02-02  Lluis Sanchez Gual <lluis@novell.com>
4391
4392         * ProcessModelInfo.cs: Fixed warning.
4393
4394 2005-02-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4395
4396         * TraceContext.cs: writing a message without any other argument is not
4397         a warniing. Fixes bug #72017.
4398
4399 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4400
4401         * HttpApplication.cs: if there are no more handlers, finish the
4402         request and ensure we call Complete on it. Now FreeTextBox 3.0 works.
4403
4404 2004-12-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4405
4406         * HttpRequest.cs: honor the maxRequestSize limit from machine.config.
4407
4408 2004-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4409
4410         * HttpApplication.cs: reread application CultureInfo as web.config
4411         might have changed. Fixes bug #62539.
4412
4413 2004-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4414
4415         * HttpResponse.cs: fixed ApplyAppPathModifier to insert the session ID.
4416
4417 2004-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4418
4419         * HttpApplicationFactory.cs: monitor changes in global.asax and bin
4420         directory and shutdown the application when that happens. Fixes bug
4421         #49651.
4422
4423 2004-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4424
4425         * ReusableMemoryStream.cs: copied from System.IO.MemoryStream and
4426         slightly modified to allow expanding the buffer for cases on which the
4427         regular MemoryStream don't allow it.
4428
4429         * HttpWriter.cs: use the new ReusableMemoryStream and fix bug #59841.
4430         Otherwise we would have to allocate a new MemoryStream...
4431
4432 2004-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4433
4434         * HttpApplication.cs: Create() is now GetInstance().
4435
4436 2004-11-18 Lluis Sanchez Gual <lluis@novell.com>
4437
4438         * SiteMapNodeCollection.cs: Added missing properties.
4439         * HttpParseException.cs: Added 2.0 methods and properties.
4440         * SiteMapNode.cs: Added missing methods and properties.
4441         * SiteMapProvider.cs, XmlSiteMapProvider.cs, 
4442         SiteMapProviderCollection.cs: IProvider does not exist any
4443         more, it is now ProviderBase.
4444         * ISiteMapProvider.cs: Deleted.
4445         * ParserErrorCollection.cs, ParserError.cs, SiteMapResolveEventArgs.cs:
4446           Implemented.
4447         * SiteMap.cs: Minor fixes.      
4448
4449 2004-11-15 Lluis Sanchez Gual <lluis@novell.com>
4450
4451         * SiteMapProviderCollection.cs: Fixed warning.
4452         * HttpApplication.cs: Added new 2.0 events.
4453
4454 2004-11-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4455
4456         * HttpResponse.cs: added internl SetHeadersSent.
4457         * HttpRuntime.cs: don't throw the 'headers already sent' exception
4458         if we're sending a runtime error.
4459
4460 2004-11-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4461
4462         * HttpApplication.cs: undo the TimeoutManager.(Add|Remove) shuffling.
4463         It causes troubles under heavy load.
4464
4465 2004-11-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4466
4467         * SiteMap.cs: don't lock on Type.
4468         * CapabilitiesLoader.cs: avoid 2 locks when loading data.
4469
4470 2004-11-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4471
4472         * HttpRequest.cs: patch by Dennis Gervalle that fixes PhysicalPath in
4473         presence of rewriting.
4474
4475 2004-10-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4476
4477         * HttpApplication.cs: don't hang if a sync step is aborted. Fixes the
4478         system.web portion of bug #68270.
4479
4480 2004-10-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4481
4482         * TraceContext.cs: don't cast to Page is the handler it's
4483         not a page.
4484
4485 2004-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4486
4487         * HttpRequest.cs: CurrentExecutionFilePath is the one that
4488         changes when Transfer or Execute are used, not FilePath.
4489
4490         * HttpServerUtility.cs: moved form saving/restoring from
4491         Transfer to Execute, as it's needed there too. the query string is
4492         correctly set now. Fixes bug #67388.
4493
4494         * HttpContext.cs: use SetCurrentExePath instead of SetFilePath.
4495
4496 2004-10-03 Ben Maurer  <bmaurer@ximian.com>
4497
4498         * HttpResponse.cs: use UtcNow
4499
4500 2004-10-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4501
4502         * HttpResponse.cs: SuppressContent does not throw and clears all the
4503         buffered output. Fixes bug #67213.
4504
4505 2004-09-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4506
4507         * HttpUtility.cs: UrlPathEncode is static. Fixes bug #67155.
4508
4509 2004-09-29 Ben Maurer  <bmaurer@ximian.com>
4510
4511         * HttpContext.cs, TimeoutManager: Use DateTime.UtcNow.
4512
4513 2004-09-25 Ben Maurer  <bmaurer@ximian.com>
4514
4515         * HttpApplication.cs: Make sure requests are removed from
4516         the timeout manager. Fixes a major leak. #66751.
4517
4518 2004-09-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4519
4520         * HttpApplicationFactory.cs:
4521         * HttpRuntime.cs: implemented UnloadAppDomain and be ready for domain
4522         unloading.
4523
4524 2004-09-12 Ben Maurer  <bmaurer@ximian.com>
4525
4526         * HttpContext.cs: use CallContext. It is a little bit faster.
4527
4528 2004-09-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4529
4530         * HttpStaticObjectsCollection.cs: don't share static session objects
4531         declared in the application file across the application, but on a
4532         per-session basis. Fixes bug #65446.
4533
4534 2004-09-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4535
4536         * HttpServerUtility.cs: in Transfer(path), don't keep form data if
4537         the transfer is done from inside a page that received a postback.
4538         Fixes bug #65613.
4539
4540 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4541
4542         * HttpValueCollection.cs: fixed signature of ToString (). Closes bug
4543         #65392.
4544
4545 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
4546
4547         * HttpWriter.cs (.ctor): Dont create teh StreamWriter twice
4548         (Clear): Don't recreate the MemoryStream and StreamWriter
4549
4550 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4551
4552         * HttpApplication.cs: only add/remove to/from the timeout
4553         manager when we're in a interruptible step.
4554
4555 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4556
4557         * TraceContext.cs: when IsEnabled has not been set, return the value
4558         from the TraceManager. Fixes bug #63469.
4559
4560 2004-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4561
4562         * HttpRuntime.cs: initialize the response writer when finishing a
4563         request because it cannot be queued. Under heavy load we made new
4564         requests be processed before the ones that might be queued. This is
4565         no longer the case.
4566
4567         * QueueManager.cs: instead of queueing/dequeuing separately, we now
4568         have a single method that does everything needed to decide which one
4569         will be the next request processed.
4570
4571 2004-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4572
4573         * HttpRuntime.cs: removed initializations to null in .cctor. Prevent
4574         other requests from avoiding the lock if they are received before the
4575         configuration system is inited. Ensure that the queue manager is not
4576         null before using it (it can be null while the first request is being
4577         processed).
4578
4579 2004-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4580
4581         * HttpServerUtility.cs: ensure we have a full virtual path for the
4582         request being executed.
4583
4584 2004-08-02  Duncan Mak  <duncan@ximian.com>
4585
4586         * ApplicationShutdownReason.cs: Fixed typos.
4587
4588         * HttpCookieMode.cs:
4589         * HttpDataTransferMode.cs:
4590         * HttpRequestPriority.cs: Added [Serializable] attribute.
4591         
4592 2004-08-02  Duncan Mak  <duncan@ximian.com>
4593
4594         * ApplicationShutdownReason.cs:
4595         * HttpCookieMode.cs:
4596         * HttpDataTransferMode.cs:
4597         * HttpRequestPriority.cs: Added 2.0 enumerations.
4598         
4599 2004-07-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4600
4601         * HttpApplication.cs: the file not found might be a dependency.
4602
4603 2004-07-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4604
4605         * HttpCookie.cs: use invariant when formatting expires date. Fixes bug
4606         #61690.
4607
4608 2004-07-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4609
4610         * HttpApplication.cs: don't keep the session around if we got it from
4611         the context. Fixes bug #61232.
4612
4613 2004-07-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4614
4615         * HttpUtility.cs: fixed stupid bug in UrlDecode from bytes. Closes bug
4616         #61181.
4617
4618 2004-07-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4619
4620         * TraceContext.cs: added internal HaveTrace property whose
4621         value is true when the page has a Trace attribute.
4622
4623 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4624
4625         * TraceData.cs: fixed <br> output. Closes bug #60181.
4626
4627 2004-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4628
4629         * HttpUtility.cs: check for control characters in the string to encode
4630         or decode and return the same string if there are none.
4631
4632 2004-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4633
4634         * HttpApplication.cs: change/restore the IPrincipal in their own methods
4635         and make them internal.
4636
4637 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4638
4639         * HttpContext.cs: reverting Pedro's patch and sending mail with test
4640         to mono-devel.
4641
4642 2004-06-09  Pedro Martnez Juli  <yoros@wanadoo.es>
4643
4644         * HttpContext: User property returns its own "user" value because
4645         the context can walk through different Threads. When "User" property
4646         is changed, change "Thread.CurrentPrincipal" too.
4647
4648 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4649
4650         * HttpRequest.cs: removed extra ^Ms and fixed style of last patch.
4651
4652 2004-06-08  Alon Gazit  <along@mainsoft.com>
4653
4654         * HttpRequest.cs: Add a patch for HttpRequest.ServerVariables.
4655
4656 2004-06-07  Sebastien Pouliot  <sebastien@ximian.com>
4657
4658         * HttpContext.cs: User property now get/set Thread.CurrentPrincipal.
4659         Fix (at least partially) #59683.
4660
4661 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4662
4663         * HttpRequest.cs: reverting patch from Alon Gazit. Uses the above file
4664         that doesn't compile.
4665
4666 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4667
4668         * TraceData.cs: fixes nullref in an application that relies on
4669         r ["Message"] not being null. Closes bug #59679.
4670
4671 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4672
4673         * HttpCachePolicy.cs: implemented SetAllowResponseInBrowserHistory.
4674
4675 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4676
4677         * HttpRuntime.cs: implemented a 5 simple properties that were TODOs.
4678
4679 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4680
4681         * HttpBrowserCapabilities.cs: implemented ClrVersion and GetClrVersions.
4682         * HttpException.cs: removed MonoTODO.
4683
4684 2004-06-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4685
4686         * TraceContext.cs: don't check if HttpRuntime.TraceManager
4687         is enabled when writing.
4688
4689 2004-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4690
4691         * HttpRequest.cs: added ClientTarget internal property.
4692
4693 2004-06-03  Lluis Sanchez Gual <lluis@ximian.com>
4694
4695         * HttpApplication.cs: Clear the http handler list after releasing the
4696           handlers.
4697
4698 2004-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4699
4700         * TraceData.cs: html-encode the messages written to the trace. Fixes
4701         bug #59431.
4702
4703 2004-06-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4704
4705         * HttpWorkerRequest.cs: the hashtables are now case-insensitive. Thanks
4706         to Markus Krutner.
4707
4708 2004-05-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4709
4710         * HttpRequest.cs: nullify _sRequestRootVirtualDir and baseVirtualDir
4711         when SetFilePath is called. This way the cached values are reset and
4712         get the right value in case someone (namely SessionStateModule + 
4713         cookieless session) changes the FilePath after the property cached its
4714         value. Fixes bug #59364.
4715
4716 2004-05-27      Patrik Torstensson <totte@hiddenpeaks.com>
4717
4718         * HttpApplicationFactory.cs: Added SignalError (still todo)
4719
4720 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4721
4722         * HttpResponse.cs: remove hardcoded "HTTP/1.0" version that kept
4723         chunked encoding disabled. Fixed chunked suffix and end. Send the
4724         'lastchunk' marked when in the final Flush even if the content length
4725         is 0. This makes mod-mono-server work fine with chunked encoding.
4726          
4727         * HttpRuntime.cs: Set the _firstRequest* variables to true
4728         earlier. TraceContext don't take any parameter now.
4729
4730         * TraceManager.cs: don't need a context. Use GetAppConfig.
4731
4732 2004-05-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4733
4734         * HttpApplication.cs: set culture/uiculture from configuration and
4735         restore it after each step. Fixes bug #52851.
4736
4737 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4738
4739         * HttpUtility.cs: use lower case in UrlEncode like MS does. Delay
4740         entities hashtable creation until it's really needed.
4741
4742 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4743
4744         * HttpApplicationFactory.cs: if no module matches the name found for a
4745         possible event, ignore it. Fixes bug #58542.
4746
4747 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
4748
4749         * HttpRuntime (Init): Removed old todo
4750         * HttApplication : Implemented IHttpHandlerFactory recycling
4751         
4752 2004-04-28      Patrik Torstensson
4753
4754         * HttpApplicationState.cs: Performance, usage of ReaderWriter lock,
4755         removed MonoTodo
4756
4757 2004-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4758
4759         * HttpUtility.cs: return null in HtmlDecode for null input instead of
4760         throwing an exception. Patch by Jan Jaros (bug #57083).
4761
4762 2004-04-10  Vladimir Vukicevic  <vladimir@pobox.com>
4763
4764         * TimeoutManager.cs: Swap the order of initialization of contexts
4765         and the Timer, to avoid race condition of CheckTimeouts being called
4766         before contexts gets initialized.
4767
4768 2004-03-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4769
4770         * HttpRequestStream.cs: patch from Jan Jaros that fixes bug #56080.
4771         Now the posted file content does not have the boundaries and headers
4772         included.
4773
4774 2004-03-25  Alon Gazit <along@mainsoft.com>
4775
4776         * HttpRequest.cs: fix ValidateCookieCollection() to prevent
4777         InvalidCastException.
4778
4779 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4780
4781         * HttpValueCollection.cs: don't UrlDecode cookies. Fixes bug #55254.
4782
4783 2004-03-01  Larry Ewing  <lewing@ximian.com>
4784
4785         * HttpUtility.cs: fix UrlEncodeToBytes count check.
4786
4787 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4788
4789         * HttpServerUtility.cs:
4790         * HttpUtility.cs: added some checks for null. Fixed UrlPathEncode (bug
4791         #53670).
4792
4793 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4794
4795         * HttpUtility.cs: fixed length check. Closes bug #54201.
4796         Thanks to Michal Moskal. Use MemoryStream instead of an ArrayList when
4797         decoding.
4798
4799 2004-02-11  Jackson Harper <jackson@ximian.com>
4800
4801         * TraceData.cs: Use ToString for cookie/header/var name values so
4802         null is handled properly.
4803         
4804 2004-02-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4805
4806         * HttpApplication.cs: ApplicationState is inited by the factory so,
4807         return that value in the property. when we use the context Session,
4808         cache it in the instance field.
4809
4810         * HttpApplicationFactory.cs: fixed target Type for the event when
4811         hooking application and module events. Initialize application
4812         and session scope objects. Fixes non-aplication events hook up.
4813
4814         * HttpStaticObjectsCollection.cs: added StaticItem and delay the
4815         creation of the objects until they are requested.
4816
4817 2004-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4818
4819         * HttpApplicationFactory.cs: fixlet for session events hook.
4820
4821 2004-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4822
4823         * HttpApplicationFactory.cs: attach all events from Type and BaseType
4824         at the same time. Fixes bug #53454.
4825
4826 2004-01-27  Jackson Harper <jackson@ximian.com>
4827
4828         * HttpCachePolicy.cs: varybyparams::GetResponseHeader can return
4829         null now, dont hadd the header if it does.
4830         * HttpCacheVaryByParams.cs: Return null if there are no items.
4831
4832 2004-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4833
4834         * HttpCachePolicy.cs: it's not public.
4835         * HttpRuntime.cs: wait for requests before disposing the queue.
4836
4837 2004-01-15  Jackson Harper <jackson@ximian.com>
4838
4839         * HttpCachePolicy.cs: Fix typo causing varyby params headers to be
4840         created when they shouldn't be.
4841         
4842 2004-01-14  Jackson Harper <jackson@ximian.com>
4843
4844         * TraceData.cs: Fix some typos in the output text. Fix control
4845         position when adding controls recursively.
4846         
4847 2004-01-14  Jackson Harper <jackson@ximian.com>
4848
4849         * HttpCachePolicy.cs: Expose duration and sliding properties.
4850         
4851 2004-01-14  Jackson Harper <jackson@ximian.com>
4852
4853         * HttpCachePolicy.cs: Add an event that is fired when the
4854         cacheability is updated. The response uses this to determine
4855         whether or not it needs to cache itself.
4856         * HttpResponse.cs: When the cacheability is updated either create
4857         or dispose of the cached raw response based on whether or not we
4858         wil need it. This allows output caching to be controlled
4859         programatically.
4860         
4861 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4862
4863         * HttpContext.cs: add setter for ConfigTimeout.
4864         * HttpException.cs: added Description property and HTML encode some
4865         unescaped values.
4866
4867         * HttpRequest.cs: support request validation.
4868
4869         * HttpRequestValidationException.cs: added message and description.
4870
4871         * HttpServerUtility.cs: implemented ScriptTimeout.
4872
4873 2004-01-11  Jackson Harper <jackson@ximian.com>
4874
4875         * TraceManager.cs: Dont crash if there is no trace config element.
4876         
4877 2004-01-11  Jackson Harper <jackson@ximian.com>
4878
4879         * HttpRequest.cs: Add property for determining if the request is
4880         local or not.
4881         
4882 2004-01-10  Jackson Harper <jackson@ximian.com>
4883
4884         * TraceContext.cs: Handle tracing when it is enabled in the config
4885         file but not on the page.
4886         * TraceManager.cs: Get settings from the configuration object.
4887         * HttpRuntime.cs: Create trace manager in the first request start
4888         so it can get configuration settings.
4889         
4890 2004-01-10  Jackson Harper <jackson@ximian.com>
4891
4892         * TraceContext.cs: Save the request path in the trace data.
4893         * TraceData.cs: Add RequestPath property, make some rendering
4894         methods internal static so the TraceHandler can use them.
4895         * TraceManager.cs: Expose trace data, add a method for clearing
4896         trace data.
4897         
4898 2004-01-10  Jackson Harper <jackson@ximian.com>
4899
4900         * HttpRuntime.cs: Add trace manager
4901         * TraceManager.cs: New class for handling trace configuration and
4902         storing trace data objects.
4903         * TraceContext.cs: Save trace data to the trace manager. Fix typo.
4904         
4905 2004-01-10  Jackson Harper <jackson@ximian.com>
4906
4907         * TraceData.cs: New class for storing trace data. Data is stored
4908         here instead of the trace context so it can be saved and accessed
4909         from the trace handler.
4910         * TraceContext.cs: Save data in the TraceData object, let the
4911         trace data object handle the rendering.
4912         
4913 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4914
4915         * HttpRequest.cs: use ContentEncoding for QueryString. Fixes bug #52577.
4916         Thanks to Jan Jaros (mono-bug@jerryweb.info).
4917
4918         * HttpRequestValidationException.cs: fix comment.
4919
4920 2004-01-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4921
4922         * HttpException.cs: default to error 500. Fixes bug #52623.
4923
4924 2004-01-04  Jackson Harper <jackson@ximian.com>
4925
4926         * TraceContext.cs: Store and render trace info times. Also render
4927         cookie sizes. Remove debug code.
4928         
4929 2004-01-04  Jackson Harper <jackson@ximian.com>
4930
4931         * HttpResponse.cs: Set the cached response date header so it can
4932         be updated.
4933         * HttpResponseHeader.cs: Let values be set so we can update cached 
4934         response header values.
4935         
4936 2004-01-04  Jackson Harper <jackson@ximian.com>
4937
4938         * HttpResponse.cs: Implement RemoveOutputCacheItem.
4939         
4940 2004-01-04  Jackson Harper <jackson@ximian.com>
4941
4942         * HttpCachePolicy.cs: Add internal method to get the vary by custom string
4943         * HttpCacheVaryByHeaders.cs: Add internal method to get the header names.
4944         
4945 2004-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4946
4947         * HttpRuntime.cs: implemented MachineConfigurationDirectory,
4948
4949 2004-1-1  Alon Gazit <along@mainsoft.com>
4950         * HttpWriter.cs: add check in Write() in order to prevent
4951         NullReferenceException.
4952
4953 2004-1-1  Alon Gazit <along@mainsoft.com>
4954         * HttpResponse.cs: implemented ExpiresAbsolute and Expires.
4955
4956 2003-12-18  Jackson Harper <jackson@ximian.com>
4957
4958         * TraceContext.cs: Write () methods are not warnings.
4959         
4960 2003-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4961
4962         * HttpBrowserCapabilities.cs: added GetClrVersions ().
4963         * HttpCachePolicy.cs: added SetAllowResponseInBrowserHistory ().
4964         * HttpContext.cs: added set_Current and RewritePath (s, s, s) for 1.1.
4965         * HttpRequest.cs: added set_ContentType, SetPathInfo and ValidateInput.
4966         * HttpRequestValidationException.cs: new class for 1.1
4967         * HttpResponse.cs: added RedirectLocation.
4968         * HttpRuntime.cs: added UnloadAppDomain.
4969         * HttpServerUtility.cs: Execute (s, t, b) is internal for < 1.2
4970         * HttpUtility.cs: copied UrlPathEncode from HttpServerUtility.
4971         * HttpWorkerRequest.cs: added [ComVisible] and made the ctor public.
4972
4973 2003-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4974
4975         * HttpContext.cs: implemented IsCustomErrorEnabled and
4976         IsDebuggingEnabled. Added internal ErrorPage property.
4977
4978         * HttpRuntime.cs: on error, check if we have a custom error page enabled
4979         to handle it and redirect.
4980
4981         * HttpResponse.cs: added RedirectCustomError (), which actually does
4982         the redirection to the error page.
4983         
4984 2003-12-16  Jackson Harper <jackson@ximian.com>
4985
4986         * TraceContext.cs: Render all the data, and the stylesheet.
4987         
4988 2003-12-16  Jackson Harper <jackson@ximian.com>
4989
4990         * TraceContext.cs: Add incomplete render method.
4991         
4992 2003-12-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4993
4994         * CapabilitiesLoader.cs: loads browser detection and capabilities data
4995         from browscap.ini file by Gary J. Keith.
4996
4997         * HttpBrowserCapabilities.cs: removed almost all TODOs.
4998
4999         * HttpRequest.cs: fixed Browser property.
5000
5001 2003-12-15  Jackson Harper <jackson@ximian.com>
5002
5003         * TraceContext.cs: Initial implementation of storing data.
5004         * HttpContext.cs: Create and expose a trace object.
5005         
5006 2003-12-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5007
5008         * HttpApplication.cs: ThreadAbortException is ok on Redirect.
5009         * HttpContext.cs: added TimeoutPossible property.
5010         * HttpResponse.cs: throw ThreadAbortException if End () is called within
5011         a step in which is possible to timeout.
5012
5013         Fixes bug #51703.
5014
5015 2003-12-04  Jackson Harper <jackson@ximian.com>
5016
5017         * HttpRequest.cs: Cleanup method.
5018         
5019 2003-12-04  Jackson Harper <jackson@ximian.com>
5020
5021         * HttpValueCollection.cs: Allow blank value names. Posting
5022         <blank>=SomeValue is valid. And occurs if a radio button does
5023         not have its name set.
5024         
5025 2003-12-03  Jackson Harper <jackson@ximian.com>
5026
5027         * HttpResponse.cs: Actually apply an app path modifier in
5028         ApplyAppPathModifer and add a method to set the app path modifier.
5029         * HttpRequest.cs: Add utility method for setting a request header.
5030         
5031 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5032
5033         * HttpApplication.cs: handle FileNotFound and DirectoryNotFound
5034         exceptions when creating the handler to generate a better error page.
5035
5036         * HttpException.cs: display the http_code if available.  Changed all
5037         \n by \r\n to make the hidden stack trace readable.
5038         
5039         * StaticFileHandler.cs: don't send the real path in th eerror.
5040
5041 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5042
5043         * HttpContext.cs: updated GetConfig and GetAppConfig to new API.
5044         
5045         * HttpResponse.cs: separate initialization of the HttpWriter, as it
5046         tries to read configuration settings while the config. system is not
5047         available (ie, before the first request).
5048         
5049         * HttpRuntime.cs: delayed queueManager and response writer
5050         initialization until the configuration system is working.
5051
5052 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5053
5054         * HttpRuntime.cs: added request queue handling.
5055
5056         * QueueManager.cs: simple request queue.
5057         
5058         * TimeoutManager.cs: added some locks to prevent the enumerator used in
5059         CheckTimeouts to be out of synch.
5060
5061 2003-11-25  Jackson Harper <jackson@ximian.com>
5062
5063         * HttpStaticObjectsCollection.cs: Add methods for serialization
5064         and conversion to/from byte arrays.
5065         
5066 2003-11-21  Jackson Harper <jackson@ximian.com>
5067
5068         * HttpResponse.cs: When caching data set the content length in the
5069         cached repsonse so that only that amount will be written back to
5070         the client. Add method to write a range of binary data.
5071         * HttpCacheVaryByParams.cs: Add method to retrieve param names.
5072         
5073 2003-11-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5074
5075         * HttpApplication.cs:
5076         * HttpContext.cs:
5077         * HttpRuntime.cs: add timeout handling.
5078         * TimeoutManager.cs: new class that takes care of aborting threads on
5079         timeout.
5080
5081 2003-11-19  Jackson Harper <jackson@ximian.com>
5082
5083         * HttpWriter.cs: Use a constant for the buffer size so the cache
5084         can get the buffer size. Add method to get the buffer.
5085         * HttpResponse.cs: Methods for getting data to cache, and setting
5086         vars from the cache.
5087         * HttpCachePolicy.cs: Expose a pages cache expire time.
5088         
5089 2003-11-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5090
5091         * HttpResponse.cs: 
5092         * HttpWriter.cs: some fixes to allow closing a response stream without
5093         messing the rest.
5094
5095 2003-11-13  Jackson Harper  <jackson@ximian.com>
5096
5097         * HttpCachePolicy.cs: Make sure cacheability and maxage get
5098         set. Add method to set Http response header data
5099         * HttpCacheVaryByParams.cs: Add method to create a response header.
5100         * HttpCacheability.cs: Add ServerAndPrivate and ServerAndNoCache.
5101         * HttpResponse.cs: Set cache headers.
5102         
5103 2003-11-11 Ben Maurer  <bmaurer@users.sourceforge.net>
5104
5105         * HttpModuleCollection.cs (GetKey): Recursion, again!
5106
5107 2003-11-11 Ben Maurer  <bmaurer@users.sourceforge.net>
5108
5109         * HttpClientCertificate.cs (ValidUntil): recursion!
5110
5111 2003-11-08 Ben Maurer  <bmaurer@users.sourceforge.net>
5112
5113         * SiteMapNode.cs (GetDataSourceView): Implement.
5114         * SiteMapProvider.cs: Typo fixing.
5115         * XmlSiteMapProvider.cs: We shouldnt resolve here.
5116         
5117 2003-11-08 Ben Maurer  <bmaurer@users.sourceforge.net>
5118
5119         * SiteMap.cs (Init): implement a hack that doesnt need the config
5120         stuff. Should do that later.
5121         * SiteMapNodeCollection (OnValidate): Fix recursion.
5122         * SiteMapProvider.cs: We dont implement some culture stuff work
5123         around it. Fix typo.
5124         * XmlSiteMapProvider.cs: Added.
5125         
5126 2003-11-07 Ben Maurer  <bmaurer@users.sourceforge.net>
5127
5128         * ISiteMapProvider.cs:
5129         * SiteMap.cs:
5130         * SiteMapNode.cs:
5131         * SiteMapNodeCollection.cs:
5132         * SiteMapProvider.cs:
5133         * SiteMapProviderCollection.cs: V2 sitemap related stuff.
5134
5135 2003-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5136
5137         * HttpRequest.cs: don't attempt to read more bytes than specified
5138         content length.
5139
5140 2003-11-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5141
5142         * HttpRequest.cs:
5143         * HttpResponse.cs:
5144         * HttpUtility.cs:
5145         * HttpValueCollection.cs: encoding fixes/updates.
5146
5147         * HttpWriter.cs: when updating the encoding, flush the existing stream.
5148         Encoding updates.
5149
5150 2003-11-04 Ben Maurer  <bmaurer@users.sourceforge.net>
5151
5152         * HttpContext.cs (IsCustomErrorEnabled): dont throw exception, just
5153         return false (which makes sense, as the custom errors *arent* enabled;
5154         ie they dont work.
5155         * HttpResponseStream.cs: you actually can write with len = 0
5156
5157 2003-11-03 Jackson Harper <jackson@ximian.com>
5158
5159         * HttpResponse.cs (ContentEncoding): Throw
5160         ArgumentNullException. Patch by Yaron Shkop.
5161         
5162 2003-10-30  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
5163
5164         * HttpMultipartContentParser.cs : Quick fix for cygwin build. 
5165           CSC complains that constant char cannot be casted as byte.
5166
5167 2003-10-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5168
5169         * HttpApplication.cs: added AssemblyLocation property.
5170
5171 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5172
5173         * HttpApplicationFactory.cs: use NoParamsInvoker.
5174         * HttpRequest.cs: support request filters.
5175         * HttpRequestStream.cs: mono-stylized and added new Set method.
5176
5177         * NoParamsInvoker.cs: proxy class to invoke user-provided methods
5178         without parameters that are invoked by EventHandlers.
5179
5180 2003-10-13  Lluis Sanchez Gual <lluis@ximian.com>
5181
5182         * HttpResponse.cs: Changed harcoded switch to en-US culture to a switch
5183           to invariant culture.
5184
5185 2003-10-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5186
5187         * HttpResponse.cs:
5188         * HttpServerUtility.cs: change the response writer in Execute. Thanks
5189         to Rich Alimi <rich@velvetsea.net> for noticing this.
5190
5191 2003-10-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5192
5193         * HttpApplicationFactory.cs: support for wiring up events without
5194         parameters.
5195
5196 2003-10-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5197
5198         * HttpUtility.cs: small memory usage reduction.
5199
5200 2003-10-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5201
5202         * HttpApplication.cs: pass the Uri, not the file path to
5203         when looking for a handler.
5204
5205 2003-09-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5206
5207         * HttpRequest.cs: small fix needed when reading big POST data.
5208
5209 2003-09-04  Lluis Sanchez Gual <lluis@ximian.com>
5210
5211         * HttpRequest.cs: Url property: use GetLocalAddress() to get the address
5212           (this will get the address from the request headers).
5213
5214 2003-09-04  Lluis Sanchez Gual <lluis@ximian.com>
5215
5216         * HttpServerUtility.cs: In Transfer(), preserve the query string if
5217           told to do so.
5218
5219 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5220
5221         * HttpApplication.cs: ensure we do all the EndRequest steps. Don't
5222         filter the output on error.
5223         
5224         * HttpResponse.cs: modified DoFilter to allow bypassing filtering.
5225
5226 2003-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5227
5228         * HttpApplication.cs: when the request is completed or an
5229         error happens, execute all the delegates attached to EndRequest, not
5230         only the last one. This makes xsp/test/authtest work again.
5231         
5232         * HttpMethodNotAllowedHandler.cs: fixed description for http
5233         status code.
5234
5235 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5236
5237         * HttpRequest.cs: quick way of checking that the path is within the
5238         root for the application. Thanks to Johannes for reporting.
5239         
5240         * HttpRuntime.cs: use the status code from teh exception when it'ss a
5241         HttpException.
5242
5243         * StaticFileHandler.cs: forbidden is 403.
5244
5245 2003-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5246
5247         * HttpServerUtility.cs: fixed path and query. Path by Rich Alimi
5248         <rich@velvetsea.net>.
5249
5250 2003-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5251
5252         * HttpException.cs: make the unhandled error more like the MS one.
5253         * HttpRuntime.cs: set a 500 error code on unhandled exceptions.
5254
5255 2003-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5256
5257         * HttpResponse.cs: flush headers when the body length is 0.
5258         * StaticFileHandler.cs: added If-Modified-Since handling patch slightly
5259         modified from the original by Piers Haken <piersh@friskit.com>.
5260
5261 2003-08-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5262
5263         * HttpResponse.cs: another patch from totte and me. This one prevents
5264         writing output if the client have disconnected and filters the data
5265         when there's a non-final Flush in the middle of the process.
5266
5267 2003-08-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5268
5269         * HttpApplication.cs: fixed typos. Closes bug #44197.
5270
5271 2003-08-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5272
5273         * HttpApplication.cs:
5274         * HttpApplicationFactory.cs: fix duplicate application OnStart events.
5275
5276         Patch by Patrik Torstensson.
5277
5278 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5279
5280         * HttpApplicationFactory.cs: use the correct Delegate.CreateDelegate
5281         overload. The previous one only admits static methods.
5282
5283 2003-08-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5284
5285         * ProcessModelInfo.cs: Fixed signature
5286
5287 2003-07-30  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5288
5289         * WebCategoryAttribute.cs: Implemented localization
5290         * WebSysDescriptionAttribute.cs: Implemented localization
5291
5292 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5293
5294         * HttpRuntime.cs: also clear the headers that may have been set upon
5295         error processing the request.
5296
5297 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5298
5299         * HttpResponseStreamProxy.cs: reformatted. Fixed infinite recursion in
5300         Write method.
5301
5302         * HttpWriter.cs: flush the filter after writing.
5303
5304 2003-07-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5305
5306         * HttpWriter.cs: avoid duplicating the MemoryStream byte buffer.
5307
5308 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5309
5310         * HttpContext.cs: Session doesn't have a setter.
5311
5312         * HttpResponse.cs: Request is private.
5313
5314 2003-07-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5315
5316         * HttpRequest.cs: fixed Headers property. It was getting known headers
5317         values instead of known headers names.
5318
5319 2003-07-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5320
5321         * HttpApplication.cs: prevent nullref if an error happens before context
5322         is set.
5323         * HttpException.cs: small fix in the stack trace sent.
5324         * HttpUtility.cs: the lock is not needed.
5325
5326 2003-06-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5327
5328         * HttpRequest.cs: added REMOTE_PORT.
5329         * HttpValueCollection.cs: fixed bug #45490.
5330
5331 2003-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5332
5333         * HttpApplication.cs:
5334         * HttpApplicationFactory.cs: fire application start and session
5335         start/end events.
5336
5337 2003-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5338
5339         * HttpException.cs: encode as HTML the inner exception that
5340         is appended as a comment at the end of error pages.
5341
5342 2003-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5343
5344         * HttpWriter.cs: don't do anything in Flush. Fixes #42249.
5345
5346 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5347
5348         * HtmlizedException.cs: added more virtual methods.
5349
5350         * HttpException.cs:  some work on the output when there's a source
5351         file present.
5352
5353 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5354
5355         * HtmlizedException.cs: simplified to cope with the new interface.
5356
5357         * HttpApplicationFactory.cs: use the application file parser to get the 
5358         application Type.
5359         
5360         * HttpException.cs: small changes. Needs some more work on
5361         ParseExceptions.
5362         
5363 2003-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5364
5365         * HttpRequest.cs: fixed Url property.
5366
5367 2003-03-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5368
5369         * HtmlizedException.cs:
5370         * HttpException.cs: display the correct line number in error messages.
5371
5372 2003-03-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5373
5374         * HttpCachePolicy.cs: implemented all TODOs.
5375         * HttpRequestStream.cs: make it internal.
5376
5377 2003-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5378
5379         * HttpContext.cs: implemented RewritePath in other way.
5380         * HttpRequest.cs: removed SetPhysicalPath and added SetForm.
5381         * HttpServerUtility.cs: implemented Transfer (string, bool).
5382
5383 2003-03-16  Daniel Lopez Ridruejo <daniel @ rawbyte.com>
5384         * HttpContext.cs : Implemented RewritePath
5385         * HttpRequest.cs : Added internal function SetPhysicalPath
5386
5387 2003-03-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5388
5389         * HttpServerUtility.cs: implemented Transfer ().
5390
5391 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5392
5393         * HttpRuntime.cs: Cache no longer have a Dispose method.
5394
5395         * HttpServerUtility.cs: removed MonoTODO.
5396
5397 2003-03-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5398
5399         * HttpHelper.cs: store the values in an ArrayList to get them in correct
5400         order.
5401
5402 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5403
5404         * HttpApplicationFactory.cs: Global.asax takes precedence over
5405         global.asax if it exists.
5406
5407         * HttpRequest.cs: use allowCrossAppMapping in MapPath.
5408
5409 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5410
5411         * HttpApplication.cs: CreateHttpHandler is now internal.
5412
5413         * HttpRequest.cs: allow setting QueryStringRaw, which
5414         invalidates the data obtained from the previous value. Added internal
5415         SetFilePath method.
5416
5417         * HttpServerUtility.cs: implemented Execute and GetLastError.
5418
5419 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5420
5421         * HttpServerUtility.cs: style.
5422
5423 2003-02-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5424
5425         * HttpApplication.cs: only execute the EndRequest step on error
5426         condition or request marked as completed. This prevent page events from
5427         being called when, for example, the url authorization module forbids
5428         the request.
5429
5430 2003-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5431
5432         * HttpRequest.cs: implemented the indexer.
5433
5434 2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5435
5436         * HtmlizedException.cs: base class for exceptions that makes it easy to
5437         generate error pages.
5438
5439         * HttpException.cs: improved error displaying.
5440
5441         * HttpRuntime.cs: removed debugging output.
5442
5443 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5444
5445         * HttpApplication.cs: display the error instead of hanging when we get
5446         any error before the last step of the request.
5447
5448 2003-02-04  Tim Haynes <thaynes@openlinksw.com>
5449
5450         * HttpApplicationFactory.cs: fixed HttpRuntime.Close() to decrement
5451         instance counter.
5452
5453 2003-01-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5454
5455         * HttpRequest.cs: added BaseVirtualDir property and use it in MapPath.
5456
5457 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5458
5459         * HttpRequest.cs: implemented CurrentExecutionFilePath.
5460
5461 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5462
5463         * HttpApplication.cs: keep _lasterror if no context. Attach
5464         application events *after* modules initialization (if not, User is not
5465         set when the user handler is called).
5466         
5467         * HttpApplicationFactory.cs: made all methods related to
5468         AttachEvents static. I will fix OnStart/OnEnd for application and
5469         session later.
5470         
5471         * HttpRequest.cs: don't initialize cookies twice.
5472
5473 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5474
5475         * HttpResponse.cs:
5476         (ApplyAppPathModifiers): return the root directory for "".
5477
5478 2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5479
5480         * HttpUtility.cs: fixed HtmlDecode to avoid ArgumentOutOfRangeException.
5481
5482 2003-01-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5483
5484         * HttpApplication.cs: added new state to handle default authentication.
5485
5486 2003-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5487
5488         * HttpContext.cs: removed hack to get the User.
5489
5490 2003-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5491
5492         * HttpUtility.cs: fixed bug #36038. Thanks to juancri@tagnet.org for
5493         reporting the bug and how to fix it.
5494
5495 2002-12-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5496
5497         * HttpCookie.cs: send 'expires' in the header.
5498
5499 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5500
5501         * HttpValueCollection.cs: patch from Botjan Vizin 
5502         <bostjan.vizin@siol.net> that implements ToString (bool).
5503
5504 2002-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5505
5506         * HttpApplicationFactory.cs: add the context as parameter when building
5507         the application Type.
5508         
5509         * HttpCookie.cs: new internal constructor.
5510         * HttpCookieCollection.cs: new internal method to make a cookie expire.
5511
5512         * HttpRequest.cs: MapPath fixes.
5513         * HttpResponse.cs: implemented ApplyAppPathModifier.
5514         * HttpRuntime.cs: fixed typo in AppDomainAppVirtualPath.
5515
5516 2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5517
5518         * HttpContext.cs: hack to create a default user when there's no one.
5519         Implemented GetConfig (string).
5520
5521         * HttpRequest.cs: fixes to MapPath (string).
5522
5523 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5524
5525         * HttpRuntime.cs: avoid nulls and exception when getting resource
5526         format strings.
5527
5528         * StaticFileHandler.cs: added file name to error message.
5529
5530 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5531
5532         * HttpResponse.cs: avoid sending chunked content for HTTP/1.1.
5533
5534 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5535
5536         * HttpApplicationFactory.cs: get the events from the application class,
5537         fire Application/Session Start/End and add the others as application
5538         events.
5539
5540 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5541
5542         * HttpApplicationFactory.cs: compile global.asax file if it exists.
5543
5544 2002-11-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5545
5546         * HttpRequest.cs: provide a default Browser until we detect it.
5547         * HttpResponse.cs:
5548         (End): do not close the connection here.
5549         (Flush (bool)): send the headers when, for example, Redirect () is
5550         called.
5551
5552 2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5553
5554         * HttpException.cs: simple error output.
5555
5556 2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5557
5558         * HttpApplication.cs: style.
5559         * HttpException.cs: style.
5560         * HttpRuntime.cs: only flush the response if there are no errors.
5561         Otherwise, write an error output.
5562         * HttpWriter.cs: change Unicode to UTF8.
5563
5564 2002-11-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5565
5566         * HttpApplication.cs: don't begin the request using ExecuteNextAsync
5567         (it fails to work on NetServ).
5568
5569         * HttpWorkerRequest.cs: typo.
5570
5571 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5572
5573         * HttpValueCollection.cs: the value may contain trailing '=' as it is
5574         UrlEncoded. Don't split name=value based on '='.
5575
5576 2002-11-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5577
5578         * HttpCookie.cs: made GetCookieHeader internal.
5579
5580         * HttpRequest.cs: get cookies from request.
5581
5582         * HttpResponse.cs: send cookies. Implemented
5583         AddFileDependencies (). Added check for _Writer == null in Flush
5584         (Patrik ;-). Clear the content if HEAD or SupressContent == true.
5585         Removed redirect hack used in old server.
5586
5587 2002-10-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5588
5589         * HttpRequest.cs: fixed GetRawContent (). Now it only tries to read at
5590         most ContentLength bytes.
5591
5592         * HttpResponse.cs: now it sends the headers. Added
5593         X-Powered-By header :-).
5594
5595         * HttpRuntime.cs: fixed typo.
5596
5597         * HttpValueCollection.cs: cosmetic changes.
5598
5599 2002-10-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5600
5601         * HttpApplication.cs: reenabled a few lines of code
5602         (ThreadPool already fixed). 
5603         
5604         * HttpRequest.cs:
5605         * HttpResponse.cs:
5606         * HttpUtility.cs:
5607         * HttpValueCollection.cs:
5608         * HttpWriter.cs: Use WebEncoding.Encoding.
5609
5610 2002-10-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5611
5612         * HttpWriter.cs: changed encoding of the writer from Unicode to UTF8.
5613         This fixes sending bytes and allows mixing byte with chars.
5614
5615 2002-10-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5616
5617         * HttpResponse.cs: implemented WriteFile methods.
5618         * MimeTypes.cs: removed duplicated entries.
5619
5620 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5621
5622         * HttpResponse.cs: don't throw exception in a couple of
5623         methods not yet implemented.
5624
5625 2002-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5626
5627         * HttpApplication.cs: fixed type and handle factories when creating
5628         IHttpHandler for a request.
5629
5630 2002-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5631
5632         * HttpApplication.cs: use handlers from configuration.
5633         * HttpContext.cs: get handlers from ConfigurationSettings.
5634
5635 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5636
5637         * HttpMethodNotAllowedHandler.cs:
5638         * HttpRuntime.cs:
5639         * StaticFileHandler.cs: Modified file.
5640
5641         * HttpUtility.cs: implemented all missing methods.
5642
5643
5644 2002-09-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5645
5646         * System.Web/HttpApplication.cs: use the static file handler.
5647         * System.Web/HttpForbiddenHandler.cs: handler to forbid access.
5648         * System.Web/HttpMethodNotAllowedHandler.cs: handler for method not
5649         allowed.
5650         
5651         * System.Web/HttpUtility.cs: finished all UrlDecode methods.
5652         * System.Web/MimeTypes.cs: map from file extension to MIME type.
5653         * System.Web/StaticFileHandler.cs: serves static files
5654
5655 2002-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5656
5657         * System.Web/HttpApplication.cs:
5658         * System.Web/HttpApplicationFactory.cs:
5659         * System.Web/HttpRequest.cs:
5660         * System.Web/HttpRuntime.cs: we are now able to compile pages and use
5661         HttpApplication, HttpRuntime and SimpleWorkerRequest.
5662
5663 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5664
5665         * HttpApplication.cs: added some missing methods.
5666         * HttpApplicationFactory.cs: get event handlers for the application.
5667         * HttpAsyncResult.cs: little fixes.
5668         * HttpRequest.cs: make Encoding work even with no worker request.
5669
5670 2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5671
5672         * HttpWorkerRequest.cs: mcs doesn't go crazy. It's just me, that forgot
5673         to add HttpMapPath to the list file...
5674
5675 2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5676
5677         * HttpWorkerRequest.cs: fixes compilation with mcs. I will add a bug
5678         report when i get a test case.
5679
5680 2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5681
5682         * HttpApplicationFactory.cs:
5683         * HttpCachePolicy.cs:
5684         * HttpResponseHeader.cs:
5685         * HttpResponseStream.cs:
5686         * HttpResponseStreamProxy.cs:
5687         * HttpValueCollection.cs: misc. fixes based on class status page.
5688
5689         * IHttpMapPath.cs: New file.
5690
5691         * HttpRequest.cs: implemented ContentEncoding.
5692         * HttpWorkerRequest.cs: mono-stylized and implemented
5693         SendResponseFromMemory.
5694
5695 2002-08-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5696
5697         * HttpContext.cs: reformatted.
5698         * HttpStaticObjectsCollection.cs: implemented GetEnumertor, CopyTo and
5699         the indexer.
5700
5701 2002-08-05  Patrik Torstensson <ptorsten@hotmail.com>
5702
5703         * HttpApplication.cs: Implemented a state machine to allow handling of
5704         HttpModules and HttpHandlers. Implementation of async handlers. 
5705                                                                  
5706         * HttpApplicationFactory.cs: Factory for creating HttpApplication
5707         instances, including caching.
5708         
5709         * HttpRuntime.cs: Usage of the new HttpApplicationFactory to get a
5710         application instance to execute requests in and implementation of 
5711         request execution (still no request queue). 
5712                                                          
5713         * HttpAsyncResult.cs: New file to handle async module results.                                          
5714                                                          
5715         * HttpRequest.cs: Change signature of Dispose
5716         * HttpResponse.cs: new internal method allowing filtering to happen
5717         during the request flow in the state machine.
5718
5719 2002-07-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5720
5721         * HttpApplication.cs: events were not being initialized.
5722
5723 2002-07-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5724
5725         * ProcessModelInfo.cs: fixed compilation.
5726
5727 2002-07-25  Tim Coleman <tim@timcoleman.com>
5728         * ProcessModelInfo.cs:
5729                 New class added
5730         * HttpParseException.cs:
5731         * HttpCompileException.cs:
5732         * HttpUnhandledException.cs:
5733                 Internal constructors added to these
5734
5735 2002-07-24  Tim Coleman <tim@timcoleman.com>
5736         * ProcessInfo.cs: 
5737                 Fix constructor, reference to shutdownreason.
5738
5739 2002-07-24  Tim Coleman <tim@timcoleman.com>
5740         * HttpCachePolicy.cs:
5741                 Added stubbs to this class.
5742         * HttpCacheability.cs:
5743         * HttpCacheRevalidation.cs:
5744         * HttpValidationStatus.cs:
5745         * ProcessShutdownReason.cs:
5746         * ProcessStatus.cs:
5747         * TraceMode.cs:
5748                 Reorder the enumerations (and in some cases make
5749                 one-based) in order to agree with the .NET 
5750                 implementation, based on the class status page.
5751         * ProcessInfo.cs:
5752                 Implementation of this class.
5753
5754 2002-07-23  Tim Coleman <tim@timcoleman.com>
5755         * HttpCompileException.cs:
5756         * HttpParseException.cs:
5757         * HttpUnhandledException.cs:
5758                 New stubbs created.
5759         * HttpApplication.cs:
5760         * HttpBrowserCapabilities.cs:
5761                 Added missing methods stubbs and attributes based
5762                 on the class status page.  Also reformatted some
5763                 source for consistency.
5764
5765 2002-07-23  Tim Coleman <tim@timcoleman.com>
5766         * HttpUtility.cs: Moved entities hashtable into main
5767                 class as a static object, so we don't instantiate
5768                 a new one every time.  Also put the hashtable
5769                 building into a lock block.
5770
5771 2002-07-22  Tim Coleman <tim@timcoleman.com>
5772         * HttpUtility.cs: Cleanup of the code, implementation
5773                 of HtmlDecode/HtmlEncode functions
5774
5775 2002-07-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5776
5777         * HttpResponse.cs: quick&dirty hack to make redirection work. Should
5778         be out of there once we have SimpleWorkerRequest.
5779
5780 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5781
5782         * HttpUtility.cs: little typo, big headache.
5783
5784 2002-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5785
5786         * HttpRuntime.cs: don't throw NotImplemented in a couple of methods.
5787
5788 2002-06-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5789
5790         * System.Web/HttpResponse.cs: 
5791
5792         Fixes based on class status page:
5793         
5794                 - Add attributes (DefaultEvent, ParseChildren).
5795                 - Fix declarations.
5796                 - Explicitly implement some interfaces (IPostBackDataHandler
5797                 and IPostBackEventHandler).
5798                 - Implemented some missing methods.
5799
5800 2002-06-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5801
5802         * HttpContext.cs:
5803         (Session): return null instead of throwing an exception.
5804
5805         * HttpRequest.cs:
5806         (HttpMethod): return RequestType if not set.
5807         (GetRawContent): return QueryString if we don't have a
5808         HttpWorkerRequest.
5809
5810         * HttpUtility.cs: fixed Decode and Encode.
5811
5812 2002-06-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5813
5814         * HttpApplication.cs:
5815         * HttpContext.cs: added System.Web.SessionState namespace.
5816
5817         * HttpSessionState.cs: removed. It is under
5818         System.Web.SessionState.
5819
5820 2002-06-10  Duncan Mak  <duncan@ximian.com>
5821
5822         * HttpBrowserCapabilities.cs (BackgroundSounds): Fixed typo.
5823
5824 2002-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5825
5826         * HttpRequest.cs: implemented Browser property.
5827
5828 2002-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5829
5830         * HttpBrowserCapabilities.cs: stubbed out.
5831
5832 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
5833
5834         * HttpRuntime.cs: Reformat file.
5835
5836 2002-05-07  Duncan Mak  <duncan@ximian.com>
5837
5838         * HttpBrowserCapabilities.cs: Added, replacing
5839         HttpBrowserCapabilites because of typo.
5840
5841         * HttpBrowserCapabilites.cs: Removed, replaced by above.
5842
5843         * HttpRequest.cs (Browser): Fixed typo.
5844
5845 2002-04-12  Patrik Torstensson <patrik.torstensson@labs2.com>
5846
5847         * HttpApplication.cs: Minor updates
5848         * HttpApplicationState.cs: Ready.
5849         * HttpClientCertificate.cs: Signature updates
5850         * HttpValueCollection.cs: ready
5851         * HttpStaticObjectsCollection.cs: ready
5852         * HttpResponseHeader.cs: made internal only
5853         * HttpResponse.cs: Signature updates
5854         * HttpPostedFile.cs: ready
5855         * HttpCacheVaryByHeaders.cs: ready (except communication to policy)
5856         * HttpCacheVaryByParams.cs: ready (except communication to policy)
5857         
5858         System.Web is now over 60% ready.. 
5859
5860 2002-04-11  Patrik Torstensson <patrik.torstensson@labs2.com>
5861
5862         * HttpException.cs: 95% ready, only windows dependent code left
5863         * HttpFileCollection.cs: Finished.
5864         * HttpRequest.cs: Minor fixes and fixed signature problems
5865         * HttpResponse.cs: Implementation of missing methods and signature problems
5866         * HttpResponseHeader.cs: Fixed signature problems
5867         * HttpRuntime.cs: Fixed signature problems
5868         * HttpServerUtility.cs: Added support for HttpApplication
5869         * HttpSessionState.cs: Fixed signature issues
5870         * HttpUtility.cs: fixed signature issues
5871         * HttpValueCollection.cs: Support for cookie parsing and fixed signature issues
5872         * HttpWorkerRequest.cs: Fixed small signature issue
5873         * HttpWriter.cs: Fixed signature issue
5874         * HttpApplication.cs: Basic implementation
5875         * HttpApplicationState.cs: Small fixes to support major change comming up
5876         * HttpBrowserCapabilities.cs: Added Type method
5877         * HttpClientCertificate.cs: Almost ready, needs to parse certificate.
5878         * HttpContext.cs: Fixed signature issues and added last methods.
5879         * HttpCookie.cs: Full implementation
5880         * HttpCookieCollection.cs: Full implementation
5881         * TraceContext.cs: Methods implemented.
5882         * HttpPostedFile.cs: Placeholder
5883         * HttpStaticObjectsCollection.cs: Placeholder
5884         * HttpModuleCollection.cs: Ready, will be used during the major revamp.
5885         
5886         * Fixed a number of other small signature problems also (class status page)
5887         
5888         
5889 2002-04-10  Patrik Torstensson <patrik.torstensson@labs2.com>
5890
5891     * HttpWorkerRequest.EndOfSendNotification.cs Removed (included in WorkerRequest)
5892     * Checkin of all new files (noted in last changenote)
5893
5894 2002-04-10  Patrik Torstensson <patrik.torstensson@labs2.com>
5895
5896     * HttpContext.cs: First implementation (basic support, few methods left to impl)
5897     * HttpException.cs: Partial implementation (basic support)
5898     * HttpHelper.cs: Header parse helper, used by runtime (non public)
5899     * HttpRequest.cs: Implementation (all methods there, not all fully impl)
5900     * HttpRequestStream.cs: Full implementation
5901     * HttpResponse.cs: Partial implementation(almost all methods)
5902     * HttpResponseHeader.cs: Header helper
5903     * HttpResponseStream.cs: Full implementation - Response stream support
5904     * HttpResponseStreamProxy.cs: Implementation - filter support
5905     * HttpRuntime.cs: Rewrite to support one IHttpModule (use for testing the runtime)
5906         * HttpServerUtility.cs: Implemented usage of HttpContext for methods
5907                                 and moved encoding functions to HttpUtility.
5908
5909     * HttpUtility.cs: Added encoding/decoding functions from HttpServerUtility and
5910                       added the Attribute encoding functions.
5911
5912     * HttpValueCollection.cs: Implementation.
5913     * HttpWorkerRequest.cs: Rewrite and implementation of all methods (ready)
5914     * HttpWriter.cs: Implementation (with filter support)    
5915
5916     * HttpFileCollection: Added dummy class (placeholder)
5917     * HttpApplication.cs: Added dummy class (placeholder)
5918     * HttpApplicationState.cs: Added dummy class (placeholder)
5919     * HttpBrowserCapabilities.cs: Added dummy class (placeholder)
5920     * HtttpCachePolicy.cs: Added dummy class (placeholder)
5921     * HttpClientCertificate.cs: Added dummy class (placeholder)
5922     * HttpSessionState.cs: Added dummy class (placeholder)
5923     * TraceContext.cs: Added dummy class (placeholder)
5924     
5925
5926 2002/04/10  Nick Drochak <ndrochak@gol.com>
5927
5928         * HttpServerUtility.cs: Fix build breaker.
5929
5930 2002-03-28  Wictor Wiln  <wictor@iBizkit.se>
5931
5932         * HttpServerUtils.cs : Added some more functionality
5933         
5934 2002-03-28  Martin Baulig  <martin@gnome.org>
5935
5936         * HttpServerUtils.cs (UrlDecode): You cannot implicitly cast a
5937         char to a string, use ToString() instead.
5938
5939 2002-03-16  Gaurav Vaish  <gavish@iitk.ac.in>
5940
5941         * WebCategoryAttribute.cs
5942                                : Added private attribute.
5943
5944 2002-03-16  Gaurav Vaish  <gavish@iitk.ac.in>
5945
5946         * HttpRuntime.cs       : Stubbed methods for
5947                   FormatStringResource(...) in agreement with the various
5948                   overloads available at String.Format(...)
5949
5950 2002-01-08  Gaurav Vaish  <gavish@iitk.ac.in>
5951
5952         * TODOAttribute.cs     : Added, as an internal class to the assembly
5953
5954 2002-01-03  Nick Drochak  <ndrochak@gol.com>
5955
5956         * HttpRuntime.cs: remove uneeded exception variable from catch and
5957         initialize remaining instance members to avoid compile warnings
5958
5959 2002-01-02  Nick Drochak  <ndrochak@gol.com>
5960
5961         * HttpRuntime.cs: fix spelling error/variable name change.
5962
5963 2001-12-18  Gaurav Vaish <gvaish@iitk.ac.in>
5964
5965         * HttpRuntime.cs       : Initial implementation
5966
5967 2001-08-29  Bob Smith  <bob@thestuff.net>
5968
5969         * HttpWorkerRequest.cs: Partial Implementation.
5970
5971 2001-08-16  Bob Smith  <bob@thestuff.net>
5972
5973          * HttpCookieCollection.cs, HttpCookie.cs: Bug fixes.
5974
5975 2001-08-09  Bob Smith  <bob@thestuff.net>
5976
5977          * BeginEventHandler.cs: Implemented.
5978          * EndEventHandler.cs: Implemented.
5979          * HttpCacheability.cs: Implemented.
5980          * HttpCacheRevalidation.cs: Implemented.
5981          * HttpCacheValidateHandler.cs: Implemented.
5982          * HttpCookieCollection.cs: Implemented.
5983          * HttpCookie.cs: Implemented.
5984          * HttpValidationStatus.cs: Implemented.
5985          * HttpWorkerRequest.EndOfSendNotification.cs: Implemented.
5986          * IHttpAsyncHandler.cs: Implemented.
5987          * IHttpHandler.cs: Implemented.
5988          * IHttpHandlerFactory.cs: Implemented.
5989          * IHttpModule.cs: Implemented.
5990          * ProcessShutdownReason.cs: Implemented.
5991          * ProcessStatus.cs: Implemented.
5992          * TraceMode.cs: Implemented.