Module: appdb
Branch: master
Commit: 5875da01a70acc421a9dd62d2b17d14f81b29853
URL: http://source.winehq.org/git/appdb.git/?a=commit;h=5875da01a70acc421a9dd62d…
Author: Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com>
Date: Sat Sep 29 22:12:40 2007 +0200
objectManager: Display reply text when editing another user's entry
---
include/objectManager.php | 42 ++++++++++++++++++++++--------------------
1 files changed, 22 insertions(+), 20 deletions(-)
diff --git a/include/objectManager.php b/include/objectManager.php
index 549d675..807824b 100644
--- a/include/objectManager.php
+++ b/include/objectManager.php
@@ -287,7 +287,7 @@ class ObjectManager
/* if this is a queue add a dialog for replying to the submitter of the
queued entry */
- if($this->bIsQueue)
+ if($this->bIsQueue || ($oObject->objectGetSubmitterId() && $oObject->objectGetSubmitterId() != $_SESSION['current']->iUserId))
{
/* If it isn't implemented, that means there is no default text */
if(method_exists(new $this->sClass, "getDefaultReply"))
@@ -299,27 +299,29 @@ class ObjectManager
echo '<td><textarea name="sReplyText" style="width: 100%" cols="80" '.
'rows="10">'.$sDefaultReply.'</textarea></td></tr>',"\n";
-
- /////////////////////////////////////////////////
- // output radio buttons for some common responses
- echo '<tr valign=top><td class="color0"></td><td class="color0">'.
- '<b>Common replies</b><br/> Email <a href="mailto:'.APPDB_OWNER_EMAIL.'">'.
- APPDB_OWNER_EMAIL.'</a> if you want to suggest a new common reply.</td></tr>',"\n";
-
- // NOTE: We use the label tag so the user can click anywhere in
- // the text of the radio button to select the radio button.
- // Otherwise the user has to click on the very small circle portion
- // of the button to select it
- foreach($this->aCommonResponses as $iIndex => $sReply)
+ if($this->bIsQueue)
{
- echo '<tr valign=top><td class="color0"></td>',"\n";
- echo '<td class="color0"><label for="'.$iIndex.'"><input'.
- ' type="radio" name="sOMCommonReply" id="'.$iIndex.'" value="'.$sReply.'"/>'.
- $sReply.'</label></td>',"\n";
- echo '</tr>',"\n";
+ /////////////////////////////////////////////////
+ // output radio buttons for some common responses
+ echo '<tr valign=top><td class="color0"></td><td class="color0">'.
+ '<b>Common replies</b><br/> Email <a href="mailto:'.APPDB_OWNER_EMAIL.'">'.
+ APPDB_OWNER_EMAIL.'</a> if you want to suggest a new common reply.</td></tr>',"\n";
+
+ // NOTE: We use the label tag so the user can click anywhere in
+ // the text of the radio button to select the radio button.
+ // Otherwise the user has to click on the very small circle portion
+ // of the button to select it
+ foreach($this->aCommonResponses as $iIndex => $sReply)
+ {
+ echo '<tr valign=top><td class="color0"></td>',"\n";
+ echo '<td class="color0"><label for="'.$iIndex.'"><input'.
+ ' type="radio" name="sOMCommonReply" id="'.$iIndex.'" value="'.$sReply.'"/>'.
+ $sReply.'</label></td>',"\n";
+ echo '</tr>',"\n";
+ }
+ // end output radio buttons for common responses
+ /////////////////////////////////////////////////
}
- // end output radio buttons for common responses
- /////////////////////////////////////////////////
/* buttons for operations we can perform on this entry */
Module: website
Branch: master
Commit: 6917ba26a84f9b1b500cf743debe6be2ff86e07d
URL: http://source.winehq.org/git/website.git/?a=commit;h=6917ba26a84f9b1b500cf7…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Sep 28 17:35:35 2007 +0200
Wine release 0.9.46
---
include/winehq.conf | 2 +-
news/2007092801.xml | 26 ++++++++++++++++++++++++++
2 files changed, 27 insertions(+), 1 deletions(-)
diff --git a/include/winehq.conf b/include/winehq.conf
index 9862561..fe1e29d 100644
--- a/include/winehq.conf
+++ b/include/winehq.conf
@@ -29,7 +29,7 @@ news_xml_path: news
wwn_xml_path: wwn
# Snapshot Date
-snapshot_date: 0.9.45
+snapshot_date: 0.9.46
# Current RH Packages Snapshot Date
snapshot_date_rh: 0.9.2
diff --git a/news/2007092801.xml b/news/2007092801.xml
new file mode 100644
index 0000000..712a8e6
--- /dev/null
+++ b/news/2007092801.xml
@@ -0,0 +1,26 @@
+<news>
+<date>September 28, 2007</date>
+<title>Wine 0.9.46 Released</title>
+<body>
+<p>Wine 0.9.46 was released today, with the following main changes:</p>
+
+<ul>
+<li>A variety of fixes to improve Photoshop CS2 support.</li>
+<li>More complete support for device installation in setupapi.</li>
+<li>New Bidi text implementation that doesn't depend on libicu.</li>
+<li>The usual assortment of Direct3D improvements.</li>
+<li>Beginning of I/O completion ports support.</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.46.tar.bz2">available now</a>.
+You can find out more about this release in the
+<a href="?announce=0.9.46">announcement</a>. Check out our
+<a href="/site/download">download page</a> for packages for your
+distribution.
+</p>
+</body>
+</news>