|  | <?php | 
|  | require_once ("../includes/buildServer-common.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()); | 
|  |  | 
|  | if ($proj) { | 
|  | header("Location: http://wiki.eclipse.org/index.php/M2T-" . strtoupper($proj) . "-FAQ"); | 
|  | exit; | 
|  | } | 
|  | ob_start(); | 
|  | ?> | 
|  | <div id="midcolumn"> | 
|  |  | 
|  | <h1>Frequently Asked Questions</h1> | 
|  | <p>If you have questions that you would like to see answered in future versions of this FAQ, please post them to the <a href="newsgroup-mailing-list.php">newsgroup</a>.</p> | 
|  |  | 
|  | <p>If you'd like to add your questions and answers to the FAQ, please edit the appropriate <a href="http://wiki.eclipse.org/index.php/M2T">Wiki page</a>.</p> | 
|  |  | 
|  | <?php | 
|  |  | 
|  | if (is_array($projects)) | 
|  | { | 
|  | $projectArray = getProjectArray($projects, $extraprojects, $nodownloads, $PR); | 
|  | print doSelectProject($projectArray, $proj, $nomenclature, "homeitem3col"); | 
|  | } | 
|  |  | 
|  | print "</div>\n"; | 
|  |  | 
|  | $html = ob_get_contents(); | 
|  | ob_end_clean(); | 
|  |  | 
|  | $pageTitle = "Eclipse Modeling - M2T - FAQs"; | 
|  | $pageKeywords = ""; // TODO: add something here | 
|  | $pageAuthor = "Neil Skrypuch"; | 
|  |  | 
|  | $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | 
|  | ?> | 
|  | <!-- $Id: faq.php,v 1.2 2007/05/14 23:17:23 nickb Exp $ --> |