Mercurial > hg > soundsoftware-site
annotate .svn/pristine/0d/0d581e597497e894acf26342b5cf129e84f325db.svn-base @ 1327:287f201c2802 redmine-2.2-integration
Add italic
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Wed, 19 Jun 2013 20:56:22 +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 |