Module: tools
Branch: master
Commit: bc9feb09a0013d885e84d13bb899a21ea2bc49bb
URL: http://source.winehq.org/git/tools.git/?a=commit;h=bc9feb09a0013d885e84d13b…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Mon Oct 29 15:52:41 2012 +0100
testbot/scripts: Standardize the initd copyright notice.
---
testbot/scripts/initd | 39 +++++++++++++++++----------------------
1 files changed, 17 insertions(+), 22 deletions(-)
diff --git a/testbot/scripts/initd b/testbot/scripts/initd
index c4caf49..9d3e8b1 100755
--- a/testbot/scripts/initd
+++ b/testbot/scripts/initd
@@ -1,30 +1,25 @@
#!/bin/sh
#
-# System startup script based on template SUSE script for WineTestBot
-# Copyright (C) 1995--2005 Kurt Garloff, SUSE / Novell Inc.
-# Copyright 2009 Ge van Geldorp.
-# Copyright 2012 Francois Gouget
+# A SUSE / LSB compatible system startup script for WineTestBot.
+# See http://www.linuxbase.org/spec/ for reference.
+#
+# Copyright (C) 1995--2005 Kurt Garloff, SUSE / Novell Inc.
+# Copyright 2009 Ge van Geldorp.
+# Copyright 2012 Francois Gouget
#
-# This library is free software; you can redistribute it and/or modify it
-# under the terms of the GNU Lesser General Public License as published by
-# the Free Software Foundation; either version 2.1 of the License, or (at
-# your option) any later version.
-#
-# This library is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
-# USA.
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
#
-# /etc/init.d/winetestbot
-# and its symbolic link
-# /(usr/)sbin/rcwinetestbot
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
#
-# LSB compatible service control script; see http://www.linuxbase.org/spec/
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
#
### BEGIN INIT INFO
# Provides: winetestbot
Module: tools
Branch: master
Commit: 57d325ba623d5bf8f6a2332eae7990b01f15e151
URL: http://source.winehq.org/git/tools.git/?a=commit;h=57d325ba623d5bf8f6a2332e…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Mon Oct 29 15:39:47 2012 +0100
testbot/lib: Avoid calling DBIBackEnd::GetDb() unnecessarily.
These calls are a bit more expensive now that they verify that the
connection is still live. So SaveCollection() should really call it
only once.
---
testbot/lib/ObjectModel/DBIBackEnd.pm | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/testbot/lib/ObjectModel/DBIBackEnd.pm b/testbot/lib/ObjectModel/DBIBackEnd.pm
index 72ff3c5..8af9c8b 100644
--- a/testbot/lib/ObjectModel/DBIBackEnd.pm
+++ b/testbot/lib/ObjectModel/DBIBackEnd.pm
@@ -434,16 +434,17 @@ sub SaveCollection
my $self = shift;
my $Collection = shift;
+ my $Db = $self->GetDb();
my ($MasterColNames, $MasterColValues) = $Collection->GetMasterCols();
my $UpdateQuery = $self->BuildUpdateStatement($Collection->GetTableName(),
$Collection->GetPropertyDescriptors(),
$MasterColNames);
- my $UpdateStatement = $self->GetDb()->prepare($UpdateQuery);
+ my $UpdateStatement = $Db->prepare($UpdateQuery);
my $InsertQuery = $self->BuildInsertStatement($Collection->GetTableName(),
$Collection->GetPropertyDescriptors(),
$MasterColNames);
- my $InsertStatement = $self->GetDb()->prepare($InsertQuery);
+ my $InsertStatement = $Db->prepare($InsertQuery);
foreach my $Key (@{$Collection->GetKeysNoLoad()})
{
@@ -465,7 +466,7 @@ sub SaveCollection
die "Sequence property spans multiple columns";
}
- $Item->PutColValue(@{$ColNames}[0], $self->GetDb()->{'mysql_insertid'});
+ $Item->PutColValue(@{$ColNames}[0], $Db->{'mysql_insertid'});
$Collection->KeyChanged($Key, $Item->GetKey());
}
}
Module: website
Branch: master
Commit: 04789eddb5a69563539a344446e7048990111bbc
URL: http://source.winehq.org/git/website.git/?a=commit;h=04789eddb5a69563539a34…
Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Date: Fri Oct 26 22:20:04 2012 +0200
French translation for release 1.5.16
---
news/fr/2012102601.xml | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/news/fr/2012102601.xml b/news/fr/2012102601.xml
new file mode 100644
index 0000000..faa3e48
--- /dev/null
+++ b/news/fr/2012102601.xml
@@ -0,0 +1,16 @@
+<news>
+<date>26 octobre 2012</date>
+<title>Sortie de Wine 1.5.16</title>
+<body>
+<p> La version de développement 1.5.16 de Wine est disponible.</p>
+<p> <a href="{$root}/announce/1.5.16">Nouveautés</a> de cette version :
+<ul>
+ <li>Nouvelle version du paquet Mono.</li>
+ <li>Un tas d'améliorations dans l'analyseur syntaxique de ligne de commandes CMD.</li>
+ <li>Classes de flux additionnelles dans le moteur d'exécution C++.</li>
+ <li>Prise en charge de la gestion des services dans WMI.</li>
+ <li>Détection de CPU améliorée.</li>
+ <li>Diverses corrections de bogues.</li>
+</ul></p>
+<p><p>Le <a href="http://prdownloads.sourceforge.net/wine/wine-1.5.16.tar.bz2">code source</a> est disponible dès à présent. Les paquets binaires sont en cours de construction, et apparaîtront sous peu sur leurs <a href="{$root}/download">sites de téléchargement</a> respectifs.
+</p></body></news>
Module: website
Branch: master
Commit: bfa78540cd8770608ee2adca4cb90ed6bfc0c9e2
URL: http://source.winehq.org/git/website.git/?a=commit;h=bfa78540cd8770608ee2ad…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Fri Oct 26 20:51:36 2012 +0200
Wine 1.5.16 freigegeben
---
news/de/2012102601.xml | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/news/de/2012102601.xml b/news/de/2012102601.xml
new file mode 100644
index 0000000..13abf60
--- /dev/null
+++ b/news/de/2012102601.xml
@@ -0,0 +1,17 @@
+<news>
+<date>26. Oktober 2012</date>
+<title>Wine 1.5.16 freigegeben</title>
+<body>
+<p> Die Entwicklungsversion 1.5.16 von Wine ist jetzt verfügbar.</p>
+<p> <a href="{$root}/announce/1.5.16">Neuerungen (en)</a> in dieser Version:</p>
+<ul>
+ <li>Neue Version des Mono Pakets.</li>
+ <li>Viele Verbesserungen am CMD Kommandozeilenparser.</li>
+ <li>Mehr Stream Klassen in der C++ Runtime.</li>
+ <li>Unterstützung für die Verwaltung von Diensten in WMI.</li>
+ <li>Verbesserte CPU Erkennung.</li>
+ <li>Verschiedene Fehlerbehebungen.</li>
+</ul>
+<p>Der Quellcode ist jetzt <a href="http://prdownloads.sourceforge.net/wine/wine-1.5.16.tar.bz2">verfügbar</a>.
+Binärpakete werden gerade erstellt und stehen bald auf den jeweiligen <a href="{$root}/download">Downloadseiten</a> zur Verfügung.
+</p></body></news>
Module: website
Branch: master
Commit: 4e4934599018ba8b91bec1d2a1bef497704034d0
URL: http://source.winehq.org/git/website.git/?a=commit;h=4e4934599018ba8b91bec1…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Oct 26 20:24:22 2012 +0200
Wine release 1.5.16
---
news/en/2012102601.xml | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/news/en/2012102601.xml b/news/en/2012102601.xml
new file mode 100644
index 0000000..e788332
--- /dev/null
+++ b/news/en/2012102601.xml
@@ -0,0 +1,17 @@
+<news>
+<date>October 26, 2012</date>
+<title>Wine 1.5.16 Released</title>
+<body>
+<p> The Wine development release 1.5.16 is now available.</p>
+<p> <a href="{$root}/announce/1.5.16">What's new</a> in this release:
+<ul>
+ <li>New version of the Mono package.</li>
+ <li>Many improvements to the CMD command-line parser.</li>
+ <li>More stream classes in the C++ runtime.</li>
+ <li>Support for managing services in WMI.</li>
+ <li>Improved CPU detection.</li>
+ <li>Various bug fixes.</li>
+</ul></p>
+<p><p>The source is <a href="http://prdownloads.sourceforge.net/wine/wine-1.5.16.tar.bz2">available now</a>.
+Binary packages are in the process of being built, and will appear soon at their respective <a href="{$root}/download">download locations</a>.
+</p></body></news>