annotate .svn/pristine/0d/0d581e597497e894acf26342b5cf129e84f325db.svn-base @ 1480:75fd8eace091 issue_556

Close obsolete branch issue_556
author Chris Cannam
date Sat, 13 Jul 2013 15:26:30 +0100
parents cbb26bc654de
children
rev   line source
Chris@909 1 module Redmine
Chris@909 2 module Info
Chris@909 3 class << self
Chris@909 4 def app_name; 'Redmine' end
Chris@909 5 def url; 'http://www.redmine.org/' end
Chris@909 6 def help_url; 'http://www.redmine.org/guide' end
Chris@909 7 def versioned_name; "#{app_name} #{Redmine::VERSION}" end
Chris@909 8
Chris@909 9 # Creates the url string to a specific Redmine issue
Chris@909 10 def issue(issue_id)
Chris@909 11 url + 'issues/' + issue_id.to_s
Chris@909 12 end
Chris@909 13 end
Chris@909 14 end
Chris@909 15 end