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