| <!-- | |
| File : news.php | |
| Author : Diego Madruga Sandin (dmadruga) | |
| Date : 2008-03-13 | |
| Description : news page for the MTJ Project. | |
| --> | |
| <?php | |
| /* Required eclipse basic classes */ | |
| require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); | |
| /* Functions and modules related to Navbar objects */ | |
| require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); | |
| /* Functions and modules related to the page top eclipse menu */ | |
| require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); | |
| /* Functions used for display events */ | |
| require_once($_SERVER['DOCUMENT_ROOT'] . "/dsdp/mtj/events.func.php"); | |
| $App = new App(); | |
| /* Left Navbar */ | |
| $Nav = new Nav(); | |
| /* Page top eclipse menu */ | |
| $Menu = new Menu(); | |
| /* Find the _projectCommon.php file and include it */ | |
| include($App->getProjectCommon()); | |
| # | |
| # Begin: page-specific settings. Change these. | |
| $pageTitle = "DSDP - Mobile Tools for Java (MTJ) Newsgroup"; | |
| $pageKeywords = "mtj, Newsgroup"; | |
| $pageAuthor = "Diego Madruga Sandin"; | |
| /* Paste your HTML content between the EOHTML markers! */ | |
| $html = <<<EOHTML | |
| <div id="maincontent"> | |
| <div id="midcolumn"> | |
| <h1>$pageTitle</h1> | |
| <div class="homeitem3col"> | |
| <h3>Newsgroup</h3> | |
| <ul> | |
| <br> | |
| <li> | |
| For general questions and community discussions join the <a href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.dsdp.mtj">news.eclipse.dsdp.mtj</a> Newsgroup. | |
| </li> | |
| <br> | |
| <li> | |
| To access a web archive of this news list, visit the <a href="http://dev.eclipse.org/newslists/news.eclipse.dsdp.mtj/">news.eclipse.dsdp.mtj | |
| Archives</a>. | |
| <ul> | |
| <li> | |
| <a href="http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.dsdp.mtj/maillist.html">Index by date</a> | |
| </li> | |
| <li> | |
| <a href="http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.dsdp.mtj/threads.html">Index by thread</a> | |
| </li> | |
| </ul> | |
| </li> | |
| <br> | |
| <li> | |
| You can subscribe to the news list's RSS feed <a href="http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.dsdp.mtj/maillist.rss"> | |
| <img src="http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/rss_btn.gif"></a> | |
| </li> | |
| <br> | |
| </ul> | |
| <br> | |
| </div> | |
| </div> | |
| </div> | |
| <script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script><script type="text/javascript">try {var pageTracker = _gat._getTracker("UA-9293663-1");pageTracker._trackPageview();} catch(err) {}</script> | |
| EOHTML; | |
| # Generate the web page | |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | |
| ?> |