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