Mercurial > hg > soundsoftware-site
annotate lib/redmine/.svn/text-base/info.rb.svn-base @ 500:d7326bb4f6f0 feature_142
Show styled member list in Members view for non-manager users; implement member editing partial in this view for manager users. Remove Members tab from Settings
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Wed, 13 Jul 2011 14:26:44 +0100 |
parents | 513646585e45 |
children |
rev | line source |
---|---|
Chris@0 | 1 module Redmine |
Chris@0 | 2 module Info |
Chris@0 | 3 class << self |
Chris@0 | 4 def app_name; 'Redmine' end |
Chris@0 | 5 def url; 'http://www.redmine.org/' end |
Chris@0 | 6 def help_url; 'http://www.redmine.org/guide' end |
Chris@0 | 7 def versioned_name; "#{app_name} #{Redmine::VERSION}" end |
Chris@0 | 8 |
Chris@0 | 9 # Creates the url string to a specific Redmine issue |
Chris@0 | 10 def issue(issue_id) |
Chris@0 | 11 url + 'issues/' + issue_id.to_s |
Chris@0 | 12 end |
Chris@0 | 13 end |
Chris@0 | 14 end |
Chris@0 | 15 end |