Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWebmaster2018-01-03 19:32:05 +0000
committerroot2018-01-03 19:32:05 +0000
commit678ec27f471610e3157b72b60cf6c484e5230ca8 (patch)
tree302b491fe6656d6c62102cc1a77853404026db22 /_projectCommon.php
downloadjsonp-master.tar.gz
jsonp-master.tar.xz
jsonp-master.zip
Initial commit by WebmasterHEADmaster
Diffstat (limited to '_projectCommon.php')
-rw-r--r--_projectCommon.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/_projectCommon.php b/_projectCommon.php
new file mode 100644
index 0000000..0fe02c9
--- /dev/null
+++ b/_projectCommon.php
@@ -0,0 +1,23 @@
+<?php
+/*******************************************************************************
+ * Copyright (c) 2014 Eclipse Foundation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *******************************************************************************/
+
+ # Set the theme for your project's web pages.
+ # See the Committer Tools "Phoenix" secion in the How Do I? for list of themes
+ # https://dev.eclipse.org/committers/
+ $theme = "solstice";
+
+ # Define your project-wide Nav bars here.
+ # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank).
+ $Nav->addNavSeparator("Solstice", "/eclipse.org-common/themes/solstice/docs/");
+ $Nav->addCustomNav("Documentation", "/eclipse.org-common/themes/solstice/docs/", "_self", NULL);
+ $Nav->addCustomNav("Source code", "http://git.eclipse.org/c/www.eclipse.org/eclipse.org-common.git/tree/themes/solstice/", "_self", NULL);
+ $Nav->addCustomNav("Using Phoenix", "http://wiki.eclipse.org/Using_Phoenix", "_self", NULL);

Back to the top