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/ByNamespace.cs
parent6df61cf59701688b5a7cd4252e3f69ff4439cdec (diff)
Updates need to push class status info to web pages.
svn path=/trunk/mono/; revision=203
Diffstat (limited to 'status/ByNamespace.cs')
-rwxr-xr-xstatus/ByNamespace.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/status/ByNamespace.cs b/status/ByNamespace.cs
index b3313f1d1dc..7d16ef434ef 100755
--- a/status/ByNamespace.cs
+++ b/status/ByNamespace.cs
@@ -19,7 +19,7 @@ namespace Mono.StatusReporter {
static int Main (string[] args) {
XslTransform xslt = new XslTransform ();
xslt.Load ("ByNamespace.xsl");
- StreamWriter sw = new StreamWriter ("bn/index");
+ //StreamWriter sw = new StreamWriter ("bn/index");
XPathDocument doc = new XPathDocument ("class.xml");
@@ -35,7 +35,7 @@ namespace Mono.StatusReporter {
}
foreach (string str in nsList) {
- sw.WriteLine ("<li><a href=\"" + str + ".html\">" + str + "</a>");
+ //sw.WriteLine ("<li><a href=\"" + str + ".html\">" + str + "</a>");
XmlWriter writer = new XmlTextWriter ("bn/" + str, null);
@@ -47,7 +47,7 @@ namespace Mono.StatusReporter {
writer.Close ();
}
- sw.Close ();
+ //sw.Close ();
return 0;
}