This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snapshotBuilds.php
55 lines (45 loc) · 4.59 KB
/
snapshotBuilds.php
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
<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
#*****************************************************************************
# Memory Analyzer Download Page
#****************************************************************************
$pageTitle = "Eclipse Memory Analyzer Open Source Project";
$pageKeywords = "Memory Analyzer Download Snapshots";
$pageAuthor = "Krum Tsvetkov";
$html = <<<EOHTML
<div id="midcolumn">
<p>This page points to snapshots / preview versions of Memory Analyzer which haven't been released.</p>
<div class="homeitem3col">
<h3 id="nightly">Memory Analyzer Latest Stable Build</h3>
<ul>
<li>
<b>Version</b>: Latest Development Build | <b>Type</b>: Development/Nightly Build
<ul>
<li>
<b>Update Site</b>: <a href="https://download.eclipse.org/mat/snapshots/update-site/">https://download.eclipse.org/mat/snapshots/update-site/</a>
</li>
<li>
<b>Stand-alone Eclipse RCP</b><br/>
<a title="Windows (x86_64) RCP" href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-win32.win32.x86_64.zip"><img src="/mat/home/icon-save.gif" alt=""/></a>
<a href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-win32.win32.x86_64.zip">Windows (x86_64) (95.5 MB)</a><br/>
<a title="Mac OSX (Mac/Cocoa/x86_64) RCP" href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-macosx.cocoa.x86_64.dmg"><img src="/mat/home/icon-save.gif" alt=""/></a>
<a href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-macosx.cocoa.x86_64.dmg">Mac OSX (Mac/Cocoa x86_64) (94.7 MB)</a><br/>
<a title="Mac OSX (Mac/Cocoa/AArch64) RCP" href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-macosx.cocoa.aarch64.dmg"><img src="/mat/home/icon-save.gif" alt=""/></a>
<a href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-macosx.cocoa.aarch64.dmg">Mac OSX (Mac/Cocoa AArch64) (94.7 MB)</a><br/>
<a title="Linux (x86_64/GTK+) RCP" href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-linux.gtk.x86_64.zip"><img src="/mat/home/icon-save.gif" alt=""/></a>
<a href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-linux.gtk.x86_64.zip">Linux (x86_64/GTK+) (94.5 MB)</a><br/>
<a title="Linux (PPC64LE/GTK+) RCP" href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-linux.gtk.ppc64le.zip"><img src="/mat/home/icon-save.gif" alt=""/></a>
<a href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-linux.gtk.ppc64le.zip">Linux (PPC64LE/GTK+) (94.5 MB)</a><br/>
<a title="Linux (AArch64/GTK+) RCP" href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-linux.gtk.aarch64.zip"><img src="/mat/home/icon-save.gif" alt=""/></a>
<a href="https://www.eclipse.org/downloads/download.php?file=/mat/snapshots/rcp/org.eclipse.mat.ui.rcp.MemoryAnalyzer-linux.gtk.aarch64.zip">Linux (AArch64/GTK+) (94.5 MB)</a><br/>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="rightcolumn">
$sidebar
</div>
EOHTML;
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>