Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean MacIsaac <macisaac@mono-cvs.ximian.com>2001-07-18 01:55:28 +0400
committerSean MacIsaac <macisaac@mono-cvs.ximian.com>2001-07-18 01:55:28 +0400
commit572b58562348e0e5f35426df3bf01a015e5d15b1 (patch)
treea154bbd313f494f8aae7b527fd738eb2781006c4 /status/ByMaintainer.cs
parent6df61cf59701688b5a7cd4252e3f69ff4439cdec (diff)
Updates need to push class status info to web pages.
svn path=/trunk/mono/; revision=203
Diffstat (limited to 'status/ByMaintainer.cs')
-rwxr-xr-xstatus/ByMaintainer.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/status/ByMaintainer.cs b/status/ByMaintainer.cs
index d6e1fbaf8db..c6643834af1 100755
--- a/status/ByMaintainer.cs
+++ b/status/ByMaintainer.cs
@@ -18,7 +18,7 @@ namespace Mono.StatusReporter {
static int Main (string[] args) {
XslTransform xslt = new XslTransform ();
xslt.Load ("ByMaintainer.xsl");
- StreamWriter sw = new StreamWriter ("bm/index");
+ //StreamWriter sw = new StreamWriter ("bm/index");
XPathDocument doc = new XPathDocument ("class.xml");
@@ -31,7 +31,7 @@ namespace Mono.StatusReporter {
string email = node.Attributes.GetNamedItem("email").Value;
string name = node.Attributes.GetNamedItem("name").Value;
- sw.WriteLine ("<li><a href=\"" + email + ".html\">" + email + "</a>");
+ //sw.WriteLine ("<li><a href=\"" + email + ".html\">" + email + "</a>");
XmlWriter writer = new XmlTextWriter ("bm/" + email, null);
@@ -44,7 +44,7 @@ namespace Mono.StatusReporter {
writer.Close ();
}
- sw.Close ();
+ //sw.Close ();
return 0;
}