mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 01:45:33 +02:00
Automatically generate index.php and buildNotes.php.
Generate only one of rseserver.tar or .zip according to platform.
This commit is contained in:
parent
4293d74b9d
commit
975428f3d8
10 changed files with 464 additions and 11 deletions
1
releng/org.eclipse.rse.build/.cvsignore
Normal file
1
releng/org.eclipse.rse.build/.cvsignore
Normal file
|
@ -0,0 +1 @@
|
|||
go.rb
|
|
@ -65,7 +65,7 @@ $publishDirectory = "$working/publish";
|
|||
$tag = ask("Enter tag to fetch from CVS", "HEAD");
|
||||
$buildType = ask("Enter build type (P=Personal, N=Nightly, I=Integration)", "P");
|
||||
($sec, $minute, $hour, $mday, $mon, $year) = gmtime();
|
||||
$timeStamp = sprintf("%4.4d%2.2d%2.2d%2.2d%2.2d", $year + 1900, ($mon + 1), ($mday + 1), $hour, $minute, $sec);
|
||||
$timeStamp = sprintf("%4.4d%2.2d%2.2d-%2.2d%2.2d", $year + 1900, ($mon + 1), ($mday + 1), $hour, $minute, $sec);
|
||||
$buildId = $buildType . $timeStamp;
|
||||
$buildId = ask("Enter the build id", $buildType . $timeStamp);
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ publishDirectory = "#{working}/publish"
|
|||
|
||||
tag = ask("Enter tag to fetch from CVS", "HEAD")
|
||||
buildType = ask("Enter build type (P=Personal, N=Nightly, I=Integration, S=Stable)", "P")
|
||||
buildId = ask("Enter the build id", buildType + Time.now.strftime("%Y%m%d%H%M"))
|
||||
buildId = ask("Enter the build id", buildType + Time.now.strftime("%Y%m%d-%H%M"))
|
||||
|
||||
command = "java -cp #{eclipse}/startup.jar org.eclipse.core.launcher.Main "
|
||||
command += "-application org.eclipse.ant.core.antRunner "
|
||||
|
|
|
@ -191,6 +191,31 @@
|
|||
<fileset dir="${buildDirectory}/${buildLabel}" includes="org.eclipse.rse.*" excludes="org.eclipse.rse.sdk-*"/>
|
||||
<mapper type="glob" from="org.eclipse.rse.*" to="RSE-runtime-*"/>
|
||||
</move>
|
||||
<copy todir="${buildDirectory}/${buildLabel}" file="${buildDirectory}/directory.txt"/>
|
||||
<!-- Create the index.php file -->
|
||||
<copy todir="${buildDirectory}/${buildLabel}">
|
||||
<fileset dir="${builder}/template/"/>
|
||||
</copy>
|
||||
<condition property="buildTypeLong" value="Private"><equals arg1="${buildType}" arg2="P"/></condition>
|
||||
<condition property="buildTypeLong" value="Nightly"><equals arg1="${buildType}" arg2="N"/></condition>
|
||||
<condition property="buildTypeLong" value="Integration"><equals arg1="${buildType}" arg2="I"/></condition>
|
||||
<condition property="buildTypeLong" value="Stable"><equals arg1="${buildType}" arg2="S"/></condition>
|
||||
<tstamp prefix="makeindex">
|
||||
<format property="dateLong" pattern="MMM d, yyyy"/>
|
||||
</tstamp>
|
||||
<condition property="dropDir" value="S-${buildId}-${DSTAMP}${TSTAMP}" else="${buildId}">
|
||||
<equals arg1="${buildType}" arg2="S"/>
|
||||
</condition>
|
||||
<replace file="${buildDirectory}/${buildLabel}/index.php">
|
||||
<replacefilter token="@buildTypeLong@" value="${buildTypeLong}"/>
|
||||
<replacefilter token="@dateLong@" value="${makeindex.dateLong}"/>
|
||||
<replacefilter token="@dropDir@" value="${dropDir}"/>
|
||||
<replacefilter token="@buildId@" value="${buildId}"/>
|
||||
</replace>
|
||||
<replace file="${buildDirectory}/${buildLabel}/buildNotes.php">
|
||||
<replacefilter token="@dateLong@" value="${makeindex.dateLong}"/>
|
||||
<replacefilter token="@buildId@" value="${buildId}"/>
|
||||
</replace>
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
|
@ -237,23 +262,23 @@
|
|||
<fileset dir="${buildDirectory}/plugins/org.eclipse.rse.services.dstore" includes="dstore_miners.jar" />
|
||||
</copy>
|
||||
|
||||
<antcall target="rseserver-os">
|
||||
<antcall target="rseserver-os-tar">
|
||||
<param name="os" value="aix"/>
|
||||
<param name="eol" value="lf"/>
|
||||
</antcall>
|
||||
<antcall target="rseserver-os">
|
||||
<antcall target="rseserver-os-tar">
|
||||
<param name="os" value="unix"/>
|
||||
<param name="eol" value="lf"/>
|
||||
</antcall>
|
||||
<antcall target="rseserver-os">
|
||||
<antcall target="rseserver-os-tar">
|
||||
<param name="os" value="macosx"/>
|
||||
<param name="eol" value="lf"/>
|
||||
</antcall>
|
||||
<antcall target="rseserver-os">
|
||||
<antcall target="rseserver-os-tar">
|
||||
<param name="os" value="linux"/>
|
||||
<param name="eol" value="lf"/>
|
||||
</antcall>
|
||||
<antcall target="rseserver-os">
|
||||
<antcall target="rseserver-os-zip">
|
||||
<param name="os" value="windows"/>
|
||||
<param name="eol" value="crlf"/>
|
||||
</antcall>
|
||||
|
@ -262,7 +287,16 @@
|
|||
|
||||
</target>
|
||||
|
||||
<target name="rseserver-os">
|
||||
<target name="rseserver-os-tar" depends="rseserver-os-collect">
|
||||
<tar destfile="${buildDirectory}/${buildLabel}/rseserver-${buildId}-${os}.tar" basedir="${working}/collector" includes="*"/>
|
||||
<delete dir="${working}/collector" />
|
||||
</target>
|
||||
<target name="rseserver-os-zip" depends="rseserver-os-collect">
|
||||
<zip destfile="${buildDirectory}/${buildLabel}/rseserver-${buildId}-${os}.zip" basedir="${working}/collector" includes="*"/>
|
||||
<delete dir="${working}/collector" />
|
||||
</target>
|
||||
|
||||
<target name="rseserver-os-collect">
|
||||
<mkdir dir="${working}/collector" />
|
||||
<copy todir="${working}/collector">
|
||||
<fileset dir="${working}/scripts/${os}" includes="*"/>
|
||||
|
@ -284,9 +318,6 @@
|
|||
<chmod perm="+x">
|
||||
<fileset dir="${working}/collector" includes="*.jar"/>
|
||||
</chmod>
|
||||
<tar destfile="${buildDirectory}/${buildLabel}/rseserver-${buildId}-${os}.tar" basedir="${working}/collector" includes="*"/>
|
||||
<zip destfile="${buildDirectory}/${buildLabel}/rseserver-${buildId}-${os}.zip" basedir="${working}/collector" includes="*"/>
|
||||
<delete dir="${working}/collector" />
|
||||
</target>
|
||||
|
||||
<!-- =====================================================================
|
||||
|
|
2
releng/org.eclipse.rse.build/template/.cvsignore
Normal file
2
releng/org.eclipse.rse.build/template/.cvsignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
buildNotes.php.html
|
||||
index.php.html
|
BIN
releng/org.eclipse.rse.build/template/FAIL.gif
Executable file
BIN
releng/org.eclipse.rse.build/template/FAIL.gif
Executable file
Binary file not shown.
After Width: | Height: | Size: 117 B |
BIN
releng/org.eclipse.rse.build/template/OK.gif
Executable file
BIN
releng/org.eclipse.rse.build/template/OK.gif
Executable file
Binary file not shown.
After Width: | Height: | Size: 139 B |
193
releng/org.eclipse.rse.build/template/buildNotes.php
Executable file
193
releng/org.eclipse.rse.build/template/buildNotes.php
Executable file
|
@ -0,0 +1,193 @@
|
|||
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<link rel="stylesheet" href="http://www.eclipse.org/default_style.css" type="text/css">
|
||||
<title>Build Notes for RSE @buildId@</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr>
|
||||
<td align="LEFT" width="80%">
|
||||
<p><b><font class=indextop>Build Notes for RSE @buildId@</font></b><br>
|
||||
@dateLong@ </p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<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">New and Noteworthy</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table><tbody><tr><td>
|
||||
<ul>
|
||||
<li>RSE ssh feature now supports connections via Proxy.
|
||||
<ul>
|
||||
<li>Re-uses ssh Preferences from Team > CVS > SSH2 Connection Method, and Team > CVS > Proxy Settings.</li>
|
||||
<li>Supports ssh command shell and sftp file transfer</li>
|
||||
<li>Ssh private key authentication is supported, but RSE requires entering a dummy password
|
||||
(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=142471">bug 142471</a>)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Documentation is now available. Note that this documentation still refers to the
|
||||
older IBM RSE product and thus contains lots of outdated references.</li>
|
||||
<li>Use <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=DSDP&product=Target%20Management&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&bugidtype=include&chfieldfrom=2006-05-19&chfieldto=2006-06-30&chfield=resolution">
|
||||
this query</a> to show the list of bugs fixed for this build.</li>
|
||||
<li>Look <a href="http://download.eclipse.org/dsdp/tm/downloads/drops/N-changelog/index.html">
|
||||
here</a> for the CVS changelog.</li>
|
||||
</ul>
|
||||
</td></tr></tbody></table>
|
||||
|
||||
<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">Getting Started</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table><tbody><tr><td>
|
||||
<p>Download RSE SDK, and either
|
||||
<ul><li>Extract it into your installation of Eclipse 3.2, or</li>
|
||||
<li>Extract it into an empty directory and link it as product extension via Help > Install/Update, or</li>
|
||||
<li>(If you want to write code for RSE) extract it into an empty directory, and from an Eclipse PDE Workspace
|
||||
choose Import > Plug-in development > Plug-ins and Fragemtns. Select the RSE directory and import
|
||||
everything.</li>
|
||||
</ul>
|
||||
Start Eclipse Workbench, and choose <b>Window > Open Perspective > Other > Remote System Explorer</b>.</p>
|
||||
|
||||
<p>Even without an actual connection to a remote system, you can start experimenting with the RSE UI on the
|
||||
local host, which is shown by default:
|
||||
<ul>
|
||||
<li>Browse the Filesystem, choose contextmenu > show in Table, and observe the Properties view</li>
|
||||
<li>Create a new Filter to show specific resources in the file system only
|
||||
<li>Launch an RSE Shell (Shells node > Launch)</li>
|
||||
</ul>
|
||||
For operations on an actual remote system, you can either
|
||||
<ul>
|
||||
<li>use the "<b>SSH Only</b>" system type (<b>New > Other > Remote Systems Explorer > Connection</b>), or</li>
|
||||
<li>start a dstore server daemon on the remote system and use any of the other connection types.</li>
|
||||
</ul>
|
||||
</td></tr></tbody></table>
|
||||
|
||||
<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">Installing the Dstore server</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table><tbody><tr><td>
|
||||
<p>
|
||||
RSE is a framework that supports plugging in many different communication protocols.
|
||||
By default, the dstore and FTP protocol plug-ins are provided, with dstore being a
|
||||
lot richer in features.</p>
|
||||
<p>
|
||||
Dstore requirs a server to run on the remote system. There are several methods to
|
||||
get a server launched for a particular user, the most easy one to set up is the
|
||||
daemon method. To start a dstore launcher daemon,
|
||||
<ul>
|
||||
<li>On Windows:<ul>
|
||||
<li>Extract the rseserver-*-windows.zip package and cd to it.</li>
|
||||
<li>Run <b>setup.bat</b>, then run <b>daemon.bat</b>.</li>
|
||||
</ul></li>
|
||||
<li>On Linux or AIX or other Unix:<ul>
|
||||
<li>Extract the appropriate rseserver-*.tar package.</li>
|
||||
<li>Become <b>root</b> and cd to the package directory.</li>
|
||||
<li>Make sure that a <b>Sun or IBM JRE 1.4</b> or higher is in the PATH. The gcj-based java installation
|
||||
that comes with many Linux distributions will not do! You can download a Sun JRE from
|
||||
<a href="http://java.sun.com">http://java.sun.com</a>.
|
||||
<li>Run <b>perl daemon.pl</b>.
|
||||
</ul></li>
|
||||
</ul>
|
||||
<p>
|
||||
<b>Note:</b> In its default configuration for testing, the dstore daemon accepts <b>unencrypted
|
||||
passwords</b> from the RSE client. For production use, SSL can be enabled in order to encrypt
|
||||
connections, or the RSE server can be launched differently (e.g. through ssh).</p>
|
||||
|
||||
</td></tr></tbody></table>
|
||||
|
||||
<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">Using remote connections</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table><tbody><tr><td>
|
||||
<ul>
|
||||
<li>In the RSE Perspective, Remote Systems View, press the <b>New Connection</b> button.<ul>
|
||||
<li>Note: In the Preferences, you can enable displaying available new connection types in the RSE tree.</li></ul></li>
|
||||
<li>Enter a name, system type and IP address for a remote system running an ssh server or dstore server.<ul>
|
||||
<li>Coose system type "SSH Only" for ssh servers, or any other for dstore.</li>
|
||||
<li>You can also run a dstore server on the local machine for testing. In this case, type "localhost" as address.</li>
|
||||
<li>You can press Finish right away, the wizard defaults are fine for dstore connections.</li></ul></li>
|
||||
<li>Fill in the username / password dialog.<ul>
|
||||
<li>Note: For ssh, the password here is just a dummy. You can setup ssh private key authentication through
|
||||
the <b>Team > CVS > SSH2 Connection Method</b> Preference page.</li></ul></li>
|
||||
<li><b>Browse remote files</b>, or open remote shells.<ul>
|
||||
<li>You can <b>drag and drop</b> files between local and remote file systems, between editors and any view.
|
||||
Files are transferred as needed.</li>
|
||||
<li>On dstore, you can browse into remote archives (*.zip, *.tar) without having to transfer the entire contents. This works thanks
|
||||
to "miners" on the remote side. Custom miners can be plugged into the dstore server.<br>
|
||||
Note: Some tar formats currently fail to work. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=139207">bug 139207</a>.</li>
|
||||
<li>On dstore, when you list directories in a remote shell, the <b>shell output is parsed</b> to identify
|
||||
files, folders and even line numbers from compiler error messages. These items can also be
|
||||
dragged and dropped, or double clicked to position an editor on them.</li></ul></li>
|
||||
<li>On dstore, you can choose <b>Search > Remote...</b>.<ul>
|
||||
<li>The dstore miners support searching a remote file system
|
||||
without having to transfer any data.</li></ul></li>
|
||||
<li>On dstore, when the remote system is Linux, AIX or Other Unix:<ul>
|
||||
<li>Browse remote <b>Processes</b>.</li>
|
||||
<li>Select "My Processes" and choose context menu > <b>Monitor</b>.
|
||||
<li>Enable polling, choose a short wait time. See processes appear and vanish as you perform commands in a remote shell.</li></ul></li>
|
||||
|
||||
</ul>
|
||||
</td></tr></tbody></table>
|
||||
|
||||
<!--
|
||||
</td></tr></tbody></table>
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr><td colspan="2"> </td></tr>
|
||||
</table>
|
||||
-->
|
||||
|
||||
<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">Known Problems and Workarounds</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table><tbody><tr><td>
|
||||
The following M3 <a href="http://www.eclipse.org/dsdp/tm/development/plan.php">original plan</a> deliverables did
|
||||
not make it into this build:
|
||||
<ul>
|
||||
<li>The Wizard is not yet completely replacable.</li>
|
||||
<li>User Actions, and Import/Export were deferred.
|
||||
A new <a href="http://www.eclipse.org/dsdp/tm/development/plan.php">plan</a> will be published.</li>
|
||||
<li>JUnit tests are not yet available.</li>
|
||||
</ul>
|
||||
The following critical or major bugs are currently known. Since
|
||||
the goal of this milestone was "functional complete" for soliciting
|
||||
user and API feedback, we still gave a go for this milestone.
|
||||
We'll strive to fix these as soon as possible.
|
||||
<ul>
|
||||
<li><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=143462">bug 143462</a> - maj - [updating] Dirty remote editors do not get notified</li>
|
||||
<li><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=143292">bug 143292</a> - maj - [mac] Move Resource dialog causes hang/crash</li>
|
||||
<li><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=142712">bug 142712</a> - maj - [team] Connection created in Team profile is not functional</li>
|
||||
<li><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=142710">bug 142710</a> - maj - [team] NPE when trying to copy or move a connection to a team profile</li>
|
||||
<li><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=139207">bug 139207</a> - maj - Browsing into some remote tar archives fails, and may crash the dstore server</li>
|
||||
</ul>
|
||||
Click
|
||||
<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=DSDP&product=Target+Management&component=RSE&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=blocker&bug_severity=critical&bug_severity=major&cmdtype=doit">here</a>
|
||||
for an up-to-date list of major or critical bugs, or
|
||||
<a href="https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=bug_severity&y_axis_field=op_sys&z_axis_field=&query_format=report-table&classification=DSDP&product=Target+Management&component=RSE&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&format=table&action=wrap">here</a>
|
||||
for a complete up-to-date bugzilla status report, or
|
||||
<a href="https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=bug_severity&y_axis_field=op_sys&z_axis_field=&query_format=report-table&classification=DSDP&product=Target+Management&component=RSE&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&format=table&action=wrap">here</a>
|
||||
for a report on bugs fixed so far.
|
||||
<!--
|
||||
<a href="https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=bug_severity&y_axis_field=op_sys&z_axis_field=bug_status&query_format=report-table&short_desc_type=allwordssubstr&short_desc=&classification=DSDP&product=Target+Management&component=RSE&format=table&action=wrap">here</a>
|
||||
for a complete up-to-date bugzilla status report.
|
||||
-->
|
||||
</td></tr></tbody></table>
|
||||
|
||||
</body>
|
||||
</html>
|
225
releng/org.eclipse.rse.build/template/index.php
Executable file
225
releng/org.eclipse.rse.build/template/index.php
Executable file
|
@ -0,0 +1,225 @@
|
|||
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<link rel="stylesheet" href="http://www.eclipse.org/default_style.css" type="text/css">
|
||||
<title>DSDP-TM RSE Downloads</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr>
|
||||
<td align="LEFT" width="80%">
|
||||
<p><b><font class=indextop>RSE @buildTypeLong@ Build: @buildId@</font></b><br>
|
||||
@dateLong@ </p>
|
||||
<p>These downloads are provided under the
|
||||
<a href="http://www.eclipse.org/legal/epl/notice.php">Eclipse.org Software
|
||||
User Agreement</a>.</p>
|
||||
<p>To get started, see the <a href="buildNotes.php">build notes</a>.<br>
|
||||
To view the map file entries for this build, click
|
||||
<a href="directory.txt">here</a>.</p>
|
||||
<!--
|
||||
<p>To view the build notes for this build click <a
|
||||
href="buildNotes.php">here</a>.<br>
|
||||
To view the test results for this build, click
|
||||
<a href="testResults.php">here</a>.<br>
|
||||
To view the compile logs for this build, click
|
||||
<a href="testResults.php">here</a>.</p>
|
||||
-->
|
||||
</td>
|
||||
<!--
|
||||
<td width="28%"><img src="http://www.eclipse.org/images/Idea.jpg" height=86 width=120></td>
|
||||
-->
|
||||
</tr>
|
||||
</table>
|
||||
<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>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr><td><b>RSE requires Eclipse-3.2.<b></td></tr>
|
||||
<tr><td>Eclipse 3.2RC2, 3.1 or lower will <b>not</b> work!</td></tr>
|
||||
<tr>
|
||||
<td>We've been testing with Eclipse-3.2 RC7, built 2-Jun-2006 (<a href="http://download.eclipse.org/eclipse/downloads/drops/S-3.2RC7-200606021317/index.php">download page</a>)</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</table>
|
||||
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr><td colspan="2"> </td></tr>
|
||||
</table>
|
||||
<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">SDK (includes client runtime, documentation, and source)</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="2" cellpadding="0" width="100%">
|
||||
<tr>
|
||||
<td align="RIGHT" valign="TOP" width="7%">
|
||||
<div align="left">
|
||||
<b>Status</b></div>
|
||||
</td>
|
||||
<td width="34%"><b>Platform</b></td>
|
||||
<td width="59%"><b>Download</b></td>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>All</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/RSE-SDK-@buildId@.zip">RSE-SDK-@buildId@.zip</a></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr><td colspan="2"> </td></tr>
|
||||
</table>
|
||||
|
||||
<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">Dstore Server Runtime</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="2" cellpadding="0" width="100%">
|
||||
<tr>
|
||||
<td align="RIGHT" valign="TOP" width="7%">
|
||||
<div align="left"><b>Status</b></div></td>
|
||||
<td width="34%"><b>Platform</b></td>
|
||||
<td width="59%"><b>Download</b></td></tr>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>Windows (<a href="http://www.eclipse.org/dsdp/tm/development/plan.php#OperatingEnvironments">Supported Versions</a>)</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/rseserver-@buildId@-windows.zip">rseserver-@buildId@-windows.zip</a></td></tr>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>Linux (<a href="http://www.eclipse.org/dsdp/tm/development/plan.php#OperatingEnvironments">Supported Versions</a>)</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/rseserver-@buildId@-linux.tar">rseserver-@buildId@-linux.tar</a></td></tr>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>AIX (<a href="http://www.eclipse.org/dsdp/tm/development/plan.php#OperatingEnvironments">Supported Versions</a>)</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/rseserver-@buildId@-aix.tar">rseserver-@buildId@-aix.tar</a></td></tr>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>Other Unix (<a href="http://www.eclipse.org/dsdp/tm/development/plan.php#OperatingEnvironments">Supported Versions</a>)</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/rseserver-@buildId@-unix.tar">rseserver-@buildId@-unix.tar</a></td></tr>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>Mac OS X (<a href="http://www.eclipse.org/dsdp/tm/development/plan.php#OperatingEnvironments"><i>Experimental</i></a>)</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/rseserver-@buildId@-macosx.tar">rseserver-@buildId@-macosx.tar</a></td></tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr><td colspan="2"> </td></tr>
|
||||
</table>
|
||||
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr>
|
||||
<td align="LEFT" valign="TOP" colspan="3" bgcolor="#808080"><b>
|
||||
<font face="Arial,Helvetica" color="#FFFFFF">Client Runtime Binaries</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="2" cellpadding="0" width="100%">
|
||||
<tr>
|
||||
<td align="RIGHT" valign="TOP" width="7%">
|
||||
<div align="left"><b>Status</b></div>
|
||||
</td>
|
||||
<td width="34%"><b>Platform</b></td>
|
||||
<td width="59%"><b>Download</b></td></tr>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>All</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/RSE-runtime-core-@buildId@.zip">RSE-runtime-core-@buildId@.zip</a></td></tr>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>All</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/RSE-runtime-dstore-@buildId@.zip">RSE-runtime-dstore-@buildId@.zip</a></td></tr>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>All</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/RSE-runtime-ftp-@buildId@.zip">RSE-runtime-ftp-@buildId@.zip</a></td></tr>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>All</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/RSE-runtime-local-@buildId@.zip">RSE-runtime-local-@buildId@.zip</a></td></tr>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>All</td>
|
||||
<td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/RSE-runtime-ssh-@buildId@.zip">RSE-runtime-ssh-@buildId@.zip</a></td></tr>
|
||||
</table>
|
||||
|
||||
<!--
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr><td colspan="2"> </td></tr>
|
||||
</table>
|
||||
|
||||
<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">Client Runtime</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="2" cellpadding="0" width="100%">
|
||||
<tr>
|
||||
<td align="RIGHT" valign="TOP" width="7%">
|
||||
<div align="left">
|
||||
<b>Status</b></div>
|
||||
</td>
|
||||
<td width="34%"><b>Platform</b></td>
|
||||
<td width="59%"><b>Download</b></td>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>All</td><td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/RSE-runtime-@buildId@.zip">RSE-runtime-@buildId@.zip</a></td>
|
||||
</tr>
|
||||
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr>
|
||||
<td colspan="2"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<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">Examples (includes source)</font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="2" cellpadding="0" width="100%">
|
||||
<tr>
|
||||
<td align="RIGHT" valign="TOP" width="7%">
|
||||
<div align="left">
|
||||
<b>Status</b></div>
|
||||
</td>
|
||||
<td width="34%"><b>Platform</b></td>
|
||||
<td width="59%"><b>Download</b></td>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>All</td><td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/RSE-examples-@buildId@.zip">RSE-examples-@buildId@.zip</a></td>
|
||||
</tr>
|
||||
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr>
|
||||
<td colspan="2"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<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">JUnit Plugin Tests</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="2" cellpadding="0" width="100%">
|
||||
<tr>
|
||||
<td align="RIGHT" valign="TOP" width="7%">
|
||||
<div align="left">
|
||||
<b>Status</b></div>
|
||||
</td>
|
||||
<td width="34%"><b>Platform</b></td>
|
||||
<td width="59%"><b>Download</b></td>
|
||||
<tr><td><div align=left><img src = "OK.gif" width=19 height=23></div></td>
|
||||
<td>All</td><td><a href="http://www.eclipse.org/downloads/download.php?file=/dsdp/tm/downloads/drops/@dropDir@/RSE-tests-@buildId@.zip">RSE-tests-@buildId@.zip</a></td>
|
||||
</tr>
|
||||
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="5" cellpadding="2" width="100%">
|
||||
<tr><td colspan="2"> </td></tr>
|
||||
</table>
|
||||
-->
|
||||
|
||||
<p> </p>
|
||||
</body>
|
||||
</html>
|
1
releng/org.eclipse.rse.build/template/package.count
Executable file
1
releng/org.eclipse.rse.build/template/package.count
Executable file
|
@ -0,0 +1 @@
|
|||
11
|
Loading…
Add table
Reference in a new issue