##// END OF EJS Templates
scm: cvs: fix missing author, revision and comment in tree view (#4270)....
scm: cvs: fix missing author, revision and comment in tree view (#4270). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5093 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2669:c082cfc90ef8
r4973:099ba68836b9
Show More
feed.atom.rxml
31 lines | 1.4 KiB | text/plain | TextLexer
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 xml.instruct!
xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 xml.title truncate_single_line(@title, :length => 100)
Jean-Philippe Lang
Fixes self and alternate atom links (#3161)....
r2605 xml.link "rel" => "self", "href" => url_for(params.merge(:only_path => false))
xml.link "rel" => "alternate", "href" => url_for(params.merge(:only_path => false, :format => nil, :key => nil))
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 xml.id url_for(:controller => 'welcome', :only_path => false)
xml.updated((@items.first ? @items.first.event_datetime : Time.now).xmlschema)
xml.author { xml.name "#{Setting.app_title}" }
Jean-Philippe Lang
Hide Redmine version in atom feeds and pdf properties (#794)....
r2001 xml.generator(:uri => Redmine::Info.url) { xml.text! Redmine::Info.app_name; }
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 @items.each do |item|
xml.entry do
Jean-Philippe Lang
Activity enhancements:...
r1213 url = url_for(item.event_url(:only_path => false))
Jean-Philippe Lang
Add project name to cross-project Atom feeds (#1527)....
r1571 if @project
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 xml.title truncate_single_line(item.event_title, :length => 100)
Jean-Philippe Lang
Add project name to cross-project Atom feeds (#1527)....
r1571 else
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 xml.title truncate_single_line("#{item.project} - #{item.event_title}", :length => 100)
Jean-Philippe Lang
Add project name to cross-project Atom feeds (#1527)....
r1571 end
Jean-Philippe Lang
Activity enhancements:...
r1213 xml.link "rel" => "alternate", "href" => url
xml.id url
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 xml.updated item.event_datetime.xmlschema
Jean-Philippe Lang
Fixed: Atom feeds don't provide author section for repository revisions (#1348)....
r1471 author = item.event_author if item.respond_to?(:event_author)
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 xml.author do
Jean-Philippe Lang
Atom feeds:...
r1140 xml.name(author)
Jean-Philippe Lang
Fixed: Atom feeds leak email address (#3408)....
r2664 xml.email(author.mail) if author.is_a?(User) && !author.mail.blank? && !author.pref.hide_mail
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 end if author
xml.content "type" => "html" do
Jean-Philippe Lang
FIxed: inline images not displayed in atom feeds (#3391)....
r2669 xml.text! textilizable(item, :event_description, :only_path => false)
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 end
end
end
end