blob: 2603c4c85b83d96f7b785c98a491a15e9501b6a0 [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.
$pageTitle = "ATL Publications";
$pageKeywords = "";
$pageAuthor = "Freddy Allilaire";
# Paste your HTML content between the EOHTML markers!
ob_start();
?>
<script type="text/javascript">
function iframe_loaded() {
frames['myframe'].height = frames['myframe'].document.offsetHeight;
}
</script>
<div id="midcolumn" style="height: 800px; width: 750px;">
<iframe src="http://wiki.eclipse.org/transclude.php?page=ATL_Publications" frameborder="0"
width="100%" height="100%" scrolling="auto" name="myframe" id="myframe" onload="iframe_loaded();">
</iframe>
</div>
<?php
$html = ob_get_contents();
ob_end_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>