##// END OF EJS Templates
Don't add the inclusion error when tracker is not set, the blank error is enough....
Don't add the inclusion error when tracker is not set, the blank error is enough. git-svn-id: http://svn.redmine.org/redmine/trunk@15492 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14531:7e423fb45382
r15110:90d14b71b365
Show More
index.builder
31 lines | 1.3 KiB | text/plain | TextLexer
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 xml.instruct!
xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
xml.title @title
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171 xml.link "rel" => "self", "href" => url_for(:format => 'atom', :key => User.current.rss_key, :only_path => false)
Jean-Philippe Lang
Use named routes or helpers....
r13274 xml.link "rel" => "alternate", "href" => home_url
xml.id home_url
Jean-Philippe Lang
Adds favicon to ATOM feeds (#14309)....
r12387 xml.icon favicon_url
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171 xml.updated((@journals.first ? @journals.first.event_datetime : Time.now).xmlschema)
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 xml.author { xml.name "#{Setting.app_title}" }
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171 @journals.each do |change|
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 issue = change.issue
xml.entry do
xml.title "#{issue.project.name} - #{issue.tracker.name} ##{issue.id}: #{issue.subject}"
Jean-Philippe Lang
Use named routes or helpers....
r13274 xml.link "rel" => "alternate", "href" => issue_url(issue)
xml.id issue_url(issue, :journal_id => change)
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 xml.updated change.created_on.xmlschema
xml.author do
xml.name change.user.name
Jean-Philippe Lang
Fixed: Atom feeds leak email address (#3408)....
r2664 xml.email(change.user.mail) if change.user.is_a?(User) && !change.user.mail.blank? && !change.user.pref.hide_mail
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 end
xml.content "type" => "html" do
xml.text! '<ul>'
Jean-Philippe Lang
Information leak in Atom feed (#21419)....
r14531 details_to_strings(change.visible_details, false).each do |string|
Jean-Philippe Lang
Adds support for multiselect custom fields (#1189)....
r8601 xml.text! '<li>' + string + '</li>'
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 end
xml.text! '</ul>'
Jean-Philippe Lang
FIxed: inline images not displayed in atom feeds (#3391)....
r2669 xml.text! textilizable(change, :notes, :only_path => false) unless change.notes.blank?
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 end
end
end
Toshi MARUYAMA
add newline at end of app/views/journals/index.builder...
r7528 end