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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2008-12-03 00:26:47 +0300
committerLluis Sanchez <lluis@novell.com>2008-12-03 00:26:47 +0300
commite61e8c2c6fa4dfdbae4c146bf70238b1974fc29c (patch)
tree3d4ca2c2d8e3d8122eda84219ab8c5b0e6e81556 /main/build
parente1fbff01caa7cff464bb83b5adb6e9ccb449828b (diff)
* main/build/data:
* main/configure.in: * main/build/data/resources: * main/build/data/Makefile.am: * main/build/data/resources/css: * main/build/data/resources/Makefile.am: * main/build/data/ConversionStyleSheets: * main/build/data/resources/css/Makefile.am: * main/build/data/resources/css/MsdnHelp.css: * main/build/data/resources/css/SharpDevelopStandard.css: * main/build/data/ConversionStyleSheets/ShowChangeLog.xsl: * main/build/data/ConversionStyleSheets/ConvertPrjx10to11.xsl: * main/build/data/ConversionStyleSheets/ShowHowYouCanHelp.xsl: * main/build/data/ConversionStyleSheets/ShowXmlDocumentation.xsl: Remove unused stuff. svn path=/trunk/monodevelop/; revision=120536
Diffstat (limited to 'main/build')
-rw-r--r--main/build/data/ConversionStyleSheets/ConvertPrjx10to11.xsl59
-rw-r--r--main/build/data/ConversionStyleSheets/ShowChangeLog.xsl28
-rw-r--r--main/build/data/ConversionStyleSheets/ShowHowYouCanHelp.xsl25
-rw-r--r--main/build/data/ConversionStyleSheets/ShowXmlDocumentation.xsl276
-rw-r--r--main/build/data/Makefile.am1
-rw-r--r--main/build/data/resources/Makefile.am1
-rw-r--r--main/build/data/resources/css/Makefile.am9
-rw-r--r--main/build/data/resources/css/MsdnHelp.css389
-rw-r--r--main/build/data/resources/css/SharpDevelopStandard.css45
9 files changed, 0 insertions, 833 deletions
diff --git a/main/build/data/ConversionStyleSheets/ConvertPrjx10to11.xsl b/main/build/data/ConversionStyleSheets/ConvertPrjx10to11.xsl
deleted file mode 100644
index d8fcc92175..0000000000
--- a/main/build/data/ConversionStyleSheets/ConvertPrjx10to11.xsl
+++ /dev/null
@@ -1,59 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<!-- A simple conversion XSL which converts SharpDevelop 1.0 project files to 1.1 project files.
- 2002 by Mike Krueger -->
-
-<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="Project">
- <Project version="1.1"
- name ="{@name}"
- projecttype="{@projecttype}"
- description="{@description}"
- enableviewstate="{@enableviewstate}">
-
- <!-- Convert Contents -->
- <Contents>
- <!-- copy the file nodes, they're equal -->
- <xsl:apply-templates select="Contents/File"/>
-
- <!-- Directory nodes must be converted to file nodes -->
- <xsl:for-each select="Contents/Directory">
- <File name = "{@relativepath}"
- subtype = "Directory"
- buildaction = "Nothing" />
- </xsl:for-each>
- </Contents>
-
- <!-- Convert References -->
- <References>
- <xsl:for-each select="References/Reference[@assembly]">
- <Reference type = "Assembly"
- refto = "{@assembly}"/>
- </xsl:for-each>
-
- <xsl:for-each select="References/Reference[@project]">
- <Reference type = "Project"
- refto = "{@project}"/>
- </xsl:for-each>
-
- <xsl:for-each select="References/Reference[@gac]">
- <Reference type = "Gac"
- refto = "{@gac}"/>
- </xsl:for-each>
- </References>
-
- <!-- Convert Configurations -->
- <xsl:apply-templates select="Configurations"/>
-
- <!-- Convert Deployment information by just copying them (nothing changed)-->
- <xsl:apply-templates select="DeploymentInformation"/>
- </Project>
- </xsl:template>
-
- <!-- A recursive copy template -->
- <xsl:template match="*|@*">
- <xsl:copy>
- <xsl:apply-templates select="*|@*"/>
- </xsl:copy>
- </xsl:template>
-</xsl:transform>
diff --git a/main/build/data/ConversionStyleSheets/ShowChangeLog.xsl b/main/build/data/ConversionStyleSheets/ShowChangeLog.xsl
deleted file mode 100644
index bb4f4bfcc8..0000000000
--- a/main/build/data/ConversionStyleSheets/ShowChangeLog.xsl
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<!-- A simple conversion XSL which converts SharpDevelop 1.0 project files to 1.1 project files.
- 2002 by Mike Krueger -->
-
-<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="ChangeLog">
- <HTML><HEAD></HEAD><BODY>
- <H1><xsl:value-of select="@project"/> ChangeLog</H1>
- <TABLE class="news">
- <TR>
- <TH align="left" class="copy">Author</TH>
- <TH align="left" class="copy">Date</TH>
- <TH align="left" class="copy">Change</TH>
- </TR>
-
- <xsl:for-each select="Change">
- <TR>
- <TD align="left" class="copy"><xsl:value-of select="@author"/></TD>
- <TD align="left" class="copy"><xsl:value-of select="@date"/></TD>
- <TD align="left" class="copy"><xsl:value-of select="."/></TD>
- </TR>
- </xsl:for-each>
- </TABLE>
-
- </BODY></HTML>
- </xsl:template>
-</xsl:transform>
diff --git a/main/build/data/ConversionStyleSheets/ShowHowYouCanHelp.xsl b/main/build/data/ConversionStyleSheets/ShowHowYouCanHelp.xsl
deleted file mode 100644
index 0b5cc0f1d6..0000000000
--- a/main/build/data/ConversionStyleSheets/ShowHowYouCanHelp.xsl
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<!-- A simple conversion XSL which converts SharpDevelop 1.0 project files to 1.1 project files.
- 2002 by Mike Krueger -->
-
-<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="HelpWanted">
- <HTML><HEAD></HEAD><BODY>
- <TABLE>
- <TR>
- <TH align="left" class="copy">Topic</TH>
- <TH align="left" class="copy">Issue</TH>
- </TR>
-
- <xsl:for-each select="Topic">
- <TR>
- <TD align="left" class="copy"><xsl:value-of select="@name"/></TD>
- <TD align="left" class="copy"><xsl:value-of select="."/></TD>
- </TR>
- </xsl:for-each>
- </TABLE>
-
- </BODY></HTML>
- </xsl:template>
-</xsl:transform>
diff --git a/main/build/data/ConversionStyleSheets/ShowXmlDocumentation.xsl b/main/build/data/ConversionStyleSheets/ShowXmlDocumentation.xsl
deleted file mode 100644
index 7846694a04..0000000000
--- a/main/build/data/ConversionStyleSheets/ShowXmlDocumentation.xsl
+++ /dev/null
@@ -1,276 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<!--
- Modified version of a XSLT with following copyright:
-
-Lutz Roeders's .NET Reflector, October 2000.
-Copyright (C) 2000-2002 Lutz Roeder. All rights reserved.
-http://www.aisto.com/roeder/dotnet
-roeder@aisto.com
-
-Thanks fly out to Lutz Roeder for giving permission to use his XSLT :)
-All bugs in this XSLT belong to Mike Krueger mike@icsharpcode.net and are
-protected by international copyright laws
- -->
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="html" indent="no" />
-
- <xsl:template match="/">
- <BODY ID="bodyID" CLASS="dtBODY">
- <DIV ID="nstext">
- <xsl:apply-templates select="member"/>
- </DIV>
- </BODY>
- </xsl:template>
-
- <xsl:template match="member">
- <xsl:if test="summary">
- <xsl:apply-templates select="summary"/>
- </xsl:if>
-
- <xsl:if test="param">
- <H4 CLASS="dtH4">Parameters</H4>
- <DL><xsl:apply-templates select="param"/></DL>
- </xsl:if>
-
- <xsl:if test="returns">
- <H4 CLASS="dtH4">Return Value</H4>
- <xsl:apply-templates select="returns"/>
- </xsl:if>
-
- <xsl:if test="value">
- <H4 CLASS="dtH4">Value</H4>
- <xsl:apply-templates select="value"/>
- </xsl:if>
-
- <xsl:if test="exception">
- <H4 CLASS="dtH4">Exceptions</H4>
- <DIV CLASS="tablediv">
- <TABLE CLASS="dtTABLE" CELLSPACING="0">
- <TR VALIGN="top">
- <TH WIDTH="50%">Exception Type</TH>
- <TH WIDTH="50%">Condition</TH>
- </TR>
- <xsl:apply-templates select="exception"/>
- </TABLE>
- </DIV>
- </xsl:if>
-
- <xsl:if test="permission">
- <H4 CLASS="dtH4">Permission</H4>
- <DIV CLASS="tablediv">
- <TABLE CLASS="dtTABLE" CELLSPACING="0">
- <TR VALIGN="top">
- <TH WIDTH="50%">Member</TH>
- <TH WIDTH="50%">Description</TH>
- </TR>
- <xsl:apply-templates select="permission"/>
- </TABLE>
- </DIV>
- </xsl:if>
-
- <xsl:if test="remarks">
- <H4 CLASS="dtH4">Remarks</H4>
- <xsl:apply-templates select="remarks"/>
- </xsl:if>
-
- <xsl:if test="example">
- <H4 CLASS="dtH4">Example</H4>
- <xsl:apply-templates select="example"/>
- </xsl:if>
-
- <xsl:if test="seealso">
- <H4 CLASS="dtH4">See Also</H4>
- <xsl:apply-templates select="seealso"/>
- </xsl:if>
- <BR/><BR/>
- </xsl:template>
-
- <xsl:template match="text()">
- <xsl:value-of select="."/>
- </xsl:template>
-
- <!-- Inner Tags -->
- <xsl:template match="c">
- <pre class="code">
- <xsl:apply-templates/>
- </pre>
- </xsl:template>
-
- <xsl:template match="exception">
- <TR VALIGN="top">
- <TD WIDTH="50%">
- <A>
- <xsl:attribute name="href">
- urn:member:<xsl:value-of select="@cref"/>
- </xsl:attribute>
- <xsl:attribute name="title">
- <xsl:value-of select="@cref"/>
- </xsl:attribute>
- <xsl:value-of select="@cref"/>
- </A>
- </TD>
- <TD WIDTH="50%">
- <xsl:apply-templates/>
- </TD>
- </TR>
- </xsl:template>
-
- <xsl:template match="list">
- <xsl:if test="@type[.='table']">
- <DIV CLASS="tablediv">
- <TABLE CLASS="dtTABLE" CELLSPACING="0">
- <xsl:for-each select="listheader">
- <TR VALIGN="top">
- <TH WIDTH="50%">
- <xsl:for-each select="term">
- <xsl:apply-templates/>
- </xsl:for-each>
- </TH>
- <TH WIDTH="50%">
- <xsl:for-each select="description">
- <xsl:apply-templates/>
- </xsl:for-each>
- </TH>
- </TR>
- </xsl:for-each>
- <xsl:for-each select="item">
- <TR VALIGN="top">
- <TD WIDTH="50%">
- <xsl:for-each select="term">
- <xsl:apply-templates/>
- </xsl:for-each>
- </TD>
- <TD WIDTH="50%">
- <xsl:for-each select="description">
- <xsl:apply-templates/>
- </xsl:for-each>
- </TD>
- </TR>
- </xsl:for-each>
- </TABLE>
- </DIV>
- </xsl:if>
- <xsl:if test="@type[.='bullet']">
- <UL>
- <xsl:for-each select="item">
- <LI>
- <xsl:for-each select="term">
- <xsl:apply-templates/>
- </xsl:for-each>
- </LI>
- </xsl:for-each>
- </UL>
- </xsl:if>
- <xsl:if test="@type[.='number']">
- <OL type="1">
- <xsl:for-each select="item">
- <LI>
- <xsl:for-each select="term">
- <xsl:apply-templates/>
- </xsl:for-each>
- </LI>
- </xsl:for-each>
- </OL>
- </xsl:if>
- </xsl:template>
-
- <xsl:template match="param">
- <DT><I>
- <xsl:value-of select="@name"/>
- </I></DT>
- <DD>
- <xsl:apply-templates/>
- </DD>
- </xsl:template>
-
- <xsl:template match="paramref">
- <I>
- <xsl:value-of select="@name"/>
- </I>
- </xsl:template>
-
- <xsl:template match="permission">
- <TR VALIGN="top">
- <TD WIDTH="50%">
- <A>
- <xsl:attribute name="href">
- urn:member:<xsl:value-of select="@cref"/>
- </xsl:attribute>
- <xsl:attribute name="title">
- <xsl:value-of select="@cref"/>
- </xsl:attribute>
- <xsl:value-of select="@cref"/>
- </A>
- </TD>
- <TD WIDTH="50%">
- <xsl:apply-templates/>
- </TD>
- </TR>
- </xsl:template>
-
- <xsl:template match="see">
- <xsl:choose>
- <xsl:when test="@langword">
- <B><xsl:value-of select="@langword"/></B>
- </xsl:when>
- <xsl:when test="@cref">
- <A>
- <xsl:attribute name="href">
- urn:member:<xsl:value-of select="@cref"/>
- </xsl:attribute>
- <xsl:attribute name="title">
- <xsl:value-of select="@cref"/>
- </xsl:attribute>
- <xsl:value-of select="@cref"/>
- </A>
- </xsl:when>
- <xsl:when test="@internal">
- <U>
- <xsl:value-of select="@internal"/>
- </U>
- </xsl:when>
- <xsl:when test="@topic">
- <U>
- <xsl:value-of select="@topic"/>
- </U>
- </xsl:when>
- </xsl:choose>
- </xsl:template>
-
- <xsl:template match="seealso">
- <xsl:choose>
- <xsl:when test="@cref">
- <A>
- <xsl:attribute name="href">
- urn:member:<xsl:value-of select="@cref"/>
- </xsl:attribute>
- <xsl:attribute name="title">
- <xsl:value-of select="@cref"/>
- </xsl:attribute>
- <xsl:value-of select="@cref"/>
- </A>
- </xsl:when>
- <xsl:when test="@topic">
- <U><xsl:value-of select="@topic"/></U>
- </xsl:when>
- </xsl:choose>
- <xsl:if test="position()!=last()"> | </xsl:if>
- </xsl:template>
-
- <xsl:template match="para">
- <P>
- <xsl:apply-templates/>
- </P>
- </xsl:template>
-
- <xsl:template match="code">
- <pre class="code">
- <xsl:if test="@lang">
- <SPAN CLASS="lang">[<xsl:value-of select="@lang"/>]</SPAN>
- <BR/>
- </xsl:if>
- <xsl:value-of select="."/>
- </pre>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/main/build/data/Makefile.am b/main/build/data/Makefile.am
deleted file mode 100644
index 5a3ac8c2c0..0000000000
--- a/main/build/data/Makefile.am
+++ /dev/null
@@ -1 +0,0 @@
-SUBDIRS = resources
diff --git a/main/build/data/resources/Makefile.am b/main/build/data/resources/Makefile.am
deleted file mode 100644
index 38f5608bfe..0000000000
--- a/main/build/data/resources/Makefile.am
+++ /dev/null
@@ -1 +0,0 @@
-SUBDIRS = css
diff --git a/main/build/data/resources/css/Makefile.am b/main/build/data/resources/css/Makefile.am
deleted file mode 100644
index cd9760a008..0000000000
--- a/main/build/data/resources/css/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-
-cssdir = $(MD_DIR)/data/resources/css
-
-css_DATA = MsdnHelp.css SharpDevelopStandard.css
-
-all:
-
-EXTRA_DIST = $(css_DATA)
-
diff --git a/main/build/data/resources/css/MsdnHelp.css b/main/build/data/resources/css/MsdnHelp.css
deleted file mode 100644
index d37b954a2d..0000000000
--- a/main/build/data/resources/css/MsdnHelp.css
+++ /dev/null
@@ -1,389 +0,0 @@
-body /* This body tag requires the use of one of the sets of banner and/or text div ids */
- {
- margin: 0px 0px 0px 0px;
- padding: 0px 0px 0px 0px;
- background: #ffffff;
- color: #000000;
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 70%;
- width: 100%;
- }
-div#scrollyes /* Allows topic to scroll with correct margins. Cannot be used with running head banner */
- { /* Must immediately follow <body>. */
- padding: 2px 15px 2px 22px;
- width: 100%;
- }
-div#nsbanner /* Creates Nonscrolling banner region */
- {
- position: relative;
- left: 0px;
- padding: 0px 0px 0px 0px;
- border-bottom: 1px solid #999999;
- }
-div#nstext /* Creates the scrolling text area for Nonscrolling region topic */
- {
- padding: 5px 10px 0px 22px;
- }
-div#scrbanner /* Creates the running head bar in a full-scroll topic */
- { /* Allows topic to scroll. */
- margin: 0px 0px 0px 0px;
- padding: 0px 0px 0px 0px;
- border-bottom: 1px solid #999999;
- }
-div#scrtext /* Creates the text area in a full-scroll topic */
- { /* Allows topic to scroll. */
- padding: 0px 10px 0px 22px;
- }
-div#bannerrow1 /* provides full-width color to top row in running head (requires script) */
- {
- background-color: #99ccff;
- }
-div#titlerow /* provides non-scroll topic title area (requires script) */
- {
- width: 100%; /* Forces tables to have correct right margin */
- padding: 0px 10px 0px 22px;
- background-color: #99ccff;
- }
-
-h1, h2, h3, h4
- {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- margin-bottom: .4em;
- margin-top: 1em;
- font-weight: bold;
- }
-h1
- {
- font-size: 120%;
- margin-top: 0em;
- }
-div#scrollyes h1 /* Changes font size for full-scrolling topic */
- {
- font-size: 150%;
- }
-h2
- {
- font-size: 130%;
- }
-h3
- {
- font-size: 115%;
- }
-h4
- {
- font-size: 100%;
- }
-.dtH1, .dtH2, .dtH3, .dtH4
- {
- margin-left: -18px;
- }
-div#titlerow h1
- {
- margin-bottom: .2em
- }
-
-table.bannerparthead, table.bannertitle /* General values for the Running Head tables */
- {
- position: relative;
- left: 0px;
- top: 0px;
- padding: 0px 0px 0px 0px;
- margin: 0px 0px 0px 0px;
- width: 100%;
- height: 21px;
- border-collapse: collapse;
- border-style: solid;
- border-width: 0px;
- background-color: #99ccff;
- font-size: 100%;
- }
-table.bannerparthead td /* General Values for cells in the top row of running head */
- {
- margin: 0px 0px 0px 0px;
- padding: 2px 0px 0px 4px;
- vertical-align: middle;
- border-width: 0px;
- border-style: solid;
- border-color: #999999;
- background: transparent;
- font-style: italic;
- font-weight: normal;
- }
-table.bannerparthead td.product /* Values for top right cell in running head */
- { /* Allows for a second text block in the running head */
- text-align: right;
- padding: 2px 5px 0px 5px;
- }
-table.bannertitle td /* General Values for cells in the bottom row of running head */
- {
- margin: 0px 0px 0px 0px;
- padding: 0px 0px 0px 3px;
- vertical-align: middle;
- border-width: 0px 0px 1px 0px;
- border-style: solid;
- border-color: #999999;
- background: transparent;
- font-weight: bold;
- }
-td.button1 /* Values for button cells */
- {
- width: 14px;
- cursor: hand;
- }
-
-p
- {
- margin: .5em 0em .5em 0em;
- }
-blockquote.dtBlock
- {
- margin: .5em 1.5em .5em 1.5em;
- }
-div#dtHoverText
- {
- color: #000066;
- }
-.normal
- {
- margin: .5em 0em .5em 0em;
- }
-.fineprint
- {
- font-size: 90%; /* 90% of 70% */
- }
-.indent
- {
- margin: .5em 1.5em .5em 1.5em;
- }
-.topicstatus /* Topic Status Boilerplate class */
- {
- display: block;
- color: red;
- }
-p.label
- {
- margin-top: 1em;
- }
-p.labelproc
- {
- margin-top: 1em;
- color: #000066;
- }
-
-div.tablediv
- {
- width: 100%; /* Forces tables to have correct right margins and top spacing */
- margin-top: -.4em;
- }
-ol div.tablediv, ul div.tablediv, ol div.HxLinkTable, ul div.HxLinkTable
- {
- margin-top: 0em; /* Forces tables to have correct right margins and top spacing */
- }
-table.dtTABLE
- {
- width: 100%; /* Forces tables to have correct right margin */
- margin-top: .6em;
- margin-bottom: .3em;
- border-width: 1px 1px 0px 0px;
- border-style: solid;
- border-color: #999999;
- background-color: #999999;
- font-size: 100%; /* Text in Table is same size as text outside table */
- }
-table.dtTABLE th, table.dtTABLE td
- {
- border-style: solid; /* Creates the cell border and color */
- border-width: 0px 0px 1px 1px;
- border-style: solid;
- border-color: #999999;
- padding: 4px 6px;
- text-align: left;
- }
-table.dtTABLE th
- {
- background: #cccccc; /* Creates the shaded table header row */
- vertical-align: bottom;
- }
-table.dtTABLE td
- {
- background: #ffffff;
- vertical-align: top;
- }
-
-MSHelp\:ktable
- {
- disambiguator: span;
- separator: &nbsp|&#32;
- prefix: |&#32;
- postfix: &nbsp;
- filterString: ;
- }
-
-div.HxLinkTable
- {
- width: auto; /* Forces tables to have correct right margins and top spacing */
- margin-top: -.4em;
- visibility: visible;
- }
-ol div.HxLinkTable, ul div.HxLinkTable
- {
- margin-top: 0em; /* Forces tables to have correct right margins and top spacing */
- }
-table.HxLinkTable /* Keep in sync with general table settings below */
- {
- width: auto;
- margin-top: 1.5em;
- margin-bottom: .3em;
- margin-left: -1em;
- border-width: 1px 1px 0px 0px;
- border-style: solid;
- border-color: #999999;
- background-color: #999999;
- font-size: 100%; /* Text in Table is same size as text outside table */
- behavior:url(hxlinktable.htc); /* Attach the behavior to link elements. */
- }
-table.HxLinkTable th, table.HxLinkTable td /* Keep in sync with general table settings below */
- {
- border-style: solid; /* Creates the cell border and color */
- border-width: 0px 0px 1px 1px;
- border-style: solid;
- border-color: #999999;
- padding: 4px 6px;
- text-align: left;
- }
-table.HxLinkTable th /* Keep in sync with general table settings below */
- {
- background: #cccccc; /* Creates the shaded table header row */
- vertical-align: bottom;
- }
-table.HxLinkTable td /* Keep in sync with general table settings below */
- {
- background: #ffffff;
- vertical-align: top;
- }
-
-pre, div.syntax
- {
- margin-top: .5em;
- margin-bottom: .5em;
- }
-pre, code, .code, div.syntax
- {
- font: 100% Monospace, Courier New, Courier; /* This is 100% of 70% */
- color: #000066;
- }
-pre b, code b
- {
- letter-spacing: .1em; /* opens kerning on bold in Syntax/Code */
- }
-pre.syntax, div.syntax
- {
- background: #cccccc;
- padding: 4px 8px;
- cursor: text;
- margin-top: 1em;
- margin-bottom: 1em;
- color: #000000;
- border-width: 1px;
- border-style: solid;
- border-color: #999999;
-/* ------------------------------------- */
-/* BEGIN changes to dtue.css conventions */
- font-weight: bolder;
- letter-spacing: .1em;
- }
-.syntax span.lang
- {
- margin: 0;
- font-weight: normal;
- }
-.syntax span.meta
- {
- margin: 0;
- font-weight: normal;
- font-style: italic;
- }
-.syntax a
- {
- margin: 0;
- font-weight: normal;
- }
-/* END changes to dtue.css conventions */
-/* ----------------------------------- */
-
-.syntax div
- {
- padding-left: 24px;
- text-indent: -24px;
- }
-
-.syntax .attribute
- {
- font-weight: normal;
- }
-div.footer
- {
- font-style: italic;
- }
-div.footer hr
- {
- color: #999999;
- height: 1px;
- }
-
-ol, ul
- {
- margin: .5em 0em 0em 4em;
- }
-li
- {
- margin-bottom: .5em;
- }
-ul p, ol p, dl p
- {
- margin-left: 0em;
- }
-ul p.label, ol p.label
- {
- margin-top: .5em;
- }
-
-dl
- {
- margin-top: 0em;
- padding-left: 1px; /* Prevents italic-letter descenders from being cut off */
- }
-dd
- {
- margin-bottom: 0em;
- margin-left: 1.5em;
- }
-dt
- {
- margin-top: .5em;
- }
-
-a:link
- {
- color: #0000ff;
- }
-a:visited
- {
- color: #0000ff;
- }
-a:hover
- {
- color: #3366ff;
- }
-
-img
- {
- border: none;
- }
-
-/* Not in dtue.css. Used by NDoc's "ShowMissing..." options. */
-.missing
- {
- color: Red;
- font-weight: bold;
- }
diff --git a/main/build/data/resources/css/SharpDevelopStandard.css b/main/build/data/resources/css/SharpDevelopStandard.css
deleted file mode 100644
index e9a85bb160..0000000000
--- a/main/build/data/resources/css/SharpDevelopStandard.css
+++ /dev/null
@@ -1,45 +0,0 @@
-body /* This body tag requires the use of one of the sets of banner and/or text div ids */
- {
- margin: 0px 0px 0px 0px;
- padding: 0px 0px 0px 0px;
- background: #ffffff;
- color: #000000;
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 70%;
- width: 100%;
- }
-
-table
- {
- margin: 0px 0px 0px 0px;
- padding: 0px 0px 0px 0px;
- background: #ffffff;
- color: #000000;
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 100%;
- }
-
-h1, h2, h3, h4
- {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- margin-bottom: .4em;
- margin-top: 1em;
- font-weight: bold;
- }
-h1
- {
- font-size: 150%;
- margin-top: 0em;
- }
-h2
- {
- font-size: 130%;
- }
-h3
- {
- font-size: 115%;
- }
-h4
- {
- font-size: 100%;
- }