From e76fa0b3e203a5eeebc15eed92be79933bd94457 Mon Sep 17 00:00:00 2001 From: Henri Herscher Date: Thu, 27 Oct 2005 15:08:39 +0000 Subject: First checkin git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@18 09dcff7a-b715-0410-9601-b79a96267cd0 --- website/.htaccess | 42 +++++++ website/404.php | 18 +++ website/LICENSE.txt | 212 ++++++++++++++++++++++++++++++++++++ website/Makefile | 39 +++++++ website/README.txt | 106 ++++++++++++++++++ website/about/credits.php | 37 +++++++ website/about/features.php | 37 +++++++ website/about/index.php | 28 +++++ website/about/license.php | 36 ++++++ website/about/links.php | 37 +++++++ website/about/main.inc.php | 12 ++ website/about/news.php | 37 +++++++ website/about/screenshots.php | 19 ++++ website/contact/index.php | 33 ++++++ website/contact/lists.php | 63 +++++++++++ website/contact/main.inc.php | 16 +++ website/contact/privacy.php | 35 ++++++ website/copyright.php | 26 +++++ website/download/common.inc.php | 13 +++ website/download/index.php | 26 +++++ website/download/main.inc.php | 12 ++ website/download/release-notes.php | 19 ++++ website/download/source.php | 33 ++++++ website/download/windows.php | 33 ++++++ website/images/creative-commons.gif | Bin 0 -> 1835 bytes website/images/mac.png | Bin 0 -> 1808 bytes website/images/paypal.gif | Bin 0 -> 861 bytes website/images/unix.png | Bin 0 -> 2350 bytes website/images/win.png | Bin 0 -> 1806 bytes website/include/detect-os.inc.php | 18 +++ website/include/footer.inc.php | 34 ++++++ website/include/header.inc.php | 89 +++++++++++++++ website/include/lang.inc.php | 95 ++++++++++++++++ website/include/news.inc.php | 44 ++++++++ website/include/strings.inc.php | 0 website/index.php | 46 ++++++++ website/latest/audacity-mac.php | 9 ++ website/latest/audacity-macosx.php | 9 ++ website/latest/audacity-src.php | 9 ++ website/latest/audacity-win-zip.php | 9 ++ website/latest/audacity-win.php | 9 ++ website/latest/mirror.inc.php | 6 + website/latest/versions.inc.php | 22 ++++ website/list/alreadyon.php | 16 +++ website/list/emailconfirm.php | 18 +++ website/list/invalid.php | 16 +++ website/list/main.inc.php | 34 ++++++ website/list/noton.php | 14 +++ website/list/subscribed.php | 30 +++++ website/list/unsubscribed.php | 14 +++ website/main.inc.php | 43 ++++++++ website/robots.txt | 3 + website/site-map.php | 35 ++++++ website/style.css | 132 ++++++++++++++++++++++ website/support/documentation.php | 26 +++++ website/support/faq.php | 83 ++++++++++++++ website/support/index.php | 23 ++++ website/support/lists.php | 26 +++++ website/support/main.inc.php | 12 ++ 59 files changed, 1893 insertions(+) create mode 100644 website/.htaccess create mode 100644 website/404.php create mode 100644 website/LICENSE.txt create mode 100644 website/Makefile create mode 100644 website/README.txt create mode 100644 website/about/credits.php create mode 100644 website/about/features.php create mode 100644 website/about/index.php create mode 100644 website/about/license.php create mode 100644 website/about/links.php create mode 100644 website/about/main.inc.php create mode 100644 website/about/news.php create mode 100644 website/about/screenshots.php create mode 100644 website/contact/index.php create mode 100644 website/contact/lists.php create mode 100644 website/contact/main.inc.php create mode 100644 website/contact/privacy.php create mode 100644 website/copyright.php create mode 100644 website/download/common.inc.php create mode 100644 website/download/index.php create mode 100644 website/download/main.inc.php create mode 100644 website/download/release-notes.php create mode 100644 website/download/source.php create mode 100644 website/download/windows.php create mode 100644 website/images/creative-commons.gif create mode 100644 website/images/mac.png create mode 100644 website/images/paypal.gif create mode 100644 website/images/unix.png create mode 100644 website/images/win.png create mode 100644 website/include/detect-os.inc.php create mode 100644 website/include/footer.inc.php create mode 100644 website/include/header.inc.php create mode 100644 website/include/lang.inc.php create mode 100644 website/include/news.inc.php create mode 100644 website/include/strings.inc.php create mode 100644 website/index.php create mode 100644 website/latest/audacity-mac.php create mode 100644 website/latest/audacity-macosx.php create mode 100644 website/latest/audacity-src.php create mode 100644 website/latest/audacity-win-zip.php create mode 100644 website/latest/audacity-win.php create mode 100644 website/latest/mirror.inc.php create mode 100644 website/latest/versions.inc.php create mode 100644 website/list/alreadyon.php create mode 100644 website/list/emailconfirm.php create mode 100644 website/list/invalid.php create mode 100644 website/list/main.inc.php create mode 100644 website/list/noton.php create mode 100644 website/list/subscribed.php create mode 100644 website/list/unsubscribed.php create mode 100644 website/main.inc.php create mode 100644 website/robots.txt create mode 100644 website/site-map.php create mode 100644 website/style.css create mode 100644 website/support/documentation.php create mode 100644 website/support/faq.php create mode 100644 website/support/index.php create mode 100644 website/support/lists.php create mode 100644 website/support/main.inc.php diff --git a/website/.htaccess b/website/.htaccess new file mode 100644 index 0000000..cc8b330 --- /dev/null +++ b/website/.htaccess @@ -0,0 +1,42 @@ +Options +MultiViews + +ErrorDocument 404 /404.php + +RewriteEngine On +RewriteBase / + +# Redirect URLs from previous version of site +#RewriteRule ^index.php(.*) ./$1 [R=permanent] +RewriteRule ^about.php(.*) about/$1 [R=permanent] +RewriteRule ^contact.php(.*) contact/$1 [R=permanent] +RewriteRule ^credits.php(.*) about/credits$1 [R=permanent] +RewriteRule ^cvs.php(.*) community/developers$1 [R=permanent] +RewriteRule ^devel.php(.*) community/developers$1 [R=permanent] +RewriteRule ^donatemoney.php(.*) community/donate$1 [R=permanent] +RewriteRule ^donatetime.php(.*) community/$1 [R=permanent] +RewriteRule ^faq.php(.*) help/faq$1 [R=permanent] +RewriteRule ^help.php(.*) help/$1 [R=permanent] +RewriteRule ^links.php(.*) about/links$1 [R=permanent] +RewriteRule ^mac.php(.*) download/mac$1 [R=permanent] +RewriteRule ^nyquist.php(.*) help/nyquist$1 [R=permanent] +RewriteRule ^nyquist2.php(.*) help/nyquist2$1 [R=permanent] +RewriteRule ^nyquist3.php(.*) help/nyquist3$1 [R=permanent] +RewriteRule ^nyquistplugins.php(.*) download/nyquistplugins$1 [R=permanent] +RewriteRule ^plugins.php(.*) download/plugins$1 [R=permanent] +RewriteRule ^privacy.php(.*) contact/privacy$1 [R=permanent] +RewriteRule ^screenshots.*.php(.*) about/screenshots$1 [R=permanent] +RewriteRule ^stablenotes.php(.*) download/release-notes$1 [R=permanent] +RewriteRule ^translation community/translation [R=permanent] +RewriteRule ^tutorials.php help/tutorials$1 [R=permanent] +RewriteRule ^unix.php(.*) download/linux$1 [R=permanent] +RewriteRule ^windows.php(.*) download/windows$1 [R=permanent] + +# Redirect really old URLs. +RewriteRule ^index.html . [R=permanent] +RewriteRule ^linux.html download/linux [R=permanent] +RewriteRule ^macos9.html download/mac [R=permanent] +RewriteRule ^macosx.html download/mac [R=permanent] +RewriteRule ^windows.html download/windows [R=permanent] + +# Redirect URLs pointing to temporary staging area. +RewriteRule ^new/(.*) $1 [R=permanent] diff --git a/website/404.php b/website/404.php new file mode 100644 index 0000000..8d34528 --- /dev/null +++ b/website/404.php @@ -0,0 +1,18 @@ + + +

+

Oreka home page or the site map.')?>

+ + diff --git a/website/LICENSE.txt b/website/LICENSE.txt new file mode 100644 index 0000000..0407d05 --- /dev/null +++ b/website/LICENSE.txt @@ -0,0 +1,212 @@ + Creative Commons + + Creative Commons Legal Code + + Attribution 2.0 + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS + CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS + PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE + WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS + PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND + AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS + YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF + SUCH TERMS AND CONDITIONS. + + 1. Definitions + a. "Collective Work" means a work, such as a periodical issue, + anthology or encyclopedia, in which the Work in its entirety in + unmodified form, along with a number of other contributions, + constituting separate and independent works in themselves, are + assembled into a collective whole. A work that constitutes a + Collective Work will not be considered a Derivative Work (as + defined below) for the purposes of this License. + b. "Derivative Work" means a work based upon the Work or upon the + Work and other pre-existing works, such as a translation, musical + arrangement, dramatization, fictionalization, motion picture + version, sound recording, art reproduction, abridgment, + condensation, or any other form in which the Work may be recast, + transformed, or adapted, except that a work that constitutes a + Collective Work will not be considered a Derivative Work for the + purpose of this License. For the avoidance of doubt, where the + Work is a musical composition or sound recording, the + synchronization of the Work in timed-relation with a moving image + ("synching") will be considered a Derivative Work for the purpose + of this License. + c. "Licensor" means the individual or entity that offers the Work + under the terms of this License. + d. "Original Author" means the individual or entity who created the + Work. + e. "Work" means the copyrightable work of authorship offered under + the terms of this License. + f. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License + with respect to the Work, or who has received express permission + from the Licensor to exercise rights under this License despite a + previous violation. + + 2. Fair Use Rights. Nothing in this license is intended to reduce, + limit, or restrict any rights arising from fair use, first sale or + other limitations on the exclusive rights of the copyright owner under + copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, + Licensor hereby grants You a worldwide, royalty-free, non-exclusive, + perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below: + a. to reproduce the Work, to incorporate the Work into one or more + Collective Works, and to reproduce the Work as incorporated in the + Collective Works; + b. to create and reproduce Derivative Works; + c. to distribute copies or phonorecords of, display publicly, perform + publicly, and perform publicly by means of a digital audio + transmission the Work including as incorporated in Collective + Works; + d. to distribute copies or phonorecords of, display publicly, perform + publicly, and perform publicly by means of a digital audio + transmission Derivative Works. + e. For the avoidance of doubt, where the work is a musical + composition: + i. Performance Royalties Under Blanket Licenses. Licensor waives + the exclusive right to collect, whether individually or via a + performance rights society (e.g. ASCAP, BMI, SESAC), + royalties for the public performance or public digital + performance (e.g. webcast) of the Work. + ii. Mechanical Rights and Statutory Royalties. Licensor waives + the exclusive right to collect, whether individually or via a + music rights agency or designated agent (e.g. Harry Fox + Agency), royalties for any phonorecord You create from the + Work ("cover version") and distribute, subject to the + compulsory license created by 17 USC Section 115 of the US + Copyright Act (or the equivalent in other jurisdictions). + f. Webcasting Rights and Statutory Royalties. For the avoidance of + doubt, where the Work is a sound recording, Licensor waives the + exclusive right to collect, whether individually or via a + performance-rights society (e.g. SoundExchange), royalties for the + public digital performance (e.g. webcast) of the Work, subject to + the compulsory license created by 17 USC Section 114 of the US + Copyright Act (or the equivalent in other jurisdictions). + + The above rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right to make + such modifications as are technically necessary to exercise the rights + in other media and formats. All rights not expressly granted by + Licensor are hereby reserved. + + 4. Restrictions.The license granted in Section 3 above is expressly + made subject to and limited by the following restrictions: + a. You may distribute, publicly display, publicly perform, or + publicly digitally perform the Work only under the terms of this + License, and You must include a copy of, or the Uniform Resource + Identifier for, this License with every copy or phonorecord of the + Work You distribute, publicly display, publicly perform, or + publicly digitally perform. You may not offer or impose any terms + on the Work that alter or restrict the terms of this License or + the recipients' exercise of the rights granted hereunder. You may + not sublicense the Work. You must keep intact all notices that + refer to this License and to the disclaimer of warranties. You may + not distribute, publicly display, publicly perform, or publicly + digitally perform the Work with any technological measures that + control access or use of the Work in a manner inconsistent with + the terms of this License Agreement. The above applies to the Work + as incorporated in a Collective Work, but this does not require + the Collective Work apart from the Work itself to be made subject + to the terms of this License. If You create a Collective Work, + upon notice from any Licensor You must, to the extent practicable, + remove from the Collective Work any reference to such Licensor or + the Original Author, as requested. If You create a Derivative + Work, upon notice from any Licensor You must, to the extent + practicable, remove from the Derivative Work any reference to such + Licensor or the Original Author, as requested. + b. If you distribute, publicly display, publicly perform, or publicly + digitally perform the Work or any Derivative Works or Collective + Works, You must keep intact all copyright notices for the Work and + give the Original Author credit reasonable to the medium or means + You are utilizing by conveying the name (or pseudonym if + applicable) of the Original Author if supplied; the title of the + Work if supplied; to the extent reasonably practicable, the + Uniform Resource Identifier, if any, that Licensor specifies to be + associated with the Work, unless such URI does not refer to the + copyright notice or licensing information for the Work; and in the + case of a Derivative Work, a credit identifying the use of the + Work in the Derivative Work (e.g., "French translation of the Work + by Original Author," or "Screenplay based on original Work by + Original Author"). Such credit may be implemented in any + reasonable manner; provided, however, that in the case of a + Derivative Work or Collective Work, at a minimum such credit will + appear where any other comparable authorship credit appears and in + a manner at least as prominent as such other comparable authorship + credit. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, + LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR + WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, + STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF + TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, + NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, + OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. + SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, + SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY + APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY + LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR + EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, + EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Derivative Works or + Collective Works from You under this License, however, will not + have their licenses terminated provided such individuals or + entities remain in full compliance with those licenses. Sections + 1, 2, 5, 6, 7, and 8 will survive any termination of this License. + b. Subject to the above terms and conditions, the license granted + here is perpetual (for the duration of the applicable copyright in + the Work). Notwithstanding the above, Licensor reserves the right + to release the Work under different license terms or to stop + distributing the Work at any time; provided, however that any such + election will not serve to withdraw this License (or any other + license that has been, or is required to be, granted under the + terms of this License), and this License will continue in full + force and effect unless terminated as stated above. + + 8. Miscellaneous + a. Each time You distribute or publicly digitally perform the Work or + a Collective Work, the Licensor offers to the recipient a license + to the Work on the same terms and conditions as the license + granted to You under this License. + b. Each time You distribute or publicly digitally perform a + Derivative Work, Licensor offers to the recipient a license to the + original Work on the same terms and conditions as the license + granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability + of the remainder of the terms of this License, and without further + action by the parties to this agreement, such provision shall be + reformed to the minimum extent necessary to make such provision + valid and enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in + writing and signed by the party to be charged with such waiver or + consent. + e. This License constitutes the entire agreement between the parties + with respect to the Work licensed here. There are no + understandings, agreements or representations with respect to the + Work not specified here. Licensor shall not be bound by any + additional provisions that may appear in any communication from + You. This License may not be modified without the mutual written + agreement of the Licensor and You. diff --git a/website/Makefile b/website/Makefile new file mode 100644 index 0000000..5211b3c --- /dev/null +++ b/website/Makefile @@ -0,0 +1,39 @@ +POT_FILE=locale/audacity_website.pot +PO_FILES_ORIG := $(wildcard locale/*.po) +PO_FILES := $(PO_FILES_ORIG:%.po=%/LC_MESSAGES/audacity_website.po) +MO_FILES := $(PO_FILES:%.po=%.mo) + +all: $(MO_FILES) + +clean: + rm -f $(MO_FILES) $(PO_FILES) $(POT_FILE) + rm -f $(PO_FILES:%=%~) + +# Build the POT file (message catalog template). +SOURCES := $(wildcard *.php */*.php) +XGETTEXT=xgettext +XGETTEXT_ARGS=-L php --add-comments="i18n-hint" --from-code="UTF-8" + +$(POT_FILE): $(SOURCES) + find . -name '*.php' ! -path './old/*' \ + | xargs $(XGETTEXT) $(XGETTEXT_ARGS) -o $@ + chmod go+r $@ + +# Update the PO files (translated message catalogs). +MSGMERGE=msgmerge +MSGMERGE_ARGS=-U --backup=none + +%/LC_MESSAGES/audacity_website.po: %.po $(POT_FILE) + mkdir -p $(@:%/audacity_website.po=%) + cp -f $< $@ + $(MSGMERGE) $(MSGMERGE_ARGS) $@ $(POT_FILE) + touch $@ + +# Compile the PO files into MO files. +MSGFMT=msgfmt +MSGFMT_ARGS=-fv + +%.mo: %.po + $(MSGFMT) $(MSGFMT_ARGS) -o $@ $< + +.PHONY: clean all diff --git a/website/README.txt b/website/README.txt new file mode 100644 index 0000000..3d414f5 --- /dev/null +++ b/website/README.txt @@ -0,0 +1,106 @@ +This file contains documentation for editing and maintaining the Audacity web +site. Audacity is free software for sound editing and recording. The web site +is at . + +CONTENTS: + + 1. Installation + 2. License and Copyright + 3. Localization + 4. Updating Content + 5. Uploading Changes + +--------- + +1. INSTALLATION + + The Audacity web site requires PHP 4, and the PHP PEAR "HTTP" package + (for content negotiation). + + "MultiViews" are required, so that "copyright.php" can be accessed as + simply "copyright", for example. On Apache servers, MultiViews will be + turned on by the .htaccess file. (This requires "AllowOverride Options" to + be enabled in the server configuration.) + + Apache's mod_rewrite is required for automatic redirection of URLs from + previous versions of the site. + +--------- + +2. LICENSE AND COPYRIGHT + + Except where otherwise noted, all material on this site is licensed under the + Creative Commons Attribution License, version 2.0. You can find a copy of + this license in the file LICENSE.txt, or at: + + http://creativecommons.org/licenses/by/2.0/ + + If you contribute original material to this web site, please add your name to + the comments at the start of each file you add or modify. For example: + + /* + * Copyright 2003 Dominic Mazzoni + * Copyright 2004 Matt Brubeck + * This file is licensed under a Creative Commons license: + * http://creativecommons.org/licenses/by/2.0/ + */ + + If you contribute material that you can't (or don't want to) place under + this Creative Commons license, please make sure it is clearly marked with + copyright or license notices visible to readers of the web site. + + Our use of Google Free web search is governed by Google's Terms of Use: + + http://www.google.com/services/terms_free.html + +--------- + +3. LOCALIZATION + + Internationalization and localization are handled by PHP's gettext + functions. All PHP files use the UTF-8 encoding. When editing these files, + please configure your editor to use UTF-8. + + Localized pages are served automatically based on the Accept-Language header + sent by the user's web browser. Localized versions can also be accessed + through links in the page footers. (This method also sets a cookie so that + future pages will be served in the same language.) + + To add a new translation: + + - Copy the translated po file to locale/X.po where "X" is the locale code. + - Run "make" to compile the PO file. + - Add a new item to the available_locales array in include/lang.inc.php. + + Note: The "full locale name" must match one of the available locales on the + web server. Run "localedef --list-archive" for a list of locales. On a + Debian system, use /etc/locale.gen and "locale-gen" to add locales. + +--------- + +4. UPDATING CONTENT + + When adding new content, be sure to pass all translatable strings through + the _("gettext") function. For example: + +

