diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-19 19:38:23 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-19 19:38:23 -0400 |
commit | 73c47d9461cbfea88c84f3f2b01cdeb2d22c2f87 (patch) | |
tree | c7749fee7885ecfe6f12ae53a55c615ef0191971 /app/Template/project/feed.php | |
parent | ff85518fa8f6dc48ac5dedb4847c6bb24ea35b2f (diff) |
Add RSS feed for users and change address of project feeds
Diffstat (limited to 'app/Template/project/feed.php')
-rw-r--r-- | app/Template/project/feed.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/app/Template/project/feed.php b/app/Template/project/feed.php deleted file mode 100644 index 2062e801..00000000 --- a/app/Template/project/feed.php +++ /dev/null @@ -1,27 +0,0 @@ -<?= '<?xml version="1.0" encoding="utf-8"?>' ?> -<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom"> - <title><?= t('%s\'s activity', $project['name']) ?></title> - <link rel="alternate" type="text/html" href="<?= $this->url->base() ?>"/> - <link rel="self" type="application/atom+xml" href="<?= $this->url->base().$this->url->href('project', 'feed', array('token' => $project['token'])) ?>"/> - <updated><?= date(DATE_ATOM) ?></updated> - <id><?= $this->url->base() ?></id> - <icon><?= $this->url->base() ?>assets/img/favicon.png</icon> - - <?php foreach ($events as $e): ?> - <entry> - <title type="text"><?= $e['event_title'] ?></title> - <link rel="alternate" href="<?= $this->url->base().$this->url->href('task', 'show', array('task_id' => $e['task_id'])) ?>"/> - <id><?= $e['id'].'-'.$e['event_name'].'-'.$e['task_id'].'-'.$e['date_creation'] ?></id> - <published><?= date(DATE_ATOM, $e['date_creation']) ?></published> - <updated><?= date(DATE_ATOM, $e['date_creation']) ?></updated> - <author> - <name><?= $this->e($e['author']) ?></name> - </author> - <content type="html"> - <![CDATA[ - <?= $e['event_content'] ?> - ]]> - </content> - </entry> - <?php endforeach ?> -</feed>
\ No newline at end of file |