Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 6125bfc55df15b6b57914d3aa43bd8863d9919d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<html><head>
<link rel="stylesheet" href="http://www.eclipse.org/default_style.css">
<title>Target Management Project RSE Downloads</title></head>
<body>

<table border=0 cellspacing=5 cellpadding=2 width="100%" >
  <tr> 
    <td align=left width="72%"> <font class=indextop>Target Management project<br/>RSE downloads</font> 
      <br>
      <font class=indexsub>latest downloads from the TM project</font><br>
</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="2" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">Download Information</font></b></td>
  </tr>
  
	<tr> <td> <p>On this
page you can find the latest 
<a href="build_types.html">builds</a> for the Remote System Explorer (RSE),
provided by the 
<a href="http://www.eclipse.org/tm/">Target Management</a> project.
<!--
To get started run the program and go through the
user and developer documentation provided in the online help system.
-->
To get started, see the build notes provided with each drop, run the
program and go through the online user and developer documentation,
or take a look at the project's online
<a href="http://www.eclipse.org/tm/tutorial/index.php">getting started</a>
pages.

If you have problems downloading the drops, contact the 
<font face="arial,helvetica,geneva" size="-1"><a href="mailto:webmaster@eclipse.org">webmaster</a></font>.
If you have problems installing or getting the workbench to run, 
check out the 
<a href="http://wiki.eclipse.org/TM_and_RSE_FAQ">Target Management FAQ</a>,
or try posting a question to the 
<a href="http://www.eclipse.org/newsgroups">newsgroup</a>,
<a href="news://news.eclipse.org/eclipse.tm">eclipse.tm</a>.
All downloads are provided under the terms and conditions of the 
<a href="http://www.eclipse.org/legal/epl/notice.php">Eclipse.org
Software User Agreement</a> unless otherwise specified. </p>

<p>
<b>Other eclipse.org project</b> downloads are available
<a href="http://www.eclipse.org/downloads/index.php">here</a>.<br/>
If you just want the latest drops (no dstore server), you can also get them from the 
<a href="http://download.eclipse.org/tm/updates/3.0">TM 3.0 update site</a>.</p>

<p>
For information about different kinds of builds look
<a href="build_types.html" target="_top">here</a>.

<img src="http://www.eclipse.org/images/new.gif">
For access to archived builds, look 
<a href="http://archive.eclipse.org/tm/downloads/index.php" target="_top">here</a>.
</p>

<p/>
<!--
<p>Builds can also be installed via Update Manager, from an existing installation of Eclipse, by following these  
<a href="http://download.eclipse.org/tm/downloads/updates/index.php" target="_self">steps</a>.
</p>
-->
</td></tr>
	
  <tr> 
    <td align=LEFT valign=TOP colspan="2" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">Latest 
      Downloads</font></b></td>
  </tr>
  </table>
  <?php
	$fileHandle = fopen("dlconfig.txt", "r");
	while (!feof($fileHandle)) {
		$aLine = fgets($fileHandle, 4096);
		parse_str($aLine);
	}
	fclose($fileHandle);
	
	for ($i = 0; $i < count($dropType); $i++) {
		$typeToPrefix[$dropType[$i]] = $dropPrefix[$i];
	}
	
	$aDirectory = dir("drops");
	while ($anEntry = $aDirectory->read()) {

		// Short cut because we know aDirectory only contains other directories.
		if ($anEntry != "." && $anEntry!="..") {
			$aDropDirectory = dir("drops/".$anEntry);
			$fileCount = 0;
			while ($aDropEntry = $aDropDirectory->read()) {
				if (stristr($aDropEntry, ".zip") || stristr($aDropEntry, ".tar")) {
					// Count the files in the directory
					$fileCount = $fileCount + 1;
				}
			}
			//See http://at2.php.net/manual/en/class.dir.php
			$aDropDirectory->close();
			// Read the count file
			$countFile = "drops/".$anEntry."/package.count";
			$indexFile = "drops/".$anEntry."/index.php";
			if (file_exists($countFile) && file_exists($indexFile)) {
				$anArray = file($countFile);
	
				// If a match - process the directory
				if ($anArray[0] == $fileCount) {
					$parts = explode("-", $anEntry);
					if (count($parts) == 2) {

						//N-builds and I-builds	
						$datePart = $parts[0];
						$timePart = $parts[1];
						$buildtype = substr($datePart, 0, 1);
						$buckets[$buildtype][] = $anEntry;
			
						$year = substr($datePart, 1, 4);
						$month = substr($datePart, 5, 2);
						$day = substr($datePart, 7, 2);
						$hour = substr($timePart,0,2);
						$minute = substr($timePart,2,2);
						$timeStamp = mktime($hour, $minute, 0, $month, $day, $year);
					
						$timeStamps[$anEntry] = date("D, j M Y -- H:i (O)", $timeStamp);
			
						if ($timeStamp > $latestTimeStamp[$buildtype]) {
							$latestTimeStamp[$buildtype] = $timeStamp;
							$latestFile[$buildtype] = $anEntry;
						}

					} else if (count($parts) == 3) {

						//S-builds and R-builds
						$buckets[$parts[0]][] = $anEntry;
			
						$timePart = $parts[2];
						$year = substr($timePart, 0, 4);
						$month = substr($timePart, 4, 2);
						$day = substr($timePart, 6, 2);
						$hour = substr($timePart,8,2);
						$minute = substr($timePart,10,2);
						$timeStamp = mktime($hour, $minute, 0, $month, $day, $year);
					
						$timeStamps[$anEntry] = date("D, j M Y -- H:i (O)", $timeStamp);
			
						if ($timeStamp > $latestTimeStamp[$parts[0]]) {
							$latestTimeStamp[$parts[0]] = $timeStamp;
							$latestFile[$parts[0]] = $anEntry;
						}
					}
				}
			}
		}
	}
	$aDirectory->close();
 ?>
 
