| <?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' |
| |
| #***************************************************************************** |
| # |
| # template.php |
| # |
| # Author: Igor Vinnykov |
| # Date: 2007-11-16 |
| # |
| # Description: Primary download page |
| # |
| # |
| #**************************************************************************** |
| |
| # |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "Eclipse Subversive - Mailing Lists"; |
| $pageKeywords = "Subversive, Subversion, SVN, Team Provider, Mailing Lists"; |
| $pageAuthor = "Igor Vinnykov"; |
| |
| # Add page-specific Nav bars here |
| # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3) |
| # $Nav->addNavSeparator("My Page Links", "downloads.php"); |
| # $Nav->addCustomNav("My Link", "mypage.php", "_self", 3); |
| # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3); |
| |
| # End: page-specific settings |
| # |
| |
| # Paste your HTML content between the EOHTML markers! |
| $html = <<<EOHTML |
| |
| <div id="midcolumn"> |
| <h1>Mailing Lists</h1> |
| <p> |
| |
| </p> |
| <div class="homeitem3col"> |
| <h3>Mailing Lists</h3> |
| <p style="padding-left:10px;padding-right:10px;"> |
| <ul> |
| <li> |
| <b><a href="https://dev.eclipse.org/mailman/listinfo/subversive-announce">subversive-announce@eclipse.org</a></b> - A mail list for announcement of new Subversive versions and events. It supposed that all announcements will come from development team, so if you are not Subversive committer, please don't post to this list.<br/> |
| <img src="/subversive/images/arrow.gif"></img> <a href="https://dev.eclipse.org/mailman/listinfo/subversive-announce">Subscribe/unsubscribe instructions</a><br/> |
| <img src="/subversive/images/arrow.gif"></img> <a href="http://dev.eclipse.org/mhonarc/lists/subversive-announce/maillist.html">Mailing list archive</a><br/> |
| <img src="/subversive/images/arrow.gif"></img> <a href="http://dev.eclipse.org/mhonarc/lists/subversive-announce/maillist.rss">RSS Feed</a> |
| </li> |
| <li> |
| <b><a href="https://dev.eclipse.org/mailman/listinfo/subversive-dev">subversive-dev@eclipse.org</a></b> - A mail list for developer discussion. It's a place, where Subversive committers, contributors and integrators discuss all topics related with project development.<br/> |
| <img src="/subversive/images/arrow.gif"></img> <a href="https://dev.eclipse.org/mailman/listinfo/subversive-dev">Subscribe/unsubscribe instructions</a><br/> |
| <img src="/subversive/images/arrow.gif"></img> <a href="http://dev.eclipse.org/mhonarc/lists/subversive-dev/maillist.html">Mailing list archive</a><br/> |
| <img src="/subversive/images/arrow.gif"></img> <a href="http://dev.eclipse.org/mhonarc/lists/subversive-dev/maillist.rss">RSS Feed</a> |
| </li> |
| <li> |
| <b><a href="https://dev.eclipse.org/mailman/listinfo/subversive-defects">subversive-defects@eclipse.org</a></b> - A mail list for defects reporting. If you found a defect, you can send report here. Nevertheless the preferred place for defects reporting is Bugzilla.<br/> |
| <img src="/subversive/images/arrow.gif"></img> <a href="https://dev.eclipse.org/mailman/listinfo/subversive-defects">Subscribe/unsubscribe instructions</a><br/> |
| <img src="/subversive/images/arrow.gif"></img> <a href="http://dev.eclipse.org/mhonarc/lists/subversive-defects/maillist.html">Mailing list archive</a><br/> |
| <img src="/subversive/images/arrow.gif"></img> <a href="http://dev.eclipse.org/mhonarc/lists/subversive-defects/maillist.rss">RSS Feed</a> |
| </li> |
| </ul> |
| </p> |
| </div> |
| </div> |
| |
| <div id="rightcolumn"> |
| $sidebar |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |