summaryrefslogtreecommitdiff
path: root/website/download
diff options
context:
space:
mode:
Diffstat (limited to 'website/download')
-rw-r--r--website/download/common.inc.php13
-rw-r--r--website/download/index.php26
-rw-r--r--website/download/main.inc.php12
-rw-r--r--website/download/release-notes.php19
-rw-r--r--website/download/source.php33
-rw-r--r--website/download/windows.php33
6 files changed, 136 insertions, 0 deletions
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 @@
+<?php
+/*
+ * Copyright 2004 Matt Brubeck
+ * This file is licensed under a Creative Commons license:
+ * http://creativecommons.org/licenses/by/2.0/
+ *
+ * This file contains text shared by "mac.php" and "windows.php".
+ */
+?>
+ <li><p><a href="../help/faq?s=install&amp;item=lame-mp3"><?=_("LAME MP3 encoder")?></a> - <?=_("Allows Audacity to export MP3 files.")?></p></li>
+ <li><p><a href="../help/faq?s=install&amp;item=vst-enabler"><?=_("VST Enabler")?></a> - <?=_('Allows Audacity to load VST plug-ins.')?></p></li>
+ <li><p><a href="plugins"><?=_("Plug-Ins")?></a> - <?=_("Download additional effects and filters.")?></p></li>
+ <li><p><?php printf(_('If you have trouble with your download, or need an older version of Audacity, try our <a href="%s">alternate download links</a>.'), "http://sourceforge.net/project/showfiles.php?group_id=6235")?></p></li>
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 @@
+<?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 = _("Download");
+ include "../include/header.inc.php";
+?>
+
+<h2><?=$pageTitle?></h2>
+
+<p><?=_("The following packages are available for download:")?></p>
+<ul>
+ <li>OrkAudio audio capture server as a Windows precompiled binary</li>
+ <li>Entire Oreka codebase (Cross platform C++ and Java)</li>
+ <li>OrkTrack and OrkWeb tracking and user interface servers as precompiled Java5 war files</li>
+</ul>
+
+<p><?=_('You may modify and distribute Oreka under the <a href="../about/license">GNU GPL</a>.')?></p>
+
+<?php
+ include "../include/footer.inc.php";
+?>
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 @@
+<?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 = "download/";
+$sectionPath = ".";
+$sectionTitle = _("Download");
+?>
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 @@
+<?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 = "release-notes";
+ $pageTitle = _("Release Notes");
+ include "../include/header.inc.php";
+ include "../latest/versions.inc.php";
+?>
+
+<h2><?=$pageTitle?></h2>
+
+<p>Oreka 0.1 is the first release of this software.</p>
+<?php
+ include "../include/footer.inc.php";
+?>
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 @@
+<?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";
+ require_once "../latest/versions.inc.php";
+ $pageId = "source";
+ $pageTitle = _("Source Code");
+ include "../include/header.inc.php";
+?>
+
+<h2><?=$pageTitle?></h2>
+
+<p>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.<p>
+
+<h3><?=_("Recommended Download")?></h3>
+
+<ul>
+ <li><p>Windows zip file: <a href="http://sourceforge.net/project/showfiles.php?group_id=150919&package_id=166774">oreka-0.1.zip</a></p></li>
+ <li><p>Unix tarball: <a href="http://sourceforge.net/project/showfiles.php?group_id=150919&package_id=166774">oreka-0.1.tar.gz</a></p></li>
+</ul>
+
+<h3>Optional download</h3>
+<ul>
+ <li>Windows C++ dependencies package: <a href="http://sourceforge.net/project/showfiles.php?group_id=150919&package_id=166774">oreka-0.1-cxx-win32-dependencies.zip</a></li>
+ <li>Java dependencies package: <a href="http://sourceforge.net/project/showfiles.php?group_id=150919&package_id=166774">oreka-0.1-java-dependencies.zip</a></li>
+</ul>
+
+<?php
+ include "../include/footer.inc.php";
+?>
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 @@
+<?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";
+ require_once "../latest/versions.inc.php";
+ $pageId = "windows";
+ $pageTitle = _("Windows");
+ include "../include/header.inc.php";
+?>
+
+<h2><?=$pageTitle?></h2>
+
+<p>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.</p>
+
+<h3><?=_("Recommended Download")?></h3>
+<ul>
+ <li><p><a href="http://sourceforge.net/project/showfiles.php?group_id=150919&package_id=166774">orkaudio-0.1-win32-binary.zip</a></p></li>
+</ul>
+
+<h3><?=_("System Requirements")?></h3>
+<ul>
+ <li><?=_("Windows 2000, XP, or later.")?></li>
+ <li><?=_("Second NIC (Ethernet port) if you need to monitor an external link for VoIP.")?></li>
+ <li><?=_("Mono or multichannel sound card for sound device recording.")?></li>
+</ul>
+
+
+<?php
+ include "../include/footer.inc.php";
+?>