Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 66d6b551e8d9bac1a217b9aabff2fcff982dfd14 (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
  "http://www.w3.org/TR/html4/loose.dtd">
<head>
<title>${update.site.name} - ${update.site.description} ${update.site.version}</title>
<link rel="stylesheet" type="text/css" href="web/site.css">
</head>
<body style="margin: 0; padding: 0">
<center>
<table cellspacing="0" cellpadding="0" class="table">
	<tr>
		<td colspan="3" class="td_header">&nbsp;</td>
	</tr>
	<tr>
		<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
		<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
		<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
	</tr>
	<tr>
		<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
		<td>
		<h2 class="title">${update.site.name} - ${update.site.description}</h2>
		<table width="100%">
			<tr class="header">
				<td class="sub-header" width="100%"><span>Latest Build: ${update.site.version}</span></td>
			</tr>

			<tr class="light-row" style="height: 30px">
				<td class="bodyText">
				<p class="bodyText">This is the <b>${update.site.name}</b>.
				${update.site.description}.
								<blockquote style="border: 1px dashed #1778be; padding: 2px">
									<ol>
										<li>To <a class="link"
											href="https://www.eclipse.org/egit/download/">install</a>
											from this site, start up Eclipse ${target.eclipse.version}, then do:
											<ul>
												<li><code><strong>Help > Install New Software... ></strong></code></li>
											</ul>
										</li>
										<li>Copy this site's URL into Eclipse, and hit Enter.</li>
										<li>When the site loads, select the features to install,
											or click the <code><strong>Select All</strong></code> button.</li>
										<li>To properly resolve all dependencies, check
										<ul><li><code><strong>[x] Contact all update sites during install to find required software</strong></code></li></ul>

										<li>Click <code><strong>Next</strong></code>, agree to the license
											terms, and install.</li>
									</ol>
								</blockquote>
							</td>
						</tr>
		</table>
		</td>
		<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
	</tr>
</table>
<div class="bodyText">
	${site.contents}
</div>
</center>
</html>

Back to the top