Commit e59942340a1179275af74b09c9ff9d0ac1d3c9c4
- Date: Sun Mar 02 23:00:03 +0000 2008
- Committer: Johan Sørensen (johan@johansorensen.com)
- Author: Johan Sørensen (johan@johansorensen.com)
- Commit SHA1: e59942340a1179275af74b09c9ff9d0ac1d3c9c4
- Tree SHA1: 01d140e28bd3450a54657c79038436725e53d16f
project feed has the project owner name in it
Commit diff
| |   |
| 8 | 8 | entry.title(project.title) |
| 9 | 9 | entry.content(project.description) |
| 10 | 10 | entry.author do |author| |
| 11 | | author.name("Gitorious") |
| 11 | author.name(project.user.login) |
| 12 | 12 | end |
| 13 | 13 | end |
| 14 | 14 | end |
| toggle raw diff |
--- a/app/views/projects/index.atom.builder
+++ b/app/views/projects/index.atom.builder
@@ -8,7 +8,7 @@ atom_feed do |feed|
entry.title(project.title)
entry.content(project.description)
entry.author do |author|
- author.name("Gitorious")
+ author.name(project.user.login)
end
end
end |