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