ivinnykov | e56075e | 2009-05-25 15:21:30 +0000 | [diff] [blame] | 1 | <?php |
| 2 | set_include_path($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common" . PATH_SEPARATOR . $_SERVER['DOCUMENT_ROOT'] . "/projects" . PATH_SEPARATOR . get_include_path()); |
ivinnykov | 332eba8 | 2009-05-26 08:13:50 +0000 | [diff] [blame] | 3 | |
ivinnykov | 6353c6d | 2008-03-19 16:27:36 +0000 | [diff] [blame] | 4 | require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); |
| 5 | require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); |
| 6 | require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); |
| 7 | $App = new App(); |
| 8 | $Nav = new Nav(); |
| 9 | $Menu = new Menu(); |
| 10 | include($App->getProjectCommon()); |
| 11 | # All on the same line to unclutter the user's desktop' |
| 12 | |
| 13 | #***************************************************************************** |
| 14 | # |
| 15 | # integrations.php |
| 16 | # |
| 17 | # Author: Igor Vinnykov |
| 18 | # Date: 2008-03-17 |
| 19 | # |
| 20 | # Description: Information about integrations |
| 21 | # |
| 22 | # |
| 23 | #**************************************************************************** |
| 24 | |
| 25 | # |
| 26 | # Begin: page-specific settings. Change these. |
ivinnykov | d6bb6f9 | 2012-06-21 13:38:00 +0000 | [diff] [blame] | 27 | $pageTitle = "Integrations - Eclipse Subversive"; |
| 28 | $pageKeywords = "subversive, integrations, svn, subversion"; |
ivinnykov | 6353c6d | 2008-03-19 16:27:36 +0000 | [diff] [blame] | 29 | $pageAuthor = "Igor Vinnykov"; |
| 30 | |
ivinnykov | e56075e | 2009-05-25 15:21:30 +0000 | [diff] [blame] | 31 | include("_projectCommon.php"); # All on the same line to unclutter the user's desktop' |
| 32 | |
ivinnykov | 35fe3ae | 2012-07-05 14:16:17 +0000 | [diff] [blame] | 33 | $sidebar = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/subversive/sidebars/main.php"); |
| 34 | |
ivinnykov | 6353c6d | 2008-03-19 16:27:36 +0000 | [diff] [blame] | 35 | # Paste your HTML content between the EOHTML markers! |
| 36 | $html = <<<EOHTML |
| 37 | |
| 38 | <div id="midcolumn"> |
| 39 | <h1>Integrations</h1> |
ivinnykov | 9a204d0 | 2012-06-21 13:18:26 +0000 | [diff] [blame] | 40 | <p> |
| 41 | Do you like to integrate Subversive with your Eclipse project? Below you can find a list of current integrations and Subversive API specification. |
| 42 | </p> |
| 43 | <h2>List of Existing Integrations</h2> |
ivinnykov | 6353c6d | 2008-03-19 16:27:36 +0000 | [diff] [blame] | 44 | <ul> |
| 45 | <li>Mylyn</li> |
| 46 | <li>Buckminster</li> |
ivinnykov | 8e1f5dc | 2008-05-16 08:18:30 +0000 | [diff] [blame] | 47 | <li>M2Eclipse</li> |
ivinnykov | 6353c6d | 2008-03-19 16:27:36 +0000 | [diff] [blame] | 48 | <li>FastTrack</li> |
| 49 | <li>Project Set</li> |
| 50 | <li>Zend Studio</li> |
| 51 | </ul> |
| 52 | <h2>Documentation</h2> |
| 53 | <ul> |
ivinnykov | 9a204d0 | 2012-06-21 13:18:26 +0000 | [diff] [blame] | 54 | <li><a href="/subversive/Subversive_Architecture_Overview.doc">Subversive Architecture and API</a></li> |
ivinnykov | 6353c6d | 2008-03-19 16:27:36 +0000 | [diff] [blame] | 55 | </ul> |
ivinnykov | 6353c6d | 2008-03-19 16:27:36 +0000 | [diff] [blame] | 56 | </div> |
| 57 | |
| 58 | <div id="rightcolumn"> |
| 59 | $sidebar |
| 60 | </div> |
| 61 | |
| 62 | EOHTML; |
| 63 | |
| 64 | |
| 65 | # Generate the web page |
| 66 | $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| 67 | ?> |