blob: 67c95dc9759887f2d6c06bf226f9932c03286f8f [file] [log] [blame]
ivinnykov9a204d02012-06-21 13:18:26 +00001<?php
2 set_include_path($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common" . PATH_SEPARATOR . $_SERVER['DOCUMENT_ROOT'] . "/projects" . PATH_SEPARATOR . get_include_path());
3 require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
4 require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
5 require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
6 $App = new App();
7 $Nav = new Nav();
8 $Menu = new Menu();
9 include($App->getProjectCommon());
10
11 $localVersion = false;
12
13 # Define these here, or in _projectCommon.php for site-wide values
ivinnykovd6bb6f92012-06-21 13:38:00 +000014 $pageTitle = "Getting Involved - Eclipse Subversive";
15 $pageKeywords = "subversive, development, svn, subversion";
ivinnykov9a204d02012-06-21 13:18:26 +000016 $pageAuthor = "Igor Vinnykov";
17
ivinnykov35fe3ae2012-07-05 14:16:17 +000018 $sidebar = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/subversive/sidebars/main.php");
19
ivinnykov9a204d02012-06-21 13:18:26 +000020 // # Paste your HTML content between the EOHTML markers!
21$html = <<<EOHTML
22
23 <div id="midcolumn">
24 <h1>Getting Involved</h1>
25 <p>
26 If you like to contribute to the Subversive project or integrate Subversive with your projects, use the resources below.
27 </p>
28 <ul>
29 <li><a href="/subversive/mailinglists.php">Mailing Lists</a> - it is a primary communication channel with Subversive developers regarding Subversive development and integration issues. If you are interested in getting announcements for new versions, or want to participate in discussions of the development or integration topics, then you can subscribe to one of the project's mailing lists.</li>
30 <li><a href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Subversive&rep_platform=All&op_sys=All">Submit a Patch</a> - If you know how to fix an issue in the Subversive code, submit your patch through Eclipse Bugzilla.</li>
agurov6576c282014-08-24 11:53:42 +030031 <li><a href="https://dev.eclipse.org/svnroot/technology/org.eclipse.subversive/">Repository</a> - Get an access to the Subversive source code.</li>
32 <!--<li><a href="http://dev.eclipse.org/viewsvn/viewvc.cgi/?root=Technology_SUBVERSIVE">Repository</a> - Get an access to the Subversive source code.</li>-->
ivinnykov9a204d02012-06-21 13:18:26 +000033 <li><a href="/subversive/integrations.php">Integrations</a> - Learn about existing Subversive integrations with other Eclipse projects. Get an overview of Subversive architecture and integration API.</li>
34 <li><a href="http://www.eclipse.org/projects/project-plan.php?projectid=technology.subversive">Project Plan</a> - Get information about Subversive project plans and the current progress.</li>
35 <li><a href="http://www.eclipse.org/projects/ip_log.php?projectid=technology.subversive">IP Log</a> - The information about project committers and external contributors, list of approved project dependencies and other legal information.</li>
36 </ul>
37 </div>
38
39 <div id="rightcolumn">
40 $sidebar
41 </div>
42
43EOHTML;
44
45
46 # Generate the web page
47 $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
48?>