##// END OF EJS Templates
Adds a setting to choose which role is given to a non-admin user who creates a project (#1007)....
Adds a setting to choose which role is given to a non-admin user who creates a project (#1007). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2754 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2607:29c0dae1518e
r2655:52b5b2920329
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)
xml.email(author.mail) if author.respond_to?(:mail) && !author.mail.blank?
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 end if author
xml.content "type" => "html" do
Jean-Philippe Lang
Adds hostname to Redmine links in atom feeds (#3275)....
r2607 xml.text! textilizable(item.event_description, :only_path => false)
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 end
end
end
end