diff --git a/src/IDF/Issue.php b/src/IDF/Issue.php index d901852..0e0ee59 100644 --- a/src/IDF/Issue.php +++ b/src/IDF/Issue.php @@ -207,9 +207,10 @@ class IDF_Issue extends Pluf_Model
%%content%%
'; - $url = Pluf_HTTP_URL_urlForView('IDF_Views_Issue::view', - array($request->project->shortname, - $this->id)); + $url = Pluf::f('url_base') + .Pluf_HTTP_URL_urlForView('IDF_Views_Issue::view', + array($request->project->shortname, + $this->id)); $title = sprintf(__('%s: Issue %d created - %s'), Pluf_esc($request->project->name), $this->id, Pluf_esc($this->summary)); diff --git a/src/IDF/IssueComment.php b/src/IDF/IssueComment.php index fe1ab2d..17a21ad 100644 --- a/src/IDF/IssueComment.php +++ b/src/IDF/IssueComment.php @@ -185,9 +185,10 @@ class IDF_IssueComment extends Pluf_Model '; $issue = $this->get_issue(); - $url = Pluf_HTTP_URL_urlForView('IDF_Views_Issue::view', - array($request->project->shortname, - $issue->id)); + $url = Pluf::f('url_base') + .Pluf_HTTP_URL_urlForView('IDF_Views_Issue::view', + array($request->project->shortname, + $issue->id)); $url .= '#ic'.$this->id; $title = sprintf(__('%s: Comment on issue %d - %s'), Pluf_esc($request->project->name), diff --git a/src/IDF/WikiPage.php b/src/IDF/WikiPage.php index 92ee800..82b2957 100644 --- a/src/IDF/WikiPage.php +++ b/src/IDF/WikiPage.php @@ -210,9 +210,10 @@ class IDF_WikiPage extends Pluf_Model %%content%% '; - $url = Pluf_HTTP_URL_urlForView('IDF_Views_Wiki::view', - array($request->project->shortname, - $this->title)); + $url = Pluf::f('url_base') + .Pluf_HTTP_URL_urlForView('IDF_Views_Wiki::view', + array($request->project->shortname, + $this->title)); $title = sprintf(__('%s: Documentation page %s added - %s'), Pluf_esc($request->project->name), Pluf_esc($this->title), Pluf_esc($this->summary)); diff --git a/src/IDF/WikiRevision.php b/src/IDF/WikiRevision.php index 783f2d8..d85a390 100644 --- a/src/IDF/WikiRevision.php +++ b/src/IDF/WikiRevision.php @@ -202,9 +202,10 @@ class IDF_WikiRevision extends Pluf_Model '; $page = $this->get_wikipage(); - $url = Pluf_HTTP_URL_urlForView('IDF_Views_Wiki::view', - array($request->project->shortname, - $page->title)); + $url = Pluf::f('url_base') + .Pluf_HTTP_URL_urlForView('IDF_Views_Wiki::view', + array($request->project->shortname, + $page->title)); $title = sprintf(__('%s: Documentation page %s updated - %s'), Pluf_esc($request->project->name), Pluf_esc($page->title), Pluf_esc($page->summary)); diff --git a/src/IDF/templates/idf/index.atom b/src/IDF/templates/idf/index.atom index f4ff7e0..14b82f5 100644 --- a/src/IDF/templates/idf/index.atom +++ b/src/IDF/templates/idf/index.atom @@ -3,11 +3,6 @@ {if !$user.isAnonymous()} {blocktrans}Personal project feed for {$user}.{/blocktrans}{/if} - {$updated} - - Not given - Not given - {$feedurl} {$body}