Mercurial > hg > soundsoftware-site
annotate .svn/pristine/0d/0d581e597497e894acf26342b5cf129e84f325db.svn-base @ 1478:5ca1f4a47171 bibplugin_db_migrations
Close obsolete branch bibplugin_db_migrations
author | Chris Cannam |
---|---|
date | Fri, 30 Nov 2012 14:40:50 +0000 |
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 |