+ + After adding or changing any translatable string, run "make" to update the + message catalogs. For significant changes, you may want to send the updated + POT file to the translators before the change is published to the live web + site, so that they have a chance to update the PO files first. + +--------- + +5. UPLOADING CHANGES + + After checking your changes into CVS, run "cvs update && make" in + "/home/groups/a/au/audacity/htdocs" on shell.sourceforge.net to update + the live web site. + + For files that are not stored in CVS or generated by the Makefile, you can + use scp or rsync to upload them to shell.sourceforge.net. + + You should run "umask 002" before modifying the audacity group directory on + the sourceforge servers. You may want to put this in your ~/.bashrc file + (but be careful if you keep private files in your personal home directory). diff --git a/website/about/credits.php b/website/about/credits.php new file mode 100644 index 0000000..02350fc --- /dev/null +++ b/website/about/credits.php @@ -0,0 +1,37 @@ + + +

+

+

+

C++ libraries

+ + +

Java libraries

+ + diff --git a/website/about/features.php b/website/about/features.php new file mode 100644 index 0000000..e0b37b7 --- /dev/null +++ b/website/about/features.php @@ -0,0 +1,37 @@ +$pageTitle"; +echo "

"._('Oreka currently has the following features:')."

"; + +echo _('

Recording and storage

+'); + + echo _('

User interface

+

Recordings retrieval can be done using the following criteria (when available):

+'); + + include "../include/footer.inc.php"; +?> diff --git a/website/about/index.php b/website/about/index.php new file mode 100644 index 0000000..b3a53c0 --- /dev/null +++ b/website/about/index.php @@ -0,0 +1,28 @@ +$pageTitle"; + + echo _('

Oreka is a modular and cross-platform system for recording and retrieval of audio streams. The project currently supports VoIP SIP and sound device based capture. Recordings metadata can be stored in any mainstream database. Retrieval of captured sessions is web based. For more details, please refer to the features page

+ +'); + + // i18n-hint: You may change the link addresses below, if there is a + // version of the page in your language at a different location. + // + // For official translations of the phrase "free software", please see: + // http://www.fsf.org/philosophy/fs-translations.html + // + // Also check the translations of this web page: + // http://www.fsf.org/philosophy/free-sw.html + + include "../include/footer.inc.php"; +?> diff --git a/website/about/license.php b/website/about/license.php new file mode 100644 index 0000000..4f1c166 --- /dev/null +++ b/website/about/license.php @@ -0,0 +1,36 @@ + + +

+

Copyright (C) 2005, orecx LLC +http://www.orecx.com

+Oreka is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation.

+ +

See also: Frequently Asked Questions about the GNU GPL.

'); + +?> + + + + diff --git a/website/about/links.php b/website/about/links.php new file mode 100644 index 0000000..956edd7 --- /dev/null +++ b/website/about/links.php @@ -0,0 +1,37 @@ + + +

+ +

Network passive tapping links

+ + +

Related projects

+ + +

+ + +

Open source libraries

