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