Hey guys, I have a quick patch for Monodoc that makes it so that we don't put in excess xmlns stuff (we were generating code like <p xmlns:monodoc="monodoc://extensions">)
Is it ok to commit?
Index: ChangeLog =================================================================== RCS file: /cvs/public/monodoc/browser/ChangeLog,v retrieving revision 1.45 diff -u -r1.45 ChangeLog --- ChangeLog 10 Jul 2003 16:34:32 -0000 1.45 +++ ChangeLog 10 Jul 2003 23:35:43 -0000 @@ -1,3 +1,7 @@ +2003-07-10 Ben Maurer <[EMAIL PROTECTED]> + + * mono-ecma.xsl: Don't generate the excess monodoc namespaces. + 2003-07-10 Miguel de Icaza <[EMAIL PROTECTED]> * list.cs: Add suppot for selecting a particular line visually. Index: mono-ecma.xsl =================================================================== RCS file: /cvs/public/monodoc/browser/mono-ecma.xsl,v retrieving revision 1.13 diff -u -r1.13 mono-ecma.xsl --- mono-ecma.xsl 10 Jul 2003 16:34:32 -0000 1.13 +++ mono-ecma.xsl 10 Jul 2003 23:35:43 -0000 @@ -14,6 +14,7 @@ version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:monodoc="monodoc://extensions" + exclude-result-prefixes="monodoc" > <!-- TEMPLATE PARAMETERS -->
