| <?php |
| set_include_path($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common" . PATH_SEPARATOR . $_SERVER['DOCUMENT_ROOT'] . "/projects" . PATH_SEPARATOR . get_include_path()); |
| 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()); |
| |
| $localVersion = false; |
| |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "Downloads - Eclipse Subversive"; |
| $pageKeywords = "subversive, downloads, svn, subversion"; |
| $pageAuthor = "Igor Vinnykov"; |
| |
| # Paste your HTML content between the EOHTML markers! |
| $html = <<<EOHTML |
| |
| <div id="midcolumn"> |
| <h1>Downloads</h1> |
| <p> |
| Use the resources below to learn how to download the right Subversive version for your OS platform, Eclipse and SVN environment. Find instructions how to install Subversive plug-in and SVN connectors. |
| </p> |
| <ul> |
| <li><a href="/subversive/latest-releases.php">Latest Releases</a> - Instructions for downloading the latest stable Subversive release, that is a part of the latest Eclipse Simultaneous Release. Information about the Early Access Build that includes latest Subversive features.</li> |
| <li><a href="/subversive/installation-instructions.php">Installation Instructions</a> - Learn how to install Subversive using different project distribution types. Get instructions for Subversive plug-in and Subversive SVN connectors installation.</li> |
| <li><a href="/subversive/special-builds.php">Special Builds</a> - Download special types of Subversive builds, such as Build for Headless Environments and SVN PDE Build.</li> |
| <li><a href="/subversive/previous-releases.php">Previous Releases</a> - Instructions for downloading previous Subversive builds created for previous Eclipse Simultaneous Releases.</li> |
| </ul> |
| </div> |
| |
| <div id="rightcolumn"> |
| $sidebar |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |