blob: 7e1655ac216ea9172b32b5f9ccb6c0030b869be9 [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">
4<link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" type="text/css">
5<title>Download</title>
6</head>
7
8<body>
9
10<?php
david_williams1178e232006-10-25 12:54:57 +000011include '../../../report.php';
ndaib8cedc82005-09-13 18:00:32 +000012$testResults = parse_testResult("testResults.php");
13list ($compileErrors, $compileWarnings, $junitFailures) = $testResults;
ndaib8cedc82005-09-13 18:00:32 +000014?>
15
david_williams35e43402006-06-18 05:36:48 +000016&nbsp; <table BORDER=0 CELLSPACING=5 CELLPADDING=2 WIDTH="100%" ><tr><td ALIGN=LEFT width="80%">
ndaib8cedc82005-09-13 18:00:32 +000017<p><b><font face="Verdana" size="+3">@type@ Build: @build@</font></b><br>
david_williams35e43402006-06-18 05:36:48 +000018@date@
ndaib8cedc82005-09-13 18:00:32 +000019</p>
david_williams35e43402006-06-18 05:36:48 +000020<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 +000021Software User Agreement</a>.</p>
22</td></tr></table>
23
24<!-- *********** Build Status ************** -->
25<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 +000026<br>
27<?
david_williams368af7f2006-03-25 06:56:24 +000028$buildmachineScript="../../../displayBuildMachine.php";
29if (file_exists($buildmachineScript))
30{
31 include $buildmachineScript;
32 echo displayBuildMachine();
33}
david_williams0d101dc2006-03-14 05:48:50 +000034?>
ndaib8cedc82005-09-13 18:00:32 +000035<br> <a href="buildNotes.php">Build notes</a>
36<br> <a href="directory.txt">map files</a>
ndai44166372006-02-04 12:22:29 +000037
david_williamsc84ab8c2006-12-11 18:50:34 +000038<br> <a href="testResults.php">Compile logs &amp; test results</a>
ndaib8cedc82005-09-13 18:00:32 +000039<?php
david_williams249d10b2005-11-07 09:09:15 +000040echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_err.gif\"/><font color=red>$compileErrors</font>&nbsp;";
41echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_warn.gif\"/><font color=orange>$compileWarnings</font>&nbsp;";
42echo "<img src=\"http://download.eclipse.org/webtools/downloads/junit_err.gif\"/><font color=red>$junitFailures</font>";
ndaib8cedc82005-09-13 18:00:32 +000043?>
david_williamsc84ab8c2006-12-11 18:50:34 +000044
45<br> <a href="testCompileResults.php">Test Bundles Compile logs</a>
ndai17c97482006-02-10 16:06:54 +000046<br> <a href="whatisfixed/buglog.html">What is fixed</a>
ndai9e121782005-09-14 16:24:25 +000047
ndaib8cedc82005-09-13 18:00:32 +000048<br> <a href="pii.php">Unused property messages</a>
david_williams0c366d32006-12-10 07:08:39 +000049
50<?php
51if (file_exists("versioningReportName.php"))
52{
53 include "versioningReportName.php";
54 $fname="${versionReportFilename}.html";
55 if (file_exists($fname)) {
56 echo "<br /> <a href='$fname'>Versioning Information</a>";
57 }
58}
59?>
ndaib8cedc82005-09-13 18:00:32 +000060
jeffliu2a8a6de2005-11-01 19:51:24 +000061<?php
62if (file_exists("./apiresults"))
63{
64 echo "<br>";
jeffliue942a942005-11-29 17:34:57 +000065 echo "<br> <a href=\"apiresults/api-progress.html\">API Progress Report</a>";
jeffliu75e9e422006-03-08 02:28:47 +000066 echo "<br> <a href=\"apiresults/api-info-summary.html\">APIs Defined by Each Component</a>";
67 echo "<br> <a href=\"apiresults/api-ref-compatibility.html\">Adopter Breakage Report</a>";
jeffliu2a8a6de2005-11-01 19:51:24 +000068 echo "<br> <a href=\"apiresults/api-violation-summary.html\">API Violations</a>";
jeffliue942a942005-11-29 17:34:57 +000069 echo "<br> <a href=\"apiresults/component-api-violation-all.html\">Non-API dependencies</a>";
jeffliu2a8a6de2005-11-01 19:51:24 +000070 echo "<br> <a href=\"apiresults/api-tc-summary.html\">API Test Coverage</a>";
71 echo "<br> <a href=\"apiresults/api-javadoc-summary.html\">API Javadoc Coverage</a>";
jeffliuebfc3df2006-05-31 02:17:15 +000072
73 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 +000074}
jeffliu2a8a6de2005-11-01 19:51:24 +000075?>
ndaib8cedc82005-09-13 18:00:32 +000076
jeffliu18e6f7c2005-11-02 23:20:25 +000077<?php
78if (file_exists("./perfresults"))
79{
80 echo "<br>";
81 echo "<br> <a href=\"perfresults/graph/performance.php\">Performance Results</a>";
82 echo "<br>";
83}
84?>
85
ndaib8cedc82005-09-13 18:00:32 +000086<!-- *********** Requirements ************** -->
87<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 +000088<P>These are the prerequisites to install WebTools Platform;. They must
ndaib8cedc82005-09-13 18:00:32 +000089be downloaded and installed before the WTP can be installed.</P><br>
90<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>
91<li>The EMF driver used in this build is <a href="@emfURL@">@emfFile@</a><br></li>
92<li>The GEF driver used in this build is <a href="@gefURL@">@gefFile@</a><br></li>
93<li>Java EMF Model Runtime driver used in this build is <a href="@jemURL@">@jemFile@</a><br></li>
ndaia44be792006-10-23 08:31:46 +000094<li>Data Tools Platform (DTP) driver used in this build is <a href="@dtpURL@">@dtpFile@</a><br></li>
ndaib8cedc82005-09-13 18:00:32 +000095<P></P>
96
97
98
99<!-- *********** Runtime downloads ************** -->
100<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0">
101<b><font face="Arial,Helvetica" color="#FFFFFF">
david_williams35e43402006-06-18 05:36:48 +0000102Web Tools Platform (WTP, JST and WST combined)
ndaib8cedc82005-09-13 18:00:32 +0000103</font></b></td></tr>
104
105<TR><TD align="LEFT" valign="TOP" colspan="3">
david_williamsdd1d2df2006-06-18 06:57:46 +0000106The 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 +0000107The 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
108need for it "by itself").
109<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.
110</p>The non-SDK package includes the runnable code and end-user documentation for those using the tools to
111develop web applications.
ndaib8cedc82005-09-13 18:00:32 +0000112</TD></TR></table>
113
114%wtpandprereqs%
115
116<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
117<tr><td align=RIGHT valign=TOP width="7%">
118<div align="left"><b>Status</b></div></td>
119<td width="34%"><b>Platform</b></td>
120<td width="59%"><b>Download</b></td></tr>
david_williams35e43402006-06-18 05:36:48 +0000121%wtpruntime%
ndaib8cedc82005-09-13 18:00:32 +0000122</table>
123<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
124
125<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
126<tr><td align=RIGHT valign=TOP width="7%">
127<div align="left"><b>Status</b></div></td>
128<td width="34%"><b>Platform</b></td>
129<td width="59%"><b>Download</b></td></tr>
david_williams35e43402006-06-18 05:36:48 +0000130%wtpsdk%
ndaib8cedc82005-09-13 18:00:32 +0000131</table>
132<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
133
134
135<!-- *********** WST downloads ************** -->
136<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
137<b><font face="Arial,Helvetica" color="#FFFFFF">
david_williams35e43402006-06-18 05:36:48 +0000138Web Standard Tools (WST)
ndaib8cedc82005-09-13 18:00:32 +0000139</font></b></td></tr>
140
141<TR><TD align="LEFT" valign="TOP" colspan="3">
david_williams35e43402006-06-18 05:36:48 +0000142The 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).
143<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.
144</p><p>The non-SDK package includes the runnable code and end-user documentation for those using the tools to
145develop web applications.</p>
ndaib8cedc82005-09-13 18:00:32 +0000146</TD></TR></table>
147
david_williams35e43402006-06-18 05:36:48 +0000148<table BORDER=0 CELLSPACING=2 CELLPADDING=0 WIDTH="100%" bordercolor="#999999" >
ndaib8cedc82005-09-13 18:00:32 +0000149<tr><td align=RIGHT valign=TOP width="7%">
150<div align="left"><b>Status</b></div></td>
151<td width="34%"><b>Platform</b></td>
152<td width="59%"><b>Download</b></td></tr>
153<tr><td>%wst%</td></tr>
154</table>
155<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
156
david_williams35e43402006-06-18 05:36:48 +0000157<table BORDER=0 CELLSPACING=2 CELLPADDING=0 WIDTH="100%" bordercolor="#999999" >
ndaib8cedc82005-09-13 18:00:32 +0000158<tr><td align=RIGHT valign=TOP width="7%">
159<div align="left"><b>Status</b></div></td>
160<td width="34%"><b>Platform</b></td>
161<td width="59%"><b>Download</b></td></tr>
162<tr><td>%wst-sdk%</td></tr>
163</table>
164<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
165
166<!-- *********** Automated Test Downloads ************** -->
167<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
168<b><font face="Arial,Helvetica" color="#FFFFFF">
169Automated Tests
170</font></b></td></tr>
171
172<TR><TD align="LEFT" valign="TOP" colspan="3">
173This download contains the JUnit tests for the WST and JST Projects
174</TD></TR></table>
175<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
176
david_williams35e43402006-06-18 05:36:48 +0000177<table BORDER=0 CELLSPACING=2 CELLPADDING=0 WIDTH="100%" bordercolor="#999999" >
ndaib8cedc82005-09-13 18:00:32 +0000178<tr><td align=RIGHT valign=TOP width="7%">
179<div align="left"><b>Status</b></div></td>
180<td width="34%"><b>Platform</b></td>
181<td width="59%"><b>Download</b></td></tr>
182<tr><td>%wst-tests%</td></tr>
183</table>
184<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
185
david_williams35e43402006-06-18 05:36:48 +0000186<table BORDER=0 CELLSPACING=2 CELLPADDING=0 WIDTH="100%" bordercolor="#999999" >
ndaib8cedc82005-09-13 18:00:32 +0000187<tr><td align=RIGHT valign=TOP width="7%">
188<div align="left"><b>Status</b></div></td>
189<td width="34%"><b>Platform</b></td>
190<td width="59%"><b>Download</b></td></tr>
191<tr><td>%jst-tests%</td></tr>
192</table>
193<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
194
ndaiacc4d0d2006-05-19 17:10:33 +0000195<!-- *********** JSF downloads ************** -->
196<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
david_williams35e43402006-06-18 05:36:48 +0000197 <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"> <b><font face="Arial,Helvetica" color="#FFFFFF">
david_williamsba70a4e2006-06-18 03:59:37 +0000198 Java Server Faces (JSF) </font></b></td>
ndaiacc4d0d2006-05-19 17:10:33 +0000199 </tr>
200
201<TR>
david_williams35e43402006-06-18 05:36:48 +0000202 <TD align="LEFT" valign="TOP" colspan="3"> This module includes the complete
203 set of plug-in to use and develop Java Server Faces (JSF). </TD>
ndaiacc4d0d2006-05-19 17:10:33 +0000204 </TR></table>
205
206<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
207<tr><td align=RIGHT valign=TOP width="7%">
208<div align="left"><b>Status</b></div></td>
209<td width="34%"><b>Platform</b></td>
210<td width="59%"><b>Download</b></td></tr>
david_williams35e43402006-06-18 05:36:48 +0000211%jsf-runtime%
ndaiacc4d0d2006-05-19 17:10:33 +0000212</table>
213<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
214
215<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
216<tr><td align=RIGHT valign=TOP width="7%">
217<div align="left"><b>Status</b></div></td>
218<td width="34%"><b>Platform</b></td>
219<td width="59%"><b>Download</b></td></tr>
david_williams35e43402006-06-18 05:36:48 +0000220%jsf-sdk%
david_williamsba70a4e2006-06-18 03:59:37 +0000221</table>
222<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
223
224
225<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
226<tr><td align=RIGHT valign=TOP width="7%">
227<div align="left"><b>Status</b></div></td>
228<td width="34%"><b>Platform</b></td>
229<td width="59%"><b>Download</b></td></tr>
david_williams35e43402006-06-18 05:36:48 +0000230%jsf-tests%
ndaiacc4d0d2006-05-19 17:10:33 +0000231</table>
david_williamsd913e922006-11-13 07:24:21 +0000232
233
ndaiacc4d0d2006-05-19 17:10:33 +0000234<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
235
david_williamsd913e922006-11-13 07:24:21 +0000236
237
238
239<!-- *********** JPA downloads ************** -->
240<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
241 <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"> <b><font face="Arial,Helvetica" color="#FFFFFF">
242 Java Persistence API (JPA) </font></b></td>
243 </tr>
244
245<TR>
246 <TD align="LEFT" valign="TOP" colspan="3"> This module includes the complete
247 set of plug-in to use and develop Java Persistence API (JPA). </TD>
248 </TR></table>
249
250<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
251<tr><td align=RIGHT valign=TOP width="7%">
252<div align="left"><b>Status</b></div></td>
253<td width="34%"><b>Platform</b></td>
254<td width="59%"><b>Download</b></td></tr>
255%jpa-runtime%
256</table>
257<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
258
259<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
260<tr><td align=RIGHT valign=TOP width="7%">
261<div align="left"><b>Status</b></div></td>
262<td width="34%"><b>Platform</b></td>
263<td width="59%"><b>Download</b></td></tr>
264%jpa-sdk%
265</table>
266<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
267
268
269<table border=0 cellspacing=2 cellpadding=0 width="100%" bordercolor="#999999" >
270<tr><td align=RIGHT valign=TOP width="7%">
271<div align="left"><b>Status</b></div></td>
272<td width="34%"><b>Platform</b></td>
273<td width="59%"><b>Download</b></td></tr>
274%jpa-tests%
275</table>
276
277
278<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr><td colspan="2">&nbsp;</td></tr></table>
279
280
281
282
ndaib8cedc82005-09-13 18:00:32 +0000283</body>
284</html>