To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 0d / 0d581e597497e894acf26342b5cf129e84f325db.svn-base @ 912:5e80956cc792

History | View | Annotate | Download (399 Bytes)

1 909:cbb26bc654de Chris
module Redmine
2
  module Info
3
    class << self
4
      def app_name; 'Redmine' end
5
      def url; 'http://www.redmine.org/' end
6
      def help_url; 'http://www.redmine.org/guide' end
7
      def versioned_name; "#{app_name} #{Redmine::VERSION}" end
8
9
      # Creates the url string to a specific Redmine issue
10
      def issue(issue_id)
11
        url + 'issues/' + issue_id.to_s
12
      end
13
    end
14
  end
15
end