You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(28) |
Oct
(117) |
Nov
(32) |
Dec
(90) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(70) |
Feb
(71) |
Mar
(120) |
Apr
(78) |
May
(11) |
Jun
(3) |
Jul
(20) |
Aug
(62) |
Sep
(150) |
Oct
(45) |
Nov
(29) |
Dec
(30) |
2003 |
Jan
(65) |
Feb
(14) |
Mar
(4) |
Apr
(15) |
May
(24) |
Jun
(61) |
Jul
(295) |
Aug
(14) |
Sep
(4) |
Oct
(22) |
Nov
(98) |
Dec
(40) |
2004 |
Jan
(69) |
Feb
(211) |
Mar
(254) |
Apr
(90) |
May
(92) |
Jun
(29) |
Jul
(69) |
Aug
(38) |
Sep
(112) |
Oct
(55) |
Nov
(159) |
Dec
(42) |
2005 |
Jan
(88) |
Feb
(64) |
Mar
(24) |
Apr
(6) |
May
(7) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
(20) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(31) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(66) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Jason D. <inj...@us...> - 2001-09-30 06:34:08
|
Update of /cvsroot/ndoc/ndoc/src/Simple In directory usw-pr-cvs1:/tmp/cvs-serv32510/src/Simple Modified Files: Simple.csproj Added Files: namespaces.xslt Log Message: Added "namespaces" transform to XsltDocumenter and implemented the View method. --- NEW FILE: namespaces.xslt --- <?xml version="1.0" encoding="utf-8" ?> <xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <!-- --> <xsl:template match="/"> <html> <body> <h1>Namespaces</h1> <dl> <xsl:for-each select="ndoc/assembly/module/namespace"> <xsl:sort select="@name" /> <xsl:if test="not(preceding-sibling::namespace[@name=current()/@name])"> <dd> <a> <xsl:attribute name="href"> <xsl:call-template name="get-href-to-namespace"> <xsl:with-param name="namespace-name" select="@name" /> </xsl:call-template> </xsl:attribute> <xsl:value-of select="@name" /> </a> </dd> <dt> <xsl:apply-templates select="documentation/summary/node()" /> </dt> </xsl:if> </xsl:for-each> </dl> </body> </html> </xsl:template> <!-- --> <xsl:template name="get-href-to-namespace"> <xsl:param name="namespace-name" /> <xsl:value-of select="concat($namespace-name, '.html')" /> </xsl:template> <!-- --> </xsl:transform> Index: Simple.csproj =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Simple/Simple.csproj,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Simple.csproj 2001/09/28 17:18:40 1.1.1.1 --- Simple.csproj 2001/09/30 06:34:02 1.2 *************** *** 74,77 **** --- 74,81 ---- BuildAction = "Content" /> + <File + RelPath = "namespaces.xslt" + BuildAction = "Content" + /> </Include> </Files> |
From: Jason D. <inj...@us...> - 2001-09-30 06:34:08
|
Update of /cvsroot/ndoc/ndoc/src/Core In directory usw-pr-cvs1:/tmp/cvs-serv32510/src/Core Modified Files: XsltDocumenter.cs Log Message: Added "namespaces" transform to XsltDocumenter and implemented the View method. Index: XsltDocumenter.cs =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Core/XsltDocumenter.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XsltDocumenter.cs 2001/09/28 17:25:51 1.1 --- XsltDocumenter.cs 2001/09/30 06:34:02 1.2 *************** *** 31,34 **** --- 31,35 ---- public override void View() { + Process.Start(Path.Combine(MyConfig.OutputDirectory, GetFilenameForNamespaces())); } *************** *** 166,169 **** --- 167,174 ---- private void TransformNamespaces() { + Transform( + "namespaces", + GetFilenameForNamespaces()); + XmlNodeList namespaceNodeList = Document.SelectNodes("/ndoc/assembly/module/namespace"); XmlNode[] namespaceNodes = SortNodes(namespaceNodeList, "name"); *************** *** 182,185 **** --- 187,195 ---- previousNamespaceName = currentNamespaceName; } + } + + private string GetFilenameForNamespaces() + { + return "index.html"; } |
From: Jason D. <inj...@us...> - 2001-09-30 06:17:26
|
Update of /cvsroot/ndoc/ndoc/src/Simple In directory usw-pr-cvs1:/tmp/cvs-serv30249/src/Simple Modified Files: class.xslt Log Message: Added some more details to the class page. Index: class.xslt =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Simple/class.xslt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** class.xslt 2001/09/28 17:18:40 1.1.1.1 --- class.xslt 2001/09/30 06:17:24 1.2 *************** *** 20,24 **** <xsl:attribute name="href"> <xsl:call-template name="get-href-to-members"> ! <xsl:with-param name="class-id" /> </xsl:call-template> </xsl:attribute> --- 20,24 ---- <xsl:attribute name="href"> <xsl:call-template name="get-href-to-members"> ! <xsl:with-param name="class-id" select="$class/@id" /> </xsl:call-template> </xsl:attribute> *************** *** 28,31 **** --- 28,74 ---- <xsl:text>.</xsl:text> </p> + <pre style="background-color: #dddddd;"> + <xsl:text>[C#]
</xsl:text> + <b> + <xsl:choose> + <xsl:when test="$class/@access='Public'">public</xsl:when> + <xsl:otherwise>ERROR</xsl:otherwise> + </xsl:choose> + <xsl:text> class </xsl:text> + <xsl:value-of select="$class/@name" /> + <xsl:if test="$class/base"> + <xsl:text> : </xsl:text> + <xsl:value-of select="$class/base/@name" /> + </xsl:if> + </b> + </pre> + <xsl:if test="$class/documentation/remarks"> + <h4>Remarks</h4> + <p> + <xsl:apply-templates select="$class/documentation/remarks/node()" /> + </p> + </xsl:if> + <h4>See Also</h4> + <p> + <a> + <xsl:attribute name="href"> + <xsl:call-template name="get-href-to-members"> + <xsl:with-param name="class-id" select="$class/@id" /> + </xsl:call-template> + </xsl:attribute> + <xsl:value-of select="$class/@name" /> + <xsl:text> Members</xsl:text> + </a> + <xsl:text> | </xsl:text> + <a> + <xsl:attribute name="href"> + <xsl:call-template name="get-href-to-namespace"> + <xsl:with-param name="class" select="$class" /> + </xsl:call-template> + </xsl:attribute> + <xsl:value-of select="$class/../@name" /> + <xsl:text> Namespace</xsl:text> + </a> + </p> </body> </html> *************** *** 35,38 **** --- 78,86 ---- <xsl:param name="class-id" /> <xsl:value-of select="concat(substring-after($class-id, 'T:'), 'Members.html')" /> + </xsl:template> + <!-- --> + <xsl:template name="get-href-to-namespace"> + <xsl:param name="class" /> + <xsl:value-of select="concat($class/../@name, '.html')" /> </xsl:template> <!-- --> |
From: Jason D. <inj...@us...> - 2001-09-30 05:46:14
|
Update of /cvsroot/ndoc/ndoc/src/Simple In directory usw-pr-cvs1:/tmp/cvs-serv26295/src/Simple Modified Files: class-members.xslt Log Message: Added special case for constructor names and documentation. Index: class-members.xslt =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Simple/class-members.xslt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class-members.xslt 2001/09/30 01:35:02 1.3 --- class-members.xslt 2001/09/30 05:46:11 1.4 *************** *** 125,138 **** <tr> <td width="50%" valign="top"> ! <xsl:value-of select="@name" /> ! <xsl:if test="@declaringType"> ! <xsl:text> (Inherited from </xsl:text> ! <xsl:value-of select="@declaringType" /> ! <xsl:text>)</xsl:text> ! </xsl:if> </td> <td width="50%" valign="top"> <xsl:if test="@overload">Overloaded. </xsl:if> ! <xsl:apply-templates select="documentation/summary/node()" /> </td> </tr> --- 125,155 ---- <tr> <td width="50%" valign="top"> ! <xsl:choose> ! <xsl:when test="$name='constructor'"> ! <xsl:value-of select="$type/@name" /> ! <xsl:text> Constructor</xsl:text> ! </xsl:when> ! <xsl:otherwise> ! <xsl:value-of select="@name" /> ! <xsl:if test="@declaringType"> ! <xsl:text> (Inherited from </xsl:text> ! <xsl:value-of select="@declaringType" /> ! <xsl:text>)</xsl:text> ! </xsl:if> ! </xsl:otherwise> ! </xsl:choose> </td> <td width="50%" valign="top"> <xsl:if test="@overload">Overloaded. </xsl:if> ! <xsl:choose> ! <xsl:when test="$name='constructor' and not(documentation/summary)"> ! <xsl:text>Initializes a new instance of the </xsl:text> ! <xsl:value-of select="$type/@name" /> ! <xsl:text> class.</xsl:text> ! </xsl:when> ! <xsl:otherwise> ! <xsl:apply-templates select="documentation/summary/node()" /> ! </xsl:otherwise> ! </xsl:choose> </td> </tr> |
From: Jason D. <inj...@us...> - 2001-09-30 05:45:35
|
Update of /cvsroot/ndoc/ndoc/src/Test In directory usw-pr-cvs1:/tmp/cvs-serv26247/src/Test Modified Files: Test.cs Log Message: Added some more static members. Index: Test.cs =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Test/Test.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Test.cs 2001/09/28 21:16:02 1.2 --- Test.cs 2001/09/30 05:45:32 1.3 *************** *** 13,16 **** --- 13,19 ---- public int Field; + /// <summary>Holds a static <c>int</c> value.</summary> + public static int StaticField; + /// <summary>Gets a value.</summary> public int Property *************** *** 19,22 **** --- 22,31 ---- } + /// <summary>Gets a static value.</summary> + public static int StaticProperty + { + get { return 0; } + } + /// <summary>This overloaded indexer accepts an int.</summary> public int this[int i] *************** *** 33,36 **** --- 42,48 ---- /// <summary>Executes some code.</summary> public void Method() { } + + /// <summary>Executes some static code.</summary> + public static void StaticMethod() { } /// <summary>This is a simple event that uses the Handler delegate.</summary> |
From: Jason D. <inj...@us...> - 2001-09-30 01:35:05
|
Update of /cvsroot/ndoc/ndoc/src/Simple In directory usw-pr-cvs1:/tmp/cvs-serv26740/src/Simple Modified Files: class-members.xslt Log Message: Factored out code common to all types of members. Index: class-members.xslt =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Simple/class-members.xslt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** class-members.xslt 2001/09/28 21:11:52 1.2 --- class-members.xslt 2001/09/30 01:35:02 1.3 *************** *** 12,43 **** <xsl:text> Members</xsl:text> </h1> ! <xsl:variable name="public-instance-methods" select="$class/method[@access='Public' and not(@static)]" /> ! <xsl:if test="$public-instance-methods"> ! <h4>Public Instance Methods</h4> ! <table border="1"> ! <xsl:for-each select="$public-instance-methods"> ! <xsl:sort select="@name" /> ! <xsl:if test="not(preceding-sibling::method[@name=current()/@name])"> ! <tr> ! <td width="50%" valign="top"> ! <xsl:value-of select="@name" /> ! <xsl:if test="@declaringType"> ! <xsl:text> (Inherited from </xsl:text> ! <xsl:value-of select="@declaringType" /> ! <xsl:text>)</xsl:text> ! </xsl:if> ! </td> ! <td width="50%" valign="top"> ! <xsl:if test="@overload">Overloaded. </xsl:if> ! <xsl:apply-templates select="documentation/summary/node()" /> ! </td> ! </tr> ! </xsl:if> ! </xsl:for-each> ! </table> ! </xsl:if> </body> </html> </xsl:template> <!-- --> </xsl:transform> --- 12,144 ---- <xsl:text> Members</xsl:text> </h1> ! <!-- public static members --> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'constructor'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="true()" /> ! </xsl:call-template> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'field'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="true()" /> ! </xsl:call-template> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'property'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="true()" /> ! </xsl:call-template> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'method'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="true()" /> ! </xsl:call-template> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'operator'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="true()" /> ! </xsl:call-template> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'event'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="true()" /> ! </xsl:call-template> ! <!-- public instance members --> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'constructor'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="false()" /> ! </xsl:call-template> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'field'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="false()" /> ! </xsl:call-template> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'property'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="false()" /> ! </xsl:call-template> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'method'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="false()" /> ! </xsl:call-template> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'operator'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="false()" /> ! </xsl:call-template> ! <xsl:call-template name="output-members"> ! <xsl:with-param name="type" select="$class" /> ! <xsl:with-param name="name" select="'event'" /> ! <xsl:with-param name="access" select="'Public'" /> ! <xsl:with-param name="static" select="false()" /> ! </xsl:call-template> </body> </html> </xsl:template> <!-- --> + <xsl:template name="output-members"> + <xsl:param name="type" /> + <xsl:param name="name" /> + <xsl:param name="access" /> + <xsl:param name="static" /> + <xsl:variable name="members" select="$type/*[name()=$name and @access=$access and (@contract='Static')=$static]" /> + <xsl:if test="$members"> + <h4> + <xsl:choose> + <xsl:when test="$access='Public'">Public</xsl:when> + <xsl:when test="$access='Family'">Protected</xsl:when> + <xsl:otherwise>ERROR</xsl:otherwise> + </xsl:choose> + <xsl:text> </xsl:text> + <xsl:choose> + <xsl:when test="$static=true()">Static (Shared)</xsl:when> + <xsl:when test="$static=false()">Instance</xsl:when> + <xsl:otherwise>ERROR</xsl:otherwise> + </xsl:choose> + <xsl:text> </xsl:text> + <xsl:choose> + <xsl:when test="$name='constructor'">Constructors</xsl:when> + <xsl:when test="$name='field'">Fields</xsl:when> + <xsl:when test="$name='property'">Properties</xsl:when> + <xsl:when test="$name='method'">Methods</xsl:when> + <xsl:when test="$name='operator'">Operators</xsl:when> + <xsl:when test="$name='event'">Events</xsl:when> + </xsl:choose> + </h4> + <table border="1" width="100%"> + <xsl:for-each select="$members"> + <xsl:sort select="@name" /> + <xsl:if test="not(preceding-sibling::*[@name=current()/@name])"> + <tr> + <td width="50%" valign="top"> + <xsl:value-of select="@name" /> + <xsl:if test="@declaringType"> + <xsl:text> (Inherited from </xsl:text> + <xsl:value-of select="@declaringType" /> + <xsl:text>)</xsl:text> + </xsl:if> + </td> + <td width="50%" valign="top"> + <xsl:if test="@overload">Overloaded. </xsl:if> + <xsl:apply-templates select="documentation/summary/node()" /> + </td> + </tr> + </xsl:if> + </xsl:for-each> + </table> + </xsl:if> + </xsl:template> </xsl:transform> |
From: Jason D. <inj...@us...> - 2001-09-30 01:34:26
|
Update of /cvsroot/ndoc/ndoc In directory usw-pr-cvs1:/tmp/cvs-serv26634 Modified Files: Test.ndoc.xml Log Message: Added directory properties for testing XSLT documenter. Index: Test.ndoc.xml =================================================================== RCS file: /cvsroot/ndoc/ndoc/Test.ndoc.xml,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Test.ndoc.xml 2001/09/28 17:18:25 1.1.1.1 --- Test.ndoc.xml 2001/09/30 01:34:23 1.2 *************** *** 4,10 **** </assemblies> <documenters> ! <documenter name="JavaDoc"> ! <property name="Title" value="NDoc" /> ! <property name="OutputDirectory" value=".\docs\Test\JavaDoc\" /> <property name="ShowMissingSummaries" value="False" /> <property name="ShowMissingRemarks" value="False" /> --- 4,10 ---- </assemblies> <documenters> ! <documenter name="XSLT"> ! <property name="XsltDirectory" value=".\src\Simple" /> ! <property name="OutputDirectory" value=".\docs\Test\XSLT" /> <property name="ShowMissingSummaries" value="False" /> <property name="ShowMissingRemarks" value="False" /> *************** *** 15,23 **** <property name="DocumentPrivates" value="False" /> </documenter> ! <documenter name="MSDN"> ! <property name="OutputDirectory" value=".\docs\Test\MSDN\" /> ! <property name="HtmlHelpName" value="NDoc.Test" /> ! <property name="HtmlHelpCompilerFilename" value="C:\Program Files\HTML Help Workshop\hhc.exe" /> ! <property name="IncludeFavorites" value="False" /> <property name="ShowMissingSummaries" value="False" /> <property name="ShowMissingRemarks" value="False" /> --- 15,20 ---- <property name="DocumentPrivates" value="False" /> </documenter> ! <documenter name="XML"> ! <property name="OutputFile" value=".\docs\Test\Test.xml" /> <property name="ShowMissingSummaries" value="False" /> <property name="ShowMissingRemarks" value="False" /> *************** *** 28,33 **** <property name="DocumentPrivates" value="False" /> </documenter> ! <documenter name="XML"> ! <property name="OutputFile" value=".\docs\Test\Test.xml" /> <property name="ShowMissingSummaries" value="False" /> <property name="ShowMissingRemarks" value="False" /> --- 25,44 ---- <property name="DocumentPrivates" value="False" /> </documenter> ! <documenter name="JavaDoc"> ! <property name="Title" value="NDoc" /> ! <property name="OutputDirectory" value=".\docs\Test\JavaDoc\" /> ! <property name="ShowMissingSummaries" value="False" /> ! <property name="ShowMissingRemarks" value="False" /> ! <property name="ShowMissingParams" value="False" /> ! <property name="ShowMissingReturns" value="False" /> ! <property name="ShowMissingValues" value="False" /> ! <property name="DocumentInternals" value="False" /> ! <property name="DocumentPrivates" value="False" /> ! </documenter> ! <documenter name="MSDN"> ! <property name="OutputDirectory" value=".\docs\Test\MSDN\" /> ! <property name="HtmlHelpName" value="NDoc.Test" /> ! <property name="HtmlHelpCompilerFilename" value="C:\Program Files\HTML Help Workshop\hhc.exe" /> ! <property name="IncludeFavorites" value="False" /> <property name="ShowMissingSummaries" value="False" /> <property name="ShowMissingRemarks" value="False" /> |
From: Jean-Claude M. <jc...@us...> - 2001-09-29 05:07:15
|
Update of /cvsroot/ndoc/ndoc/src/Gui In directory usw-pr-cvs1:/tmp/cvs-serv24326/Gui Modified Files: AboutForm.cs Gui.csproj MainForm.cs Log Message: Added Keith Hill in credits and implemented position & size persistence in main form. Index: AboutForm.cs =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Gui/AboutForm.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AboutForm.cs 2001/09/29 03:52:23 1.2 --- AboutForm.cs 2001/09/29 05:07:12 1.3 *************** *** 51,55 **** mailLinkLabel.Links.Add(13, 13, "mailto:ja...@in..."); mailLinkLabel.Links.Add(28, 10, "mailto:kra...@ho..."); ! mailLinkLabel.Links.Add(43, 18, "mailto:jc...@ma..."); // Set up web links --- 51,56 ---- mailLinkLabel.Links.Add(13, 13, "mailto:ja...@in..."); mailLinkLabel.Links.Add(28, 10, "mailto:kra...@ho..."); ! mailLinkLabel.Links.Add(40, 18, "mailto:jc...@ma..."); ! mailLinkLabel.Links.Add(63, 10, "mailto:kei...@ag..."); // Set up web links *************** *** 136,140 **** this.mailLinkLabel.Size = new System.Drawing.Size(504, 16); this.mailLinkLabel.TabIndex = 0; ! this.mailLinkLabel.Text = "Developers: Jason Diamond, Kral Ferch and Jean-Claude Manoli"; this.mailLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.mailLinkLabel_LinkClicked); // --- 137,141 ---- this.mailLinkLabel.Size = new System.Drawing.Size(504, 16); this.mailLinkLabel.TabIndex = 0; ! this.mailLinkLabel.Text = "Developers: Jason Diamond, Kral Ferch, Jean-Claude Manoli and Keith Hill"; this.mailLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.mailLinkLabel_LinkClicked); // *************** *** 150,154 **** this.assembliesListView.Location = new System.Drawing.Point(8, 16); this.assembliesListView.Name = "assembliesListView"; ! this.assembliesListView.Size = new System.Drawing.Size(504, 132); this.assembliesListView.TabIndex = 0; this.assembliesListView.View = System.Windows.Forms.View.Details; --- 151,155 ---- this.assembliesListView.Location = new System.Drawing.Point(8, 16); this.assembliesListView.Name = "assembliesListView"; ! this.assembliesListView.Size = new System.Drawing.Size(504, 152); this.assembliesListView.TabIndex = 0; this.assembliesListView.View = System.Windows.Forms.View.Details; *************** *** 169,173 **** this.closeButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.System; ! this.closeButton.Location = new System.Drawing.Point(448, 396); this.closeButton.Name = "closeButton"; this.closeButton.TabIndex = 0; --- 170,174 ---- this.closeButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.System; ! this.closeButton.Location = new System.Drawing.Point(448, 408); this.closeButton.Name = "closeButton"; this.closeButton.TabIndex = 0; *************** *** 227,231 **** this.versionHeaderGroupBox.Name = "versionHeaderGroupBox"; this.versionHeaderGroupBox.Padding = 0; ! this.versionHeaderGroupBox.Size = new System.Drawing.Size(520, 162); this.versionHeaderGroupBox.TabIndex = 1; this.versionHeaderGroupBox.TabStop = false; --- 228,232 ---- this.versionHeaderGroupBox.Name = "versionHeaderGroupBox"; this.versionHeaderGroupBox.Padding = 0; ! this.versionHeaderGroupBox.Size = new System.Drawing.Size(520, 182); this.versionHeaderGroupBox.TabIndex = 1; this.versionHeaderGroupBox.TabStop = false; *************** *** 237,241 **** this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.CancelButton = this.closeButton; ! this.ClientSize = new System.Drawing.Size(542, 440); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.urlHeaderGroupBox, --- 238,242 ---- this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.CancelButton = this.closeButton; ! this.ClientSize = new System.Drawing.Size(544, 442); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.urlHeaderGroupBox, Index: Gui.csproj =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Gui/Gui.csproj,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Gui.csproj 2001/09/29 04:00:40 1.2 --- Gui.csproj 2001/09/29 05:07:12 1.3 *************** *** 148,151 **** --- 148,155 ---- /> <File + RelPath = "licenses.licx" + BuildAction = "Content" + /> + <File RelPath = "MainForm.cs" SubType = "Form" Index: MainForm.cs =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Gui/MainForm.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MainForm.cs 2001/09/29 03:52:23 1.2 --- MainForm.cs 2001/09/29 05:07:12 1.3 *************** *** 211,219 **** this.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm)); - this.menuDocBuildItem = new System.Windows.Forms.MenuItem(); this.progressBar = new System.Windows.Forms.ProgressBar(); this.menuFileExitItem = new System.Windows.Forms.MenuItem(); this.newToolBarButton = new System.Windows.Forms.ToolBarButton(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.menuFileSaveItem = new System.Windows.Forms.MenuItem(); this.mainMenu1 = new System.Windows.Forms.MainMenu(); --- 211,219 ---- this.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm)); this.progressBar = new System.Windows.Forms.ProgressBar(); this.menuFileExitItem = new System.Windows.Forms.MenuItem(); this.newToolBarButton = new System.Windows.Forms.ToolBarButton(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); + this.menuSpacerItem3 = new System.Windows.Forms.MenuItem(); this.menuFileSaveItem = new System.Windows.Forms.MenuItem(); this.mainMenu1 = new System.Windows.Forms.MainMenu(); *************** *** 226,231 **** this.menuSpacerItem2 = new System.Windows.Forms.MenuItem(); this.menuFileRecentProjectsItem = new System.Windows.Forms.MenuItem(); - this.menuSpacerItem3 = new System.Windows.Forms.MenuItem(); this.menuDocItem = new System.Windows.Forms.MenuItem(); this.menuDocViewItem = new System.Windows.Forms.MenuItem(); this.menuAboutItem = new System.Windows.Forms.MenuItem(); --- 226,231 ---- this.menuSpacerItem2 = new System.Windows.Forms.MenuItem(); this.menuFileRecentProjectsItem = new System.Windows.Forms.MenuItem(); this.menuDocItem = new System.Windows.Forms.MenuItem(); + this.menuDocBuildItem = new System.Windows.Forms.MenuItem(); this.menuDocViewItem = new System.Windows.Forms.MenuItem(); this.menuAboutItem = new System.Windows.Forms.MenuItem(); *************** *** 256,265 **** this.SuspendLayout(); // - // menuDocBuildItem - // - this.menuDocBuildItem.Index = 0; - this.menuDocBuildItem.Text = "&Build"; - this.menuDocBuildItem.Click += new System.EventHandler(this.menuDocBuildItem_Click); - // // progressBar // --- 256,259 ---- *************** *** 289,292 **** --- 283,291 ---- this.imageList1.TransparentColor = System.Drawing.Color.Transparent; // + // menuSpacerItem3 + // + this.menuSpacerItem3.Index = 8; + this.menuSpacerItem3.Text = "-"; + // // menuFileSaveItem // *************** *** 357,365 **** this.menuFileRecentProjectsItem.Text = "&Recent Projects"; // - // menuSpacerItem3 - // - this.menuSpacerItem3.Index = 8; - this.menuSpacerItem3.Text = "-"; - // // menuDocItem // --- 356,359 ---- *************** *** 370,373 **** --- 364,373 ---- this.menuDocItem.Text = "&Documentation"; // + // menuDocBuildItem + // + this.menuDocBuildItem.Index = 0; + this.menuDocBuildItem.Text = "&Build"; + this.menuDocBuildItem.Click += new System.EventHandler(this.menuDocBuildItem_Click); + // // menuDocViewItem // *************** *** 603,606 **** --- 603,607 ---- this.Name = "MainForm"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show; + this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; this.Text = "NDoc"; this.documenterHeaderGroupBox.ResumeLayout(false); *************** *** 771,774 **** --- 772,786 ---- documenterName = reader.ReadString(); break; + case "window": + reader.MoveToNextAttribute(); + this.Left = int.Parse(reader.Value); + reader.MoveToNextAttribute(); + this.Top = int.Parse(reader.Value); + reader.MoveToNextAttribute(); + this.Width = int.Parse(reader.Value); + reader.MoveToNextAttribute(); + //HACK: subtract 20 to last height to keep it constant + this.Height = int.Parse(reader.Value) - 20; + break; } } *************** *** 824,832 **** XmlTextWriter writer = new XmlTextWriter(streamWriter); writer.Formatting = Formatting.Indented; ! writer.Indentation = 4; writer.WriteStartElement("ndoc.gui"); WriteRecentProjects(writer); writer.WriteElementString("documenter", ((IDocumenter)project.Documenters[comboBoxDocumenters.SelectedIndex]).Name); writer.WriteEndElement(); --- 836,850 ---- XmlTextWriter writer = new XmlTextWriter(streamWriter); writer.Formatting = Formatting.Indented; ! writer.Indentation = 2; writer.WriteStartElement("ndoc.gui"); WriteRecentProjects(writer); writer.WriteElementString("documenter", ((IDocumenter)project.Documenters[comboBoxDocumenters.SelectedIndex]).Name); + writer.WriteStartElement("window"); + writer.WriteAttributeString("", "left", "", this.Location.X.ToString()); + writer.WriteAttributeString("", "top", "", this.Location.Y.ToString()); + writer.WriteAttributeString("", "width", "", this.Width.ToString()); + writer.WriteAttributeString("", "height", "", this.Height.ToString()); + writer.WriteEndElement(); writer.WriteEndElement(); |
From: Jean-Claude M. <jc...@us...> - 2001-09-29 04:00:43
|
Update of /cvsroot/ndoc/ndoc/src/Gui In directory usw-pr-cvs1:/tmp/cvs-serv15593 Modified Files: Gui.csproj Log Message: Removed licence.lic file from project. Index: Gui.csproj =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Gui/Gui.csproj,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Gui.csproj 2001/09/28 17:18:37 1.1.1.1 --- Gui.csproj 2001/09/29 04:00:40 1.2 *************** *** 148,155 **** /> <File - RelPath = "licenses.licx" - BuildAction = "Content" - /> - <File RelPath = "MainForm.cs" SubType = "Form" --- 148,151 ---- |
From: Jean-Claude M. <jc...@us...> - 2001-09-29 03:52:26
|
Update of /cvsroot/ndoc/ndoc/src/Gui In directory usw-pr-cvs1:/tmp/cvs-serv14546/src/Gui Modified Files: AboutForm.cs MainForm.cs Log Message: Fixed a bug with thread abort detection + minor cosmetic issues. Index: AboutForm.cs =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Gui/AboutForm.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** AboutForm.cs 2001/09/28 17:18:36 1.1.1.1 --- AboutForm.cs 2001/09/29 03:52:23 1.2 *************** *** 17,28 **** #region Fields private System.Windows.Forms.Button closeButton; - private System.Windows.Forms.ColumnHeader versionColumnHeader; private System.Windows.Forms.RichTextBox richTextBox; - private System.Windows.Forms.ColumnHeader assemblyColumnHeader; private NDoc.Gui.HeaderGroupBox urlHeaderGroupBox; - private NDoc.Gui.HeaderGroupBox versionHeaderGroupBox; private System.Windows.Forms.LinkLabel mailLinkLabel; private System.Windows.Forms.LinkLabel webLinkLabel; private System.Windows.Forms.ListView assembliesListView; /// <summary> /// Required designer variable. --- 17,28 ---- #region Fields private System.Windows.Forms.Button closeButton; private System.Windows.Forms.RichTextBox richTextBox; private NDoc.Gui.HeaderGroupBox urlHeaderGroupBox; private System.Windows.Forms.LinkLabel mailLinkLabel; private System.Windows.Forms.LinkLabel webLinkLabel; + private NDoc.Gui.HeaderGroupBox versionHeaderGroupBox; + private System.Windows.Forms.ColumnHeader assemblyColumnHeader; private System.Windows.Forms.ListView assembliesListView; + private System.Windows.Forms.ColumnHeader versionColumnHeader; /// <summary> /// Required designer variable. *************** *** 56,61 **** webLinkLabel.Links.Add(12, 12, "http://sourceforge.net/projects/ndoc"); webLinkLabel.Links.Add(26, 13, "http://sourceforge.net/tracker/?func=add&group_id=36057&atid=416078"); ! webLinkLabel.Links.Add(41, 12, "http://sourceforge.net/mail/?group_id=36057"); ! webLinkLabel.Links.Add(55, 10, "http://www.opensource.org/"); try --- 56,61 ---- webLinkLabel.Links.Add(12, 12, "http://sourceforge.net/projects/ndoc"); webLinkLabel.Links.Add(26, 13, "http://sourceforge.net/tracker/?func=add&group_id=36057&atid=416078"); ! webLinkLabel.Links.Add(41, 11, "http://sourceforge.net/mail/?group_id=36057"); ! webLinkLabel.Links.Add(54, 10, "http://www.opensource.org/"); try *************** *** 132,138 **** this.mailLinkLabel.FlatStyle = System.Windows.Forms.FlatStyle.System; this.mailLinkLabel.LinkArea = new System.Windows.Forms.LinkArea(0, 0); ! this.mailLinkLabel.Location = new System.Drawing.Point(8, 24); this.mailLinkLabel.Name = "mailLinkLabel"; ! this.mailLinkLabel.Size = new System.Drawing.Size(472, 16); this.mailLinkLabel.TabIndex = 0; this.mailLinkLabel.Text = "Developers: Jason Diamond, Kral Ferch and Jean-Claude Manoli"; --- 132,138 ---- this.mailLinkLabel.FlatStyle = System.Windows.Forms.FlatStyle.System; this.mailLinkLabel.LinkArea = new System.Windows.Forms.LinkArea(0, 0); ! this.mailLinkLabel.Location = new System.Drawing.Point(8, 16); this.mailLinkLabel.Name = "mailLinkLabel"; ! this.mailLinkLabel.Size = new System.Drawing.Size(504, 16); this.mailLinkLabel.TabIndex = 0; this.mailLinkLabel.Text = "Developers: Jason Diamond, Kral Ferch and Jean-Claude Manoli"; *************** *** 148,154 **** this.versionColumnHeader}); this.assembliesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; ! this.assembliesListView.Location = new System.Drawing.Point(8, 24); this.assembliesListView.Name = "assembliesListView"; ! this.assembliesListView.Size = new System.Drawing.Size(480, 118); this.assembliesListView.TabIndex = 0; this.assembliesListView.View = System.Windows.Forms.View.Details; --- 148,154 ---- this.versionColumnHeader}); this.assembliesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; ! this.assembliesListView.Location = new System.Drawing.Point(8, 16); this.assembliesListView.Name = "assembliesListView"; ! this.assembliesListView.Size = new System.Drawing.Size(504, 132); this.assembliesListView.TabIndex = 0; this.assembliesListView.View = System.Windows.Forms.View.Details; *************** *** 162,166 **** // this.versionColumnHeader.Text = "Version"; ! this.versionColumnHeader.Width = 225; // // closeButton --- 162,166 ---- // this.versionColumnHeader.Text = "Version"; ! this.versionColumnHeader.Width = 221; // // closeButton *************** *** 169,173 **** this.closeButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.System; ! this.closeButton.Location = new System.Drawing.Point(424, 368); this.closeButton.Name = "closeButton"; this.closeButton.TabIndex = 0; --- 169,173 ---- this.closeButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.System; ! this.closeButton.Location = new System.Drawing.Point(448, 396); this.closeButton.Name = "closeButton"; this.closeButton.TabIndex = 0; *************** *** 180,187 **** this.richTextBox.BackColor = System.Drawing.SystemColors.Control; this.richTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None; ! this.richTextBox.Location = new System.Drawing.Point(8, 8); this.richTextBox.Name = "richTextBox"; this.richTextBox.ReadOnly = true; ! this.richTextBox.Size = new System.Drawing.Size(504, 132); this.richTextBox.TabIndex = 4; this.richTextBox.Text = ""; --- 180,187 ---- this.richTextBox.BackColor = System.Drawing.SystemColors.Control; this.richTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None; ! this.richTextBox.Location = new System.Drawing.Point(16, 8); this.richTextBox.Name = "richTextBox"; this.richTextBox.ReadOnly = true; ! this.richTextBox.Size = new System.Drawing.Size(512, 136); this.richTextBox.TabIndex = 4; this.richTextBox.Text = ""; *************** *** 198,202 **** this.urlHeaderGroupBox.Name = "urlHeaderGroupBox"; this.urlHeaderGroupBox.Padding = 0; ! this.urlHeaderGroupBox.Size = new System.Drawing.Size(488, 56); this.urlHeaderGroupBox.TabIndex = 5; this.urlHeaderGroupBox.TabStop = false; --- 198,202 ---- this.urlHeaderGroupBox.Name = "urlHeaderGroupBox"; this.urlHeaderGroupBox.Padding = 0; ! this.urlHeaderGroupBox.Size = new System.Drawing.Size(520, 56); this.urlHeaderGroupBox.TabIndex = 5; this.urlHeaderGroupBox.TabStop = false; *************** *** 209,217 **** this.webLinkLabel.FlatStyle = System.Windows.Forms.FlatStyle.System; this.webLinkLabel.LinkArea = new System.Windows.Forms.LinkArea(0, 0); ! this.webLinkLabel.Location = new System.Drawing.Point(8, 40); this.webLinkLabel.Name = "webLinkLabel"; ! this.webLinkLabel.Size = new System.Drawing.Size(480, 16); this.webLinkLabel.TabIndex = 1; ! this.webLinkLabel.Text = "Web Links: NDoc Project, Submit Defect, List Server, OpenSource"; this.webLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.webLinkLabel_LinkClicked); // --- 209,217 ---- this.webLinkLabel.FlatStyle = System.Windows.Forms.FlatStyle.System; this.webLinkLabel.LinkArea = new System.Windows.Forms.LinkArea(0, 0); ! this.webLinkLabel.Location = new System.Drawing.Point(8, 32); this.webLinkLabel.Name = "webLinkLabel"; ! this.webLinkLabel.Size = new System.Drawing.Size(504, 16); this.webLinkLabel.TabIndex = 1; ! this.webLinkLabel.Text = "Web Links: NDoc Project, Submit Defect, List Server, OpenSource"; this.webLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.webLinkLabel_LinkClicked); // *************** *** 227,231 **** this.versionHeaderGroupBox.Name = "versionHeaderGroupBox"; this.versionHeaderGroupBox.Padding = 0; ! this.versionHeaderGroupBox.Size = new System.Drawing.Size(488, 142); this.versionHeaderGroupBox.TabIndex = 1; this.versionHeaderGroupBox.TabStop = false; --- 227,231 ---- this.versionHeaderGroupBox.Name = "versionHeaderGroupBox"; this.versionHeaderGroupBox.Padding = 0; ! this.versionHeaderGroupBox.Size = new System.Drawing.Size(520, 162); this.versionHeaderGroupBox.TabIndex = 1; this.versionHeaderGroupBox.TabStop = false; *************** *** 237,241 **** this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.CancelButton = this.closeButton; ! this.ClientSize = new System.Drawing.Size(520, 406); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.urlHeaderGroupBox, --- 237,241 ---- this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.CancelButton = this.closeButton; ! this.ClientSize = new System.Drawing.Size(542, 440); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.urlHeaderGroupBox, *************** *** 249,252 **** --- 249,253 ---- this.Name = "AboutForm"; this.Text = "About NDoc"; + this.Load += new System.EventHandler(this.AboutForm_Load); this.urlHeaderGroupBox.ResumeLayout(false); this.versionHeaderGroupBox.ResumeLayout(false); *************** *** 271,274 **** --- 272,280 ---- } #endregion // Event Handlers + + private void AboutForm_Load(object sender, System.EventArgs e) + { + + } } } Index: MainForm.cs =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Gui/MainForm.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** MainForm.cs 2001/09/28 17:18:39 1.1.1.1 --- MainForm.cs 2001/09/29 03:52:23 1.2 *************** *** 1066,1070 **** buildThread = new Thread(new ThreadStart(buildWorker.ThreadProc)); buildThread.Name = "Build"; ! buildThread.IsBackground = true; ConfigureUIForBuild(true); --- 1066,1070 ---- buildThread = new Thread(new ThreadStart(buildWorker.ThreadProc)); buildThread.Name = "Build"; ! buildThread.Priority = ThreadPriority.BelowNormal; ConfigureUIForBuild(true); *************** *** 1105,1121 **** } ! // Process exception ! if (ex is DocumenterException) { ! //check if thread has been aborted ! while (ex.InnerException != null) { ! if (ex.InnerException is ThreadAbortException) ! { ! return; ! } ! ex = ex.InnerException; } MessageBox.Show(this, ex.Message, "NDoc Failed to Build Documentation", MessageBoxButtons.OK, MessageBoxIcon.Information); --- 1105,1122 ---- } ! //check if thread has been aborted ! Exception iex = ex; ! do { ! if (iex is ThreadAbortException) { ! return; } + iex = iex.InnerException; + } while (iex != null); + // Process exception + if (ex is DocumenterException) + { MessageBox.Show(this, ex.Message, "NDoc Failed to Build Documentation", MessageBoxButtons.OK, MessageBoxIcon.Information); *************** *** 1123,1131 **** else { - //check if thread has been aborted - if (ex is ThreadAbortException) - { - return; - } string msg = String.Format("An error occured while trying to build the " + "documentation.\n\n{0}", ex.ToString()); --- 1124,1127 ---- |
From: Jean-Claude M. <jc...@us...> - 2001-09-29 03:52:26
|
Update of /cvsroot/ndoc/ndoc/src/Core In directory usw-pr-cvs1:/tmp/cvs-serv14546/src/Core Modified Files: BaseDocumenterConfig.cs Log Message: Fixed a bug with thread abort detection + minor cosmetic issues. Index: BaseDocumenterConfig.cs =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Core/BaseDocumenterConfig.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BaseDocumenterConfig.cs 2001/09/28 17:25:51 1.1 --- BaseDocumenterConfig.cs 2001/09/29 03:52:23 1.2 *************** *** 213,217 **** [ Category("Visibility"), ! Description("Turn this flag on to document internal and private code.") ] public bool DocumentInternals --- 213,217 ---- [ Category("Visibility"), ! Description("Turn this flag on to document internal code.") ] public bool DocumentInternals *************** *** 226,230 **** [ Category("Visibility"), ! Description("Turn this flag on to document internal and private code.") ] public bool DocumentPrivates --- 226,230 ---- [ Category("Visibility"), ! Description("Turn this flag on to document private code.") ] public bool DocumentPrivates |
From: Jason D. <inj...@us...> - 2001-09-29 02:56:38
|
Update of /cvsroot/ndoc/ndoc/web In directory usw-pr-cvs1:/tmp/cvs-serv6604 Modified Files: ndoc.css Log Message: The margin at the top of the page was too big. Index: ndoc.css =================================================================== RCS file: /cvsroot/ndoc/ndoc/web/ndoc.css,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ndoc.css 2001/09/28 17:18:40 1.1.1.1 --- ndoc.css 2001/09/29 02:56:35 1.2 *************** *** 64,68 **** { font-size:11px; ! margin:50px 0px 10px 0px; padding:15px 0px 2px 20px; /* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */ --- 64,68 ---- { font-size:11px; ! margin:20px 0px 10px 0px; padding:15px 0px 2px 20px; /* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */ |
From: Jason D. <inj...@us...> - 2001-09-29 02:54:56
|
Update of /cvsroot/ndoc/ndoc/web In directory usw-pr-cvs1:/tmp/cvs-serv6353 Modified Files: deploy.cmd index.html ndoc.xml ndoc.xslt Log Message: Updated web site and script. Index: deploy.cmd =================================================================== RCS file: /cvsroot/ndoc/ndoc/web/deploy.cmd,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** deploy.cmd 2001/09/28 17:18:40 1.1.1.1 --- deploy.cmd 2001/09/29 02:54:53 1.2 *************** *** 1,5 **** @echo off if %1x == x goto usage ! scp xmarks.css index.html doc.html rdf.html %1...@xm...:/home/groups/x/xm/xmarks/htdocs goto end :usage --- 1,5 ---- @echo off if %1x == x goto usage ! scp ndoc.css index.html %1...@nd...:/home/groups/n/nd/ndoc/htdocs goto end :usage Index: index.html =================================================================== RCS file: /cvsroot/ndoc/ndoc/web/index.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** index.html 2001/09/28 17:18:40 1.1.1.1 --- index.html 2001/09/29 02:54:53 1.2 *************** *** 2,4 **** <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml"><head><title>NDoc</title><style type="text/css" media="screen">@import "ndoc.css";</style></head><body><div id="Header"><a href="index.html" title="NDoc Home">NDoc</a> : an extensible documentation generation tool for .NET developers</div><div id="Content"><h1>NDoc</h1><p>NDoc merges the assemblies and XML documentation files produced by csc.exe and creates a compiled HTML Help file enabling you to browse your own libraries just like the the <a href="http://msdn.microsoft.com/library/en-us/cpref/html/cpref_start.asp">.NET Framework Class Library</a>.</p><p>The documentation generator uses <a href="http://www.w3.org/Style/XSL">XSLT</a> to produce the HTML. Future versions will make it possible to customize the XSLT to produce documentation with any desired look and feel.</p><p>Download the latest release and see the output for yourself.</p><p>Our SourceForge project page can be found <a href="http://sourceforge.net/projects/xmarks/" title="Break Down the Barriers to Open Source Development">here</a>.</p><p>The NDoc source code is freely available under a certified <a href="http://www.opensource.org/" title="Learn more about the Open Source Initiative">Open Source</a> license. We welcome everyone to use our software in the hopes that they can provide feedback, submit bug reports and fixes, or even join us as a developer!</p><p class="images"><a href="http://sourceforge.net/"><img src="http://sourceforge.net/sflogo.php?group_id=13899&type=1" alt="SourceForge Logo" width="88" height="31"/></a> <a href="http://validator.w3.org/check/referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88"/></a></p></div><div id="Menu"><h4>releases</h4><a href="http://sourceforge.net/project/showfiles.php?group_id=13899&release_id=53788" title="Download DOC.NET 2001-09-20">2001-09-20</a><br/><h4>developers</h4><a href="mailto:ja...@in..." title="Email Jason">Jason Diamond</a><br/><a href="mailto:kra...@ho..." title="Email Kral">Kral Ferch</a><br/><a href="mailto:jc...@ma..." title="Email Jean-Claude">Jean-Claude Manoli</a><br/><h4>resources</h4><a href="http://sourceforge.net/projects/ndoc/" title="Visit Our SourceForge Project Page">sourceforge</a><br/><a href="http://nunit.sourceforge.net/" title="Test Your Code With NUnit!">nunit</a><br/><a href="http://nant.sourceforge.net/" title="Build Your Code With NAnt!">nant</a><br/></div></body></html> \ No newline at end of file --- 2,4 ---- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml"><head><title>NDoc</title><style type="text/css" media="screen">@import "ndoc.css";</style></head><body><div id="Header"><a href="http://ndoc.sourceforge.net/" title="NDoc Home">NDoc</a> : an extensible documentation generation tool for .NET developers</div><div id="Content"><h1>NDoc</h1><p>NDoc merges the assemblies and XML documentation files produced by csc.exe and creates a compiled HTML Help file enabling you to browse your own libraries just like the the <a href="http://msdn.microsoft.com/library/en-us/cpref/html/cpref_start.asp">.NET Framework Class Library</a>.</p><p>The documentation generator uses <a href="http://www.w3.org/Style/XSL">XSLT</a> to produce the HTML. Future versions will make it possible to customize the XSLT to produce documentation with any desired look and feel.</p><p>Download the latest release and see the output for yourself.</p><p>Our SourceForge project page can be found <a href="http://sourceforge.net/projects/xmarks/" title="Break Down the Barriers to Open Source Development">here</a>.</p><p>The NDoc source code is freely available under a certified <a href="http://www.opensource.org/" title="Learn more about the Open Source Initiative">Open Source</a> license. We welcome everyone to use our software in the hopes that they can provide feedback, submit bug reports and fixes, or even join us as a developer!</p><p class="images"><a href="http://sourceforge.net/"><img src="http://sourceforge.net/sflogo.php?group_id=13899&type=1" alt="SourceForge Logo" width="88" height="31"/></a> <a href="http://validator.w3.org/check/referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88"/></a></p></div><div id="Menu"><h4>releases</h4><p>none yet</p><h4>developers</h4><a href="mailto:ja...@in..." title="Email Jason">Jason Diamond</a><br/><a href="mailto:kra...@ho..." title="Email Kral">Kral Ferch</a><br/><a href="mailto:jc...@ma..." title="Email Jean-Claude">Jean-Claude Manoli</a><br/><a href="mailto:kei...@ag..." title="Email Keith">Keith Hill</a><br/><h4>resources</h4><a href="http://sourceforge.net/projects/ndoc/" title="Visit Our SourceForge Project Page">sourceforge</a><br/><a href="http://nunit.sourceforge.net/" title="Test Your Code With NUnit!">nunit</a><br/><a href="http://nant.sourceforge.net/" title="Build Your Code With NAnt!">nant</a><br/></div></body></html> \ No newline at end of file Index: ndoc.xml =================================================================== RCS file: /cvsroot/ndoc/ndoc/web/ndoc.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ndoc.xml 2001/09/28 18:21:17 1.2 --- ndoc.xml 2001/09/29 02:54:53 1.3 *************** *** 12,15 **** --- 12,16 ---- </description> + <!-- <release name="DOC.NET 2001-09-20" *************** *** 18,21 **** --- 19,23 ---- direct="http://prdownloads.sourceforge.net/xmarks/doc.2001-09-20.zip" /> + --> <developer Index: ndoc.xslt =================================================================== RCS file: /cvsroot/ndoc/ndoc/web/ndoc.xslt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ndoc.xslt 2001/09/28 17:18:40 1.1.1.1 --- ndoc.xslt 2001/09/29 02:54:53 1.2 *************** *** 26,30 **** <body> ! <div id="Header"><a href="index.html" title="NDoc Home">NDoc</a> : an extensible documentation generation tool for .NET developers</div> <div id="Content"> --- 26,30 ---- <body> ! <div id="Header"><a href="http://ndoc.sourceforge.net/" title="NDoc Home">NDoc</a> : an extensible documentation generation tool for .NET developers</div> <div id="Content"> *************** *** 45,57 **** <h4>releases</h4> ! <xsl:for-each select="/ndoc/release"> ! <a ! href="{@link}" ! title="Download {@name}" ! > ! <xsl:value-of select="@date"/> ! </a> ! <br/> ! </xsl:for-each> <h4>developers</h4> --- 45,64 ---- <h4>releases</h4> ! <xsl:choose> ! <xsl:when test="/ndoc/release"> ! <xsl:for-each select="/ndoc/release"> ! <a ! href="{@link}" ! title="Download {@name}" ! > ! <xsl:value-of select="@date"/> ! </a> ! <br/> ! </xsl:for-each> ! </xsl:when> ! <xsl:otherwise> ! <p>none yet</p> ! </xsl:otherwise> ! </xsl:choose> <h4>developers</h4> |
From: Jason D. <inj...@us...> - 2001-09-28 21:16:06
|
Update of /cvsroot/ndoc/ndoc/src/Test In directory usw-pr-cvs1:/tmp/cvs-serv10027/Test Modified Files: Test.cs Log Message: Fixed comment in Derived class. Index: Test.cs =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Test/Test.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Test.cs 2001/09/28 17:18:40 1.1.1.1 --- Test.cs 2001/09/28 21:16:02 1.2 *************** *** 106,110 **** } ! /// <summary>This method is declared in the Base class.</summary> public void DerivedMethod() { } --- 106,110 ---- } ! /// <summary>This method is declared in the Derived class.</summary> public void DerivedMethod() { } |
From: Jason D. <inj...@us...> - 2001-09-28 21:11:54
|
Update of /cvsroot/ndoc/ndoc/src/Simple In directory usw-pr-cvs1:/tmp/cvs-serv7862 Modified Files: class-members.xslt Log Message: Did some rough work on the class members page. Index: class-members.xslt =================================================================== RCS file: /cvsroot/ndoc/ndoc/src/Simple/class-members.xslt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** class-members.xslt 2001/09/28 17:18:40 1.1.1.1 --- class-members.xslt 2001/09/28 21:11:52 1.2 *************** *** 1,18 **** <?xml version="1.0" encoding="utf-8" ?> <xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> ! <!-- --> ! <xsl:param name="class-id" /> ! <!-- --> ! <xsl:template match="/"> ! <xsl:variable name="class" select="ndoc/assembly/module/namespace/class[@id=$class-id]" /> ! <html> ! <body> ! <h1> ! <xsl:value-of select="$class/@name" /> ! <xsl:text> Members</xsl:text> ! </h1> ! </body> ! </html> ! </xsl:template> ! <!-- --> </xsl:transform> --- 1,43 ---- <?xml version="1.0" encoding="utf-8" ?> <xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> ! <!-- --> ! <xsl:param name="class-id" /> ! <!-- --> ! <xsl:template match="/"> ! <xsl:variable name="class" select="ndoc/assembly/module/namespace/class[@id=$class-id]" /> ! <html> ! <body> ! <h1> ! <xsl:value-of select="$class/@name" /> ! <xsl:text> Members</xsl:text> ! </h1> ! <xsl:variable name="public-instance-methods" select="$class/method[@access='Public' and not(@static)]" /> ! <xsl:if test="$public-instance-methods"> ! <h4>Public Instance Methods</h4> ! <table border="1"> ! <xsl:for-each select="$public-instance-methods"> ! <xsl:sort select="@name" /> ! <xsl:if test="not(preceding-sibling::method[@name=current()/@name])"> ! <tr> ! <td width="50%" valign="top"> ! <xsl:value-of select="@name" /> ! <xsl:if test="@declaringType"> ! <xsl:text> (Inherited from </xsl:text> ! <xsl:value-of select="@declaringType" /> ! <xsl:text>)</xsl:text> ! </xsl:if> ! </td> ! <td width="50%" valign="top"> ! <xsl:if test="@overload">Overloaded. </xsl:if> ! <xsl:apply-templates select="documentation/summary/node()" /> ! </td> ! </tr> ! </xsl:if> ! </xsl:for-each> ! </table> ! </xsl:if> ! </body> ! </html> ! </xsl:template> ! <!-- --> </xsl:transform> |