summaryrefslogtreecommitdiff
path: root/website/contact
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/contact
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/contact')
-rw-r--r--website/contact/index.php33
-rw-r--r--website/contact/lists.php63
-rw-r--r--website/contact/main.inc.php16
-rw-r--r--website/contact/privacy.php35
4 files changed, 147 insertions, 0 deletions
diff --git a/website/contact/index.php b/website/contact/index.php
new file mode 100644
index 0000000..f6c11de
--- /dev/null
+++ b/website/contact/index.php
@@ -0,0 +1,33 @@
+<?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 = _("Contact Us");
+ include "../include/header.inc.php";
+?>
+
+<h2><?=$pageTitle?></h2>
+
+<?php
+ // i18n-hint: Please add a note that we can answer questions to
+ // audacity-help in English only. If there is an Audacity forum or mailing
+ // list in your language, you may add a link to it below.
+ echo _('<p>If you have questions or comments for the Audacity developers, e-mail us at: <a href="mailto:audacity-help@lists.sourceforge.net">audacity-help@lists.sourceforge.net</a>.
+(This is a public mailing list. For details, see our <a href="../contact/privacy">privacy policy</a>.)</p>
+
+<p><b>When you report a bug or problem, please:</b></p>
+<ol>
+ <li>Before you contact us, check the <a href="../help/faq">Frequently Asked Questions</a>.</li>
+ <li>Tell us what version of Audacity and which operating system you are using.</li>
+ <li>Include details of what you are trying to do, and any error messages or other problems you experience.</li>
+</ol>');
+
+ echo _('<h3>Discussion Lists</h3>
+<p>To discuss Audacity with other users and developers, join our <a href="../contact/lists">mailing lists</a>.</p>');
+
+ include "../include/footer.inc.php";
+?>
diff --git a/website/contact/lists.php b/website/contact/lists.php
new file mode 100644
index 0000000..830a574
--- /dev/null
+++ b/website/contact/lists.php
@@ -0,0 +1,63 @@
+<?php
+/*
+ * 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 = "lists";
+ $pageTitle = _("Mailing Lists");
+ include "../include/header.inc.php";
+
+ $subscriberOnlyStr = _("You must subscribe to send messages to this list.");
+ // i18n-hint: The "%s" will be replaced by the name of a mailing list.
+ $archiveStr = _("%s archives and subscription information");
+
+ echo "<h2>$pageTitle</h2>";
+
+ // i18n-hint: Please add a note that these lists are in English. If there are
+ // Audacity mailing lists or forums in your language, please link to them here.
+ echo "<p>"._('These mailing lists are for discussion of the Audacity audio editor. </p>
+<p>Note: These are public mailing lists. For details, see our <a href="privacy">privacy policy</a>.')."</p>";
+?>
+
+<dl>
+ <dt id="users">audacity-users</dt>
+ <dd>
+ <p><?=_('Discuss Audacity with other users and developers.')?> <?=$subscriberOnlyStr?></p>
+ <p><a href="http://lists.sourceforge.net/lists/listinfo/audacity-users"><?php printf($archiveStr, "audacity-users")?></a>
+ </dd>
+
+ <dt id="translation">audacity-translation</dt>
+ <dd>
+ <p><?=_('For translators localizing the Audacity software and web site.')?> <?=$subscriberOnlyStr?></p>
+ <p><a href="http://lists.sourceforge.net/lists/listinfo/audacity-translation"><?php printf($archiveStr, "audacity-translation")?></a>
+ </dd>
+
+ <dt id="devel">audacity-devel</dt>
+ <dd>
+ <p><?=_('For developers working with the Audacity source code and documentation.')?> <?=$subscriberOnlyStr?></p>
+ <p><a href="http://lists.sourceforge.net/lists/listinfo/audacity-devel"><?php printf($archiveStr, "audacity-devel")?></a>
+ </dd>
+
+ <dt id="nyquist">audacity-nyquist</dt>
+ <dd>
+ <p><?=_('Share questions and tips about programming <a href="../help/nyquist">Nyquist plug-ins</a>.')?> <?=$subscriberOnlyStr?></p>
+ <p><a href="http://lists.sourceforge.net/lists/listinfo/audacity-nyquist"><?php printf($archiveStr, "audacity-nyquist")?></a>
+ </dd>
+
+ <dt id="bugs">audacity-bugs</dt>
+ <dd>
+ <p><?=_('Developers can subscribe to this mailing list to receive automatic updates from <a href="../community/developers#bugzilla">Bugzilla</a>.')?></p>
+ <p><a href="http://lists.sourceforge.net/lists/listinfo/audacity-bugs"><?php printf($archiveStr, "audacity-bugs")?></a>
+ </dd>
+
+ <dt id="help">audacity-help</dt>
+ <dd>
+ <p><?=_('Send a message to this list if you have questions or comments for the Audacity developers. You do not need to subscribe to this list to send a message.')?></p>
+ <p><a href="http://lists.sourceforge.net/lists/listinfo/audacity-help"><?php printf($archiveStr, "audacity-help")?></a>
+ </dd>
+
+<?php
+ include "../include/footer.inc.php";
+?>
diff --git a/website/contact/main.inc.php b/website/contact/main.inc.php
new file mode 100644
index 0000000..f3ab750
--- /dev/null
+++ b/website/contact/main.inc.php
@@ -0,0 +1,16 @@
+<?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 = "contact/";
+$sectionPath = ".";
+$sectionTitle = _("Contact Us");
+$sectionNavItems = array(
+ array(_("Mailing Lists"), "lists"),
+ array(_("Privacy Policy"), "privacy"),
+);
+?>
diff --git a/website/contact/privacy.php b/website/contact/privacy.php
new file mode 100644
index 0000000..651de22
--- /dev/null
+++ b/website/contact/privacy.php
@@ -0,0 +1,35 @@
+<?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 = "privacy";
+ $pageTitle = _("Privacy Policy");
+ include "../include/header.inc.php";
+?>
+
+<h2><?=$pageTitle?></h2>
+
+<!-- Translators - please add a sentence which explains that these
+ announcements will usually be in English only. Possibly people can
+ join users lists in their native languages later on, to hear
+ announcements there.
+-->
+<h3 id="announce"><?=_("Announcement List Policy")?></h3>
+
+<?=_('<p>You can subscribe to our announcement list by entering your address in the form on the <a href="../">Audacity home page</a>. We will use this list only to send you brief announcements of new Audacity releases. We will never share the addresses on this list with anyone.</p>
+<p>To <b>unsubscribe</b> from the list at any time, enter your address in the form on our <a href="../">home page</a> and press the "Remove" button. If you have any problems or questions, please contact <a href="mailto:dominic@audacityteam.org">dominic@audacityteam.org</a>.</p>')?>
+
+<h3 id="lists"><?=_("Mailing List Policy")?></h3>
+
+<?=_('<p>(This applies to audacity-help, audacity-users, and other <a href="../contact/lists">discussion lists</a>.)</p>
+<p>These are public mailing lists. When you send a message to any of these addresses, including <a href="../contact/">audacity-help</a>, it will be forwarded to dozens of people, including Audacity developers and others. SourceForge and other web sites may publish archives of these lists. <b>Your email address will normally be removed from published archives for your privacy, and the Audacity developers will not share your address with anyone or add it to any lists.</b> However, we can\'t prevent other subscribers from seeing or publishing your messages.</p>
+<p>If you have any questions about this policy or are not comfortable writing to a public mailing list, send a private e-mail to the lead Audacity developer at: <a href="mailto:dominic@audacityteam.org">dominic@audacityteam.org</a>.</p>')?>
+
+<?php
+ include "../include/footer.inc.php";
+?>
+