blob: fe3318de93611a858773c3465b0ccd7fb4bd121f [file] [log] [blame]
ndaib8cedc82005-09-13 18:00:32 +00001<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
ndaib8cedc82005-09-13 18:00:32 +00004
david_williams58473ad2007-03-03 01:12:43 +00005<title>Download</title>
ndaib8cedc82005-09-13 18:00:32 +00006
david_williamsb7db8ba2007-02-19 01:54:04 +00007
8<?php
9//ini_set("display_errors", "true");
10//error_reporting (E_ERROR | E_WARNING | E_PARSE | E_NOTICE );
11
david_williams90799a62007-02-26 02:01:08 +000012
david_williams58473ad2007-03-03 01:12:43 +000013// expecing grandTotalErrors and grandTotalTests
14 $filename = "unitTestsSummary.xml";
15 if (file_exists($filename)) {
16 $prefix = "unitTests_";
17 $unitTestsSummary = simplexml_load_file($filename);
18 foreach ($unitTestsSummary->summaryItem as $summaryItem) {
19 $name = $summaryItem->name;
20 $value = $summaryItem->value;
21 $code= "\$" . $prefix . $name . " = " . $value . ";";
22 //echo "<br />code: " . $code;
23 eval($code);
24 }
25 }
26
david_williams90799a62007-02-26 02:01:08 +000027 $filename = "compilelogsSummary.xml";
28 $prefix = "code_";
29 $compileSummary = simplexml_load_file($filename);
30 foreach ($compileSummary->summaryItem as $summaryItem) {
david_williams58473ad2007-03-03 01:12:43 +000031 $name = $summaryItem->name;
32 $value = $summaryItem->value;
david_williams90799a62007-02-26 02:01:08 +000033 $code= "\$" . $prefix . $name . " = " . $value . ";";
34 //echo "<br />code: " . $code;
35 eval($code);
36 }
37
38 $filename = "testcompilelogsSummary.xml";
39 $prefix = "test_";
40 $compileSummary = simplexml_load_file($filename);
41 foreach ($compileSummary->summaryItem as $summaryItem) {
david_williams58473ad2007-03-03 01:12:43 +000042 $name = $summaryItem->name;
43 $value = $summaryItem->value;
david_williams90799a62007-02-26 02:01:08 +000044 $code= "\$" . $prefix . $name . " = " . $value . ";";
45 //echo "<br />code: " . $code;
46 eval($code);
47 }
48
49
ndaib8cedc82005-09-13 18:00:32 +000050?>
51
david_williamsb7db8ba2007-02-19 01:54:04 +000052
david_williams58473ad2007-03-03 01:12:43 +000053</head>
54
55<body>
56
57<table BORDER=0 CELLSPACING=5 CELLPADDING=2 WIDTH="100%" ><tr><td ALIGN=LEFT width="80%">
ndaib8cedc82005-09-13 18:00:32 +000058<p><b><font face="Verdana" size="+3">@type@ Build: @build@</font></b><br>
david_williams35e43402006-06-18 05:36:48 +000059@date@
ndaib8cedc82005-09-13 18:00:32 +000060</p>
david_williams35e43402006-06-18 05:36:48 +000061<p>These downloads are provided under the <a href="http://www.eclipse.org/legal/epl/notice.html">Eclipse Foundation
ndaib8cedc82005-09-13 18:00:32 +000062Software User Agreement</a>.</p>
63</td></tr></table>
64
65<!-- *********** Build Status ************** -->
66<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"> <b><font face="Arial,Helvetica" color="#FFFFFF">Build, test and performance</font></b></td></tr></table>
david_williams0d101dc2006-03-14 05:48:50 +000067<br>
68<?
david_williams368af7f2006-03-25 06:56:24 +000069$buildmachineScript="../../../displayBuildMachine.php";
70if (file_exists($buildmachineScript))
71{
72 include $buildmachineScript;
73 echo displayBuildMachine();
74}
david_williams0d101dc2006-03-14 05:48:50 +000075?>
ndaib8cedc82005-09-13 18:00:32 +000076<br> <a href="buildNotes.php">Build notes</a>
77<br> <a href="directory.txt">map files</a>
david_williamsb7db8ba2007-02-19 01:54:04 +000078<br>
79<br>
80<br> <a href="testResults.php">Unit test results</a>
ndaib8cedc82005-09-13 18:00:32 +000081<?php
david_williams58473ad2007-03-03 01:12:43 +000082
83 if (isset($unitTests_grandTotalErrors)) {
84 $errorColor="green";
85 if ($unitTests_grandTotalErrors > 0) {
86 $errorColor="red";
87 }
88 echo "<img src=\"http://download.eclipse.org/webtools/downloads/junit_err.gif\"/><font color=\"$errorColor\">$unitTests_grandTotalErrors</font>&nbsp;&nbsp;Total: $unitTests_grandTotalTests";
89 }
90 else {
91 echo "<font color=\"yellow\">Tests are pending</font>";
92 }
ndaib8cedc82005-09-13 18:00:32 +000093?>
david_williamsc84ab8c2006-12-11 18:50:34 +000094
ndai9e121782005-09-14 16:24:25 +000095
david_williams9fd3a5a2007-02-25 17:47:05 +000096<br> <a href="compileResults.php">Compile logs: Code Bundles</a>
david_williamsb7db8ba2007-02-19 01:54:04 +000097<?php
david_williams90799a62007-02-26 02:01:08 +000098echo "&nbsp;&nbsp;($code_totalBundles)&nbsp;&nbsp;";
99echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_err.gif\"/><font color=red>$code_totalErrors</font>&nbsp;";
100echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_warn.gif\"/><font color=orange>$code_totalWarnings</font>&nbsp;";
david_williamsb7db8ba2007-02-19 01:54:04 +0000101?>
102
david_williams9fd3a5a2007-02-25 17:47:05 +0000103<br> <a href="testCompileResults.php">Compile logs: Test Bundles</a>
david_williamsb7db8ba2007-02-19 01:54:04 +0000104<?php
david_williams90799a62007-02-26 02:01:08 +0000105echo "&nbsp;&nbsp;($test_totalBundles)&nbsp;&nbsp;";
106echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_err.gif\"/><font color=red>$test_totalErrors</font>&nbsp;";
107echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_warn.gif\"/><font color=orange>$test_totalWarnings</font>&nbsp;";
david_williamsb7db8ba2007-02-19 01:54:04 +0000108?>
109<br>
110<br>
111
112<br> <a href="whatisfixed/buglog.html">What is fixed</a>
ndaib8cedc82005-09-13 18:00:32 +0000113<br> <a href="pii.php">Unused property messages</a>
david_williams0c366d32006-12-10 07:08:39 +0000114
115<?php
116if (file_exists("versioningReportName.php"))
117{
118 include "versioningReportName.php";
119 $fname="${versionReportFilename}.html";
120 if (file_exists($fname)) {
121 echo "<br /> <a href='$fname'>Versioning Information</a>";
122 }
123}
124?>
ndaib8cedc82005-09-13 18:00:32 +0000125
jeffliu2a8a6de2005-11-01 19:51:24 +0000126<?php
127if (file_exists("./apiresults"))
128{
129 echo "<br>";
jeffliue942a942005-11-29 17:34:57 +0000130 echo "<br> <a href=\"apiresults/api-progress.html\">API Progress Report</a>";
jeffliu75e9e422006-03-08 02:28:47 +0000131 echo "<br> <a href=\"apiresults/api-info-summary.html\">APIs Defined by Each Component</a>";
132 echo "<br> <a href=\"apiresults/api-ref-compatibility.html\">Adopter Breakage Report</a>";
jeffliu2a8a6de2005-11-01 19:51:24 +0000133 echo "<br> <a href=\"apiresults/api-violation-summary.html\">API Violations</a>";
jeffliue942a942005-11-29 17:34:57 +0000134 echo "<br> <a href=\"apiresults/component-api-violation-all.html\">Non-API dependencies</a>";
jeffliu2a8a6de2005-11-01 19:51:24 +0000135 echo "<br> <a href=\"apiresults/api-tc-summary.html\">API Test Coverage</a>";
136 echo "<br> <a href=\"apiresults/api-javadoc-summary.html\">API Javadoc Coverage</a>";
jeffliuebfc3df2006-05-31 02:17:15 +0000137
138 echo "<br><br> <a href=\"apiresults/full_test_coverage/api-tc-summary.html\">Test Coverage for All Classes and Methods</a>";
david_williams35e43402006-06-18 05:36:48 +0000139}
jeffliu2a8a6de2005-11-01 19:51:24 +0000140?>
ndaib8cedc82005-09-13 18:00:32 +0000141
jeffliu18e6f7c2005-11-02 23:20:25 +0000142<?php
143if (file_exists("./perfresults"))
144{
145 echo "<br>";
146 echo "<br> <a href=\"perfresults/graph/performance.php\">Performance Results</a>";
147 echo "<br>";
148}
149?>
150
ndaib8cedc82005-09-13 18:00:32 +0000151<!-- *********** Requirements ************** -->
152<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"> <b><font face="Arial,Helvetica" color="#FFFFFF">Requirements</font></b></td></tr></table>
david_williams35e43402006-06-18 05:36:48 +0000153<P>These are the prerequisites to install WebTools Platform;. They must
ndaib8cedc82005-09-13 18:00:32 +0000154be downloaded and installed before the WTP can be installed.</P><br>
155<li>The Eclipse driver used in this build is <a href="@eclipseURL@">@eclipseFile@</a>. You can find a suitable driver for your platform at <a href=@eclipseBuildURL@>here</a><br></li>
156<li>The EMF driver used in this build is <a href="@emfURL@">@emfFile@</a><br></li>
157<li>The GEF driver used in this build is <a href="@gefURL@">@gefFile@</a><br></li>
ndaia44be792006-10-23 08:31:46 +0000158<li>Data Tools Platform (DTP) driver used in this build is <a href="@dtpURL@">@dtpFile@</a><br></li>
ndaib8cedc82005-09-13 18:00:32 +0000159<P></P>
160
161
162
163<!-- *********** Runtime downloads ************** -->
164<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0">
165<b><font face="Arial,Helvetica" color="#FFFFFF">
david_williams35e43402006-06-18 05:36:48 +0000166Web Tools Platform (WTP, JST and WST combined)
ndaib8cedc82005-09-13 18:00:32 +0000167</font></b></td></tr>
168
169<TR><TD align="LEFT" valign="TOP" colspan="3">
david_williamsdd1d2df2006-06-18 06:57:46 +0000170The Eclipse Web Tools Platform Project provides tools for Web Development, and is a platform for adopters making add-on tools for Web Development.
david_williams35e43402006-06-18 05:36:48 +0000171The WTP zip files includes the WST and JST builds in one package. (JST is not provided separately, as it pre-reqs WST, there is no
172need for it "by itself").
173<p>The SDK package includes source code and developer documentation for those using WTP as a platform to build more tools, as well as everything that is in the non-SDK version.
174</p>The non-SDK package includes the runnable code and end-user documentation for those using the tools to
175develop web applications.
ndaib8cedc82005-09-13 18:00:32 +0000176</TD></TR></table>
177
178%wtpandprereqs%
179
180<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
181<tr><td align=RIGHT valign=TOP width="7%">
david_williams35e43402006-06-18 05:36:48 +0000182%wtpruntime%
ndaib8cedc82005-09-13 18:00:32 +0000183</table>
david_williams58473ad2007-03-03 01:12:43 +0000184
ndaib8cedc82005-09-13 18:00:32 +0000185
186<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
187<tr><td align=RIGHT valign=TOP width="7%">
david_williams35e43402006-06-18 05:36:48 +0000188%wtpsdk%
ndaib8cedc82005-09-13 18:00:32 +0000189</table>
david_williams58473ad2007-03-03 01:12:43 +0000190
ndaib8cedc82005-09-13 18:00:32 +0000191
192
193<!-- *********** WST downloads ************** -->
194<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
195<b><font face="Arial,Helvetica" color="#FFFFFF">
david_williams35e43402006-06-18 05:36:48 +0000196Web Standard Tools (WST)
ndaib8cedc82005-09-13 18:00:32 +0000197</font></b></td></tr>
198
199<TR><TD align="LEFT" valign="TOP" colspan="3">
david_williams35e43402006-06-18 05:36:48 +0000200The Web Standard Tools (WST) subproject includes languages and specifications published by open-standard bodies (e.g. W3C, IETF, ECMA, OASIS, WS-I, ANSI) that are commonly used by (non-J2EE) Web-centric applications (e.g. HTML, CSS, JavaScript, XML, XSD, XSLT, SVG, SOAP, WSDL, UDDI, SQL, XQuery).
201<p>The SDK package includes source code and developer documentation for those using WST as a platform to build more tools, as well as everything that is in the non-SDK version.
202</p><p>The non-SDK package includes the runnable code and end-user documentation for those using the tools to
203develop web applications.</p>
ndaib8cedc82005-09-13 18:00:32 +0000204</TD></TR></table>
205
david_williams35e43402006-06-18 05:36:48 +0000206<table BORDER=0 CELLSPACING=2 CELLPADDING=0 WIDTH="100%" bordercolor="#999999" >
ndaib8cedc82005-09-13 18:00:32 +0000207<tr><td align=RIGHT valign=TOP width="7%">
ndaib8cedc82005-09-13 18:00:32 +0000208<tr><td>%wst%</td></tr>
209</table>
david_williams58473ad2007-03-03 01:12:43 +0000210
ndaib8cedc82005-09-13 18:00:32 +0000211
david_williams35e43402006-06-18 05:36:48 +0000212<table BORDER=0 CELLSPACING=2 CELLPADDING=0 WIDTH="100%" bordercolor="#999999" >
ndaib8cedc82005-09-13 18:00:32 +0000213<tr><td align=RIGHT valign=TOP width="7%">
ndaib8cedc82005-09-13 18:00:32 +0000214<tr><td>%wst-sdk%</td></tr>
215</table>
david_williams58473ad2007-03-03 01:12:43 +0000216
ndaib8cedc82005-09-13 18:00:32 +0000217
218<!-- *********** Automated Test Downloads ************** -->
219<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
220<b><font face="Arial,Helvetica" color="#FFFFFF">
221Automated Tests
222</font></b></td></tr>
223
224<TR><TD align="LEFT" valign="TOP" colspan="3">
225This download contains the JUnit tests for the WST and JST Projects
226</TD></TR></table>
david_williams58473ad2007-03-03 01:12:43 +0000227
ndaib8cedc82005-09-13 18:00:32 +0000228
david_williams35e43402006-06-18 05:36:48 +0000229<table BORDER=0 CELLSPACING=2 CELLPADDING=0 WIDTH="100%" bordercolor="#999999" >
ndaib8cedc82005-09-13 18:00:32 +0000230<tr><td align=RIGHT valign=TOP width="7%">
ndaib8cedc82005-09-13 18:00:32 +0000231<tr><td>%wst-tests%</td></tr>
232</table>
david_williams58473ad2007-03-03 01:12:43 +0000233
ndaib8cedc82005-09-13 18:00:32 +0000234
david_williams35e43402006-06-18 05:36:48 +0000235<table BORDER=0 CELLSPACING=2 CELLPADDING=0 WIDTH="100%" bordercolor="#999999" >
ndaib8cedc82005-09-13 18:00:32 +0000236<tr><td align=RIGHT valign=TOP width="7%">
ndaib8cedc82005-09-13 18:00:32 +0000237<tr><td>%jst-tests%</td></tr>
238</table>
david_williams58473ad2007-03-03 01:12:43 +0000239
ndaib8cedc82005-09-13 18:00:32 +0000240
ndaiacc4d0d2006-05-19 17:10:33 +0000241<!-- *********** JSF downloads ************** -->
242<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
david_williams35e43402006-06-18 05:36:48 +0000243 <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"> <b><font face="Arial,Helvetica" color="#FFFFFF">
david_williamsba70a4e2006-06-18 03:59:37 +0000244 Java Server Faces (JSF) </font></b></td>
ndaiacc4d0d2006-05-19 17:10:33 +0000245 </tr>
246
247<TR>
david_williams35e43402006-06-18 05:36:48 +0000248 <TD align="LEFT" valign="TOP" colspan="3"> This module includes the complete
249 set of plug-in to use and develop Java Server Faces (JSF). </TD>
ndaiacc4d0d2006-05-19 17:10:33 +0000250 </TR></table>
251
252<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
253<tr><td align=RIGHT valign=TOP width="7%">
david_williams58473ad2007-03-03 01:12:43 +0000254<tr><td>%jsf-runtime%</td></tr>
ndaiacc4d0d2006-05-19 17:10:33 +0000255</table>
david_williamsba70a4e2006-06-18 03:59:37 +0000256
257
258<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
259<tr><td align=RIGHT valign=TOP width="7%">
david_williams58473ad2007-03-03 01:12:43 +0000260<tr><td>%jsf-sdk%</td></tr>
ndaiacc4d0d2006-05-19 17:10:33 +0000261</table>
david_williamsd913e922006-11-13 07:24:21 +0000262
263
david_williams58473ad2007-03-03 01:12:43 +0000264
265<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
266<tr><td align=RIGHT valign=TOP width="7%">
267<tr><td>%jsf-tests%</td></tr>
268</table>
269
270
271
ndaiacc4d0d2006-05-19 17:10:33 +0000272
david_williamsd913e922006-11-13 07:24:21 +0000273
274
275
276<!-- *********** JPA downloads ************** -->
277<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
278 <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"> <b><font face="Arial,Helvetica" color="#FFFFFF">
279 Java Persistence API (JPA) </font></b></td>
280 </tr>
281
282<TR>
283 <TD align="LEFT" valign="TOP" colspan="3"> This module includes the complete
284 set of plug-in to use and develop Java Persistence API (JPA). </TD>
285 </TR></table>
286
287<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
288<tr><td align=RIGHT valign=TOP width="7%">
david_williams58473ad2007-03-03 01:12:43 +0000289<tr><td>%jpa-runtime%</td></tr>
david_williamsd913e922006-11-13 07:24:21 +0000290</table>
david_williamsd913e922006-11-13 07:24:21 +0000291
292
293<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
294<tr><td align=RIGHT valign=TOP width="7%">
david_williams58473ad2007-03-03 01:12:43 +0000295<tr><td>%jpa-sdk%</td></tr>
david_williamsd913e922006-11-13 07:24:21 +0000296</table>
297
298
david_williamsd913e922006-11-13 07:24:21 +0000299
david_williams58473ad2007-03-03 01:12:43 +0000300<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
301<tr><td align=RIGHT valign=TOP width="7%">
302<tr><td>%jpa-tests%</td></tr>
303</table>
david_williamsd913e922006-11-13 07:24:21 +0000304
305
ndaib8cedc82005-09-13 18:00:32 +0000306</body>
307</html>