diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-29 22:27:43 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-29 22:27:43 +0000 |
commit | 840f18b1c7e462ee56307eb281a91bb7cbbe3ea4 (patch) | |
tree | b162b6c1f42a021e701a8c788b9adbd271b3f78c /app/views/common | |
parent | 088563db3e00020d691d79d18c01ac8b06ce92d3 (diff) | |
download | redmine-840f18b1c7e462ee56307eb281a91bb7cbbe3ea4.tar.gz redmine-840f18b1c7e462ee56307eb281a91bb7cbbe3ea4.zip |
Added Redmine::Info to store various information about the application.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@682 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/common')
-rw-r--r-- | app/views/common/feed.atom.rxml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/common/feed.atom.rxml b/app/views/common/feed.atom.rxml index fa00d754a..b5f733460 100644 --- a/app/views/common/feed.atom.rxml +++ b/app/views/common/feed.atom.rxml @@ -6,7 +6,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do 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}" } - xml.generator(:uri => Redmine::Info.url, :version => Redmine::VERSION) { xml.text! "#{Redmine::Info.name} #{Redmine::VERSION}" } + xml.generator(:uri => Redmine::Info.url, :version => Redmine::VERSION) { xml.text! Redmine::Info.versioned_name; } @items.each do |item| xml.entry do xml.title truncate(item.event_title, 100) |