summaryrefslogtreecommitdiff
path: root/website/support
diff options
context:
space:
mode:
Diffstat (limited to 'website/support')
-rw-r--r--website/support/documentation.php26
-rw-r--r--website/support/faq.php83
-rw-r--r--website/support/index.php23
-rw-r--r--website/support/lists.php26
-rw-r--r--website/support/main.inc.php12
5 files changed, 170 insertions, 0 deletions
diff --git a/website/support/documentation.php b/website/support/documentation.php
new file mode 100644
index 0000000..9c4b757
--- /dev/null
+++ b/website/support/documentation.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 = "documentation";
+ $pageTitle = _("Documentation");
+ 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.
+ echo "<p>"._('This page links to the Oreka documentation in various forms:')."</p>";
+?>
+
+<ul>
+ <li><a href="../oreka-documentation.html">HTML, one page</a></li>
+ <li><a href="../oreka-documentation-multi">HTML, one page per section</a></li>
+</ul>
+
+<?php
+ include "../include/footer.inc.php";
+?>
diff --git a/website/support/faq.php b/website/support/faq.php
new file mode 100644
index 0000000..42f92e1
--- /dev/null
+++ b/website/support/faq.php
@@ -0,0 +1,83 @@
+<?php
+/*
+ * Copyright 2003 Dominic Mazzoni
+ * Copyright 2005 Matt Brubeck
+ * This file is licensed under a Creative Commons license:
+ * http://creativecommons.org/licenses/by/2.0/
+ */
+ require_once "main.inc.php";
+ $pageId = "faq";
+
+ if ($_REQUEST["section"])
+ $faqSectionId = $_REQUEST["section"];
+ else
+ $faqSectionId = $_REQUEST["s"];
+
+ if ($_REQUEST["item"])
+ $itemId = $_REQUEST["item"];
+ else
+ $itemId = $_REQUEST["i"];
+
+ $faqSections = array(
+ "general" => array(
+ _("About Oreka"),
+ array(
+ "difference" => array(
+ _("What is the difference between this software and other open source audio recording software?"),
+ _("<p>Oreka is specifically designed for recording of lots of audio sessions such as telephone calls and easy retrieval through a web interface. Existing software such as Audacity or Ardour focus on different things such as audio edition and studio quality recording respectively.</p>
+ ")
+ ),
+ "threedifferent" => array(
+ _("Why is the system broken up in three services ? Would it not have been easier to implement everything in one service?"),
+ _("<p>This allows for greater flexibility and scalability. It means for example that it's possible to gather and log data from multiple OrkAudio recorders to one central database.</p>")
+ ),
+ "separately" => array(
+ _("Is it possible to use the different components (OrkAudio, OrkTrack and OrkWeb) separately?"),
+ _("<p>Yes. For example it is possible to use OrkAudio as a standalone audio recording and compression tool. No user interface is available but audio files and metadata are generated as described in Oreka <a href='documentation'>documentation</a>.</p>")
+ ),
+ ),
+ ),
+ );
+
+ if ($faqSectionId != "" && $itemId != "") {
+ // Print the requested item.
+ $item = $faqSections[$faqSectionId][1][$itemId];
+
+ $question = $item[0];
+ $answer = $item[1];
+
+ $pageTitle = $question;
+ include "../include/header.inc.php";
+
+ echo "<h2>$question</h2>";
+ echo $answer;
+
+ echo "<h3><a href=\"faq\">"._("Other frequently asked questions...")."</a></h3>";
+ }
+ else {
+ // Print the list of sections and questions.
+ $pageTitle = _("Frequently Asked Questions");
+ include "../include/header.inc.php";
+
+ echo "<h2>$pageTitle</h2>";
+ echo "<p>"._('These are frequently asked questions about Oreka. If you cannot find what you are looking for here, see the <a href="documentation">documentation</a>, or ask on the Oreka mailing lists')."</p>";
+
+ foreach ($faqSections as $faqSectionId => $section) {
+ $sectionTitle = $section[0];
+ $sectionItems = $section[1];
+
+ echo "<h3 id=\"s$faqSectionId\">$sectionTitle</h3>";
+
+ echo "<ol>";
+ foreach ($sectionItems as $itemId => $item) {
+ $question = $item[0];
+ $answer = $item[1];
+
+ echo "<li><a href=\"faq?s=$faqSectionId&amp;i=$itemId\">$question</a></li>";
+ }
+ echo "</ol>";
+ }
+ }
+
+ include "../include/footer.inc.php";
+?>
diff --git a/website/support/index.php b/website/support/index.php
new file mode 100644
index 0000000..2f7fe92
--- /dev/null
+++ b/website/support/index.php
@@ -0,0 +1,23 @@
+<?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 = "";
+ $pageTitle = _("Documentation and Support");
+ include "../include/header.inc.php";
+
+ echo "<h2>$pageTitle</h2>";
+
+ // i18n-hint: If there are any special resources for Audacity users in your
+ // language (forums, documentation, mailing lists...), you can add links to
+ // them here.
+ echo _('<p>If you have a question, check the list of <a href="faq">Frequently Asked Questions</a> before asking on the <a href="lists">mailing lists</a>.</p>
+<p>For instructions on how to build, install and use Oreka, see the <a href="documentation">documentation</a></p>');
+?>
+<p>Professional support and add-ons are available from <a href="http://www.orecx.com">orecx LLC</a>, the primary sponsor and developer of Oreka.</p>
+<?php
+ include "../include/footer.inc.php";
+?>
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";
+?>
diff --git a/website/support/main.inc.php b/website/support/main.inc.php
new file mode 100644
index 0000000..45c9c7e
--- /dev/null
+++ b/website/support/main.inc.php
@@ -0,0 +1,12 @@
+<?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";
+$sitePath = "..";
+$sectionId = "support/";
+$sectionPath = ".";
+$sectionTitle = _("Support");
+?>