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