Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 06abde15c48001f114b464f9c27e28672d18d105 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                              
                                                 

                   
                                           
                   

                                                                     




                                                                               
                                                                          



                                                                       









                                                                                         


                               
                                                                                 



























                                                                                        
<?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.html</xsl:text>
			</xsl:attribute>
			org.eclipse.cdt.core.tests
		    </a>
		</li>
	    </ul>
	</li>
    </xsl:template>

</xsl:transform>

Back to the top