[Mono-bugs] [Bug 59431][Maj] New - MONO Beta 1 Bug: Not HtmlEncoding Trace Output

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 2 Jun 2004 01:16:19 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by davidandrewtaylor@hotmail.com.

http://bugzilla.ximian.com/show_bug.cgi?id=59431

--- shadow/59431	2004-06-02 01:16:18.000000000 -0400
+++ shadow/59431.tmp.4642	2004-06-02 01:16:18.000000000 -0400
@@ -0,0 +1,41 @@
+Bug#: 59431
+Product: Mono: Class Libraries
+Version: unspecified
+OS: Red Hat 9.0
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 001 One hour
+Priority: Major
+Component: Sys.Web
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: davidandrewtaylor@hotmail.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: gonzalo@ximian.com,lluis@ximian.com
+Summary: MONO Beta 1 Bug: Not HtmlEncoding Trace Output
+
+Description of Problem:
+MONO is not HTMLEncoding Trace output viewed in a web browser.  This 
+could produce invalid HTML pages and output XML will not appear in the 
+web page (unless you view the HTML source).
+
+Steps to reproduce the problem:
+1. Run this ASPX Page:
+<%@ Page Trace="true" language="C#" %>
+<% Trace.Warn("<MyXml>Hello</MyXml>"); %>
+
+Actual Results:
+With MONO Beta 2:
+<MyXml>Hello</MyXml>
+
+Expected Results:
+As Per MS.NET V1.1:
+&lt;MyXml&gt;Hello&lt;/MyXml&gt;
+
+How often does this happen? 
+All the time for MONO Beta 2
+
+Additional Information:
+This needs to be fixed so invalid HTML pages are not generated.