Show More
@@ -640,6 +640,9 b' class PullrequestsController(BaseRepoCon' | |||
|
640 | 640 | pull_request_id = safe_int(pull_request_id) |
|
641 | 641 | c.pull_request = PullRequest.get_or_404(pull_request_id) |
|
642 | 642 | |
|
643 | if hasattr(c, 'pylons_dispatch_info'): | |
|
644 | c.pylons_dispatch_info['extra']['pull_request'] = pull_request_id | |
|
645 | ||
|
643 | 646 | # pull_requests repo_name we opened it against |
|
644 | 647 | # ie. target_repo must match |
|
645 | 648 | if repo_name != c.pull_request.target_repo.repo_name: |
@@ -425,6 +425,12 b' class BaseController(WSGIController):' | |||
|
425 | 425 | _route_name = '.'.join([environ['pylons.routes_dict']['controller'], |
|
426 | 426 | environ['pylons.routes_dict']['action']]) |
|
427 | 427 | |
|
428 | c.pylons_dispatch_info = { | |
|
429 | 'controller': environ['pylons.routes_dict']['controller'], | |
|
430 | 'action': environ['pylons.routes_dict']['action'], | |
|
431 | 'extra': {'plugins': {}} | |
|
432 | } | |
|
433 | ||
|
428 | 434 | self.rc_config = SettingsModel().get_all_settings(cache=True) |
|
429 | 435 | self.ip_addr = get_ip_addr(environ) |
|
430 | 436 |
@@ -69,6 +69,7 b' from webhelpers2.number import format_by' | |||
|
69 | 69 | |
|
70 | 70 | from rhodecode.lib.annotate import annotate_highlight |
|
71 | 71 | from rhodecode.lib.action_parser import action_parser |
|
72 | from rhodecode.lib.ext_json import json | |
|
72 | 73 | from rhodecode.lib.utils import repo_name_slug, get_custom_lexer |
|
73 | 74 | from rhodecode.lib.utils2 import str2bool, safe_unicode, safe_str, \ |
|
74 | 75 | get_commit_safe, datetime_to_time, time_to_datetime, time_to_utcdatetime, \ |
General Comments 0
You need to be logged in to leave comments.
Login now