[Mono-docs-list] Quick Monodoc patch
Ben Maurer
bmaurer@users.sourceforge.net
10 Jul 2003 18:27:02 -0500
--=-ssTLRJW3ZYwxAguErjpu
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
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?
--=-ssTLRJW3ZYwxAguErjpu
Content-Disposition: attachment; filename=mdocnamespaces.patch
Content-Type: text/x-patch; name=mdocnamespaces.patch; charset=UTF-8
Content-Transfer-Encoding: 7bit
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 <bmaurer@users.sourceforge.net>
+
+ * mono-ecma.xsl: Don't generate the excess monodoc namespaces.
+
2003-07-10 Miguel de Icaza <miguel@ximian.com>
* 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 -->
--=-ssTLRJW3ZYwxAguErjpu--