blob: 5bea5499d433c189a7b1c29e9ba04356e998f52d [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'
$pageTitle = "EASE Documentation";
$pageKeywords = "Eclipse, EASE, Scripting";
$pageAuthor = "Christian Pontesegger";
# provide the page content
$html = <<<EOHTML
<div id="midcolumn">
<h3><i class="fa fa-fw fa-book"></i> Documentation</h3>
<p>
<ul class="nobullet">
<li><a href="https://wiki.eclipse.org/EASE">Wiki main page</a></li>
<li><a href="https://wiki.eclipse.org/EASE/Scripts">Script management</a></li>
<li><a href="https://wiki.eclipse.org/EASE/Engines">Supported script engines</a></li>
<li><a href="https://wiki.eclipse.org/EASE/Modules">Provided modules</a></li>
</ul>
</p>
<h3><i class="fa fa-fw fa-book"></i> Presentations</h3>
<p>
<dl class="nobullet">
<dt>EclipseCon Europe 2016</dt>
<dd>Elevate your IDE with scripts (<a href="https://youtu.be/K9ERWs2ixZY">watch on youtube</a>)</dd>
<dt>EclipseCon France 2016</dt>
<dd>Elevate your IDE with scripts (<a href="https://youtu.be/eWNKrPELcBw">watch on youtube</a>)</dd>
<dt>EclipseCon Europe 2015</dt>
<dd>I love scripting (<a href="https://youtu.be/C15pwEBSgBA">watch on youtube</a>)</dd>
<dt>EclipseCon Europe 2013</dt>
<dd>Scripting, baby! (<a href="https://youtu.be/FQw3eNYTgfI">watch on youtube</a>)</dd>
</dl>
</p>
</div>
{$incubation}
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>