Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'releng/org.eclipse.cdt.releng/index.xsl')
-rw-r--r--releng/org.eclipse.cdt.releng/index.xsl67
1 files changed, 0 insertions, 67 deletions
diff --git a/releng/org.eclipse.cdt.releng/index.xsl b/releng/org.eclipse.cdt.releng/index.xsl
deleted file mode 100644
index 8c4cef49685..00000000000
--- a/releng/org.eclipse.cdt.releng/index.xsl
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-
- <xsl:output method="html" indent="yes"/>
-
- <xsl:template match="/">
- <html>
- <head>
- <title>CDT 2.0 Build Page</title>
- </head>
- <body>
- <h2>CDT 2.0 Build Page</h2>
- <p>
- The nightly builds are currently run twice a week
- Monday and Thursday at 3:00 a.m. EDT/EST.
-
- To get download and install the builds, add the following
- as a site bookmark in Eclipse's Update Manager perspective:
- </p>
- <p>
- http://update.eclipse.org/tools/cdt/updates/builds/2.0
- </p>
- <p>
- There is one category for each build. Expanding the
- category will reveal the installable features.
- Currently the following features are available:
- <ul>
- <li>
- the main CDT feature for the currently running platform
- </li>
- <li>
- the CDT Source feature which supplies the source to allow
- debugging of the CDT plugins.
- </li>
- </ul>
- </p>
- <h3>Builds</h3>
- <p>
- The reports from the automated build verification test suites
- are linked below.
- </p>
- <ul>
- <xsl:apply-templates select="site/category-def"/>
- </ul>
- </body>
- </html>
- </xsl:template>
-
- <xsl:template match="category-def">
- <li>
- <xsl:value-of select="@label"/>
- <ul>
- <li>
- <a>
- <xsl:attribute name="href">
- <xsl:text>logs/</xsl:text>
- <xsl:value-of select="substring-after(@name,'CDT Build ')"/>
- <xsl:text>/org.eclipse.cdt.core.tests.xml</xsl:text>
- </xsl:attribute>
- org.eclipse.cdt.core.tests
- </a>
- </li>
- </ul>
- </li>
- </xsl:template>
-
-</xsl:transform>

Back to the top