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 / .svn / text-base / info.rb.svn-base @ 441:cbce1fd3b1b7

History | View | Annotate | Download (399 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; '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