You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by tv...@apache.org on 2013/05/21 23:33:10 UTC

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

Updated Branches:
  refs/heads/tv/6239 [created] 16f0132db


[#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/16f0132d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/16f0132d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/16f0132d

Branch: refs/heads/tv/6239
Commit: 16f0132db31c0848abaf488a284aeffd35d07960
Parents: e34ca49
Author: Tim Van Steenburgh <tv...@gmail.com>
Authored: Tue May 21 21:32:48 2013 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Tue May 21 21:32:48 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/16f0132d/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
                                            })