forked from eclipse-platform/www.eclipse.org-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_projectCommon.php
22 lines (19 loc) · 1.09 KB
/
_projectCommon.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
# Set the theme for your project's web pages.
# See the Committer Tools "How Do I" for list of themes
# https://dev.eclipse.org/committers/
# Optional: defaults to system theme
$theme = "solstice";
# Define your project-wide Nav bars here.
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# these are optional
$Nav->addCustomNav( "About This Project", "/projects/project_summary.php?projectid=eclipse", "_self", 1 );
$Nav->addCustomNav("Mailing Lists", "http://www.eclipse.org/mail/", "_self", 1);
$Nav->addNavSeparator("Projects", "index.php");
$Nav->addCustomNav("Platform", "http://wiki.eclipse.org/Platform", "_self", 1);
$Nav->addCustomNav("JDT", "http://www.eclipse.org/jdt/", "_self", 1);
$Nav->addCustomNav("PDE", "http://www.eclipse.org/pde/", "_self", 1);
$Nav->addCustomNav("e4", "http://www.eclipse.org/e4/", "_self", 1);
$Nav->addCustomNav("Incubator", "http://www.eclipse.org/eclipse/incubator/", "_self", 1);
$Nav->addNavSeparator("Development", "http://www.eclipse.org/eclipse/development/", "_self", 1);
?>