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