+

Oreka is build upon various open source libraries. Please refer to the credits page

+ diff --git a/website/about/main.inc.php b/website/about/main.inc.php new file mode 100644 index 0000000..b788b4a --- /dev/null +++ b/website/about/main.inc.php @@ -0,0 +1,12 @@ + diff --git a/website/about/news.php b/website/about/news.php new file mode 100644 index 0000000..fff54db --- /dev/null +++ b/website/about/news.php @@ -0,0 +1,37 @@ +title; + include "../include/header.inc.php"; + + $dateStr = $news_item->dateStr(); + echo "

$dateStr: $pageTitle

"; + echo $news_item->body; + echo '

'._("More news items...").'

'; + } + else { + // List news items in reverse chronological order. + $pageTitle = _("News"); + include "../include/header.inc.php"; + + echo "

$pageTitle

"; + echo ""; + } + + include "../include/footer.inc.php"; +?> diff --git a/website/about/screenshots.php b/website/about/screenshots.php new file mode 100644 index 0000000..d3b36b4 --- /dev/null +++ b/website/about/screenshots.php @@ -0,0 +1,19 @@ + + +

+ +

+ + 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 @@ + + +

+ +If you have questions or comments for the Audacity developers, e-mail us at: audacity-help@lists.sourceforge.net. +(This is a public mailing list. For details, see our privacy policy.)

+ +

When you report a bug or problem, please:

+
    +
  1. Before you contact us, check the Frequently Asked Questions.
  2. +
  3. Tell us what version of Audacity and which operating system you are using.
  4. +
  5. Include details of what you are trying to do, and any error messages or other problems you experience.
  6. +
'); + + echo _('

Discussion Lists

+

To discuss Audacity with other users and developers, join our mailing lists.

'); + + 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 @@ +$pageTitle"; + + // 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 "

"._('These mailing lists are for discussion of the Audacity audio editor.

+

Note: These are public mailing lists. For details, see our privacy policy.')."

"; +?> + +
+
audacity-users
+
+

+

+

+ +
audacity-translation
+
+

+

+

+ +
audacity-devel
+
+

+

+

+ +
audacity-nyquist
+
+

Nyquist plug-ins.')?>

+

+

+ +
audacity-bugs
+
+

Bugzilla.')?>

+

+

+ +
audacity-help
+
+

+

+

+ + 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 @@ + 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 @@ + + +

+ + +

+ +You can subscribe to our announcement list by entering your address in the form on the Audacity home page. 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.

+

To unsubscribe from the list at any time, enter your address in the form on our home page and press the "Remove" button. If you have any problems or questions, please contact dominic@audacityteam.org.

')?> + +

+ +(This applies to audacity-help, audacity-users, and other discussion lists.)

+

These are public mailing lists. When you send a message to any of these addresses, including audacity-help, it will be forwarded to dozens of people, including Audacity developers and others. SourceForge and other web sites may publish archives of these lists. 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. However, we can\'t prevent other subscribers from seeing or publishing your messages.

+

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: dominic@audacityteam.org.

')?> + + + diff --git a/website/copyright.php b/website/copyright.php new file mode 100644 index 0000000..0eaedbd --- /dev/null +++ b/website/copyright.php @@ -0,0 +1,26 @@ + + +

+ +".sprintf(_('This web site is Copyright © %s members of the Audacity development team. Except where otherwise noted, all text and images on this site are licensed under the Creative Commons Attribution License, version 2.0. You may modify, copy, distribute, and display this material, but you must give credit to the original authors. Please see the license for details.'), $thisYear)."

