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