blob: 77f87246ebdcc250ac4e999b5ba6f284b4b32320 [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: Freddy Allilaire
# Date: 2005-12-05
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$shortTitle = "Software Build Tools Interoperability";
$pageTitle = "ATL Use Case - " . $shortTitle . ": Complete Scenario";
$pageKeywords = "";
$pageAuthor = "Freddy Allilaire";
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<!-- Main part -->
<div id="midcolumn">
<h1>$pageTitle</h1>
<img align="right" src="../../images/atlLogoSmall.png" valign="top" style="padding-left: 10px;" alt="ATL Logo" />
<p>
We provide here the links to the different scenarios which have been used to create this complete use case.
These scenarios are available from the <a href="http://www.eclipse.org/atl/atlTransformations/">ATL Transformation Zoo</a>.
Each of them may be used within other use cases, in other different contexts or for other purposes.
</p>
<hr class="clearer" />
<div id="container>
<table>
<COLGROUP>
<COL width="2%">
<COL width="98%">
</COLGROUP>
<tr>
<td></td>
<td>
<h4 STYLE="font-size: 10pt; padding: 0; border-bottom: 2px solid #49457C; background-position: top left; background-repeat; repeat-x;">List of scenarios used in this use case</h4>
<table border="1" frame="lhs" width="80%">
<tr>
<td align="center">
<b><font size="3">ATL Scenario</font></b>
</td>
</tr>
<tr>
<td align="center">
<a href="http://www.eclipse.org/atl/atlTransformations/#Make2Ant">Make to Ant</a>
</td>
</tr>
<tr>
<td align="center">
<a href="http://www.eclipse.org/atl/atlTransformations/#Ant2Maven">Ant to Maven</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<hr class="clearer" />
<br />
<a href="index.php">Back to the "$shortTitle" use case main page &raquo;</a>
<hr class="clearer" />
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>