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