blob: 8a2892a9cf454fc88ffaf86055900e12377eed97 [file] [log] [blame]
ivinnykove56075e2009-05-25 15:21:30 +00001<?php
2 set_include_path($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common" . PATH_SEPARATOR . $_SERVER['DOCUMENT_ROOT'] . "/projects" . PATH_SEPARATOR . get_include_path());
ivinnykov332eba82009-05-26 08:13:50 +00003
ivinnykov6353c6d2008-03-19 16:27:36 +00004 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.
ivinnykovd6bb6f92012-06-21 13:38:00 +000027 $pageTitle = "Integrations - Eclipse Subversive";
28 $pageKeywords = "subversive, integrations, svn, subversion";
ivinnykov6353c6d2008-03-19 16:27:36 +000029 $pageAuthor = "Igor Vinnykov";
30
ivinnykove56075e2009-05-25 15:21:30 +000031 include("_projectCommon.php"); # All on the same line to unclutter the user's desktop'
32
ivinnykov35fe3ae2012-07-05 14:16:17 +000033 $sidebar = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/subversive/sidebars/main.php");
34
ivinnykov6353c6d2008-03-19 16:27:36 +000035 # Paste your HTML content between the EOHTML markers!
36 $html = <<<EOHTML
37
38 <div id="midcolumn">
39 <h1>Integrations</h1>
ivinnykov9a204d02012-06-21 13:18:26 +000040 <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>
ivinnykov6353c6d2008-03-19 16:27:36 +000044 <ul>
45 <li>Mylyn</li>
46 <li>Buckminster</li>
ivinnykov8e1f5dc2008-05-16 08:18:30 +000047 <li>M2Eclipse</li>
ivinnykov6353c6d2008-03-19 16:27:36 +000048 <li>FastTrack</li>
49 <li>Project Set</li>
50 <li>Zend Studio</li>
51 </ul>
52 <h2>Documentation</h2>
53 <ul>
ivinnykov9a204d02012-06-21 13:18:26 +000054 <li><a href="/subversive/Subversive_Architecture_Overview.doc">Subversive Architecture and API</a></li>
ivinnykov6353c6d2008-03-19 16:27:36 +000055 </ul>
ivinnykov6353c6d2008-03-19 16:27:36 +000056 </div>
57
58 <div id="rightcolumn">
59 $sidebar
60 </div>
61
62EOHTML;
63
64
65 # Generate the web page
66 $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
67?>