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