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