blob: 23982fd846dbf1566f47344f89096e741ae9c45f [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());
require($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/db.php");
ob_start();
?>
<div id="midcolumn">
<h1>Textual Modeling Framework</h1>
<?php
include($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/index-common.php");
?>
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6><a href="https://hudson.eclipse.org/xtext/view/Xtext-Xtend/job/xtext-xtend/rssAll"><img style="float:right" alt="Build Feeds" src="/modeling/images/rss-atom10.gif"/></a>Build News</h6>
<ul>
<li><a href="https://hudson.eclipse.org/xtext/view/Xtext-Xtend/job/xtext-xtend/rssAll">Hudson build feed</a></li>
</ul>
</div>
<div class="sideitem">
<h6>Modeling Corner</h6>
<p>Want to <a href="http://wiki.eclipse.org/index.php/Modeling_Corner">contribute</a> models, projects, files, ideas, utilities, or code to
<a href="http://www.eclipse.org/modeling/tmf/">TMF</a> or any other part of the <a href="http://www.eclipse.org/modeling/">Modeling Project</a>?
Now you can!</p>
<p>Have a look, post your comments, submit a link, or just read what others have written. <a href="http://wiki.eclipse.org/index.php/Modeling_Corner">Details here</a>.</p>
</div>
<div class="sideitem" id="related">
<h6>Related links</h6>
<ul>
<li><a href="http://www.eclipse.org/modeling/">Eclipse Modeling</a></li>
<li>Web: <a href="http://www.eclipse.org/emf/">EMF</a>,
<a href="http://www.eclipse.org/modeling/m2t/">M2T</a></li>
<li>Wiki: <a href="http://wiki.eclipse.org/index.php/Category:EMF">EMF</a>,
<a href="http://wiki.eclipse.org/index.php/Category:GMF">GMF</a>,
<a href="http://wiki.eclipse.org/index.php/Category:M2T">M2T</a></li>
<li><a href="http://www.eclipse.org/modeling/emf/docs/misc/UsingUpdateManager/UsingUpdateManager.html">Using Update Manager</a></li>
<li><a href="http://www.eclipse.org/newsgroups/">Eclipse newsgroups</a></li>
</ul>
</div>
</div>
<?php
$html = ob_get_contents();
ob_end_clean();
$pageTitle = "Eclipse Modeling - TMF - Home";
$pageKeywords = "Xtext Textual Modeling Domain-specific language DSL"; // TODO: add something here
$pageAuthor = "Sven Efftinge, Nick Boldt";
$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/modeling/includes/index.css"/>' . "\n");
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>