| <?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 Support"; |
| $pageKeywords = "Eclipse, EASE, Scripting"; |
| $pageAuthor = "Christian Pontesegger"; |
| |
| # provide the page content |
| $html = <<<EOHTML |
| |
| <div id="midcolumn"> |
| <h3><i class="fa fa-fw fa-cogs"></i> Support</h3> |
| |
| <p><i>"I need some guidance and tutorials"</i></p> |
| <ul class="nobullet"> |
| <li><i class="fa fa-fw fa-book bullet"></i> |
| <a href="/ease/documentation" title="Documentation">Documentation</a> |
| - read our Users Guide</li> |
| </ul> |
| |
| <p><br/><i>"I have a specific question regarding usage"</i></p> |
| <ul class="nobullet"> |
| <li><i class="fa fa-fw fa-th-list bullet"></i> |
| <a href="https://www.eclipse.org/forums/index.php/f/292/" rel="nofollow">EASE Forums</a></li> |
| <li><i class="fa fa-fw fa-stack-overflow bullet"></i> |
| <a href="http://stackoverflow.com/questions/tagged/ease" rel="nofollow">Stackoverflow</a> |
| - Browse relevant topics.</li> |
| <li><i class="fa fa-fw fa-stack-overflow bullet"></i> |
| <a href="http://stackoverflow.com/questions/ask?tags=ease" rel="nofollow">Stackoverflow</a> |
| - Ask technical questions using tag <i>ease</i>.</li> |
| </ul> |
| |
| <p><br/><i>"I am a developer and have a specific question regarding implementation/API"</i></p> |
| <ul class="nobullet"> |
| <li><i class="fa fa-fw fa-envelope-o bullet"></i> |
| <a href="https://dev.eclipse.org/mailman/listinfo/ease-dev" title="ease-dev Mailing List" rel="nofollow">Developer Mailing List</a> |
| - Ask technical questions on our mailing list.</li> |
| </ul> |
| |
| <p><br/><i>"I found a bug / want to request a feature"</i></p> |
| |
| <ul class="nobullet"> |
| <li><i class="fa fa-fw fa-bug bullet"></i> |
| <a href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=EASE&rep_platform=All&op_sys=All" rel="nofollow">File a bug</a> |
| - file bugs and feature requests</li> |
| <li><i class="fa fa-fw fa-bug bullet"></i> |
| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Technology&product=EASE&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailtype1=exact&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0="rel="nofollow">EASE Bugzilla</a> |
| - review open topics</li> |
| </ul> |
| </div> |
| |
| {$incubation} |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |