blob: 43071dddefd3118312328e268292eee3cbb66e3e [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'
#*****************************************************************************
#
# index.php
#
# Author: Marcos Didonet Del Fabro
# Date: 2006-05-19
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Weaving metamodel Zoo";
$pageKeywords = "Zoo, metamodel, AMW, model weaving, metamodel extension, atl";
$pageAuthor = "Marcos Didonet Del Fabro";
# End: page-specific settings
#
include('../../am3/zoos/script/zoo_script.php');
$zoo = getZoo("org.eclipse.gmt.amw.zoo", "/gmt/amw/zoo/AMWZoo.xml");
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<a name="zoo"></a>
$zoo
</div>
<!-- Right Part -->
<div id="rightcolumn">
<div class="sideitem">
<h6>Incubation</h6>
<div align="center"><a href="http://www.eclipse.org/projects/what-is-incubation.php"><img
align="center" src="../../resources/images/egg-incubation.png"
border="0" alt="Incubation" /></a></div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>