summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2005-12-08 19:56:36 +0000
committerHenri Herscher <henri@oreka.org>2005-12-08 19:56:36 +0000
commit1fa2ddb6e409ba920446917033eb09d1bce5bca5 (patch)
tree1ed528034d3b178b07180d3f7d94d6c72ab88c0b /website
parent0fa01ab377354d3b4adb2f31b50a6c0d6cf1dc56 (diff)
orkweb and orktrack binary release changes
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@101 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'website')
-rw-r--r--website/download/debian.php2
-rw-r--r--website/download/index.php3
-rw-r--r--website/download/windows.php2
-rw-r--r--website/include/news.inc.php7
-rw-r--r--website/main.inc.php5
5 files changed, 14 insertions, 5 deletions
diff --git a/website/download/debian.php b/website/download/debian.php
index 297dfae..21b2b74 100644
--- a/website/download/debian.php
+++ b/website/download/debian.php
@@ -7,7 +7,7 @@
require_once "main.inc.php";
require_once "../latest/versions.inc.php";
$pageId = "debian";
- $pageTitle = _("Debian/Ubuntu Package");
+ $pageTitle = _("OrkAudio Debian/Ubuntu Package");
include "../include/header.inc.php";
?>
diff --git a/website/download/index.php b/website/download/index.php
index 76b3180..81cc45a 100644
--- a/website/download/index.php
+++ b/website/download/index.php
@@ -15,8 +15,9 @@
<p><?=_("The following packages are available for download:")?></p>
<ul>
<li>OrkAudio audio capture server as a Windows precompiled binary</li>
+ <li>OrkAudio audio capture server as a Debian/Ubuntu binary package</li>
+ <li>OrkWeb and OrkTrack user interface and database logging servers as precompiled Java5 war files</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>
diff --git a/website/download/windows.php b/website/download/windows.php
index d2600b1..50ae6d4 100644
--- a/website/download/windows.php
+++ b/website/download/windows.php
@@ -7,7 +7,7 @@
require_once "main.inc.php";
require_once "../latest/versions.inc.php";
$pageId = "windows";
- $pageTitle = _("Windows");
+ $pageTitle = _("OrkAudio Windows");
include "../include/header.inc.php";
?>
diff --git a/website/include/news.inc.php b/website/include/news.inc.php
index 92e6486..cfb502d 100644
--- a/website/include/news.inc.php
+++ b/website/include/news.inc.php
@@ -36,6 +36,13 @@ function most_recent_news_item() {
}
add_news_item(
+ "December 08, 2005",
+ "Web UI available as binary",
+ _("Web UI available as binary"),
+ _('<p>The web interface (OrkWeb) is now available as a precompiled Java war file. See the <a href="download">download</a> section for more info</p>')
+);
+
+add_news_item(
"November 24, 2005",
"0.3-release",
_("Oreka 0.3 Released"),
diff --git a/website/main.inc.php b/website/main.inc.php
index 22950b4..749dbfb 100644
--- a/website/main.inc.php
+++ b/website/main.inc.php
@@ -27,8 +27,9 @@ $siteNavItems = array(
),
array(_("Download"), "download/",
array(
- array(_("Windows"), "windows"),
- array(_("Debian/Ubuntu"), "debian"),
+ array(_("OrkAudio Windows"), "windows"),
+ array(_("OrkAudio Debian/Ubuntu"), "debian"),
+ array(_("OrkWeb/OrkTrack"), "war"),
array(_("Source Code"), "source"),
array(_("Release Notes"), "release-notes"),
)