blob: 76f153ab13515265fe779d5c8360a9a65b0f87bf [file] [log] [blame]
<?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'
#*****************************************************************************
#
# template.php
#
# Author: Marcos Didonet Del Fabro
# Date: 2005-12-05
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "AMW Download page - archived versions";
$pageKeywords = "";
$pageAuthor = "Marcos Didonet Del Fabro";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<!-- Main part -->
<div id="midcolumn">
<h1>$pageTitle</h1>
<a name="binaries"></a>
<div class="homeitem3col">
<h3>Release builds</h3>
<div align="center">
<table style="width: 95%;" border="1" cellpadding="2" cellspacing="5" align="">
<tr>
<th width="25%" align="left">Release date</th>
<td>July 17, 2006</td>
</tr>
<tr>
<th align="left">ATL version</th>
<td><a href ="http://www.eclipse.org/m2m/atl/download/">
June 30, 2006</a></td>
</tr>
<tr>
<th align="left">Eclipse version</th>
<td>3.1.2</td>
</tr>
<tr>
<th align="left">EMF version</th>
<td>2.1.0, 2.1.1</td>
</tr>
<tr>
<th align="left">Zip file</th>
<td>
<a href="http://www.eclipse.org/downloads/download.php?file=/modeling/gmt/amw/binaries/AMW-20060717/mwplugins-20060717.zip">
mwplugins-20060717.zip</a></td>
</tr>
<tr>
<th align="left">More info</th>
<td>
<a href="20060717/">
New & Noteworthy</a>
</td>
</tr>
<tr>
<th align="left">AMW, AM3 and ATL compatibility</th>
<td>
This version was tested using ATL versions from June 30th and January 13th.
When using ATL <b>and</b> AM3, use the January 13th releases, or the sources.<br/>
</td>
</tr>
</table>
<p/>
<table style="width: 95%;" border="1" cellpadding="2" cellspacing="5" align="">
<tr>
<th width="25%" align="left">Release date</th>
<td>January 26, 2006</td>
</tr>
<tr>
<th align="left">ATL version</th>
<td><a href ="http://www.eclipse.org/m2m/atl/download/">
January 13, 2006</a></td>
</tr>
<tr>
<th align="left">Eclipse version</th>
<td>3.1, 3.1.1</td>
</tr>
<tr>
<th align="left">EMF version</th>
<td>2.1.0, 2.1.1</td>
</tr>
<tr>
<th align="left">Zip file</th>
<td>
<a href="http://www.eclipse.org/downloads/download.php?file=/modeling/gmt/amw/binaries/AMW-20060126/mwplugins-20060126.zip">
mwplugins-20060126.zip</a></td>
</tr>
<tr>
<th align="left">AMW, AM3 and ATL compatibility</th>
<td>
This version was tested using AM3 and ATL versions from January 13.
<br/>No tests were done with other Eclipse 3.1.X and EMF 2.1.X versions.
</td>
</tr>
</table>
</div>
<br />
<div align="center">
<table style="width: 95%;" border="1" cellpadding="2" cellspacing="5" align="">
<tr>
<th width="25%" align="left">Release date</th>
<td>June 10, 2005</td>
</tr>
<tr>
<th align="left">ATL version</th>
<td><a href ="http://dev.eclipse.org/viewcvs/indextech.cgi/~checkout~/gmt-home/subprojects/ATL/download/ADT/ADT-20050601/adt-20050601.zip">
20050601</a></td>
</tr>
<tr>
<th align="left">Eclipse version</th>
<td>3.1M4</td>
</tr>
<tr>
<th align="left">EMF version</th>
<td>2.1.0</td>
</tr>
<tr>
<th align="left">Zip file</th>
<td>
<a href="http://www.eclipse.org/downloads/download.php?file=/modeling/gmt/amw/binaries/AMW-20050610/mwplugins.zip">
mwplugins.zip</a></td>
</tr>
<tr>
<th align="left">AMW, AM3 and ATL compatibility</th>
<td>
This version of AMW was released before any version of AM3.
There is no guarantee of compatibility.
</td>
</tr>
</table>
</div>
</div>
<hr class="clearer" />
<a name="plugins"></a>
<p>
<h3>Notes</h3>
<ul class="midlist">
<li>
Until build "build20050610" our development was made under Eclipse 3.0.1 and 3.1(with Java 1.4.2).
</li>
</ul>
</p>
<hr class="clearer" />
</div>
<!-- Right Part -->
<div id="rightcolumn">
<div class="sideitem">
<h6>Download area</h6>
<ul>
<li><a href="#binaries">Release builds</a></li>
<li><a href="#source">Source</a></li>
</ul>
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>