Mercurial > hg > soundsoftware-site
view .svn/pristine/0d/0d581e597497e894acf26342b5cf129e84f325db.svn-base @ 1284:3ce07a57ce68 redmine-2.2-integration
Correctly adds the author info to the input fields; corrected toggle function.
| author | luisf <luis.figueira@eecs.qmul.ac.uk> |
|---|---|
| date | Tue, 14 May 2013 15:51:20 +0100 |
| parents | cbb26bc654de |
| children |
line wrap: on
line source
module Redmine module Info class << self def app_name; 'Redmine' end def url; 'http://www.redmine.org/' end def help_url; 'http://www.redmine.org/guide' end def versioned_name; "#{app_name} #{Redmine::VERSION}" end # Creates the url string to a specific Redmine issue def issue(issue_id) url + 'issues/' + issue_id.to_s end end end end
