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 / lib / redmine / info.rb @ 442:753f1380d6bc

History | View | Annotate | Download (409 Bytes)

1
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; '/projects/soundsoftware-site/wiki/Help' 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