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