Show More
@@ -171,6 +171,9 b' default_encoding = utf8' | |||||
171 |
|
171 | |||
172 | #clone_uri = {scheme}://{user}{pass}{netloc}{path} |
|
172 | #clone_uri = {scheme}://{user}{pass}{netloc}{path} | |
173 |
|
173 | |||
|
174 | ## issue tracker RhodeCode (leave blank to disable, absent for default) | |||
|
175 | #bugtracker = http://bitbucket.org/marcinkuzminski/rhodecode/issues | |||
|
176 | ||||
174 | ## issue tracking mapping for commits messages |
|
177 | ## issue tracking mapping for commits messages | |
175 | ## comment out issue_pat, issue_server, issue_prefix to enable |
|
178 | ## comment out issue_pat, issue_server, issue_prefix to enable | |
176 |
|
179 |
@@ -171,6 +171,9 b' default_encoding = utf8' | |||||
171 |
|
171 | |||
172 | #clone_uri = {scheme}://{user}{pass}{netloc}{path} |
|
172 | #clone_uri = {scheme}://{user}{pass}{netloc}{path} | |
173 |
|
173 | |||
|
174 | ## issue tracker for RhodeCode (leave blank to disable, absent for default) | |||
|
175 | #bugtracker = http://bitbucket.org/marcinkuzminski/rhodecode/issues | |||
|
176 | ||||
174 | ## issue tracking mapping for commits messages |
|
177 | ## issue tracking mapping for commits messages | |
175 | ## comment out issue_pat, issue_server, issue_prefix to enable |
|
178 | ## comment out issue_pat, issue_server, issue_prefix to enable | |
176 |
|
179 |
@@ -171,6 +171,9 b' default_encoding = utf8' | |||||
171 |
|
171 | |||
172 | #clone_uri = {scheme}://{user}{pass}{netloc}{path} |
|
172 | #clone_uri = {scheme}://{user}{pass}{netloc}{path} | |
173 |
|
173 | |||
|
174 | ## issue tracker for RhodeCode (leave blank to disable, absent for default) | |||
|
175 | #bugtracker = http://bitbucket.org/marcinkuzminski/rhodecode/issues | |||
|
176 | ||||
174 | ## issue tracking mapping for commits messages |
|
177 | ## issue tracking mapping for commits messages | |
175 | ## comment out issue_pat, issue_server, issue_prefix to enable |
|
178 | ## comment out issue_pat, issue_server, issue_prefix to enable | |
176 |
|
179 |
@@ -95,9 +95,6 b' def make_map(config):' | |||||
95 | action='repo_switcher') |
|
95 | action='repo_switcher') | |
96 | rmap.connect('branch_tag_switcher', '/branches-tags/{repo_name:.*?}', |
|
96 | rmap.connect('branch_tag_switcher', '/branches-tags/{repo_name:.*?}', | |
97 | controller='home', action='branch_tag_switcher') |
|
97 | controller='home', action='branch_tag_switcher') | |
98 | rmap.connect('bugtracker', |
|
|||
99 | "http://bitbucket.org/marcinkuzminski/rhodecode/issues", |
|
|||
100 | _static=True) |
|
|||
101 | rmap.connect('rst_help', |
|
98 | rmap.connect('rst_help', | |
102 | "http://docutils.sourceforge.net/docs/user/rst/quickref.html", |
|
99 | "http://docutils.sourceforge.net/docs/user/rst/quickref.html", | |
103 | _static=True) |
|
100 | _static=True) |
@@ -262,6 +262,7 b' class BaseController(WSGIController):' | |||||
262 | c.rhodecode_version = __version__ |
|
262 | c.rhodecode_version = __version__ | |
263 | c.rhodecode_instanceid = config.get('instance_id') |
|
263 | c.rhodecode_instanceid = config.get('instance_id') | |
264 | c.rhodecode_name = config.get('rhodecode_title') |
|
264 | c.rhodecode_name = config.get('rhodecode_title') | |
|
265 | c.rhodecode_bugtracker = config.get('bugtracker', 'http://bitbucket.org/marcinkuzminski/rhodecode/issues') | |||
265 | c.use_gravatar = str2bool(config.get('use_gravatar')) |
|
266 | c.use_gravatar = str2bool(config.get('use_gravatar')) | |
266 | c.ga_code = config.get('rhodecode_ga_code') |
|
267 | c.ga_code = config.get('rhodecode_ga_code') | |
267 | # Visual options |
|
268 | # Visual options |
@@ -49,7 +49,9 b'' | |||||
49 | %endif |
|
49 | %endif | |
50 | </a> |
|
50 | </a> | |
51 | © 2010-${h.datetime.today().year} by Marcin Kuzminski and others |
|
51 | © 2010-${h.datetime.today().year} by Marcin Kuzminski and others | |
52 | – <a href="${h.url('bugtracker')}">${_('Report a bug')}</a> |
|
52 | %if c.rhodecode_bugtracker: | |
|
53 | – <a href="${c.rhodecode_bugtracker}">${_('Report a bug')}</a> | |||
|
54 | %endif | |||
53 | </p> |
|
55 | </p> | |
54 | </div> |
|
56 | </div> | |
55 | </div> |
|
57 | </div> |
General Comments 0
You need to be logged in to leave comments.
Login now