<table width="100%" cellspacing=0 cellpadding=3 align=center>
<td align=left>
<TABLE  width="100%" CELLSPACING=0 CELLPADDING=3>
<tr>
	<td width=\"30%\"><b>Build Type</b></td>
	<td><b>Build Name</b></td>
	<td><b>Build Date</b></td>
</tr>

<?php
	foreach($dropType as $value) {
		$prefix=$typeToPrefix[$value];
		$fileName = $latestFile[$prefix];
		echo "<tr>
			<td width=\"30%\">$value</td>";
		
		$parts = explode("-", $fileName);
		if (count($parts) == 2) {
			$buildName=$fileName;
		} else {
			$buildName=$parts[1];
		}
		
		// Uncomment the line below if we need click through licenses.
		// echo "<td><a href=license.php?license=drops/$fileName>$buildName</a></td>";
		
		// Comment the line below if we need click through licenses.
		echo "<td><a href=\"drops/$fileName/index.php\">$buildName</a></td>";
		
		echo "<td>$timeStamps[$fileName]</td>";
		echo "</tr>";
	}
?>
</table>
</table>
&nbsp;
<?php
	foreach($dropType as $value) {
		$prefix=$typeToPrefix[$value];
		echo "
		<table width=\"100%\" cellspacing=0 cellpadding=3 align=center>
		<tr bgcolor=\"#999999\">
		<td align=left width=\"30%\"><b><a name=\"$value\"><font color=\"#FFFFFF\" face=\"Arial,Helvetica\">$value";
		echo "s</font></b></a></td>
		</TR>
		<TR>
		<td align=left>
		<TABLE  width=\"100%\" CELLSPACING=0 CELLPADDING=3>
		<tr>
		<td width=\"30%\"><b>Build Name</b></td>
		<td><b>Build Date</b></td>
		</tr>";
		
		$aBucket = $buckets[$prefix];
		if (isset($aBucket)) {
			rsort($aBucket);
			foreach($aBucket as $innerValue) {
				$parts = explode("-", $innerValue);
				if (count($parts) == 2) {
					$buildName=$innerValue;
				} else {
					$buildName=$parts[1];
				}
				echo "<tr>";
				
					// Uncomment the line below if we need click through licenses.
					// echo "<td><a href=\"license.php?license=drops/$innerValue\">$buildName</a></td>";
					
					// Comment the line below if we need click through licenses.
					echo "<td><a href=\"drops/$innerValue/index.php\">$buildName</a></td>";

					echo "<td>$timeStamps[$innerValue]</td>
					</tr>";
			}
		}
		echo "</table></table>&nbsp;";
	}
?>

&nbsp;
</body></html>

Back to the top