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