ChangeSet ID: 24441
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/04/27 19:53:01
Modified files:
include : comment.php
Log message:
Tony Lambregts <tony.lambregts(a)gmail.com>
Add note to use the AppDB to reply to email instead of replying to the email
Patch: http://cvs.winehq.org/patch.py?id=24441
Old revision New revision Changes Path
1.14 1.15 +3 -1 appdb/include/comment.php
Index: appdb/include/comment.php
diff -u -p appdb/include/comment.php:1.14 appdb/include/comment.php:1.15
--- appdb/include/comment.php:1.14 28 Apr 2006 0:53: 1 -0000
+++ appdb/include/comment.php 28 Apr 2006 0:53: 1 -0000
@@ -88,7 +88,9 @@ class Comment {
}
$sSubject = "Comment for '".lookup_app_name($this->iAppId)." ".lookup_version_name($this->iVersionId)."' added by ".$_SESSION['current']->sRealname;
- $sMsg = APPDB_ROOT."appview.php?versionId=".$this->iVersionId."&mode=nested#Comment-".$this->iCommentId."\n";
+ $sMsg = "To reply to this email please use the link provided below.\n";
+ $sMsg .= "DO NOT reply via your email client as it will not reach the person who wrote the comment\n";
+ $sMsg .= APPDB_ROOT."appview.php?versionId=".$this->iVersionId."&mode=nested#Comment-".$this->iCommentId."\n";
$sMsg .= "\n";
$sMsg .= "Subject: ".$this->sSubject."\r\n";
$sMsg .= "\n";
ChangeSet ID: 24438
CVSROOT: /opt/cvs-commit
Module name: lostwages
Changes by: jnewman(a)winehq.org 2006/04/27 09:20:24
Modified files:
templates/en : getting_help.template
Log message:
hyperlink the bug tracker and appdb text
Patch: http://cvs.winehq.org/patch.py?id=24438
Old revision New revision Changes Path
1.1 1.2 +10 -6 lostwages/templates/en/getting_help.template
Index: lostwages/templates/en/getting_help.template
diff -u -p lostwages/templates/en/getting_help.template:1.1 lostwages/templates/en/getting_help.template:1.2
--- lostwages/templates/en/getting_help.template:1.1 27 Apr 2006 14:20:24 -0000
+++ lostwages/templates/en/getting_help.template 27 Apr 2006 14:20:24 -0000
@@ -16,7 +16,8 @@
<a href="{$root}/site/docs/wine-faq/index"><img src="{$root}/images/faq.png" /><br />FAQ</a>
</td>
<td valign="top">
- Most questions can be quickly answered by browsing our <a href="{$root}/site/docs/wine-faq/index">FAQ</a>.
+ Most questions can be quickly answered by browsing our
+ <a href="{$root}/site/docs/wine-faq/index">FAQ</a>.
This is the first place you should check to see if your question has been answered.
</td>
</tr>
@@ -26,8 +27,10 @@
<a href="{$root}/site/docs"><img src="{$root}/images/docs.png" /><br />Docs</a>
</td>
<td valign="top">
- We recommend that you read our online <a href="{$root}/site/docs">Documentation</a> to find the answer to your question.
- Also of interest is our <a href="{$root}/site/howto">HowTo</a> which contains some useful information for the first time user.
+ We recommend that you read our online <a href="{$root}/site/docs">Documentation</a>
+ to find the answer to your question. Also of interest is our
+ <a href="{$root}/site/howto">HowTo</a> which contains some useful information for
+ the first time user.
</td>
</tr>
@@ -69,7 +72,8 @@
<a href="http://appdb.winehq.org/"><img src="{$root}/images/appdb.png" /><br />AppDB</a>
</td>
<td valign="top">
- If you want help with a single application our Application Database is a good place to look.
+ If you want help with a single application our <a href="http://appdb.winehq.org/">Application Database</a>
+ is a good place to look.
</td>
</tr>
@@ -78,10 +82,10 @@
<a href="http://bugs.winehq.org/"><img src="{$root}/images/bugs.png" /><br />Bugzilla</a>
</td>
<td valign="top">
- Our Bugzilla Bug Tracker contains all the issues we have worked on and are currently working on.
+ Our <a href="http://bugs.winehq.org/">Bugzilla Bug Tracker</a> contains all the issues we have
+ worked on and are currently working on.
</td>
</tr>
-
<tr bgcolor="#ffffff">
<td align="center" class="small">
ChangeSet ID: 24437
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/04/26 20:44:57
Modified files:
admin : adminAppQueue.php
Log message:
Tony Lambregts <tony.lambregts(a)gmail.com>
Add a message to the app/version deletion email to clarify deletions due the app/version being moved
Patch: http://cvs.winehq.org/patch.py?id=24437
Old revision New revision Changes Path
1.53 1.54 +2 -0 appdb/admin/adminAppQueue.php
Index: appdb/admin/adminAppQueue.php
diff -u -p appdb/admin/adminAppQueue.php:1.53 appdb/admin/adminAppQueue.php:1.54
--- appdb/admin/adminAppQueue.php:1.53 27 Apr 2006 1:44:57 -0000
+++ appdb/admin/adminAppQueue.php 27 Apr 2006 1:44:57 -0000
@@ -208,6 +208,7 @@ if ($_REQUEST['sub'])
$oVersion->update();
/* delete the appId that is the duplicate */
+ $_REQUEST['replyText'] = "Your Vesion information was moved to an existing Application";
$oAppDelete = new Application($oApp->iAppId);
$oAppDelete->delete();
}
@@ -224,6 +225,7 @@ if ($_REQUEST['sub'])
$oTest->update();
// delete the Version entry
+ $_REQUEST['replyText'] = "Your Test results were moved to existing version";
$oVersion = new Version($_REQUEST['versionId']);
$oVersion->delete();
}