summaryrefslogtreecommitdiff
path: root/website/support/lists.php
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2005-10-27 15:08:39 +0000
committerHenri Herscher <henri@oreka.org>2005-10-27 15:08:39 +0000
commite76fa0b3e203a5eeebc15eed92be79933bd94457 (patch)
tree6b007edae582fb67b69393c35544ed8bd96274ec /website/support/lists.php
parent0fd6bacf4e3cf06208d3d0327672d9446094e0a6 (diff)
First checkin
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@18 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'website/support/lists.php')
-rw-r--r--website/support/lists.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/website/support/lists.php b/website/support/lists.php
new file mode 100644
index 0000000..f5fae1c
--- /dev/null
+++ b/website/support/lists.php
@@ -0,0 +1,26 @@
+<?php
+/*
+ * Copyright 2004 Matt Brubeck
+ * This file is licensed under a Creative Commons license:
+ * http://creativecommons.org/licenses/by/2.0/
+ */
+ require_once "main.inc.php";
+ $pageId = "lists";
+ $pageTitle = _("Mailing Lists");
+ include "../include/header.inc.php";
+
+ echo "<h2>$pageTitle</h2>";
+
+ // i18n-hint: Please add a note that the manuals below are in English. If
+ // there is documentation available in your language, link to it here.
+?>
+<p>There are three Oreka lists you can subscribe to:</p>
+<ul>
+<li><a href="http://sourceforge.net/mailarchive/forum.php?forum_id=46724">oreka-dev</a>: this mailing list is intended for developers that want to compile and change the software.</li>
+<li><a href="http://sourceforge.net/mailarchive/forum.php?forum_id=46725">oreka-user</a>: this mailing list is intended for people who just want to use the software.</li>
+<li>oreka-announce: this is a very low traffic mailing list. Only new version notifications will be posted there.</li>
+</ul>
+
+<?php
+ include "../include/footer.inc.php";
+?>