Show More
@@ -171,6 +171,9 b' default_encoding = utf8' | |||
|
171 | 171 | |
|
172 | 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 | 177 | ## issue tracking mapping for commits messages |
|
175 | 178 | ## comment out issue_pat, issue_server, issue_prefix to enable |
|
176 | 179 |
@@ -171,6 +171,9 b' default_encoding = utf8' | |||
|
171 | 171 | |
|
172 | 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 | 177 | ## issue tracking mapping for commits messages |
|
175 | 178 | ## comment out issue_pat, issue_server, issue_prefix to enable |
|
176 | 179 |
@@ -171,6 +171,9 b' default_encoding = utf8' | |||
|
171 | 171 | |
|
172 | 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 | 177 | ## issue tracking mapping for commits messages |
|
175 | 178 | ## comment out issue_pat, issue_server, issue_prefix to enable |
|
176 | 179 |
@@ -95,9 +95,6 b' def make_map(config):' | |||
|
95 | 95 | action='repo_switcher') |
|
96 | 96 | rmap.connect('branch_tag_switcher', '/branches-tags/{repo_name:.*?}', |
|
97 | 97 | controller='home', action='branch_tag_switcher') |
|
98 | rmap.connect('bugtracker', | |
|
99 | "http://bitbucket.org/marcinkuzminski/rhodecode/issues", | |
|
100 | _static=True) | |
|
101 | 98 | rmap.connect('rst_help', |
|
102 | 99 | "http://docutils.sourceforge.net/docs/user/rst/quickref.html", |
|
103 | 100 | _static=True) |
@@ -262,6 +262,7 b' class BaseController(WSGIController):' | |||
|
262 | 262 | c.rhodecode_version = __version__ |
|
263 | 263 | c.rhodecode_instanceid = config.get('instance_id') |
|
264 | 264 | c.rhodecode_name = config.get('rhodecode_title') |
|
265 | c.rhodecode_bugtracker = config.get('bugtracker', 'http://bitbucket.org/marcinkuzminski/rhodecode/issues') | |
|
265 | 266 | c.use_gravatar = str2bool(config.get('use_gravatar')) |
|
266 | 267 | c.ga_code = config.get('rhodecode_ga_code') |
|
267 | 268 | # Visual options |
@@ -49,7 +49,9 b'' | |||
|
49 | 49 | %endif |
|
50 | 50 | </a> |
|
51 | 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 | 55 | </p> |
|
54 | 56 | </div> |
|
55 | 57 | </div> |
General Comments 0
You need to be logged in to leave comments.
Login now