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