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