[Mono-bugs] [Bug 61517][Maj] Changed - Gdk.Key loop

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 25 Jul 2004 19:01:45 -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 bmaurer@users.sf.net.

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

--- shadow/61517	2004-07-25 14:39:48.000000000 -0400
+++ shadow/61517.tmp.23318	2004-07-25 19:01:45.000000000 -0400
@@ -41,6 +41,32 @@
 ------- Additional Comments From miguel@ximian.com  2004-07-25 14:39 -------
 I have confirmed this bug;  XSLT is entering into a loop.
 
 Ben, can you please look into this problem?
 
 Just click on `Gnome Libraries', `Gdk', `Key enumeration' to reproduce
+
+------- Additional Comments From bmaurer@users.sf.net  2004-07-25 19:01 -------
+Apply this patch to monodoc:
+
+Index: mono-ecma.xsl
+===================================================================
+RCS file: /cvs/public/monodoc/browser/mono-ecma.xsl,v
+retrieving revision 1.35
+diff -u -r1.35 mono-ecma.xsl
+--- mono-ecma.xsl       30 Jun 2004 22:22:13 -0000      1.35
++++ mono-ecma.xsl       25 Jul 2004 21:49:09 -0000
+@@ -913,6 +913,7 @@
+                        </tr>
+  
+                        <xsl:for-each
+select="Members/Member[MemberType='Field']">
++                               <xsl:message>aaa</xsl:message>
+                                <xsl:if test="not(@MemberName='value__')">
+                                        <tr><td><b>
+                                                <xsl:value-of
+select="@MemberName"/>
+
+
+What it does is to print `aaa' as it processes each field. When I look
+at Gdk.Key the `aaa' continues to come, however, it is fairly slow.
+You are thinking it is a loop because Gdk.Key is so big.