[Mono-docs-list] Monodoc patch
Ben Maurer
bmaurer@users.sourceforge.net
11 May 2003 13:58:51 -0400
--=-NY78ugA60p6KvvLX01jM
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
I made a quick patch for monodoc. It removes the need to write to
/tmp/blah.xml every time an xsl transform is done. It makes everything
much snappier.
Is it ok if I commit this?
--Ben
--=-NY78ugA60p6KvvLX01jM
Content-Disposition: attachment; filename=monodoc.patch
Content-Type: text/plain; name=monodoc.patch; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
? Makefile.in
? Makefile
Index: ChangeLog
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvs/public/monodoc/browser/ChangeLog,v
retrieving revision 1.27
diff -u -r1.27 ChangeLog
--- ChangeLog 17 Apr 2003 19:48:28 -0000 1.27
+++ ChangeLog 11 May 2003 18:03:52 -0000
@@ -1,3 +1,9 @@
+2003-05-11 Ben Maurer <bmaurer@users.sourceforge.net>
+ * ecma-provider.cs (Htmlize)
+ Removed line that saved stuff to /tmp/blah.xml. Increases
+ speed and will prepare for yoros's ASP.NET version which
+ will need to handle multiple requests at one time.
+
2003-04-17 Miguel de Icaza <miguel@ximian.com>
=20
* simple-provider.cs: Add new sample reference provider.
Index: ecma-provider.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvs/public/monodoc/browser/ecma-provider.cs,v
retrieving revision 1.39
diff -u -r1.39 ecma-provider.cs
--- ecma-provider.cs 17 Apr 2003 19:48:28 -0000 1.39
+++ ecma-provider.cs 11 May 2003 18:03:53 -0000
@@ -671,7 +671,6 @@
=20
new_root.AppendChild (new_root.ImportNode (ecma_xml, true));
=20
- new_root.Save ("/tmp/blah.xml");
StringWriter output =3D new StringWriter ();
ecma_transform.Transform (new_root, null, output);
=09
--=-NY78ugA60p6KvvLX01jM--