"; + + + include "include/footer.inc.php"; +?> diff --git a/website/download/common.inc.php b/website/download/common.inc.php new file mode 100644 index 0000000..d87c091 --- /dev/null +++ b/website/download/common.inc.php @@ -0,0 +1,13 @@ + +
  • -

  • +
  • -

  • +
  • -

  • +
  • alternate download links.'), "http://sourceforge.net/project/showfiles.php?group_id=6235")?>

  • diff --git a/website/download/index.php b/website/download/index.php new file mode 100644 index 0000000..76b3180 --- /dev/null +++ b/website/download/index.php @@ -0,0 +1,26 @@ + + +

    + +

    +
      +
    • OrkAudio audio capture server as a Windows precompiled binary
    • +
    • Entire Oreka codebase (Cross platform C++ and Java)
    • +
    • OrkTrack and OrkWeb tracking and user interface servers as precompiled Java5 war files
    • +
    + +

    GNU GPL.')?>

    + + diff --git a/website/download/main.inc.php b/website/download/main.inc.php new file mode 100644 index 0000000..e8a1d60 --- /dev/null +++ b/website/download/main.inc.php @@ -0,0 +1,12 @@ + diff --git a/website/download/release-notes.php b/website/download/release-notes.php new file mode 100644 index 0000000..b156202 --- /dev/null +++ b/website/download/release-notes.php @@ -0,0 +1,19 @@ + + +

    + +

    Oreka 0.1 is the first release of this software.

    + diff --git a/website/download/source.php b/website/download/source.php new file mode 100644 index 0000000..6b18155 --- /dev/null +++ b/website/download/source.php @@ -0,0 +1,33 @@ + + +

    + +

    The source code (Java and C++) is known to compile under Linux and Windows. Build instructions can be found in README.txt in the root folder of the package. This project requires a few dependencies that are listed in README.txt. For Windows developers, there is a convenience package that includes all open source libraries (precompiled) that this project is depending upon.

    + +

    + + + +

    Optional download

    + + + diff --git a/website/download/windows.php b/website/download/windows.php new file mode 100644 index 0000000..ba73086 --- /dev/null +++ b/website/download/windows.php @@ -0,0 +1,33 @@ + + +

    + +

    The windows binary distribution of OrkAudio is not yet an installer package. However installation is straighforward and described in README.txt in the root folder of the package.

    + +

    + + +

    +
      +
    • +
    • +
    • +
    + + + diff --git a/website/images/creative-commons.gif b/website/images/creative-commons.gif new file mode 100644 index 0000000..0860fa9 Binary files /dev/null and b/website/images/creative-commons.gif differ diff --git a/website/images/mac.png b/website/images/mac.png new file mode 100644 index 0000000..dbd8b07 Binary files /dev/null and b/website/images/mac.png differ diff --git a/website/images/paypal.gif b/website/images/paypal.gif new file mode 100644 index 0000000..39f40a8 Binary files /dev/null and b/website/images/paypal.gif differ diff --git a/website/images/unix.png b/website/images/unix.png new file mode 100644 index 0000000..a341af5 Binary files /dev/null and b/website/images/unix.png differ diff --git a/website/images/win.png b/website/images/win.png new file mode 100644 index 0000000..9aad308 Binary files /dev/null and b/website/images/win.png differ diff --git a/website/include/detect-os.inc.php b/website/include/detect-os.inc.php new file mode 100644 index 0000000..32b8e58 --- /dev/null +++ b/website/include/detect-os.inc.php @@ -0,0 +1,18 @@ + diff --git a/website/include/footer.inc.php b/website/include/footer.inc.php new file mode 100644 index 0000000..59d7fd1 --- /dev/null +++ b/website/include/footer.inc.php @@ -0,0 +1,34 @@ + + + + + + diff --git a/website/include/header.inc.php b/website/include/header.inc.php new file mode 100644 index 0000000..831d01a --- /dev/null +++ b/website/include/header.inc.php @@ -0,0 +1,89 @@ + + + + + <?=_("Oreka")?>: <?=$pageTitle?> + + + + +

    + + + +"; + + if ($sectionId == "" && $pageId == "") { + echo "

    $titleStr

     

    "; + } + else { + echo "

    $titleStr

     

    "; + } +?> + + + + + + + +
    > diff --git a/website/include/lang.inc.php b/website/include/lang.inc.php new file mode 100644 index 0000000..246ed0d --- /dev/null +++ b/website/include/lang.inc.php @@ -0,0 +1,95 @@ + Full locale name, Human-readable name. + "cs" => array("cs_CZ", "Česky"), + "de" => array("de_DE", "Deutsch"), + "el" => array("el_GR", "Ελληνικά"), + "en" => array("en_US", "English"), + "es" => array("es_ES", "Español"), + "fr" => array("fr_FR", "Français"), + "it" => array("it_IT", "Italiano"), + "hu" => array("hu_HU", "Magyar"), + "nb" => array("nb_NO", "Norsk (Bokmål)"), + "pt" => array("pt_BR", "Português"), + "sl" => array("sl_SI", "Slovenščina"), + "fi" => array("fi_FI", "Suomi"), + "sv" => array("sv_SE", "Svenska"), + "ja" => array("ja_JP", "日本語"), + "ru" => array("ru_RU", "Русский"), + "zh-CN" => array("zh_CN.UTF-8", "中文(简)"), + "zh-TW" => array("zh_TW.UTF-8", "中文(繁)"), +); + +// Set up the translation variables and libraries. +function localization_setup() { + global $lang, $domain, $encoding, $available_locales, $preferred_lang; + + // Choose a default language based on the client's HTTP headers. + // TODO: Replace HTTP::negotiateLanguage with something less buggy. + // (See http://www.dracos.co.uk/web/php/HTTP/ for details.) + $supported = $available_locales; + $preferred_lang = HTTP::negotiateLanguage($supported, $lang); + if ($preferred_lang) + $lang = $preferred_lang; + + // Override the default if the user has an explicit cookie or query string. + $force_lang = get_requested_lang(); + if ($force_lang && array_key_exists($force_lang, $available_locales)) + $lang = $force_lang; + + if ($available_locales[$lang]) { + // Set the locale. + $locale = $available_locales[$lang][0]; + setlocale(LC_ALL, $locale); + + // Find the locale directory. + $path_parts = pathinfo(__FILE__); + $this_dir = $path_parts["dirname"]; + bindtextdomain($domain, "$this_dir/../locale"); + + // Set up gettext message localization. + textdomain($domain); + bind_textdomain_codeset($domain, $encoding); + } + + // Tell clients to cache different languages separately. + header("Vary: Accept-Language"); +} + +// Return the explicitly requested language, if available. +function get_requested_lang() { + global $cookie_days; + $result = $_COOKIE["lang"]; + if ($_GET["lang"]) { + $result = $_GET["lang"]; + setcookie("lang", $result, time() + $cookie_days*24*60*60, "/"); + } + return $result; +} + +// Convert a string from the locale encoding to the output encoding. +function locale_to_unicode($s) { + global $encoding; + $locale_encoding = nl_langinfo(CODESET); + $s = iconv($locale_encoding, $encoding, $s); + return $s; +} +?> diff --git a/website/include/news.inc.php b/website/include/news.inc.php new file mode 100644 index 0000000..a912510 --- /dev/null +++ b/website/include/news.inc.php @@ -0,0 +1,44 @@ +date = $date; + $this->title = $title; + $this->body = $body; + } + + // Returns the date, in the preferred format for the current locale. + function dateStr() { + // i18n-hint: Controls how dates are formatted. + // See http://www.php.net/manual/function.strftime.php for details. + return locale_to_unicode(strftime(_("%B %d, %Y"), $this->date)); + } +} + +$news_items = array(); +function add_news_item($dateStr, $id, $title, $body) { + global $news_items; + $date = strtotime($dateStr); + $key = strftime("%Y-%m-%d", $date)."/".$id; + $news_items[$key] = new NewsItem($date, $title, $body); +} +function most_recent_news_item() { +} + +add_news_item( + "October 26, 2005", + "0.1-release", + _("Oreka 0.1 Released"), + _('

    This is the first public release of oreka. Please check it out and let us know issues you are encountering on oreka-devel and oreka-user mailing lists.

    ') +); +?> diff --git a/website/include/strings.inc.php b/website/include/strings.inc.php new file mode 100644 index 0000000..e69de29 diff --git a/website/index.php b/website/index.php new file mode 100644 index 0000000..9a20ab6 --- /dev/null +++ b/website/index.php @@ -0,0 +1,46 @@ + +
    +

    +
    + +
    +

    +
    + + + +
    + dateStr(); + ?> +
    +

    title"?>

    + body?> +
    + +

    +
    + + diff --git a/website/latest/audacity-mac.php b/website/latest/audacity-mac.php new file mode 100644 index 0000000..5e5062e --- /dev/null +++ b/website/latest/audacity-mac.php @@ -0,0 +1,9 @@ + diff --git a/website/latest/audacity-macosx.php b/website/latest/audacity-macosx.php new file mode 100644 index 0000000..d7cff50 --- /dev/null +++ b/website/latest/audacity-macosx.php @@ -0,0 +1,9 @@ + diff --git a/website/latest/audacity-src.php b/website/latest/audacity-src.php new file mode 100644 index 0000000..35f063a --- /dev/null +++ b/website/latest/audacity-src.php @@ -0,0 +1,9 @@ + diff --git a/website/latest/audacity-win-zip.php b/website/latest/audacity-win-zip.php new file mode 100644 index 0000000..964da38 --- /dev/null +++ b/website/latest/audacity-win-zip.php @@ -0,0 +1,9 @@ + diff --git a/website/latest/audacity-win.php b/website/latest/audacity-win.php new file mode 100644 index 0000000..83216ae --- /dev/null +++ b/website/latest/audacity-win.php @@ -0,0 +1,9 @@ + diff --git a/website/latest/mirror.inc.php b/website/latest/mirror.inc.php new file mode 100644 index 0000000..b5e7e3b --- /dev/null +++ b/website/latest/mirror.inc.php @@ -0,0 +1,6 @@ + diff --git a/website/latest/versions.inc.php b/website/latest/versions.inc.php new file mode 100644 index 0000000..f988174 --- /dev/null +++ b/website/latest/versions.inc.php @@ -0,0 +1,22 @@ + diff --git a/website/list/alreadyon.php b/website/list/alreadyon.php new file mode 100644 index 0000000..e2b7434 --- /dev/null +++ b/website/list/alreadyon.php @@ -0,0 +1,16 @@ + + +

    +The email address you entered is already on our mailing list! +

    + +

    +Click here to return to the Audacity home page +

    + + diff --git a/website/list/emailconfirm.php b/website/list/emailconfirm.php new file mode 100644 index 0000000..0ab129f --- /dev/null +++ b/website/list/emailconfirm.php @@ -0,0 +1,18 @@ + + +

    +Thank you for signing up for our announcement list. You will be +receiving a confirmation email shortly. You must respond to this +email in order to be subscribed. +

    + +

    +Click here to return to the Audacity home page +

    + + diff --git a/website/list/invalid.php b/website/list/invalid.php new file mode 100644 index 0000000..3c97fc4 --- /dev/null +++ b/website/list/invalid.php @@ -0,0 +1,16 @@ + + +

    +The email address you entered was invalid. +

    + +

    +Click here to return to the Audacity home page +

    + + diff --git a/website/list/main.inc.php b/website/list/main.inc.php new file mode 100644 index 0000000..24de430 --- /dev/null +++ b/website/list/main.inc.php @@ -0,0 +1,34 @@ +$title\n"; + + print "\n"; + + print "
    \n"; + print "\n"; + print "\n"; + print "\n"; + + print '
    '; + print ''; + print ''; + print '
    '; + print ''; + print $title; + print ''; + print '
    '; +} + +function Bottom() +{ + print '
    '; + print ''; +} + +?> diff --git a/website/list/noton.php b/website/list/noton.php new file mode 100644 index 0000000..becd048 --- /dev/null +++ b/website/list/noton.php @@ -0,0 +1,14 @@ + + +

    +Sorry, the email address you entered is not on our mailing list. +

    + +

    +Click here to return to the Audacity home page +

    + + diff --git a/website/list/subscribed.php b/website/list/subscribed.php new file mode 100644 index 0000000..a4f10f0 --- /dev/null +++ b/website/list/subscribed.php @@ -0,0 +1,30 @@ + + +

    +Your email address has been confirmed, and you are now on the +Audacity-Announce mailing list! +

    + +

    +The Audacity developers take your privacy very seriously. We will +only send you short emails when we release new versions of Audacity or +have other important news - typically about one email per month. +We will never sell or share your email address with anyone else. +

    + +

    +It's easy to remove your email address from our list: +just type it in the box on the left side of the Audacity home page, +and click "Remove". +

    + +

    +Click here to return to the Audacity home page +

    + + diff --git a/website/list/unsubscribed.php b/website/list/unsubscribed.php new file mode 100644 index 0000000..e8b224e --- /dev/null +++ b/website/list/unsubscribed.php @@ -0,0 +1,14 @@ + + +

    +You have been unsubscribed from our mailing list. +

    + +

    +Click here to return to the Audacity home page +

    + + 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 @@ + diff --git a/website/robots.txt b/website/robots.txt new file mode 100644 index 0000000..750b014 --- /dev/null +++ b/website/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Disallow: /download/auto +Disallow: /cgi-bin/bugzilla diff --git a/website/site-map.php b/website/site-map.php new file mode 100644 index 0000000..db37543 --- /dev/null +++ b/website/site-map.php @@ -0,0 +1,35 @@ + + +

    +
      +$name"; + if ($sectionNavItems) { + echo "
        "; + foreach ($sectionNavItems as $navItem) { + $name = $navItem[0]; + $path = $navItem[1]; + echo "
      • $name
      • "; + } + echo "
      "; + } + echo ""; + } +?> +
    + diff --git a/website/style.css b/website/style.css new file mode 100644 index 0000000..07a21d6 --- /dev/null +++ b/website/style.css @@ -0,0 +1,132 @@ +body { + background:white; color:black; + font:87.5%/1.5 sans-serif; + margin:0; padding:0; +} +:link { color:#00d; } +:visited { color:#116; } +:link:hover, :visited:hover { color:black; } +:target:before { content:"* "; color:red; } +#content:target:before { content:""; } +img { border:0; vertical-align: middle; } +dt { font-weight:bold; } +p, ul, ol { margin-top:0; margin-bottom:1em; } +ul ul, ol ol { margin-bottom:0; } + +h1 { font-size:1.714em; margin:.25em; padding:0; } +h2 { font-size:1.286em; margin:.5em 0; } +h3 { font-size:1.143em; margin:1.25em 0 .25em 0; } +h4 { font-size:1em; margin:1em 0 .5em 0; } + +.skip { + position:absolute; + left:-999px; width:990px; +} +.skip:focus, .skip:active { + background:white; + border:.25em solid #d82e39; + font-size:large; + left:0; top:0; + padding:.25em; + width:auto; +} + +/* holly hack (ie mac fix) \*/ +#search { float:right; margin:1em; } +/* end hide */ +.text { border:1px solid #666; width:10em; } + +#sitenav { white-space:nowrap; } +#sitenav h2, #footer h2 { + position:absolute; + left:-999px; width:990px; +} +#sitenav ul { + border-bottom:1px solid black; + line-height:normal; + margin:0; padding:0; + width:100%; +} +#sitenav li { + background:#ddf; + border:1px solid black; + display:inline; + height:100%; + margin:.5em; + padding:.25em .5em 0 .5em; + position:relative; /* ie win fix */ +} +#sitenav li.selected { + background:white; + border-top:3px solid blue; + border-bottom:1px solid white; +} +#sitenav :link, #sitenav :visited { text-decoration:none; } +#sitenav :link:hover, #sitenav :visited:hover { text-decoration:underline; } + +#subnav { + background:#ddd; + border:2px solid #666; + float:left; + margin:2em 1em; + width:11em; +} +#subnav h3 { + font-size:1em; +} +#subnav ul { + font-size:.857em; + margin:0; padding:0; + list-style:none; +} +#subnav li, #subnav h3 { + display:block; + border:1px solid; + border-color:#eee #aaa #999 #eee; + margin:0; padding:.25em; +} +#subnav .selected { + background:#eef; + font-weight:bold; +} +#subnav :link, #subnav :visited { + display:block; + margin:-.25em; padding:.25em; +} +#subnav :link:hover, #subnav :visited:hover { + background:#ccc; +} +.afternav { margin-left:12em; } + +#content { + max-width:60em; + padding:1em 2em; +} + +#footer { + clear:both; + text-align:center; +} + +#download { + background:#ffa; + border:2px solid #339; + margin:2em; padding:0 1em; + width:20%; + text-align:center; +} +#download h3 { margin:.75em 0 .75em 0; } + +#screenshot { + float:right; + margin:0 1em 1em 2em; +} +.screenshot { + float:left; + margin:1em; + min-width:250px; +} +.screenshot img { display:block; } +.downloads h3 { margin:1em; } +.downloads img { position:relative; /* safari fix */ } +.logo { text-align:center; } 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 @@ +$pageTitle"; + + // 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 "

    "._('This page links to the Oreka documentation in various forms:')."

    "; +?> + + + + 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 @@ + array( + _("About Oreka"), + array( + "difference" => array( + _("What is the difference between this software and other open source audio recording software?"), + _("

    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.

    + ") + ), + "threedifferent" => array( + _("Why is the system broken up in three services ? Would it not have been easier to implement everything in one service?"), + _("

    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.

    ") + ), + "separately" => array( + _("Is it possible to use the different components (OrkAudio, OrkTrack and OrkWeb) separately?"), + _("

    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 documentation.

    ") + ), + ), + ), + ); + + 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 "

    $question

    "; + echo $answer; + + echo "

    "._("Other frequently asked questions...")."

    "; + } + else { + // Print the list of sections and questions. + $pageTitle = _("Frequently Asked Questions"); + include "../include/header.inc.php"; + + echo "

    $pageTitle

    "; + echo "

    "._('These are frequently asked questions about Oreka. If you cannot find what you are looking for here, see the documentation, or ask on the Oreka mailing lists')."

    "; + + foreach ($faqSections as $faqSectionId => $section) { + $sectionTitle = $section[0]; + $sectionItems = $section[1]; + + echo "

    $sectionTitle

    "; + + echo "
      "; + foreach ($sectionItems as $itemId => $item) { + $question = $item[0]; + $answer = $item[1]; + + echo "
    1. $question
    2. "; + } + echo "
    "; + } + } + + 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 @@ +$pageTitle"; + + // 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 _('

    If you have a question, check the list of Frequently Asked Questions before asking on the mailing lists.

    +

    For instructions on how to build, install and use Oreka, see the documentation

    '); +?> +

    Professional support and add-ons are available from orecx LLC, the primary sponsor and developer of Oreka.

    + 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 @@ +$pageTitle"; + + // 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. +?> +

    There are three Oreka lists you can subscribe to:

    +
      +
    • oreka-dev: this mailing list is intended for developers that want to compile and change the software.
    • +
    • oreka-user: this mailing list is intended for people who just want to use the software.
    • +
    • oreka-announce: this is a very low traffic mailing list. Only new version notifications will be posted there.
    • +
    + + 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 @@ + -- cgit v1.2.3