summaryrefslogtreecommitdiff
path: root/website/main.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'website/main.inc.php')
-rw-r--r--website/main.inc.php43
1 files changed, 43 insertions, 0 deletions
diff --git a/website/main.inc.php b/website/main.inc.php
new file mode 100644
index 0000000..67dde9f
--- /dev/null
+++ b/website/main.inc.php
@@ -0,0 +1,43 @@
+<?php
+/*
+ * Copyright 2004 Matt Brubeck
+ * This file is licensed under a Creative Commons license:
+ * http://creativecommons.org/licenses/by/2.0/
+ */
+
+// Work around PHP bug on sf.net where include_path gets reset.
+set_include_path(".".PATH_SEPARATOR."/usr/share/pear".PATH_SEPARATOR."/usr/share/php");
+require_once "include/lang.inc.php";
+localization_setup();
+
+$sitePath = ".";
+$sectionId = "none";
+
+$siteNavItems = array(
+ array(_("Home"), "", 0),
+ array(_("About"), "about/",
+ array(
+ array(_("Features"), "features"),
+ /*array(_("Screenshots"), "screenshots"),*/
+ array(_("News"), "news"),
+ array(_("License"), "license"),
+ array(_("Credits"), "credits"),
+ array(_("Links"), "links"),
+ )
+ ),
+ array(_("Download"), "download/",
+ array(
+ array(_("Windows"), "windows"),
+ array(_("Source Code"), "source"),
+ array(_("Release Notes"), "release-notes"),
+ )
+ ),
+ array(_("Support"), "support/",
+ array(
+ array(_("FAQ"), "faq"),
+ array(_("Documentation"), "documentation"),
+ array(_("Mailing Lists"), "lists"),
+ )
+ )
+);
+?>