Module: appdb
Branch: master
Commit: 956e5391def0c3d9225fa969c0760bade43d2ec5
URL: http://source.winehq.org/git/appdb.git/?a=commit;h=956e5391def0c3d9225fa969…
Author: Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com>
Date: Wed Dec 12 19:13:16 2007 +0100
distribution: Make sState member private
---
include/distribution.php | 7 ++++++-
include/testData_queue.php | 6 +++---
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/include/distribution.php b/include/distribution.php
index 16fc41b..d6c916a 100644
--- a/include/distribution.php
+++ b/include/distribution.php
@@ -13,7 +13,7 @@ class distribution {
var $sUrl;
var $sSubmitTime;
var $iSubmitterId;
- var $sState;
+ private $sState;
var $aTestingIds;
// constructor, fetches the data.
@@ -556,6 +556,11 @@ class distribution {
return $oOMTableRow;
}
+ public function objectGetState()
+ {
+ return $this->sState;
+ }
+
// Whether the user has permission to edit distributions
function canEdit()
{
diff --git a/include/testData_queue.php b/include/testData_queue.php
index 4ef5ab6..d6ef874 100644
--- a/include/testData_queue.php
+++ b/include/testData_queue.php
@@ -49,7 +49,7 @@ class testData_queue
$this->oTestData->unQueue();
/* Avoid a misguiding message about the distribution being unqueued */
- if($this->oDistribution->sStatus != 'accepted')
+ if($this->oDistribution->objectGetState() != 'accepted')
$this->oDistribution->unQueue();
}
@@ -77,7 +77,7 @@ class testData_queue
/* If we are processing queued test results with a queued distribution,
we display some additional help here */
if($this->oDistribution->iDistributionId &&
- $this->oDistribution->sStatus != 'accepted' && $this->canEdit())
+ $this->oDistribution->objectGetState() != 'accepted' && $this->canEdit())
{
echo "The user submitted a new distribution, which will be un-queued ".
"together with the test data unless you select an existing one ".
@@ -88,7 +88,7 @@ class testData_queue
distribution is un-queued, there is no need to display the
distribution form here */
if(!$this->oTestData->iDistributionId or
- $this->oDistribution->sStatus != 'accepted')
+ $this->oDistribution->objectGetState() != 'accepted')
{
echo html_frame_start("New Distribution", "90%");
$this->oDistribution->outputEditor();
Module: website
Branch: master
Commit: d579f4d15bbd8b20066b6ca3ea019a7ba61bc587
URL: http://source.winehq.org/git/website.git/?a=commit;h=d579f4d15bbd8b20066b6c…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Dec 14 17:45:21 2007 +0100
Wine release 0.9.51
---
news/2007121401.xml | 26 ++++++++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/news/2007121401.xml b/news/2007121401.xml
new file mode 100644
index 0000000..1e0d31c
--- /dev/null
+++ b/news/2007121401.xml
@@ -0,0 +1,26 @@
+<news>
+<date>December 14, 2007</date>
+<title>Wine 0.9.51 Released</title>
+<body>
+<p>Wine 0.9.51 was released today, with the following main changes:</p>
+
+<ul>
+<li>A bunch of WinHelp improvements.</li>
+<li>Better Japanese font support.</li>
+<li>A ton of rpcrt4 fixes.</li>
+<li>Several Alsa capture fixes.</li>
+<li>Improved support for screen resolution changes.</li>
+<li>Lots of bug fixes.</li>
+</ul>
+
+<p>
+Binary packages are in the process of being built and it may take a
+few days for them to appear, but the source is
+<a href="http://prdownloads.sourceforge.net/wine/wine-0.9.51.tar.bz2">available now</a>.
+You can find out more about this release in the
+<a href="?announce=0.9.51">announcement</a>. Check out our
+<a href="/site/download">download page</a> for packages for your
+distribution.
+</p>
+</body>
+</news>