kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
3.0 KiB
69 lines
3.0 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2013 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
xml.instruct!
|
|
xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
|
|
first_item = @items.first
|
|
first_item_event = (!first_item.nil? && first_item.respond_to?(:data)) ? first_item.data : first_item
|
|
updated_time = (first_item_event.nil?) ? Time.now : first_item_event.event_datetime
|
|
|
|
xml.title truncate_single_line(@title, :length => 100)
|
|
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))
|
|
xml.id url_for(:controller => '/welcome', :only_path => false)
|
|
xml.updated(updated_time.xmlschema)
|
|
xml.author { xml.name "#{Setting.app_title}" }
|
|
xml.generator(:uri => OpenProject::Info.url) { xml.text! OpenProject::Info.app_name; }
|
|
@items.each do |item|
|
|
item_event = (not first_item.nil? and first_item.respond_to?(:data)) ? item.data : item
|
|
|
|
xml.entry do
|
|
if item_event.is_a? Redmine::Acts::ActivityProvider::Event
|
|
url = item_event.event_url
|
|
else
|
|
url = url_for(item_event.event_url(:only_path => false))
|
|
end
|
|
if @project
|
|
xml.title truncate_single_line(item_event.event_title, :length => 100)
|
|
else
|
|
xml.title truncate_single_line("#{item.project} - #{item_event.event_title}", :length => 100)
|
|
end
|
|
xml.link "rel" => "alternate", "href" => url
|
|
xml.id url
|
|
xml.updated item_event.event_datetime.xmlschema
|
|
author = item_event.event_author if item_event.respond_to?(:event_author)
|
|
xml.author do
|
|
xml.name(author)
|
|
xml.email(author.mail) if author.is_a?(User) && !author.mail.blank? && !author.pref.hide_mail
|
|
end if author
|
|
xml.content "type" => "html" do
|
|
xml.text! textilizable(item_event, :event_description, :only_path => false)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|