You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2013/05/24 20:17:46 UTC

[10/50] git commit: [#6239] Fix artifact links in emails

[#6239] Fix artifact links in emails

RelativeLinkRewriter short-circuits unless PATH_INFO ends with /

Signed-off-by: Tim Van Steenburgh <tv...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/616d519e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/616d519e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/616d519e

Branch: refs/heads/db/6007
Commit: 616d519e6301c1ff23e6112cbfdac4b6bea32d1b
Parents: b37d0e8
Author: Tim Van Steenburgh <tv...@gmail.com>
Authored: Tue May 21 21:32:48 2013 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Wed May 22 17:40:49 2013 +0000

----------------------------------------------------------------------
 Allura/allura/command/taskd.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/616d519e/Allura/allura/command/taskd.py
----------------------------------------------------------------------
diff --git a/Allura/allura/command/taskd.py b/Allura/allura/command/taskd.py
index 505935a..f75f01b 100644
--- a/Allura/allura/command/taskd.py
+++ b/Allura/allura/command/taskd.py
@@ -122,7 +122,7 @@ class TaskdCommand(base.Command):
                             only=only)
                     if self.task:
                         # Build the (fake) request
-                        r = Request.blank('/--%s--/%s' % (self.task.task_name, self.task._id),
+                        r = Request.blank('/--%s--/%s/' % (self.task.task_name, self.task._id),
                                           {'task': self.task,
                                            'wsgi.errors': wsgi_error_log,  # ErrorMiddleware records error details here
                                            })