Show More
The requested changes are too big and content was truncated. Show full diff
@@ -1,1009 +1,1046 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2012-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2012-2017 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 | """ |
|
21 | """ | |
22 | pull requests controller for rhodecode for initializing pull requests |
|
22 | pull requests controller for rhodecode for initializing pull requests | |
23 | """ |
|
23 | """ | |
24 | import types |
|
24 | import types | |
25 |
|
25 | |||
26 | import peppercorn |
|
26 | import peppercorn | |
27 | import formencode |
|
27 | import formencode | |
28 | import logging |
|
28 | import logging | |
29 | import collections |
|
29 | import collections | |
30 |
|
30 | |||
31 | from webob.exc import HTTPNotFound, HTTPForbidden, HTTPBadRequest |
|
31 | from webob.exc import HTTPNotFound, HTTPForbidden, HTTPBadRequest | |
32 | from pylons import request, tmpl_context as c, url |
|
32 | from pylons import request, tmpl_context as c, url | |
33 | from pylons.controllers.util import redirect |
|
33 | from pylons.controllers.util import redirect | |
34 | from pylons.i18n.translation import _ |
|
34 | from pylons.i18n.translation import _ | |
35 | from pyramid.threadlocal import get_current_registry |
|
35 | from pyramid.threadlocal import get_current_registry | |
36 | from sqlalchemy.sql import func |
|
36 | from sqlalchemy.sql import func | |
37 | from sqlalchemy.sql.expression import or_ |
|
37 | from sqlalchemy.sql.expression import or_ | |
38 |
|
38 | |||
39 | from rhodecode import events |
|
39 | from rhodecode import events | |
40 | from rhodecode.lib import auth, diffs, helpers as h, codeblocks |
|
40 | from rhodecode.lib import auth, diffs, helpers as h, codeblocks | |
41 | from rhodecode.lib.ext_json import json |
|
41 | from rhodecode.lib.ext_json import json | |
42 | from rhodecode.lib.base import ( |
|
42 | from rhodecode.lib.base import ( | |
43 | BaseRepoController, render, vcs_operation_context) |
|
43 | BaseRepoController, render, vcs_operation_context) | |
44 | from rhodecode.lib.auth import ( |
|
44 | from rhodecode.lib.auth import ( | |
45 | LoginRequired, HasRepoPermissionAnyDecorator, NotAnonymous, |
|
45 | LoginRequired, HasRepoPermissionAnyDecorator, NotAnonymous, | |
46 | HasAcceptedRepoType, XHRRequired) |
|
46 | HasAcceptedRepoType, XHRRequired) | |
47 | from rhodecode.lib.channelstream import channelstream_request |
|
47 | from rhodecode.lib.channelstream import channelstream_request | |
48 | from rhodecode.lib.utils import jsonify |
|
48 | from rhodecode.lib.utils import jsonify | |
49 | from rhodecode.lib.utils2 import ( |
|
49 | from rhodecode.lib.utils2 import ( | |
50 | safe_int, safe_str, str2bool, safe_unicode) |
|
50 | safe_int, safe_str, str2bool, safe_unicode) | |
51 | from rhodecode.lib.vcs.backends.base import ( |
|
51 | from rhodecode.lib.vcs.backends.base import ( | |
52 | EmptyCommit, UpdateFailureReason, EmptyRepository) |
|
52 | EmptyCommit, UpdateFailureReason, EmptyRepository) | |
53 | from rhodecode.lib.vcs.exceptions import ( |
|
53 | from rhodecode.lib.vcs.exceptions import ( | |
54 | EmptyRepositoryError, CommitDoesNotExistError, RepositoryRequirementError, |
|
54 | EmptyRepositoryError, CommitDoesNotExistError, RepositoryRequirementError, | |
55 | NodeDoesNotExistError) |
|
55 | NodeDoesNotExistError) | |
56 |
|
56 | |||
57 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
57 | from rhodecode.model.changeset_status import ChangesetStatusModel | |
58 | from rhodecode.model.comment import CommentsModel |
|
58 | from rhodecode.model.comment import CommentsModel | |
59 | from rhodecode.model.db import (PullRequest, ChangesetStatus, ChangesetComment, |
|
59 | from rhodecode.model.db import (PullRequest, ChangesetStatus, ChangesetComment, | |
60 | Repository, PullRequestVersion) |
|
60 | Repository, PullRequestVersion) | |
61 | from rhodecode.model.forms import PullRequestForm |
|
61 | from rhodecode.model.forms import PullRequestForm | |
62 | from rhodecode.model.meta import Session |
|
62 | from rhodecode.model.meta import Session | |
63 | from rhodecode.model.pull_request import PullRequestModel, MergeCheck |
|
63 | from rhodecode.model.pull_request import PullRequestModel, MergeCheck | |
64 |
|
64 | |||
65 | log = logging.getLogger(__name__) |
|
65 | log = logging.getLogger(__name__) | |
66 |
|
66 | |||
67 |
|
67 | |||
68 | class PullrequestsController(BaseRepoController): |
|
68 | class PullrequestsController(BaseRepoController): | |
|
69 | ||||
69 | def __before__(self): |
|
70 | def __before__(self): | |
70 | super(PullrequestsController, self).__before__() |
|
71 | super(PullrequestsController, self).__before__() | |
71 |
|
72 | |||
72 | def _load_compare_data(self, pull_request, inline_comments): |
|
|||
73 | """ |
|
|||
74 | Load context data needed for generating compare diff |
|
|||
75 |
|
||||
76 | :param pull_request: object related to the request |
|
|||
77 | :param enable_comments: flag to determine if comments are included |
|
|||
78 | """ |
|
|||
79 | source_repo = pull_request.source_repo |
|
|||
80 | source_ref_id = pull_request.source_ref_parts.commit_id |
|
|||
81 |
|
||||
82 | target_repo = pull_request.target_repo |
|
|||
83 | target_ref_id = pull_request.target_ref_parts.commit_id |
|
|||
84 |
|
||||
85 | # despite opening commits for bookmarks/branches/tags, we always |
|
|||
86 | # convert this to rev to prevent changes after bookmark or branch change |
|
|||
87 | c.source_ref_type = 'rev' |
|
|||
88 | c.source_ref = source_ref_id |
|
|||
89 |
|
||||
90 | c.target_ref_type = 'rev' |
|
|||
91 | c.target_ref = target_ref_id |
|
|||
92 |
|
||||
93 | c.source_repo = source_repo |
|
|||
94 | c.target_repo = target_repo |
|
|||
95 |
|
||||
96 | c.fulldiff = bool(request.GET.get('fulldiff')) |
|
|||
97 |
|
||||
98 | # diff_limit is the old behavior, will cut off the whole diff |
|
|||
99 | # if the limit is applied otherwise will just hide the |
|
|||
100 | # big files from the front-end |
|
|||
101 | diff_limit = self.cut_off_limit_diff |
|
|||
102 | file_limit = self.cut_off_limit_file |
|
|||
103 |
|
||||
104 | pre_load = ["author", "branch", "date", "message"] |
|
|||
105 |
|
||||
106 | c.commit_ranges = [] |
|
|||
107 | source_commit = EmptyCommit() |
|
|||
108 | target_commit = EmptyCommit() |
|
|||
109 | c.missing_requirements = False |
|
|||
110 | try: |
|
|||
111 | c.commit_ranges = [ |
|
|||
112 | source_repo.get_commit(commit_id=rev, pre_load=pre_load) |
|
|||
113 | for rev in pull_request.revisions] |
|
|||
114 |
|
||||
115 | c.statuses = source_repo.statuses( |
|
|||
116 | [x.raw_id for x in c.commit_ranges]) |
|
|||
117 |
|
||||
118 | target_commit = source_repo.get_commit( |
|
|||
119 | commit_id=safe_str(target_ref_id)) |
|
|||
120 | source_commit = source_repo.get_commit( |
|
|||
121 | commit_id=safe_str(source_ref_id)) |
|
|||
122 | except RepositoryRequirementError: |
|
|||
123 | c.missing_requirements = True |
|
|||
124 |
|
||||
125 | # auto collapse if we have more than limit |
|
|||
126 | collapse_limit = diffs.DiffProcessor._collapse_commits_over |
|
|||
127 | c.collapse_all_commits = len(c.commit_ranges) > collapse_limit |
|
|||
128 |
|
||||
129 | c.changes = {} |
|
|||
130 | c.missing_commits = False |
|
|||
131 | if (c.missing_requirements or |
|
|||
132 | isinstance(source_commit, EmptyCommit) or |
|
|||
133 | source_commit == target_commit): |
|
|||
134 | _parsed = [] |
|
|||
135 | c.missing_commits = True |
|
|||
136 | else: |
|
|||
137 | vcs_diff = PullRequestModel().get_diff(pull_request) |
|
|||
138 | diff_processor = diffs.DiffProcessor( |
|
|||
139 | vcs_diff, format='newdiff', diff_limit=diff_limit, |
|
|||
140 | file_limit=file_limit, show_full_diff=c.fulldiff) |
|
|||
141 |
|
||||
142 | _parsed = diff_processor.prepare() |
|
|||
143 | c.limited_diff = isinstance(_parsed, diffs.LimitedDiffContainer) |
|
|||
144 |
|
||||
145 | included_files = {} |
|
|||
146 | for f in _parsed: |
|
|||
147 | included_files[f['filename']] = f['stats'] |
|
|||
148 |
|
||||
149 | c.deleted_files = [fname for fname in inline_comments if |
|
|||
150 | fname not in included_files] |
|
|||
151 |
|
||||
152 | c.deleted_files_comments = collections.defaultdict(dict) |
|
|||
153 | for fname, per_line_comments in inline_comments.items(): |
|
|||
154 | if fname in c.deleted_files: |
|
|||
155 | c.deleted_files_comments[fname]['stats'] = 0 |
|
|||
156 | c.deleted_files_comments[fname]['comments'] = list() |
|
|||
157 | for lno, comments in per_line_comments.items(): |
|
|||
158 | c.deleted_files_comments[fname]['comments'].extend(comments) |
|
|||
159 |
|
||||
160 | def _node_getter(commit): |
|
|||
161 | def get_node(fname): |
|
|||
162 | try: |
|
|||
163 | return commit.get_node(fname) |
|
|||
164 | except NodeDoesNotExistError: |
|
|||
165 | return None |
|
|||
166 | return get_node |
|
|||
167 |
|
||||
168 | c.diffset = codeblocks.DiffSet( |
|
|||
169 | repo_name=c.repo_name, |
|
|||
170 | source_repo_name=c.source_repo.repo_name, |
|
|||
171 | source_node_getter=_node_getter(target_commit), |
|
|||
172 | target_node_getter=_node_getter(source_commit), |
|
|||
173 | comments=inline_comments |
|
|||
174 | ).render_patchset(_parsed, target_commit.raw_id, source_commit.raw_id) |
|
|||
175 |
|
||||
176 | def _extract_ordering(self, request): |
|
73 | def _extract_ordering(self, request): | |
177 | column_index = safe_int(request.GET.get('order[0][column]')) |
|
74 | column_index = safe_int(request.GET.get('order[0][column]')) | |
178 | order_dir = request.GET.get('order[0][dir]', 'desc') |
|
75 | order_dir = request.GET.get('order[0][dir]', 'desc') | |
179 | order_by = request.GET.get( |
|
76 | order_by = request.GET.get( | |
180 | 'columns[%s][data][sort]' % column_index, 'name_raw') |
|
77 | 'columns[%s][data][sort]' % column_index, 'name_raw') | |
181 | return order_by, order_dir |
|
78 | return order_by, order_dir | |
182 |
|
79 | |||
183 | @LoginRequired() |
|
80 | @LoginRequired() | |
184 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
81 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | |
185 | 'repository.admin') |
|
82 | 'repository.admin') | |
186 | @HasAcceptedRepoType('git', 'hg') |
|
83 | @HasAcceptedRepoType('git', 'hg') | |
187 | def show_all(self, repo_name): |
|
84 | def show_all(self, repo_name): | |
188 | # filter types |
|
85 | # filter types | |
189 | c.active = 'open' |
|
86 | c.active = 'open' | |
190 | c.source = str2bool(request.GET.get('source')) |
|
87 | c.source = str2bool(request.GET.get('source')) | |
191 | c.closed = str2bool(request.GET.get('closed')) |
|
88 | c.closed = str2bool(request.GET.get('closed')) | |
192 | c.my = str2bool(request.GET.get('my')) |
|
89 | c.my = str2bool(request.GET.get('my')) | |
193 | c.awaiting_review = str2bool(request.GET.get('awaiting_review')) |
|
90 | c.awaiting_review = str2bool(request.GET.get('awaiting_review')) | |
194 | c.awaiting_my_review = str2bool(request.GET.get('awaiting_my_review')) |
|
91 | c.awaiting_my_review = str2bool(request.GET.get('awaiting_my_review')) | |
195 | c.repo_name = repo_name |
|
92 | c.repo_name = repo_name | |
196 |
|
93 | |||
197 | opened_by = None |
|
94 | opened_by = None | |
198 | if c.my: |
|
95 | if c.my: | |
199 | c.active = 'my' |
|
96 | c.active = 'my' | |
200 | opened_by = [c.rhodecode_user.user_id] |
|
97 | opened_by = [c.rhodecode_user.user_id] | |
201 |
|
98 | |||
202 | statuses = [PullRequest.STATUS_NEW, PullRequest.STATUS_OPEN] |
|
99 | statuses = [PullRequest.STATUS_NEW, PullRequest.STATUS_OPEN] | |
203 | if c.closed: |
|
100 | if c.closed: | |
204 | c.active = 'closed' |
|
101 | c.active = 'closed' | |
205 | statuses = [PullRequest.STATUS_CLOSED] |
|
102 | statuses = [PullRequest.STATUS_CLOSED] | |
206 |
|
103 | |||
207 | if c.awaiting_review and not c.source: |
|
104 | if c.awaiting_review and not c.source: | |
208 | c.active = 'awaiting' |
|
105 | c.active = 'awaiting' | |
209 | if c.source and not c.awaiting_review: |
|
106 | if c.source and not c.awaiting_review: | |
210 | c.active = 'source' |
|
107 | c.active = 'source' | |
211 | if c.awaiting_my_review: |
|
108 | if c.awaiting_my_review: | |
212 | c.active = 'awaiting_my' |
|
109 | c.active = 'awaiting_my' | |
213 |
|
110 | |||
214 | data = self._get_pull_requests_list( |
|
111 | data = self._get_pull_requests_list( | |
215 | repo_name=repo_name, opened_by=opened_by, statuses=statuses) |
|
112 | repo_name=repo_name, opened_by=opened_by, statuses=statuses) | |
216 | if not request.is_xhr: |
|
113 | if not request.is_xhr: | |
217 | c.data = json.dumps(data['data']) |
|
114 | c.data = json.dumps(data['data']) | |
218 | c.records_total = data['recordsTotal'] |
|
115 | c.records_total = data['recordsTotal'] | |
219 | return render('/pullrequests/pullrequests.mako') |
|
116 | return render('/pullrequests/pullrequests.mako') | |
220 | else: |
|
117 | else: | |
221 | return json.dumps(data) |
|
118 | return json.dumps(data) | |
222 |
|
119 | |||
223 | def _get_pull_requests_list(self, repo_name, opened_by, statuses): |
|
120 | def _get_pull_requests_list(self, repo_name, opened_by, statuses): | |
224 | # pagination |
|
121 | # pagination | |
225 | start = safe_int(request.GET.get('start'), 0) |
|
122 | start = safe_int(request.GET.get('start'), 0) | |
226 | length = safe_int(request.GET.get('length'), c.visual.dashboard_items) |
|
123 | length = safe_int(request.GET.get('length'), c.visual.dashboard_items) | |
227 | order_by, order_dir = self._extract_ordering(request) |
|
124 | order_by, order_dir = self._extract_ordering(request) | |
228 |
|
125 | |||
229 | if c.awaiting_review: |
|
126 | if c.awaiting_review: | |
230 | pull_requests = PullRequestModel().get_awaiting_review( |
|
127 | pull_requests = PullRequestModel().get_awaiting_review( | |
231 | repo_name, source=c.source, opened_by=opened_by, |
|
128 | repo_name, source=c.source, opened_by=opened_by, | |
232 | statuses=statuses, offset=start, length=length, |
|
129 | statuses=statuses, offset=start, length=length, | |
233 | order_by=order_by, order_dir=order_dir) |
|
130 | order_by=order_by, order_dir=order_dir) | |
234 | pull_requests_total_count = PullRequestModel( |
|
131 | pull_requests_total_count = PullRequestModel( | |
235 | ).count_awaiting_review( |
|
132 | ).count_awaiting_review( | |
236 | repo_name, source=c.source, statuses=statuses, |
|
133 | repo_name, source=c.source, statuses=statuses, | |
237 | opened_by=opened_by) |
|
134 | opened_by=opened_by) | |
238 | elif c.awaiting_my_review: |
|
135 | elif c.awaiting_my_review: | |
239 | pull_requests = PullRequestModel().get_awaiting_my_review( |
|
136 | pull_requests = PullRequestModel().get_awaiting_my_review( | |
240 | repo_name, source=c.source, opened_by=opened_by, |
|
137 | repo_name, source=c.source, opened_by=opened_by, | |
241 | user_id=c.rhodecode_user.user_id, statuses=statuses, |
|
138 | user_id=c.rhodecode_user.user_id, statuses=statuses, | |
242 | offset=start, length=length, order_by=order_by, |
|
139 | offset=start, length=length, order_by=order_by, | |
243 | order_dir=order_dir) |
|
140 | order_dir=order_dir) | |
244 | pull_requests_total_count = PullRequestModel( |
|
141 | pull_requests_total_count = PullRequestModel( | |
245 | ).count_awaiting_my_review( |
|
142 | ).count_awaiting_my_review( | |
246 | repo_name, source=c.source, user_id=c.rhodecode_user.user_id, |
|
143 | repo_name, source=c.source, user_id=c.rhodecode_user.user_id, | |
247 | statuses=statuses, opened_by=opened_by) |
|
144 | statuses=statuses, opened_by=opened_by) | |
248 | else: |
|
145 | else: | |
249 | pull_requests = PullRequestModel().get_all( |
|
146 | pull_requests = PullRequestModel().get_all( | |
250 | repo_name, source=c.source, opened_by=opened_by, |
|
147 | repo_name, source=c.source, opened_by=opened_by, | |
251 | statuses=statuses, offset=start, length=length, |
|
148 | statuses=statuses, offset=start, length=length, | |
252 | order_by=order_by, order_dir=order_dir) |
|
149 | order_by=order_by, order_dir=order_dir) | |
253 | pull_requests_total_count = PullRequestModel().count_all( |
|
150 | pull_requests_total_count = PullRequestModel().count_all( | |
254 | repo_name, source=c.source, statuses=statuses, |
|
151 | repo_name, source=c.source, statuses=statuses, | |
255 | opened_by=opened_by) |
|
152 | opened_by=opened_by) | |
256 |
|
153 | |||
257 | from rhodecode.lib.utils import PartialRenderer |
|
154 | from rhodecode.lib.utils import PartialRenderer | |
258 | _render = PartialRenderer('data_table/_dt_elements.mako') |
|
155 | _render = PartialRenderer('data_table/_dt_elements.mako') | |
259 | data = [] |
|
156 | data = [] | |
260 | for pr in pull_requests: |
|
157 | for pr in pull_requests: | |
261 | comments = CommentsModel().get_all_comments( |
|
158 | comments = CommentsModel().get_all_comments( | |
262 | c.rhodecode_db_repo.repo_id, pull_request=pr) |
|
159 | c.rhodecode_db_repo.repo_id, pull_request=pr) | |
263 |
|
160 | |||
264 | data.append({ |
|
161 | data.append({ | |
265 | 'name': _render('pullrequest_name', |
|
162 | 'name': _render('pullrequest_name', | |
266 | pr.pull_request_id, pr.target_repo.repo_name), |
|
163 | pr.pull_request_id, pr.target_repo.repo_name), | |
267 | 'name_raw': pr.pull_request_id, |
|
164 | 'name_raw': pr.pull_request_id, | |
268 | 'status': _render('pullrequest_status', |
|
165 | 'status': _render('pullrequest_status', | |
269 | pr.calculated_review_status()), |
|
166 | pr.calculated_review_status()), | |
270 | 'title': _render( |
|
167 | 'title': _render( | |
271 | 'pullrequest_title', pr.title, pr.description), |
|
168 | 'pullrequest_title', pr.title, pr.description), | |
272 | 'description': h.escape(pr.description), |
|
169 | 'description': h.escape(pr.description), | |
273 | 'updated_on': _render('pullrequest_updated_on', |
|
170 | 'updated_on': _render('pullrequest_updated_on', | |
274 | h.datetime_to_time(pr.updated_on)), |
|
171 | h.datetime_to_time(pr.updated_on)), | |
275 | 'updated_on_raw': h.datetime_to_time(pr.updated_on), |
|
172 | 'updated_on_raw': h.datetime_to_time(pr.updated_on), | |
276 | 'created_on': _render('pullrequest_updated_on', |
|
173 | 'created_on': _render('pullrequest_updated_on', | |
277 | h.datetime_to_time(pr.created_on)), |
|
174 | h.datetime_to_time(pr.created_on)), | |
278 | 'created_on_raw': h.datetime_to_time(pr.created_on), |
|
175 | 'created_on_raw': h.datetime_to_time(pr.created_on), | |
279 | 'author': _render('pullrequest_author', |
|
176 | 'author': _render('pullrequest_author', | |
280 | pr.author.full_contact, ), |
|
177 | pr.author.full_contact, ), | |
281 | 'author_raw': pr.author.full_name, |
|
178 | 'author_raw': pr.author.full_name, | |
282 | 'comments': _render('pullrequest_comments', len(comments)), |
|
179 | 'comments': _render('pullrequest_comments', len(comments)), | |
283 | 'comments_raw': len(comments), |
|
180 | 'comments_raw': len(comments), | |
284 | 'closed': pr.is_closed(), |
|
181 | 'closed': pr.is_closed(), | |
285 | }) |
|
182 | }) | |
286 | # json used to render the grid |
|
183 | # json used to render the grid | |
287 | data = ({ |
|
184 | data = ({ | |
288 | 'data': data, |
|
185 | 'data': data, | |
289 | 'recordsTotal': pull_requests_total_count, |
|
186 | 'recordsTotal': pull_requests_total_count, | |
290 | 'recordsFiltered': pull_requests_total_count, |
|
187 | 'recordsFiltered': pull_requests_total_count, | |
291 | }) |
|
188 | }) | |
292 | return data |
|
189 | return data | |
293 |
|
190 | |||
294 | @LoginRequired() |
|
191 | @LoginRequired() | |
295 | @NotAnonymous() |
|
192 | @NotAnonymous() | |
296 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
193 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | |
297 | 'repository.admin') |
|
194 | 'repository.admin') | |
298 | @HasAcceptedRepoType('git', 'hg') |
|
195 | @HasAcceptedRepoType('git', 'hg') | |
299 | def index(self): |
|
196 | def index(self): | |
300 | source_repo = c.rhodecode_db_repo |
|
197 | source_repo = c.rhodecode_db_repo | |
301 |
|
198 | |||
302 | try: |
|
199 | try: | |
303 | source_repo.scm_instance().get_commit() |
|
200 | source_repo.scm_instance().get_commit() | |
304 | except EmptyRepositoryError: |
|
201 | except EmptyRepositoryError: | |
305 | h.flash(h.literal(_('There are no commits yet')), |
|
202 | h.flash(h.literal(_('There are no commits yet')), | |
306 | category='warning') |
|
203 | category='warning') | |
307 | redirect(url('summary_home', repo_name=source_repo.repo_name)) |
|
204 | redirect(url('summary_home', repo_name=source_repo.repo_name)) | |
308 |
|
205 | |||
309 | commit_id = request.GET.get('commit') |
|
206 | commit_id = request.GET.get('commit') | |
310 | branch_ref = request.GET.get('branch') |
|
207 | branch_ref = request.GET.get('branch') | |
311 | bookmark_ref = request.GET.get('bookmark') |
|
208 | bookmark_ref = request.GET.get('bookmark') | |
312 |
|
209 | |||
313 | try: |
|
210 | try: | |
314 | source_repo_data = PullRequestModel().generate_repo_data( |
|
211 | source_repo_data = PullRequestModel().generate_repo_data( | |
315 | source_repo, commit_id=commit_id, |
|
212 | source_repo, commit_id=commit_id, | |
316 | branch=branch_ref, bookmark=bookmark_ref) |
|
213 | branch=branch_ref, bookmark=bookmark_ref) | |
317 | except CommitDoesNotExistError as e: |
|
214 | except CommitDoesNotExistError as e: | |
318 | log.exception(e) |
|
215 | log.exception(e) | |
319 | h.flash(_('Commit does not exist'), 'error') |
|
216 | h.flash(_('Commit does not exist'), 'error') | |
320 | redirect(url('pullrequest_home', repo_name=source_repo.repo_name)) |
|
217 | redirect(url('pullrequest_home', repo_name=source_repo.repo_name)) | |
321 |
|
218 | |||
322 | default_target_repo = source_repo |
|
219 | default_target_repo = source_repo | |
323 |
|
220 | |||
324 | if source_repo.parent: |
|
221 | if source_repo.parent: | |
325 | parent_vcs_obj = source_repo.parent.scm_instance() |
|
222 | parent_vcs_obj = source_repo.parent.scm_instance() | |
326 | if parent_vcs_obj and not parent_vcs_obj.is_empty(): |
|
223 | if parent_vcs_obj and not parent_vcs_obj.is_empty(): | |
327 | # change default if we have a parent repo |
|
224 | # change default if we have a parent repo | |
328 | default_target_repo = source_repo.parent |
|
225 | default_target_repo = source_repo.parent | |
329 |
|
226 | |||
330 | target_repo_data = PullRequestModel().generate_repo_data( |
|
227 | target_repo_data = PullRequestModel().generate_repo_data( | |
331 | default_target_repo) |
|
228 | default_target_repo) | |
332 |
|
229 | |||
333 | selected_source_ref = source_repo_data['refs']['selected_ref'] |
|
230 | selected_source_ref = source_repo_data['refs']['selected_ref'] | |
334 |
|
231 | |||
335 | title_source_ref = selected_source_ref.split(':', 2)[1] |
|
232 | title_source_ref = selected_source_ref.split(':', 2)[1] | |
336 | c.default_title = PullRequestModel().generate_pullrequest_title( |
|
233 | c.default_title = PullRequestModel().generate_pullrequest_title( | |
337 | source=source_repo.repo_name, |
|
234 | source=source_repo.repo_name, | |
338 | source_ref=title_source_ref, |
|
235 | source_ref=title_source_ref, | |
339 | target=default_target_repo.repo_name |
|
236 | target=default_target_repo.repo_name | |
340 | ) |
|
237 | ) | |
341 |
|
238 | |||
342 | c.default_repo_data = { |
|
239 | c.default_repo_data = { | |
343 | 'source_repo_name': source_repo.repo_name, |
|
240 | 'source_repo_name': source_repo.repo_name, | |
344 | 'source_refs_json': json.dumps(source_repo_data), |
|
241 | 'source_refs_json': json.dumps(source_repo_data), | |
345 | 'target_repo_name': default_target_repo.repo_name, |
|
242 | 'target_repo_name': default_target_repo.repo_name, | |
346 | 'target_refs_json': json.dumps(target_repo_data), |
|
243 | 'target_refs_json': json.dumps(target_repo_data), | |
347 | } |
|
244 | } | |
348 | c.default_source_ref = selected_source_ref |
|
245 | c.default_source_ref = selected_source_ref | |
349 |
|
246 | |||
350 | return render('/pullrequests/pullrequest.mako') |
|
247 | return render('/pullrequests/pullrequest.mako') | |
351 |
|
248 | |||
352 | @LoginRequired() |
|
249 | @LoginRequired() | |
353 | @NotAnonymous() |
|
250 | @NotAnonymous() | |
354 | @XHRRequired() |
|
251 | @XHRRequired() | |
355 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
252 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | |
356 | 'repository.admin') |
|
253 | 'repository.admin') | |
357 | @jsonify |
|
254 | @jsonify | |
358 | def get_repo_refs(self, repo_name, target_repo_name): |
|
255 | def get_repo_refs(self, repo_name, target_repo_name): | |
359 | repo = Repository.get_by_repo_name(target_repo_name) |
|
256 | repo = Repository.get_by_repo_name(target_repo_name) | |
360 | if not repo: |
|
257 | if not repo: | |
361 | raise HTTPNotFound |
|
258 | raise HTTPNotFound | |
362 | return PullRequestModel().generate_repo_data(repo) |
|
259 | return PullRequestModel().generate_repo_data(repo) | |
363 |
|
260 | |||
364 | @LoginRequired() |
|
261 | @LoginRequired() | |
365 | @NotAnonymous() |
|
262 | @NotAnonymous() | |
366 | @XHRRequired() |
|
263 | @XHRRequired() | |
367 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
264 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | |
368 | 'repository.admin') |
|
265 | 'repository.admin') | |
369 | @jsonify |
|
266 | @jsonify | |
370 | def get_repo_destinations(self, repo_name): |
|
267 | def get_repo_destinations(self, repo_name): | |
371 | repo = Repository.get_by_repo_name(repo_name) |
|
268 | repo = Repository.get_by_repo_name(repo_name) | |
372 | if not repo: |
|
269 | if not repo: | |
373 | raise HTTPNotFound |
|
270 | raise HTTPNotFound | |
374 | filter_query = request.GET.get('query') |
|
271 | filter_query = request.GET.get('query') | |
375 |
|
272 | |||
376 | query = Repository.query() \ |
|
273 | query = Repository.query() \ | |
377 | .order_by(func.length(Repository.repo_name)) \ |
|
274 | .order_by(func.length(Repository.repo_name)) \ | |
378 | .filter(or_( |
|
275 | .filter(or_( | |
379 | Repository.repo_name == repo.repo_name, |
|
276 | Repository.repo_name == repo.repo_name, | |
380 | Repository.fork_id == repo.repo_id)) |
|
277 | Repository.fork_id == repo.repo_id)) | |
381 |
|
278 | |||
382 | if filter_query: |
|
279 | if filter_query: | |
383 | ilike_expression = u'%{}%'.format(safe_unicode(filter_query)) |
|
280 | ilike_expression = u'%{}%'.format(safe_unicode(filter_query)) | |
384 | query = query.filter( |
|
281 | query = query.filter( | |
385 | Repository.repo_name.ilike(ilike_expression)) |
|
282 | Repository.repo_name.ilike(ilike_expression)) | |
386 |
|
283 | |||
387 | add_parent = False |
|
284 | add_parent = False | |
388 | if repo.parent: |
|
285 | if repo.parent: | |
389 | if filter_query in repo.parent.repo_name: |
|
286 | if filter_query in repo.parent.repo_name: | |
390 | parent_vcs_obj = repo.parent.scm_instance() |
|
287 | parent_vcs_obj = repo.parent.scm_instance() | |
391 | if parent_vcs_obj and not parent_vcs_obj.is_empty(): |
|
288 | if parent_vcs_obj and not parent_vcs_obj.is_empty(): | |
392 | add_parent = True |
|
289 | add_parent = True | |
393 |
|
290 | |||
394 | limit = 20 - 1 if add_parent else 20 |
|
291 | limit = 20 - 1 if add_parent else 20 | |
395 | all_repos = query.limit(limit).all() |
|
292 | all_repos = query.limit(limit).all() | |
396 | if add_parent: |
|
293 | if add_parent: | |
397 | all_repos += [repo.parent] |
|
294 | all_repos += [repo.parent] | |
398 |
|
295 | |||
399 | repos = [] |
|
296 | repos = [] | |
400 | for obj in self.scm_model.get_repos(all_repos): |
|
297 | for obj in self.scm_model.get_repos(all_repos): | |
401 | repos.append({ |
|
298 | repos.append({ | |
402 | 'id': obj['name'], |
|
299 | 'id': obj['name'], | |
403 | 'text': obj['name'], |
|
300 | 'text': obj['name'], | |
404 | 'type': 'repo', |
|
301 | 'type': 'repo', | |
405 | 'obj': obj['dbrepo'] |
|
302 | 'obj': obj['dbrepo'] | |
406 | }) |
|
303 | }) | |
407 |
|
304 | |||
408 | data = { |
|
305 | data = { | |
409 | 'more': False, |
|
306 | 'more': False, | |
410 | 'results': [{ |
|
307 | 'results': [{ | |
411 | 'text': _('Repositories'), |
|
308 | 'text': _('Repositories'), | |
412 | 'children': repos |
|
309 | 'children': repos | |
413 | }] if repos else [] |
|
310 | }] if repos else [] | |
414 | } |
|
311 | } | |
415 | return data |
|
312 | return data | |
416 |
|
313 | |||
417 | @LoginRequired() |
|
314 | @LoginRequired() | |
418 | @NotAnonymous() |
|
315 | @NotAnonymous() | |
419 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
316 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | |
420 | 'repository.admin') |
|
317 | 'repository.admin') | |
421 | @HasAcceptedRepoType('git', 'hg') |
|
318 | @HasAcceptedRepoType('git', 'hg') | |
422 | @auth.CSRFRequired() |
|
319 | @auth.CSRFRequired() | |
423 | def create(self, repo_name): |
|
320 | def create(self, repo_name): | |
424 | repo = Repository.get_by_repo_name(repo_name) |
|
321 | repo = Repository.get_by_repo_name(repo_name) | |
425 | if not repo: |
|
322 | if not repo: | |
426 | raise HTTPNotFound |
|
323 | raise HTTPNotFound | |
427 |
|
324 | |||
428 | controls = peppercorn.parse(request.POST.items()) |
|
325 | controls = peppercorn.parse(request.POST.items()) | |
429 |
|
326 | |||
430 | try: |
|
327 | try: | |
431 | _form = PullRequestForm(repo.repo_id)().to_python(controls) |
|
328 | _form = PullRequestForm(repo.repo_id)().to_python(controls) | |
432 | except formencode.Invalid as errors: |
|
329 | except formencode.Invalid as errors: | |
433 | if errors.error_dict.get('revisions'): |
|
330 | if errors.error_dict.get('revisions'): | |
434 | msg = 'Revisions: %s' % errors.error_dict['revisions'] |
|
331 | msg = 'Revisions: %s' % errors.error_dict['revisions'] | |
435 | elif errors.error_dict.get('pullrequest_title'): |
|
332 | elif errors.error_dict.get('pullrequest_title'): | |
436 | msg = _('Pull request requires a title with min. 3 chars') |
|
333 | msg = _('Pull request requires a title with min. 3 chars') | |
437 | else: |
|
334 | else: | |
438 | msg = _('Error creating pull request: {}').format(errors) |
|
335 | msg = _('Error creating pull request: {}').format(errors) | |
439 | log.exception(msg) |
|
336 | log.exception(msg) | |
440 | h.flash(msg, 'error') |
|
337 | h.flash(msg, 'error') | |
441 |
|
338 | |||
442 | # would rather just go back to form ... |
|
339 | # would rather just go back to form ... | |
443 | return redirect(url('pullrequest_home', repo_name=repo_name)) |
|
340 | return redirect(url('pullrequest_home', repo_name=repo_name)) | |
444 |
|
341 | |||
445 | source_repo = _form['source_repo'] |
|
342 | source_repo = _form['source_repo'] | |
446 | source_ref = _form['source_ref'] |
|
343 | source_ref = _form['source_ref'] | |
447 | target_repo = _form['target_repo'] |
|
344 | target_repo = _form['target_repo'] | |
448 | target_ref = _form['target_ref'] |
|
345 | target_ref = _form['target_ref'] | |
449 | commit_ids = _form['revisions'][::-1] |
|
346 | commit_ids = _form['revisions'][::-1] | |
450 | reviewers = [ |
|
347 | reviewers = [ | |
451 | (r['user_id'], r['reasons']) for r in _form['review_members']] |
|
348 | (r['user_id'], r['reasons']) for r in _form['review_members']] | |
452 |
|
349 | |||
453 | # find the ancestor for this pr |
|
350 | # find the ancestor for this pr | |
454 | source_db_repo = Repository.get_by_repo_name(_form['source_repo']) |
|
351 | source_db_repo = Repository.get_by_repo_name(_form['source_repo']) | |
455 | target_db_repo = Repository.get_by_repo_name(_form['target_repo']) |
|
352 | target_db_repo = Repository.get_by_repo_name(_form['target_repo']) | |
456 |
|
353 | |||
457 | source_scm = source_db_repo.scm_instance() |
|
354 | source_scm = source_db_repo.scm_instance() | |
458 | target_scm = target_db_repo.scm_instance() |
|
355 | target_scm = target_db_repo.scm_instance() | |
459 |
|
356 | |||
460 | source_commit = source_scm.get_commit(source_ref.split(':')[-1]) |
|
357 | source_commit = source_scm.get_commit(source_ref.split(':')[-1]) | |
461 | target_commit = target_scm.get_commit(target_ref.split(':')[-1]) |
|
358 | target_commit = target_scm.get_commit(target_ref.split(':')[-1]) | |
462 |
|
359 | |||
463 | ancestor = source_scm.get_common_ancestor( |
|
360 | ancestor = source_scm.get_common_ancestor( | |
464 | source_commit.raw_id, target_commit.raw_id, target_scm) |
|
361 | source_commit.raw_id, target_commit.raw_id, target_scm) | |
465 |
|
362 | |||
466 | target_ref_type, target_ref_name, __ = _form['target_ref'].split(':') |
|
363 | target_ref_type, target_ref_name, __ = _form['target_ref'].split(':') | |
467 | target_ref = ':'.join((target_ref_type, target_ref_name, ancestor)) |
|
364 | target_ref = ':'.join((target_ref_type, target_ref_name, ancestor)) | |
468 |
|
365 | |||
469 | pullrequest_title = _form['pullrequest_title'] |
|
366 | pullrequest_title = _form['pullrequest_title'] | |
470 | title_source_ref = source_ref.split(':', 2)[1] |
|
367 | title_source_ref = source_ref.split(':', 2)[1] | |
471 | if not pullrequest_title: |
|
368 | if not pullrequest_title: | |
472 | pullrequest_title = PullRequestModel().generate_pullrequest_title( |
|
369 | pullrequest_title = PullRequestModel().generate_pullrequest_title( | |
473 | source=source_repo, |
|
370 | source=source_repo, | |
474 | source_ref=title_source_ref, |
|
371 | source_ref=title_source_ref, | |
475 | target=target_repo |
|
372 | target=target_repo | |
476 | ) |
|
373 | ) | |
477 |
|
374 | |||
478 | description = _form['pullrequest_desc'] |
|
375 | description = _form['pullrequest_desc'] | |
479 | try: |
|
376 | try: | |
480 | pull_request = PullRequestModel().create( |
|
377 | pull_request = PullRequestModel().create( | |
481 | c.rhodecode_user.user_id, source_repo, source_ref, target_repo, |
|
378 | c.rhodecode_user.user_id, source_repo, source_ref, target_repo, | |
482 | target_ref, commit_ids, reviewers, pullrequest_title, |
|
379 | target_ref, commit_ids, reviewers, pullrequest_title, | |
483 | description |
|
380 | description | |
484 | ) |
|
381 | ) | |
485 | Session().commit() |
|
382 | Session().commit() | |
486 | h.flash(_('Successfully opened new pull request'), |
|
383 | h.flash(_('Successfully opened new pull request'), | |
487 | category='success') |
|
384 | category='success') | |
488 | except Exception as e: |
|
385 | except Exception as e: | |
489 | msg = _('Error occurred during sending pull request') |
|
386 | msg = _('Error occurred during sending pull request') | |
490 | log.exception(msg) |
|
387 | log.exception(msg) | |
491 | h.flash(msg, category='error') |
|
388 | h.flash(msg, category='error') | |
492 | return redirect(url('pullrequest_home', repo_name=repo_name)) |
|
389 | return redirect(url('pullrequest_home', repo_name=repo_name)) | |
493 |
|
390 | |||
494 | return redirect(url('pullrequest_show', repo_name=target_repo, |
|
391 | return redirect(url('pullrequest_show', repo_name=target_repo, | |
495 | pull_request_id=pull_request.pull_request_id)) |
|
392 | pull_request_id=pull_request.pull_request_id)) | |
496 |
|
393 | |||
497 | @LoginRequired() |
|
394 | @LoginRequired() | |
498 | @NotAnonymous() |
|
395 | @NotAnonymous() | |
499 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
396 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | |
500 | 'repository.admin') |
|
397 | 'repository.admin') | |
501 | @auth.CSRFRequired() |
|
398 | @auth.CSRFRequired() | |
502 | @jsonify |
|
399 | @jsonify | |
503 | def update(self, repo_name, pull_request_id): |
|
400 | def update(self, repo_name, pull_request_id): | |
504 | pull_request_id = safe_int(pull_request_id) |
|
401 | pull_request_id = safe_int(pull_request_id) | |
505 | pull_request = PullRequest.get_or_404(pull_request_id) |
|
402 | pull_request = PullRequest.get_or_404(pull_request_id) | |
506 | # only owner or admin can update it |
|
403 | # only owner or admin can update it | |
507 | allowed_to_update = PullRequestModel().check_user_update( |
|
404 | allowed_to_update = PullRequestModel().check_user_update( | |
508 | pull_request, c.rhodecode_user) |
|
405 | pull_request, c.rhodecode_user) | |
509 | if allowed_to_update: |
|
406 | if allowed_to_update: | |
510 | controls = peppercorn.parse(request.POST.items()) |
|
407 | controls = peppercorn.parse(request.POST.items()) | |
511 |
|
408 | |||
512 | if 'review_members' in controls: |
|
409 | if 'review_members' in controls: | |
513 | self._update_reviewers( |
|
410 | self._update_reviewers( | |
514 | pull_request_id, controls['review_members']) |
|
411 | pull_request_id, controls['review_members']) | |
515 | elif str2bool(request.POST.get('update_commits', 'false')): |
|
412 | elif str2bool(request.POST.get('update_commits', 'false')): | |
516 | self._update_commits(pull_request) |
|
413 | self._update_commits(pull_request) | |
517 | elif str2bool(request.POST.get('close_pull_request', 'false')): |
|
414 | elif str2bool(request.POST.get('close_pull_request', 'false')): | |
518 | self._reject_close(pull_request) |
|
415 | self._reject_close(pull_request) | |
519 | elif str2bool(request.POST.get('edit_pull_request', 'false')): |
|
416 | elif str2bool(request.POST.get('edit_pull_request', 'false')): | |
520 | self._edit_pull_request(pull_request) |
|
417 | self._edit_pull_request(pull_request) | |
521 | else: |
|
418 | else: | |
522 | raise HTTPBadRequest() |
|
419 | raise HTTPBadRequest() | |
523 | return True |
|
420 | return True | |
524 | raise HTTPForbidden() |
|
421 | raise HTTPForbidden() | |
525 |
|
422 | |||
526 | def _edit_pull_request(self, pull_request): |
|
423 | def _edit_pull_request(self, pull_request): | |
527 | try: |
|
424 | try: | |
528 | PullRequestModel().edit( |
|
425 | PullRequestModel().edit( | |
529 | pull_request, request.POST.get('title'), |
|
426 | pull_request, request.POST.get('title'), | |
530 | request.POST.get('description')) |
|
427 | request.POST.get('description')) | |
531 | except ValueError: |
|
428 | except ValueError: | |
532 | msg = _(u'Cannot update closed pull requests.') |
|
429 | msg = _(u'Cannot update closed pull requests.') | |
533 | h.flash(msg, category='error') |
|
430 | h.flash(msg, category='error') | |
534 | return |
|
431 | return | |
535 | else: |
|
432 | else: | |
536 | Session().commit() |
|
433 | Session().commit() | |
537 |
|
434 | |||
538 | msg = _(u'Pull request title & description updated.') |
|
435 | msg = _(u'Pull request title & description updated.') | |
539 | h.flash(msg, category='success') |
|
436 | h.flash(msg, category='success') | |
540 | return |
|
437 | return | |
541 |
|
438 | |||
542 | def _update_commits(self, pull_request): |
|
439 | def _update_commits(self, pull_request): | |
543 | resp = PullRequestModel().update_commits(pull_request) |
|
440 | resp = PullRequestModel().update_commits(pull_request) | |
544 |
|
441 | |||
545 | if resp.executed: |
|
442 | if resp.executed: | |
546 | msg = _( |
|
443 | msg = _( | |
547 | u'Pull request updated to "{source_commit_id}" with ' |
|
444 | u'Pull request updated to "{source_commit_id}" with ' | |
548 | u'{count_added} added, {count_removed} removed commits.') |
|
445 | u'{count_added} added, {count_removed} removed commits.') | |
549 | msg = msg.format( |
|
446 | msg = msg.format( | |
550 | source_commit_id=pull_request.source_ref_parts.commit_id, |
|
447 | source_commit_id=pull_request.source_ref_parts.commit_id, | |
551 | count_added=len(resp.changes.added), |
|
448 | count_added=len(resp.changes.added), | |
552 | count_removed=len(resp.changes.removed)) |
|
449 | count_removed=len(resp.changes.removed)) | |
553 | h.flash(msg, category='success') |
|
450 | h.flash(msg, category='success') | |
554 |
|
451 | |||
555 | registry = get_current_registry() |
|
452 | registry = get_current_registry() | |
556 | rhodecode_plugins = getattr(registry, 'rhodecode_plugins', {}) |
|
453 | rhodecode_plugins = getattr(registry, 'rhodecode_plugins', {}) | |
557 | channelstream_config = rhodecode_plugins.get('channelstream', {}) |
|
454 | channelstream_config = rhodecode_plugins.get('channelstream', {}) | |
558 | if channelstream_config.get('enabled'): |
|
455 | if channelstream_config.get('enabled'): | |
559 | message = msg + ( |
|
456 | message = msg + ( | |
560 | ' - <a onclick="window.location.reload()">' |
|
457 | ' - <a onclick="window.location.reload()">' | |
561 | '<strong>{}</strong></a>'.format(_('Reload page'))) |
|
458 | '<strong>{}</strong></a>'.format(_('Reload page'))) | |
562 | channel = '/repo${}$/pr/{}'.format( |
|
459 | channel = '/repo${}$/pr/{}'.format( | |
563 | pull_request.target_repo.repo_name, |
|
460 | pull_request.target_repo.repo_name, | |
564 | pull_request.pull_request_id |
|
461 | pull_request.pull_request_id | |
565 | ) |
|
462 | ) | |
566 | payload = { |
|
463 | payload = { | |
567 | 'type': 'message', |
|
464 | 'type': 'message', | |
568 | 'user': 'system', |
|
465 | 'user': 'system', | |
569 | 'exclude_users': [request.user.username], |
|
466 | 'exclude_users': [request.user.username], | |
570 | 'channel': channel, |
|
467 | 'channel': channel, | |
571 | 'message': { |
|
468 | 'message': { | |
572 | 'message': message, |
|
469 | 'message': message, | |
573 | 'level': 'success', |
|
470 | 'level': 'success', | |
574 | 'topic': '/notifications' |
|
471 | 'topic': '/notifications' | |
575 | } |
|
472 | } | |
576 | } |
|
473 | } | |
577 | channelstream_request( |
|
474 | channelstream_request( | |
578 | channelstream_config, [payload], '/message', |
|
475 | channelstream_config, [payload], '/message', | |
579 | raise_exc=False) |
|
476 | raise_exc=False) | |
580 | else: |
|
477 | else: | |
581 | msg = PullRequestModel.UPDATE_STATUS_MESSAGES[resp.reason] |
|
478 | msg = PullRequestModel.UPDATE_STATUS_MESSAGES[resp.reason] | |
582 | warning_reasons = [ |
|
479 | warning_reasons = [ | |
583 | UpdateFailureReason.NO_CHANGE, |
|
480 | UpdateFailureReason.NO_CHANGE, | |
584 | UpdateFailureReason.WRONG_REF_TPYE, |
|
481 | UpdateFailureReason.WRONG_REF_TPYE, | |
585 | ] |
|
482 | ] | |
586 | category = 'warning' if resp.reason in warning_reasons else 'error' |
|
483 | category = 'warning' if resp.reason in warning_reasons else 'error' | |
587 | h.flash(msg, category=category) |
|
484 | h.flash(msg, category=category) | |
588 |
|
485 | |||
589 | @auth.CSRFRequired() |
|
486 | @auth.CSRFRequired() | |
590 | @LoginRequired() |
|
487 | @LoginRequired() | |
591 | @NotAnonymous() |
|
488 | @NotAnonymous() | |
592 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
489 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | |
593 | 'repository.admin') |
|
490 | 'repository.admin') | |
594 | def merge(self, repo_name, pull_request_id): |
|
491 | def merge(self, repo_name, pull_request_id): | |
595 | """ |
|
492 | """ | |
596 | POST /{repo_name}/pull-request/{pull_request_id} |
|
493 | POST /{repo_name}/pull-request/{pull_request_id} | |
597 |
|
494 | |||
598 | Merge will perform a server-side merge of the specified |
|
495 | Merge will perform a server-side merge of the specified | |
599 | pull request, if the pull request is approved and mergeable. |
|
496 | pull request, if the pull request is approved and mergeable. | |
600 | After successful merging, the pull request is automatically |
|
497 | After successful merging, the pull request is automatically | |
601 | closed, with a relevant comment. |
|
498 | closed, with a relevant comment. | |
602 | """ |
|
499 | """ | |
603 | pull_request_id = safe_int(pull_request_id) |
|
500 | pull_request_id = safe_int(pull_request_id) | |
604 | pull_request = PullRequest.get_or_404(pull_request_id) |
|
501 | pull_request = PullRequest.get_or_404(pull_request_id) | |
605 | user = c.rhodecode_user |
|
502 | user = c.rhodecode_user | |
606 |
|
503 | |||
607 | check = MergeCheck.validate(pull_request, user) |
|
504 | check = MergeCheck.validate(pull_request, user) | |
608 | merge_possible = not check.failed |
|
505 | merge_possible = not check.failed | |
609 |
|
506 | |||
610 | for err_type, error_msg in check.errors: |
|
507 | for err_type, error_msg in check.errors: | |
611 | h.flash(error_msg, category=err_type) |
|
508 | h.flash(error_msg, category=err_type) | |
612 |
|
509 | |||
613 | if merge_possible: |
|
510 | if merge_possible: | |
614 | log.debug("Pre-conditions checked, trying to merge.") |
|
511 | log.debug("Pre-conditions checked, trying to merge.") | |
615 | extras = vcs_operation_context( |
|
512 | extras = vcs_operation_context( | |
616 | request.environ, repo_name=pull_request.target_repo.repo_name, |
|
513 | request.environ, repo_name=pull_request.target_repo.repo_name, | |
617 | username=user.username, action='push', |
|
514 | username=user.username, action='push', | |
618 | scm=pull_request.target_repo.repo_type) |
|
515 | scm=pull_request.target_repo.repo_type) | |
619 | self._merge_pull_request(pull_request, user, extras) |
|
516 | self._merge_pull_request(pull_request, user, extras) | |
620 |
|
517 | |||
621 | return redirect(url( |
|
518 | return redirect(url( | |
622 | 'pullrequest_show', |
|
519 | 'pullrequest_show', | |
623 | repo_name=pull_request.target_repo.repo_name, |
|
520 | repo_name=pull_request.target_repo.repo_name, | |
624 | pull_request_id=pull_request.pull_request_id)) |
|
521 | pull_request_id=pull_request.pull_request_id)) | |
625 |
|
522 | |||
626 | def _merge_pull_request(self, pull_request, user, extras): |
|
523 | def _merge_pull_request(self, pull_request, user, extras): | |
627 | merge_resp = PullRequestModel().merge( |
|
524 | merge_resp = PullRequestModel().merge( | |
628 | pull_request, user, extras=extras) |
|
525 | pull_request, user, extras=extras) | |
629 |
|
526 | |||
630 | if merge_resp.executed: |
|
527 | if merge_resp.executed: | |
631 | log.debug("The merge was successful, closing the pull request.") |
|
528 | log.debug("The merge was successful, closing the pull request.") | |
632 | PullRequestModel().close_pull_request( |
|
529 | PullRequestModel().close_pull_request( | |
633 | pull_request.pull_request_id, user) |
|
530 | pull_request.pull_request_id, user) | |
634 | Session().commit() |
|
531 | Session().commit() | |
635 | msg = _('Pull request was successfully merged and closed.') |
|
532 | msg = _('Pull request was successfully merged and closed.') | |
636 | h.flash(msg, category='success') |
|
533 | h.flash(msg, category='success') | |
637 | else: |
|
534 | else: | |
638 | log.debug( |
|
535 | log.debug( | |
639 | "The merge was not successful. Merge response: %s", |
|
536 | "The merge was not successful. Merge response: %s", | |
640 | merge_resp) |
|
537 | merge_resp) | |
641 | msg = PullRequestModel().merge_status_message( |
|
538 | msg = PullRequestModel().merge_status_message( | |
642 | merge_resp.failure_reason) |
|
539 | merge_resp.failure_reason) | |
643 | h.flash(msg, category='error') |
|
540 | h.flash(msg, category='error') | |
644 |
|
541 | |||
645 | def _update_reviewers(self, pull_request_id, review_members): |
|
542 | def _update_reviewers(self, pull_request_id, review_members): | |
646 | reviewers = [ |
|
543 | reviewers = [ | |
647 | (int(r['user_id']), r['reasons']) for r in review_members] |
|
544 | (int(r['user_id']), r['reasons']) for r in review_members] | |
648 | PullRequestModel().update_reviewers(pull_request_id, reviewers) |
|
545 | PullRequestModel().update_reviewers(pull_request_id, reviewers) | |
649 | Session().commit() |
|
546 | Session().commit() | |
650 |
|
547 | |||
651 | def _reject_close(self, pull_request): |
|
548 | def _reject_close(self, pull_request): | |
652 | if pull_request.is_closed(): |
|
549 | if pull_request.is_closed(): | |
653 | raise HTTPForbidden() |
|
550 | raise HTTPForbidden() | |
654 |
|
551 | |||
655 | PullRequestModel().close_pull_request_with_comment( |
|
552 | PullRequestModel().close_pull_request_with_comment( | |
656 | pull_request, c.rhodecode_user, c.rhodecode_db_repo) |
|
553 | pull_request, c.rhodecode_user, c.rhodecode_db_repo) | |
657 | Session().commit() |
|
554 | Session().commit() | |
658 |
|
555 | |||
659 | @LoginRequired() |
|
556 | @LoginRequired() | |
660 | @NotAnonymous() |
|
557 | @NotAnonymous() | |
661 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
558 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | |
662 | 'repository.admin') |
|
559 | 'repository.admin') | |
663 | @auth.CSRFRequired() |
|
560 | @auth.CSRFRequired() | |
664 | @jsonify |
|
561 | @jsonify | |
665 | def delete(self, repo_name, pull_request_id): |
|
562 | def delete(self, repo_name, pull_request_id): | |
666 | pull_request_id = safe_int(pull_request_id) |
|
563 | pull_request_id = safe_int(pull_request_id) | |
667 | pull_request = PullRequest.get_or_404(pull_request_id) |
|
564 | pull_request = PullRequest.get_or_404(pull_request_id) | |
668 | # only owner can delete it ! |
|
565 | # only owner can delete it ! | |
669 | if pull_request.author.user_id == c.rhodecode_user.user_id: |
|
566 | if pull_request.author.user_id == c.rhodecode_user.user_id: | |
670 | PullRequestModel().delete(pull_request) |
|
567 | PullRequestModel().delete(pull_request) | |
671 | Session().commit() |
|
568 | Session().commit() | |
672 | h.flash(_('Successfully deleted pull request'), |
|
569 | h.flash(_('Successfully deleted pull request'), | |
673 | category='success') |
|
570 | category='success') | |
674 | return redirect(url('my_account_pullrequests')) |
|
571 | return redirect(url('my_account_pullrequests')) | |
675 | raise HTTPForbidden() |
|
572 | raise HTTPForbidden() | |
676 |
|
573 | |||
677 | def _get_pr_version(self, pull_request_id, version=None): |
|
574 | def _get_pr_version(self, pull_request_id, version=None): | |
678 | pull_request_id = safe_int(pull_request_id) |
|
575 | pull_request_id = safe_int(pull_request_id) | |
679 | at_version = None |
|
576 | at_version = None | |
680 |
|
577 | |||
681 | if version and version == 'latest': |
|
578 | if version and version == 'latest': | |
682 | pull_request_ver = PullRequest.get(pull_request_id) |
|
579 | pull_request_ver = PullRequest.get(pull_request_id) | |
683 | pull_request_obj = pull_request_ver |
|
580 | pull_request_obj = pull_request_ver | |
684 | _org_pull_request_obj = pull_request_obj |
|
581 | _org_pull_request_obj = pull_request_obj | |
685 | at_version = 'latest' |
|
582 | at_version = 'latest' | |
686 | elif version: |
|
583 | elif version: | |
687 | pull_request_ver = PullRequestVersion.get_or_404(version) |
|
584 | pull_request_ver = PullRequestVersion.get_or_404(version) | |
688 | pull_request_obj = pull_request_ver |
|
585 | pull_request_obj = pull_request_ver | |
689 | _org_pull_request_obj = pull_request_ver.pull_request |
|
586 | _org_pull_request_obj = pull_request_ver.pull_request | |
690 | at_version = pull_request_ver.pull_request_version_id |
|
587 | at_version = pull_request_ver.pull_request_version_id | |
691 | else: |
|
588 | else: | |
692 | _org_pull_request_obj = pull_request_obj = PullRequest.get_or_404(pull_request_id) |
|
589 | _org_pull_request_obj = pull_request_obj = PullRequest.get_or_404(pull_request_id) | |
693 |
|
590 | |||
694 | pull_request_display_obj = PullRequest.get_pr_display_object( |
|
591 | pull_request_display_obj = PullRequest.get_pr_display_object( | |
695 | pull_request_obj, _org_pull_request_obj) |
|
592 | pull_request_obj, _org_pull_request_obj) | |
|
593 | ||||
696 | return _org_pull_request_obj, pull_request_obj, \ |
|
594 | return _org_pull_request_obj, pull_request_obj, \ | |
697 | pull_request_display_obj, at_version |
|
595 | pull_request_display_obj, at_version | |
698 |
|
596 | |||
699 | def _get_pr_version_changes(self, version, pull_request_latest): |
|
|||
700 | """ |
|
|||
701 | Generate changes commits, and diff data based on the current pr version |
|
|||
702 | """ |
|
|||
703 |
|
||||
704 | #TODO(marcink): save those changes as JSON metadata for chaching later. |
|
|||
705 |
|
||||
706 | # fake the version to add the "initial" state object |
|
|||
707 | pull_request_initial = PullRequest.get_pr_display_object( |
|
|||
708 | pull_request_latest, pull_request_latest, |
|
|||
709 | internal_methods=['get_commit', 'versions']) |
|
|||
710 | pull_request_initial.revisions = [] |
|
|||
711 | pull_request_initial.source_repo.get_commit = types.MethodType( |
|
|||
712 | lambda *a, **k: EmptyCommit(), pull_request_initial) |
|
|||
713 | pull_request_initial.source_repo.scm_instance = types.MethodType( |
|
|||
714 | lambda *a, **k: EmptyRepository(), pull_request_initial) |
|
|||
715 |
|
||||
716 | _changes_versions = [pull_request_latest] + \ |
|
|||
717 | list(reversed(c.versions)) + \ |
|
|||
718 | [pull_request_initial] |
|
|||
719 |
|
||||
720 | if version == 'latest': |
|
|||
721 | index = 0 |
|
|||
722 | else: |
|
|||
723 | for pos, prver in enumerate(_changes_versions): |
|
|||
724 | ver = getattr(prver, 'pull_request_version_id', -1) |
|
|||
725 | if ver == safe_int(version): |
|
|||
726 | index = pos |
|
|||
727 | break |
|
|||
728 | else: |
|
|||
729 | index = 0 |
|
|||
730 |
|
||||
731 | cur_obj = _changes_versions[index] |
|
|||
732 | prev_obj = _changes_versions[index + 1] |
|
|||
733 |
|
||||
734 | old_commit_ids = set(prev_obj.revisions) |
|
|||
735 | new_commit_ids = set(cur_obj.revisions) |
|
|||
736 |
|
||||
737 | changes = PullRequestModel()._calculate_commit_id_changes( |
|
|||
738 | old_commit_ids, new_commit_ids) |
|
|||
739 |
|
||||
740 | old_diff_data, new_diff_data = PullRequestModel()._generate_update_diffs( |
|
|||
741 | cur_obj, prev_obj) |
|
|||
742 | file_changes = PullRequestModel()._calculate_file_changes( |
|
|||
743 | old_diff_data, new_diff_data) |
|
|||
744 | return changes, file_changes |
|
|||
745 |
|
||||
746 | @LoginRequired() |
|
597 | @LoginRequired() | |
747 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
598 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | |
748 | 'repository.admin') |
|
599 | 'repository.admin') | |
749 | def show(self, repo_name, pull_request_id): |
|
600 | def show(self, repo_name, pull_request_id): | |
750 | pull_request_id = safe_int(pull_request_id) |
|
601 | pull_request_id = safe_int(pull_request_id) | |
751 | version = request.GET.get('version') |
|
602 | version = request.GET.get('version') | |
|
603 | from_version = request.GET.get('from_version') or version | |||
752 | merge_checks = request.GET.get('merge_checks') |
|
604 | merge_checks = request.GET.get('merge_checks') | |
|
605 | c.fulldiff = str2bool(request.GET.get('fulldiff')) | |||
|
606 | ||||
|
607 | # register for JS templates | |||
|
608 | c.template_context['pull_request_data']['pull_request_id'] = \ | |||
|
609 | pull_request_id | |||
753 |
|
610 | |||
754 | (pull_request_latest, |
|
611 | (pull_request_latest, | |
755 | pull_request_at_ver, |
|
612 | pull_request_at_ver, | |
756 | pull_request_display_obj, |
|
613 | pull_request_display_obj, | |
757 |
at_version) = self._get_pr_version( |
|
614 | at_version) = self._get_pr_version( | |
|
615 | pull_request_id, version=version) | |||
|
616 | versions = pull_request_display_obj.versions() | |||
|
617 | ||||
|
618 | c.at_version = at_version | |||
|
619 | c.at_version_num = (at_version | |||
|
620 | if at_version and at_version != 'latest' | |||
|
621 | else None) | |||
|
622 | c.at_version_pos = ChangesetComment.get_index_from_version( | |||
|
623 | c.at_version_num, versions) | |||
758 |
|
624 | |||
759 | c.template_context['pull_request_data']['pull_request_id'] = \ |
|
625 | (prev_pull_request_latest, | |
760 |
|
|
626 | prev_pull_request_at_ver, | |
|
627 | prev_pull_request_display_obj, | |||
|
628 | prev_at_version) = self._get_pr_version( | |||
|
629 | pull_request_id, version=from_version) | |||
|
630 | ||||
|
631 | c.from_version = prev_at_version | |||
|
632 | c.from_version_num = (prev_at_version | |||
|
633 | if prev_at_version and prev_at_version != 'latest' | |||
|
634 | else None) | |||
|
635 | c.from_version_pos = ChangesetComment.get_index_from_version( | |||
|
636 | c.from_version_num, versions) | |||
|
637 | ||||
|
638 | # define if we're in COMPARE mode or VIEW at version mode | |||
|
639 | compare = at_version != prev_at_version | |||
761 |
|
640 | |||
762 | # pull_requests repo_name we opened it against |
|
641 | # pull_requests repo_name we opened it against | |
763 | # ie. target_repo must match |
|
642 | # ie. target_repo must match | |
764 | if repo_name != pull_request_at_ver.target_repo.repo_name: |
|
643 | if repo_name != pull_request_at_ver.target_repo.repo_name: | |
765 | raise HTTPNotFound |
|
644 | raise HTTPNotFound | |
766 |
|
645 | |||
767 | c.shadow_clone_url = PullRequestModel().get_shadow_clone_url( |
|
646 | c.shadow_clone_url = PullRequestModel().get_shadow_clone_url( | |
768 | pull_request_at_ver) |
|
647 | pull_request_at_ver) | |
769 |
|
648 | |||
770 |
c.ancestor = None # |
|
649 | c.ancestor = None # empty ancestor hidden in display | |
771 | c.pull_request = pull_request_display_obj |
|
650 | c.pull_request = pull_request_display_obj | |
772 | c.pull_request_latest = pull_request_latest |
|
651 | c.pull_request_latest = pull_request_latest | |
773 |
|
652 | |||
774 | pr_closed = pull_request_latest.is_closed() |
|
653 | pr_closed = pull_request_latest.is_closed() | |
775 | if at_version and not at_version == 'latest': |
|
654 | if compare or (at_version and not at_version == 'latest'): | |
776 | c.allowed_to_change_status = False |
|
655 | c.allowed_to_change_status = False | |
777 | c.allowed_to_update = False |
|
656 | c.allowed_to_update = False | |
778 | c.allowed_to_merge = False |
|
657 | c.allowed_to_merge = False | |
779 | c.allowed_to_delete = False |
|
658 | c.allowed_to_delete = False | |
780 | c.allowed_to_comment = False |
|
659 | c.allowed_to_comment = False | |
781 | else: |
|
660 | else: | |
782 | c.allowed_to_change_status = PullRequestModel(). \ |
|
661 | c.allowed_to_change_status = PullRequestModel(). \ | |
783 | check_user_change_status(pull_request_at_ver, c.rhodecode_user) |
|
662 | check_user_change_status(pull_request_at_ver, c.rhodecode_user) | |
784 | c.allowed_to_update = PullRequestModel().check_user_update( |
|
663 | c.allowed_to_update = PullRequestModel().check_user_update( | |
785 | pull_request_latest, c.rhodecode_user) and not pr_closed |
|
664 | pull_request_latest, c.rhodecode_user) and not pr_closed | |
786 | c.allowed_to_merge = PullRequestModel().check_user_merge( |
|
665 | c.allowed_to_merge = PullRequestModel().check_user_merge( | |
787 | pull_request_latest, c.rhodecode_user) and not pr_closed |
|
666 | pull_request_latest, c.rhodecode_user) and not pr_closed | |
788 | c.allowed_to_delete = PullRequestModel().check_user_delete( |
|
667 | c.allowed_to_delete = PullRequestModel().check_user_delete( | |
789 | pull_request_latest, c.rhodecode_user) and not pr_closed |
|
668 | pull_request_latest, c.rhodecode_user) and not pr_closed | |
790 | c.allowed_to_comment = not pr_closed |
|
669 | c.allowed_to_comment = not pr_closed | |
791 |
|
670 | |||
792 | cc_model = CommentsModel() |
|
671 | # check merge capabilities | |
|
672 | _merge_check = MergeCheck.validate( | |||
|
673 | pull_request_latest, user=c.rhodecode_user) | |||
|
674 | c.pr_merge_errors = _merge_check.error_details | |||
|
675 | c.pr_merge_possible = not _merge_check.failed | |||
|
676 | c.pr_merge_message = _merge_check.merge_msg | |||
793 |
|
677 | |||
|
678 | if merge_checks: | |||
|
679 | return render('/pullrequests/pullrequest_merge_checks.mako') | |||
|
680 | ||||
|
681 | comments_model = CommentsModel() | |||
|
682 | ||||
|
683 | # reviewers and statuses | |||
794 | c.pull_request_reviewers = pull_request_at_ver.reviewers_statuses() |
|
684 | c.pull_request_reviewers = pull_request_at_ver.reviewers_statuses() | |
|
685 | allowed_reviewers = [x[0].user_id for x in c.pull_request_reviewers] | |||
795 | c.pull_request_review_status = pull_request_at_ver.calculated_review_status() |
|
686 | c.pull_request_review_status = pull_request_at_ver.calculated_review_status() | |
796 |
|
687 | |||
797 | c.versions = pull_request_display_obj.versions() |
|
|||
798 | c.at_version = at_version |
|
|||
799 | c.at_version_num = at_version if at_version and at_version != 'latest' else None |
|
|||
800 | c.at_version_pos = ChangesetComment.get_index_from_version( |
|
|||
801 | c.at_version_num, c.versions) |
|
|||
802 |
|
||||
803 | # GENERAL COMMENTS with versions # |
|
688 | # GENERAL COMMENTS with versions # | |
804 |
q = c |
|
689 | q = comments_model._all_general_comments_of_pull_request(pull_request_latest) | |
|
690 | q = q.order_by(ChangesetComment.comment_id.asc()) | |||
805 | general_comments = q.order_by(ChangesetComment.pull_request_version_id.asc()) |
|
691 | general_comments = q.order_by(ChangesetComment.pull_request_version_id.asc()) | |
806 |
|
692 | |||
807 | # pick comments we want to render at current version |
|
693 | # pick comments we want to render at current version | |
808 |
c.comment_versions = c |
|
694 | c.comment_versions = comments_model.aggregate_comments( | |
809 |
general_comments, |
|
695 | general_comments, versions, c.at_version_num) | |
810 | c.comments = c.comment_versions[c.at_version_num]['until'] |
|
696 | c.comments = c.comment_versions[c.at_version_num]['until'] | |
811 |
|
697 | |||
812 | # INLINE COMMENTS with versions # |
|
698 | # INLINE COMMENTS with versions # | |
813 |
q = c |
|
699 | q = comments_model._all_inline_comments_of_pull_request(pull_request_latest) | |
|
700 | q = q.order_by(ChangesetComment.comment_id.asc()) | |||
814 | inline_comments = q.order_by(ChangesetComment.pull_request_version_id.asc()) |
|
701 | inline_comments = q.order_by(ChangesetComment.pull_request_version_id.asc()) | |
815 |
c.inline_versions = c |
|
702 | c.inline_versions = comments_model.aggregate_comments( | |
816 |
inline_comments, |
|
703 | inline_comments, versions, c.at_version_num, inline=True) | |
|
704 | ||||
|
705 | # inject latest version | |||
|
706 | latest_ver = PullRequest.get_pr_display_object( | |||
|
707 | pull_request_latest, pull_request_latest) | |||
|
708 | ||||
|
709 | c.versions = versions + [latest_ver] | |||
817 |
|
710 | |||
818 | # if we use version, then do not show later comments |
|
711 | # if we use version, then do not show later comments | |
819 | # than current version |
|
712 | # than current version | |
820 |
display_inline_comments = collections.defaultdict( |
|
713 | display_inline_comments = collections.defaultdict( | |
|
714 | lambda: collections.defaultdict(list)) | |||
821 | for co in inline_comments: |
|
715 | for co in inline_comments: | |
822 | if c.at_version_num: |
|
716 | if c.at_version_num: | |
823 | # pick comments that are at least UPTO given version, so we |
|
717 | # pick comments that are at least UPTO given version, so we | |
824 | # don't render comments for higher version |
|
718 | # don't render comments for higher version | |
825 | should_render = co.pull_request_version_id and \ |
|
719 | should_render = co.pull_request_version_id and \ | |
826 | co.pull_request_version_id <= c.at_version_num |
|
720 | co.pull_request_version_id <= c.at_version_num | |
827 | else: |
|
721 | else: | |
828 | # showing all, for 'latest' |
|
722 | # showing all, for 'latest' | |
829 | should_render = True |
|
723 | should_render = True | |
830 |
|
724 | |||
831 | if should_render: |
|
725 | if should_render: | |
832 | display_inline_comments[co.f_path][co.line_no].append(co) |
|
726 | display_inline_comments[co.f_path][co.line_no].append(co) | |
833 |
|
727 | |||
834 | _merge_check = MergeCheck.validate( |
|
728 | # load diff data into template context, if we use compare mode then | |
835 | pull_request_latest, user=c.rhodecode_user) |
|
729 | # diff is calculated based on changes between versions of PR | |
836 | c.pr_merge_errors = _merge_check.error_details |
|
730 | ||
837 | c.pr_merge_possible = not _merge_check.failed |
|
731 | source_repo = pull_request_at_ver.source_repo | |
838 | c.pr_merge_message = _merge_check.merge_msg |
|
732 | source_ref_id = pull_request_at_ver.source_ref_parts.commit_id | |
|
733 | ||||
|
734 | target_repo = pull_request_at_ver.target_repo | |||
|
735 | target_ref_id = pull_request_at_ver.target_ref_parts.commit_id | |||
|
736 | ||||
|
737 | if compare: | |||
|
738 | # in compare switch the diff base to latest commit from prev version | |||
|
739 | target_ref_id = prev_pull_request_display_obj.revisions[0] | |||
|
740 | ||||
|
741 | # despite opening commits for bookmarks/branches/tags, we always | |||
|
742 | # convert this to rev to prevent changes after bookmark or branch change | |||
|
743 | c.source_ref_type = 'rev' | |||
|
744 | c.source_ref = source_ref_id | |||
|
745 | ||||
|
746 | c.target_ref_type = 'rev' | |||
|
747 | c.target_ref = target_ref_id | |||
|
748 | ||||
|
749 | c.source_repo = source_repo | |||
|
750 | c.target_repo = target_repo | |||
|
751 | ||||
|
752 | # diff_limit is the old behavior, will cut off the whole diff | |||
|
753 | # if the limit is applied otherwise will just hide the | |||
|
754 | # big files from the front-end | |||
|
755 | diff_limit = self.cut_off_limit_diff | |||
|
756 | file_limit = self.cut_off_limit_file | |||
|
757 | ||||
|
758 | c.commit_ranges = [] | |||
|
759 | source_commit = EmptyCommit() | |||
|
760 | target_commit = EmptyCommit() | |||
|
761 | c.missing_requirements = False | |||
|
762 | ||||
|
763 | # try first shadow repo, fallback to regular repo | |||
|
764 | try: | |||
|
765 | commits_source_repo = pull_request_latest.get_shadow_repo() | |||
|
766 | except Exception: | |||
|
767 | log.debug('Failed to get shadow repo', exc_info=True) | |||
|
768 | commits_source_repo = source_repo.scm_instance() | |||
|
769 | ||||
|
770 | c.commits_source_repo = commits_source_repo | |||
|
771 | commit_cache = {} | |||
|
772 | try: | |||
|
773 | pre_load = ["author", "branch", "date", "message"] | |||
|
774 | show_revs = pull_request_at_ver.revisions | |||
|
775 | for rev in show_revs: | |||
|
776 | comm = commits_source_repo.get_commit( | |||
|
777 | commit_id=rev, pre_load=pre_load) | |||
|
778 | c.commit_ranges.append(comm) | |||
|
779 | commit_cache[comm.raw_id] = comm | |||
839 |
|
780 | |||
840 | if merge_checks: |
|
781 | target_commit = commits_source_repo.get_commit( | |
841 | return render('/pullrequests/pullrequest_merge_checks.mako') |
|
782 | commit_id=safe_str(target_ref_id)) | |
|
783 | source_commit = commits_source_repo.get_commit( | |||
|
784 | commit_id=safe_str(source_ref_id)) | |||
|
785 | except CommitDoesNotExistError: | |||
|
786 | pass | |||
|
787 | except RepositoryRequirementError: | |||
|
788 | log.warning( | |||
|
789 | 'Failed to get all required data from repo', exc_info=True) | |||
|
790 | c.missing_requirements = True | |||
|
791 | ||||
|
792 | c.statuses = source_repo.statuses( | |||
|
793 | [x.raw_id for x in c.commit_ranges]) | |||
|
794 | ||||
|
795 | # auto collapse if we have more than limit | |||
|
796 | collapse_limit = diffs.DiffProcessor._collapse_commits_over | |||
|
797 | c.collapse_all_commits = len(c.commit_ranges) > collapse_limit | |||
|
798 | c.compare_mode = compare | |||
|
799 | ||||
|
800 | c.missing_commits = False | |||
|
801 | if (c.missing_requirements or isinstance(source_commit, EmptyCommit) | |||
|
802 | or source_commit == target_commit): | |||
|
803 | ||||
|
804 | c.missing_commits = True | |||
|
805 | else: | |||
|
806 | vcs_diff = PullRequestModel().get_diff( | |||
|
807 | commits_source_repo, source_ref_id, target_ref_id) | |||
|
808 | ||||
|
809 | diff_processor = diffs.DiffProcessor( | |||
|
810 | vcs_diff, format='newdiff', diff_limit=diff_limit, | |||
|
811 | file_limit=file_limit, show_full_diff=c.fulldiff) | |||
842 |
|
812 | |||
843 | # load compare data into template context |
|
813 | _parsed = diff_processor.prepare() | |
844 | self._load_compare_data(pull_request_at_ver, display_inline_comments) |
|
814 | c.limited_diff = isinstance(_parsed, diffs.LimitedDiffContainer) | |
|
815 | ||||
|
816 | def _node_getter(commit): | |||
|
817 | def get_node(fname): | |||
|
818 | try: | |||
|
819 | return commit.get_node(fname) | |||
|
820 | except NodeDoesNotExistError: | |||
|
821 | return None | |||
|
822 | ||||
|
823 | return get_node | |||
|
824 | ||||
|
825 | diffset = codeblocks.DiffSet( | |||
|
826 | repo_name=c.repo_name, | |||
|
827 | source_repo_name=c.source_repo.repo_name, | |||
|
828 | source_node_getter=_node_getter(target_commit), | |||
|
829 | target_node_getter=_node_getter(source_commit), | |||
|
830 | comments=display_inline_comments | |||
|
831 | ) | |||
|
832 | c.diffset = diffset.render_patchset( | |||
|
833 | _parsed, target_commit.raw_id, source_commit.raw_id) | |||
|
834 | ||||
|
835 | # calculate removed files that are bound to comments | |||
|
836 | comment_deleted_files = [ | |||
|
837 | fname for fname in display_inline_comments | |||
|
838 | if fname not in c.diffset.file_stats] | |||
|
839 | ||||
|
840 | c.deleted_files_comments = collections.defaultdict(dict) | |||
|
841 | for fname, per_line_comments in display_inline_comments.items(): | |||
|
842 | if fname in comment_deleted_files: | |||
|
843 | c.deleted_files_comments[fname]['stats'] = 0 | |||
|
844 | c.deleted_files_comments[fname]['comments'] = list() | |||
|
845 | for lno, comments in per_line_comments.items(): | |||
|
846 | c.deleted_files_comments[fname]['comments'].extend( | |||
|
847 | comments) | |||
845 |
|
848 | |||
846 | # this is a hack to properly display links, when creating PR, the |
|
849 | # this is a hack to properly display links, when creating PR, the | |
847 | # compare view and others uses different notation, and |
|
850 | # compare view and others uses different notation, and | |
848 | # compare_commits.mako renders links based on the target_repo. |
|
851 | # compare_commits.mako renders links based on the target_repo. | |
849 | # We need to swap that here to generate it properly on the html side |
|
852 | # We need to swap that here to generate it properly on the html side | |
850 | c.target_repo = c.source_repo |
|
853 | c.target_repo = c.source_repo | |
851 |
|
854 | |||
852 | if c.allowed_to_update: |
|
855 | if c.allowed_to_update: | |
853 | force_close = ('forced_closed', _('Close Pull Request')) |
|
856 | force_close = ('forced_closed', _('Close Pull Request')) | |
854 | statuses = ChangesetStatus.STATUSES + [force_close] |
|
857 | statuses = ChangesetStatus.STATUSES + [force_close] | |
855 | else: |
|
858 | else: | |
856 | statuses = ChangesetStatus.STATUSES |
|
859 | statuses = ChangesetStatus.STATUSES | |
857 | c.commit_statuses = statuses |
|
860 | c.commit_statuses = statuses | |
858 |
|
861 | |||
859 |
c.changes = |
|
862 | c.show_version_changes = not pr_closed | |
860 |
c. |
|
863 | if c.show_version_changes: | |
|
864 | cur_obj = pull_request_at_ver | |||
|
865 | prev_obj = prev_pull_request_at_ver | |||
|
866 | ||||
|
867 | old_commit_ids = prev_obj.revisions | |||
|
868 | new_commit_ids = cur_obj.revisions | |||
|
869 | commit_changes = PullRequestModel()._calculate_commit_id_changes( | |||
|
870 | old_commit_ids, new_commit_ids) | |||
|
871 | c.commit_changes_summary = commit_changes | |||
|
872 | ||||
|
873 | # calculate the diff for commits between versions | |||
|
874 | c.commit_changes = [] | |||
|
875 | mark = lambda cs, fw: list( | |||
|
876 | h.itertools.izip_longest([], cs, fillvalue=fw)) | |||
|
877 | for c_type, raw_id in mark(commit_changes.added, 'a') \ | |||
|
878 | + mark(commit_changes.removed, 'r') \ | |||
|
879 | + mark(commit_changes.common, 'c'): | |||
861 |
|
880 | |||
862 | c.show_version_changes = 1 # control flag, not used yet |
|
881 | if raw_id in commit_cache: | |
|
882 | commit = commit_cache[raw_id] | |||
|
883 | else: | |||
|
884 | try: | |||
|
885 | commit = commits_source_repo.get_commit(raw_id) | |||
|
886 | except CommitDoesNotExistError: | |||
|
887 | # in case we fail extracting still use "dummy" commit | |||
|
888 | # for display in commit diff | |||
|
889 | commit = h.AttributeDict( | |||
|
890 | {'raw_id': raw_id, | |||
|
891 | 'message': 'EMPTY or MISSING COMMIT'}) | |||
|
892 | c.commit_changes.append([c_type, commit]) | |||
863 |
|
893 | |||
864 | if at_version and c.show_version_changes: |
|
894 | # current user review statuses for each version | |
865 | c.changes, c.file_changes = self._get_pr_version_changes( |
|
895 | c.review_versions = {} | |
866 | version, pull_request_latest) |
|
896 | if c.rhodecode_user.user_id in allowed_reviewers: | |
|
897 | for co in general_comments: | |||
|
898 | if co.author.user_id == c.rhodecode_user.user_id: | |||
|
899 | # each comment has a status change | |||
|
900 | status = co.status_change | |||
|
901 | if status: | |||
|
902 | _ver_pr = status[0].comment.pull_request_version_id | |||
|
903 | c.review_versions[_ver_pr] = status[0] | |||
867 |
|
904 | |||
868 | return render('/pullrequests/pullrequest_show.mako') |
|
905 | return render('/pullrequests/pullrequest_show.mako') | |
869 |
|
906 | |||
870 | @LoginRequired() |
|
907 | @LoginRequired() | |
871 | @NotAnonymous() |
|
908 | @NotAnonymous() | |
872 |
@HasRepoPermissionAnyDecorator( |
|
909 | @HasRepoPermissionAnyDecorator( | |
873 | 'repository.admin') |
|
910 | 'repository.read', 'repository.write', 'repository.admin') | |
874 | @auth.CSRFRequired() |
|
911 | @auth.CSRFRequired() | |
875 | @jsonify |
|
912 | @jsonify | |
876 | def comment(self, repo_name, pull_request_id): |
|
913 | def comment(self, repo_name, pull_request_id): | |
877 | pull_request_id = safe_int(pull_request_id) |
|
914 | pull_request_id = safe_int(pull_request_id) | |
878 | pull_request = PullRequest.get_or_404(pull_request_id) |
|
915 | pull_request = PullRequest.get_or_404(pull_request_id) | |
879 | if pull_request.is_closed(): |
|
916 | if pull_request.is_closed(): | |
880 | raise HTTPForbidden() |
|
917 | raise HTTPForbidden() | |
881 |
|
918 | |||
882 | # TODO: johbo: Re-think this bit, "approved_closed" does not exist |
|
919 | # TODO: johbo: Re-think this bit, "approved_closed" does not exist | |
883 | # as a changeset status, still we want to send it in one value. |
|
920 | # as a changeset status, still we want to send it in one value. | |
884 | status = request.POST.get('changeset_status', None) |
|
921 | status = request.POST.get('changeset_status', None) | |
885 | text = request.POST.get('text') |
|
922 | text = request.POST.get('text') | |
886 | comment_type = request.POST.get('comment_type') |
|
923 | comment_type = request.POST.get('comment_type') | |
887 | resolves_comment_id = request.POST.get('resolves_comment_id', None) |
|
924 | resolves_comment_id = request.POST.get('resolves_comment_id', None) | |
888 |
|
925 | |||
889 | if status and '_closed' in status: |
|
926 | if status and '_closed' in status: | |
890 | close_pr = True |
|
927 | close_pr = True | |
891 | status = status.replace('_closed', '') |
|
928 | status = status.replace('_closed', '') | |
892 | else: |
|
929 | else: | |
893 | close_pr = False |
|
930 | close_pr = False | |
894 |
|
931 | |||
895 | forced = (status == 'forced') |
|
932 | forced = (status == 'forced') | |
896 | if forced: |
|
933 | if forced: | |
897 | status = 'rejected' |
|
934 | status = 'rejected' | |
898 |
|
935 | |||
899 | allowed_to_change_status = PullRequestModel().check_user_change_status( |
|
936 | allowed_to_change_status = PullRequestModel().check_user_change_status( | |
900 | pull_request, c.rhodecode_user) |
|
937 | pull_request, c.rhodecode_user) | |
901 |
|
938 | |||
902 | if status and allowed_to_change_status: |
|
939 | if status and allowed_to_change_status: | |
903 | message = (_('Status change %(transition_icon)s %(status)s') |
|
940 | message = (_('Status change %(transition_icon)s %(status)s') | |
904 | % {'transition_icon': '>', |
|
941 | % {'transition_icon': '>', | |
905 | 'status': ChangesetStatus.get_status_lbl(status)}) |
|
942 | 'status': ChangesetStatus.get_status_lbl(status)}) | |
906 | if close_pr: |
|
943 | if close_pr: | |
907 | message = _('Closing with') + ' ' + message |
|
944 | message = _('Closing with') + ' ' + message | |
908 | text = text or message |
|
945 | text = text or message | |
909 | comm = CommentsModel().create( |
|
946 | comm = CommentsModel().create( | |
910 | text=text, |
|
947 | text=text, | |
911 | repo=c.rhodecode_db_repo.repo_id, |
|
948 | repo=c.rhodecode_db_repo.repo_id, | |
912 | user=c.rhodecode_user.user_id, |
|
949 | user=c.rhodecode_user.user_id, | |
913 | pull_request=pull_request_id, |
|
950 | pull_request=pull_request_id, | |
914 | f_path=request.POST.get('f_path'), |
|
951 | f_path=request.POST.get('f_path'), | |
915 | line_no=request.POST.get('line'), |
|
952 | line_no=request.POST.get('line'), | |
916 | status_change=(ChangesetStatus.get_status_lbl(status) |
|
953 | status_change=(ChangesetStatus.get_status_lbl(status) | |
917 | if status and allowed_to_change_status else None), |
|
954 | if status and allowed_to_change_status else None), | |
918 | status_change_type=(status |
|
955 | status_change_type=(status | |
919 | if status and allowed_to_change_status else None), |
|
956 | if status and allowed_to_change_status else None), | |
920 | closing_pr=close_pr, |
|
957 | closing_pr=close_pr, | |
921 | comment_type=comment_type, |
|
958 | comment_type=comment_type, | |
922 | resolves_comment_id=resolves_comment_id |
|
959 | resolves_comment_id=resolves_comment_id | |
923 | ) |
|
960 | ) | |
924 |
|
961 | |||
925 | if allowed_to_change_status: |
|
962 | if allowed_to_change_status: | |
926 | old_calculated_status = pull_request.calculated_review_status() |
|
963 | old_calculated_status = pull_request.calculated_review_status() | |
927 | # get status if set ! |
|
964 | # get status if set ! | |
928 | if status: |
|
965 | if status: | |
929 | ChangesetStatusModel().set_status( |
|
966 | ChangesetStatusModel().set_status( | |
930 | c.rhodecode_db_repo.repo_id, |
|
967 | c.rhodecode_db_repo.repo_id, | |
931 | status, |
|
968 | status, | |
932 | c.rhodecode_user.user_id, |
|
969 | c.rhodecode_user.user_id, | |
933 | comm, |
|
970 | comm, | |
934 | pull_request=pull_request_id |
|
971 | pull_request=pull_request_id | |
935 | ) |
|
972 | ) | |
936 |
|
973 | |||
937 | Session().flush() |
|
974 | Session().flush() | |
938 | events.trigger(events.PullRequestCommentEvent(pull_request, comm)) |
|
975 | events.trigger(events.PullRequestCommentEvent(pull_request, comm)) | |
939 | # we now calculate the status of pull request, and based on that |
|
976 | # we now calculate the status of pull request, and based on that | |
940 | # calculation we set the commits status |
|
977 | # calculation we set the commits status | |
941 | calculated_status = pull_request.calculated_review_status() |
|
978 | calculated_status = pull_request.calculated_review_status() | |
942 | if old_calculated_status != calculated_status: |
|
979 | if old_calculated_status != calculated_status: | |
943 | PullRequestModel()._trigger_pull_request_hook( |
|
980 | PullRequestModel()._trigger_pull_request_hook( | |
944 | pull_request, c.rhodecode_user, 'review_status_change') |
|
981 | pull_request, c.rhodecode_user, 'review_status_change') | |
945 |
|
982 | |||
946 | calculated_status_lbl = ChangesetStatus.get_status_lbl( |
|
983 | calculated_status_lbl = ChangesetStatus.get_status_lbl( | |
947 | calculated_status) |
|
984 | calculated_status) | |
948 |
|
985 | |||
949 | if close_pr: |
|
986 | if close_pr: | |
950 | status_completed = ( |
|
987 | status_completed = ( | |
951 | calculated_status in [ChangesetStatus.STATUS_APPROVED, |
|
988 | calculated_status in [ChangesetStatus.STATUS_APPROVED, | |
952 | ChangesetStatus.STATUS_REJECTED]) |
|
989 | ChangesetStatus.STATUS_REJECTED]) | |
953 | if forced or status_completed: |
|
990 | if forced or status_completed: | |
954 | PullRequestModel().close_pull_request( |
|
991 | PullRequestModel().close_pull_request( | |
955 | pull_request_id, c.rhodecode_user) |
|
992 | pull_request_id, c.rhodecode_user) | |
956 | else: |
|
993 | else: | |
957 | h.flash(_('Closing pull request on other statuses than ' |
|
994 | h.flash(_('Closing pull request on other statuses than ' | |
958 | 'rejected or approved is forbidden. ' |
|
995 | 'rejected or approved is forbidden. ' | |
959 | 'Calculated status from all reviewers ' |
|
996 | 'Calculated status from all reviewers ' | |
960 | 'is currently: %s') % calculated_status_lbl, |
|
997 | 'is currently: %s') % calculated_status_lbl, | |
961 | category='warning') |
|
998 | category='warning') | |
962 |
|
999 | |||
963 | Session().commit() |
|
1000 | Session().commit() | |
964 |
|
1001 | |||
965 | if not request.is_xhr: |
|
1002 | if not request.is_xhr: | |
966 | return redirect(h.url('pullrequest_show', repo_name=repo_name, |
|
1003 | return redirect(h.url('pullrequest_show', repo_name=repo_name, | |
967 | pull_request_id=pull_request_id)) |
|
1004 | pull_request_id=pull_request_id)) | |
968 |
|
1005 | |||
969 | data = { |
|
1006 | data = { | |
970 | 'target_id': h.safeid(h.safe_unicode(request.POST.get('f_path'))), |
|
1007 | 'target_id': h.safeid(h.safe_unicode(request.POST.get('f_path'))), | |
971 | } |
|
1008 | } | |
972 | if comm: |
|
1009 | if comm: | |
973 | c.co = comm |
|
1010 | c.co = comm | |
974 | c.inline_comment = True if comm.line_no else False |
|
1011 | c.inline_comment = True if comm.line_no else False | |
975 | data.update(comm.get_dict()) |
|
1012 | data.update(comm.get_dict()) | |
976 | data.update({'rendered_text': |
|
1013 | data.update({'rendered_text': | |
977 | render('changeset/changeset_comment_block.mako')}) |
|
1014 | render('changeset/changeset_comment_block.mako')}) | |
978 |
|
1015 | |||
979 | return data |
|
1016 | return data | |
980 |
|
1017 | |||
981 | @LoginRequired() |
|
1018 | @LoginRequired() | |
982 | @NotAnonymous() |
|
1019 | @NotAnonymous() | |
983 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
1020 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | |
984 | 'repository.admin') |
|
1021 | 'repository.admin') | |
985 | @auth.CSRFRequired() |
|
1022 | @auth.CSRFRequired() | |
986 | @jsonify |
|
1023 | @jsonify | |
987 | def delete_comment(self, repo_name, comment_id): |
|
1024 | def delete_comment(self, repo_name, comment_id): | |
988 | return self._delete_comment(comment_id) |
|
1025 | return self._delete_comment(comment_id) | |
989 |
|
1026 | |||
990 | def _delete_comment(self, comment_id): |
|
1027 | def _delete_comment(self, comment_id): | |
991 | comment_id = safe_int(comment_id) |
|
1028 | comment_id = safe_int(comment_id) | |
992 | co = ChangesetComment.get_or_404(comment_id) |
|
1029 | co = ChangesetComment.get_or_404(comment_id) | |
993 | if co.pull_request.is_closed(): |
|
1030 | if co.pull_request.is_closed(): | |
994 | # don't allow deleting comments on closed pull request |
|
1031 | # don't allow deleting comments on closed pull request | |
995 | raise HTTPForbidden() |
|
1032 | raise HTTPForbidden() | |
996 |
|
1033 | |||
997 | is_owner = co.author.user_id == c.rhodecode_user.user_id |
|
1034 | is_owner = co.author.user_id == c.rhodecode_user.user_id | |
998 | is_repo_admin = h.HasRepoPermissionAny('repository.admin')(c.repo_name) |
|
1035 | is_repo_admin = h.HasRepoPermissionAny('repository.admin')(c.repo_name) | |
999 | if h.HasPermissionAny('hg.admin')() or is_repo_admin or is_owner: |
|
1036 | if h.HasPermissionAny('hg.admin')() or is_repo_admin or is_owner: | |
1000 | old_calculated_status = co.pull_request.calculated_review_status() |
|
1037 | old_calculated_status = co.pull_request.calculated_review_status() | |
1001 | CommentsModel().delete(comment=co) |
|
1038 | CommentsModel().delete(comment=co) | |
1002 | Session().commit() |
|
1039 | Session().commit() | |
1003 | calculated_status = co.pull_request.calculated_review_status() |
|
1040 | calculated_status = co.pull_request.calculated_review_status() | |
1004 | if old_calculated_status != calculated_status: |
|
1041 | if old_calculated_status != calculated_status: | |
1005 | PullRequestModel()._trigger_pull_request_hook( |
|
1042 | PullRequestModel()._trigger_pull_request_hook( | |
1006 | co.pull_request, c.rhodecode_user, 'review_status_change') |
|
1043 | co.pull_request, c.rhodecode_user, 'review_status_change') | |
1007 | return True |
|
1044 | return True | |
1008 | else: |
|
1045 | else: | |
1009 | raise HTTPForbidden() |
|
1046 | raise HTTPForbidden() |
@@ -1,701 +1,703 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2011-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2011-2017 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 | import logging |
|
21 | import logging | |
22 | import difflib |
|
22 | import difflib | |
23 | from itertools import groupby |
|
23 | from itertools import groupby | |
24 |
|
24 | |||
25 | from pygments import lex |
|
25 | from pygments import lex | |
26 | from pygments.formatters.html import _get_ttype_class as pygment_token_class |
|
26 | from pygments.formatters.html import _get_ttype_class as pygment_token_class | |
27 | from rhodecode.lib.helpers import ( |
|
27 | from rhodecode.lib.helpers import ( | |
28 | get_lexer_for_filenode, html_escape) |
|
28 | get_lexer_for_filenode, html_escape) | |
29 | from rhodecode.lib.utils2 import AttributeDict |
|
29 | from rhodecode.lib.utils2 import AttributeDict | |
30 | from rhodecode.lib.vcs.nodes import FileNode |
|
30 | from rhodecode.lib.vcs.nodes import FileNode | |
31 | from rhodecode.lib.diff_match_patch import diff_match_patch |
|
31 | from rhodecode.lib.diff_match_patch import diff_match_patch | |
32 | from rhodecode.lib.diffs import LimitedDiffContainer |
|
32 | from rhodecode.lib.diffs import LimitedDiffContainer | |
33 | from pygments.lexers import get_lexer_by_name |
|
33 | from pygments.lexers import get_lexer_by_name | |
34 |
|
34 | |||
35 | plain_text_lexer = get_lexer_by_name( |
|
35 | plain_text_lexer = get_lexer_by_name( | |
36 | 'text', stripall=False, stripnl=False, ensurenl=False) |
|
36 | 'text', stripall=False, stripnl=False, ensurenl=False) | |
37 |
|
37 | |||
38 |
|
38 | |||
39 | log = logging.getLogger() |
|
39 | log = logging.getLogger() | |
40 |
|
40 | |||
41 |
|
41 | |||
42 | def filenode_as_lines_tokens(filenode, lexer=None): |
|
42 | def filenode_as_lines_tokens(filenode, lexer=None): | |
43 | org_lexer = lexer |
|
43 | org_lexer = lexer | |
44 | lexer = lexer or get_lexer_for_filenode(filenode) |
|
44 | lexer = lexer or get_lexer_for_filenode(filenode) | |
45 | log.debug('Generating file node pygment tokens for %s, %s, org_lexer:%s', |
|
45 | log.debug('Generating file node pygment tokens for %s, %s, org_lexer:%s', | |
46 | lexer, filenode, org_lexer) |
|
46 | lexer, filenode, org_lexer) | |
47 | tokens = tokenize_string(filenode.content, lexer) |
|
47 | tokens = tokenize_string(filenode.content, lexer) | |
48 | lines = split_token_stream(tokens, split_string='\n') |
|
48 | lines = split_token_stream(tokens, split_string='\n') | |
49 | rv = list(lines) |
|
49 | rv = list(lines) | |
50 | return rv |
|
50 | return rv | |
51 |
|
51 | |||
52 |
|
52 | |||
53 | def tokenize_string(content, lexer): |
|
53 | def tokenize_string(content, lexer): | |
54 | """ |
|
54 | """ | |
55 | Use pygments to tokenize some content based on a lexer |
|
55 | Use pygments to tokenize some content based on a lexer | |
56 | ensuring all original new lines and whitespace is preserved |
|
56 | ensuring all original new lines and whitespace is preserved | |
57 | """ |
|
57 | """ | |
58 |
|
58 | |||
59 | lexer.stripall = False |
|
59 | lexer.stripall = False | |
60 | lexer.stripnl = False |
|
60 | lexer.stripnl = False | |
61 | lexer.ensurenl = False |
|
61 | lexer.ensurenl = False | |
62 | for token_type, token_text in lex(content, lexer): |
|
62 | for token_type, token_text in lex(content, lexer): | |
63 | yield pygment_token_class(token_type), token_text |
|
63 | yield pygment_token_class(token_type), token_text | |
64 |
|
64 | |||
65 |
|
65 | |||
66 | def split_token_stream(tokens, split_string=u'\n'): |
|
66 | def split_token_stream(tokens, split_string=u'\n'): | |
67 | """ |
|
67 | """ | |
68 | Take a list of (TokenType, text) tuples and split them by a string |
|
68 | Take a list of (TokenType, text) tuples and split them by a string | |
69 |
|
69 | |||
70 | >>> split_token_stream([(TEXT, 'some\ntext'), (TEXT, 'more\n')]) |
|
70 | >>> split_token_stream([(TEXT, 'some\ntext'), (TEXT, 'more\n')]) | |
71 | [(TEXT, 'some'), (TEXT, 'text'), |
|
71 | [(TEXT, 'some'), (TEXT, 'text'), | |
72 | (TEXT, 'more'), (TEXT, 'text')] |
|
72 | (TEXT, 'more'), (TEXT, 'text')] | |
73 | """ |
|
73 | """ | |
74 |
|
74 | |||
75 | buffer = [] |
|
75 | buffer = [] | |
76 | for token_class, token_text in tokens: |
|
76 | for token_class, token_text in tokens: | |
77 | parts = token_text.split(split_string) |
|
77 | parts = token_text.split(split_string) | |
78 | for part in parts[:-1]: |
|
78 | for part in parts[:-1]: | |
79 | buffer.append((token_class, part)) |
|
79 | buffer.append((token_class, part)) | |
80 | yield buffer |
|
80 | yield buffer | |
81 | buffer = [] |
|
81 | buffer = [] | |
82 |
|
82 | |||
83 | buffer.append((token_class, parts[-1])) |
|
83 | buffer.append((token_class, parts[-1])) | |
84 |
|
84 | |||
85 | if buffer: |
|
85 | if buffer: | |
86 | yield buffer |
|
86 | yield buffer | |
87 |
|
87 | |||
88 |
|
88 | |||
89 | def filenode_as_annotated_lines_tokens(filenode): |
|
89 | def filenode_as_annotated_lines_tokens(filenode): | |
90 | """ |
|
90 | """ | |
91 | Take a file node and return a list of annotations => lines, if no annotation |
|
91 | Take a file node and return a list of annotations => lines, if no annotation | |
92 | is found, it will be None. |
|
92 | is found, it will be None. | |
93 |
|
93 | |||
94 | eg: |
|
94 | eg: | |
95 |
|
95 | |||
96 | [ |
|
96 | [ | |
97 | (annotation1, [ |
|
97 | (annotation1, [ | |
98 | (1, line1_tokens_list), |
|
98 | (1, line1_tokens_list), | |
99 | (2, line2_tokens_list), |
|
99 | (2, line2_tokens_list), | |
100 | ]), |
|
100 | ]), | |
101 | (annotation2, [ |
|
101 | (annotation2, [ | |
102 | (3, line1_tokens_list), |
|
102 | (3, line1_tokens_list), | |
103 | ]), |
|
103 | ]), | |
104 | (None, [ |
|
104 | (None, [ | |
105 | (4, line1_tokens_list), |
|
105 | (4, line1_tokens_list), | |
106 | ]), |
|
106 | ]), | |
107 | (annotation1, [ |
|
107 | (annotation1, [ | |
108 | (5, line1_tokens_list), |
|
108 | (5, line1_tokens_list), | |
109 | (6, line2_tokens_list), |
|
109 | (6, line2_tokens_list), | |
110 | ]) |
|
110 | ]) | |
111 | ] |
|
111 | ] | |
112 | """ |
|
112 | """ | |
113 |
|
113 | |||
114 | commit_cache = {} # cache commit_getter lookups |
|
114 | commit_cache = {} # cache commit_getter lookups | |
115 |
|
115 | |||
116 | def _get_annotation(commit_id, commit_getter): |
|
116 | def _get_annotation(commit_id, commit_getter): | |
117 | if commit_id not in commit_cache: |
|
117 | if commit_id not in commit_cache: | |
118 | commit_cache[commit_id] = commit_getter() |
|
118 | commit_cache[commit_id] = commit_getter() | |
119 | return commit_cache[commit_id] |
|
119 | return commit_cache[commit_id] | |
120 |
|
120 | |||
121 | annotation_lookup = { |
|
121 | annotation_lookup = { | |
122 | line_no: _get_annotation(commit_id, commit_getter) |
|
122 | line_no: _get_annotation(commit_id, commit_getter) | |
123 | for line_no, commit_id, commit_getter, line_content |
|
123 | for line_no, commit_id, commit_getter, line_content | |
124 | in filenode.annotate |
|
124 | in filenode.annotate | |
125 | } |
|
125 | } | |
126 |
|
126 | |||
127 | annotations_lines = ((annotation_lookup.get(line_no), line_no, tokens) |
|
127 | annotations_lines = ((annotation_lookup.get(line_no), line_no, tokens) | |
128 | for line_no, tokens |
|
128 | for line_no, tokens | |
129 | in enumerate(filenode_as_lines_tokens(filenode), 1)) |
|
129 | in enumerate(filenode_as_lines_tokens(filenode), 1)) | |
130 |
|
130 | |||
131 | grouped_annotations_lines = groupby(annotations_lines, lambda x: x[0]) |
|
131 | grouped_annotations_lines = groupby(annotations_lines, lambda x: x[0]) | |
132 |
|
132 | |||
133 | for annotation, group in grouped_annotations_lines: |
|
133 | for annotation, group in grouped_annotations_lines: | |
134 | yield ( |
|
134 | yield ( | |
135 | annotation, [(line_no, tokens) |
|
135 | annotation, [(line_no, tokens) | |
136 | for (_, line_no, tokens) in group] |
|
136 | for (_, line_no, tokens) in group] | |
137 | ) |
|
137 | ) | |
138 |
|
138 | |||
139 |
|
139 | |||
140 | def render_tokenstream(tokenstream): |
|
140 | def render_tokenstream(tokenstream): | |
141 | result = [] |
|
141 | result = [] | |
142 | for token_class, token_ops_texts in rollup_tokenstream(tokenstream): |
|
142 | for token_class, token_ops_texts in rollup_tokenstream(tokenstream): | |
143 |
|
143 | |||
144 | if token_class: |
|
144 | if token_class: | |
145 | result.append(u'<span class="%s">' % token_class) |
|
145 | result.append(u'<span class="%s">' % token_class) | |
146 | else: |
|
146 | else: | |
147 | result.append(u'<span>') |
|
147 | result.append(u'<span>') | |
148 |
|
148 | |||
149 | for op_tag, token_text in token_ops_texts: |
|
149 | for op_tag, token_text in token_ops_texts: | |
150 |
|
150 | |||
151 | if op_tag: |
|
151 | if op_tag: | |
152 | result.append(u'<%s>' % op_tag) |
|
152 | result.append(u'<%s>' % op_tag) | |
153 |
|
153 | |||
154 | escaped_text = html_escape(token_text) |
|
154 | escaped_text = html_escape(token_text) | |
155 |
|
155 | |||
156 | # TODO: dan: investigate showing hidden characters like space/nl/tab |
|
156 | # TODO: dan: investigate showing hidden characters like space/nl/tab | |
157 | # escaped_text = escaped_text.replace(' ', '<sp> </sp>') |
|
157 | # escaped_text = escaped_text.replace(' ', '<sp> </sp>') | |
158 | # escaped_text = escaped_text.replace('\n', '<nl>\n</nl>') |
|
158 | # escaped_text = escaped_text.replace('\n', '<nl>\n</nl>') | |
159 | # escaped_text = escaped_text.replace('\t', '<tab>\t</tab>') |
|
159 | # escaped_text = escaped_text.replace('\t', '<tab>\t</tab>') | |
160 |
|
160 | |||
161 | result.append(escaped_text) |
|
161 | result.append(escaped_text) | |
162 |
|
162 | |||
163 | if op_tag: |
|
163 | if op_tag: | |
164 | result.append(u'</%s>' % op_tag) |
|
164 | result.append(u'</%s>' % op_tag) | |
165 |
|
165 | |||
166 | result.append(u'</span>') |
|
166 | result.append(u'</span>') | |
167 |
|
167 | |||
168 | html = ''.join(result) |
|
168 | html = ''.join(result) | |
169 | return html |
|
169 | return html | |
170 |
|
170 | |||
171 |
|
171 | |||
172 | def rollup_tokenstream(tokenstream): |
|
172 | def rollup_tokenstream(tokenstream): | |
173 | """ |
|
173 | """ | |
174 | Group a token stream of the format: |
|
174 | Group a token stream of the format: | |
175 |
|
175 | |||
176 | ('class', 'op', 'text') |
|
176 | ('class', 'op', 'text') | |
177 | or |
|
177 | or | |
178 | ('class', 'text') |
|
178 | ('class', 'text') | |
179 |
|
179 | |||
180 | into |
|
180 | into | |
181 |
|
181 | |||
182 | [('class1', |
|
182 | [('class1', | |
183 | [('op1', 'text'), |
|
183 | [('op1', 'text'), | |
184 | ('op2', 'text')]), |
|
184 | ('op2', 'text')]), | |
185 | ('class2', |
|
185 | ('class2', | |
186 | [('op3', 'text')])] |
|
186 | [('op3', 'text')])] | |
187 |
|
187 | |||
188 | This is used to get the minimal tags necessary when |
|
188 | This is used to get the minimal tags necessary when | |
189 | rendering to html eg for a token stream ie. |
|
189 | rendering to html eg for a token stream ie. | |
190 |
|
190 | |||
191 | <span class="A"><ins>he</ins>llo</span> |
|
191 | <span class="A"><ins>he</ins>llo</span> | |
192 | vs |
|
192 | vs | |
193 | <span class="A"><ins>he</ins></span><span class="A">llo</span> |
|
193 | <span class="A"><ins>he</ins></span><span class="A">llo</span> | |
194 |
|
194 | |||
195 | If a 2 tuple is passed in, the output op will be an empty string. |
|
195 | If a 2 tuple is passed in, the output op will be an empty string. | |
196 |
|
196 | |||
197 | eg: |
|
197 | eg: | |
198 |
|
198 | |||
199 | >>> rollup_tokenstream([('classA', '', 'h'), |
|
199 | >>> rollup_tokenstream([('classA', '', 'h'), | |
200 | ('classA', 'del', 'ell'), |
|
200 | ('classA', 'del', 'ell'), | |
201 | ('classA', '', 'o'), |
|
201 | ('classA', '', 'o'), | |
202 | ('classB', '', ' '), |
|
202 | ('classB', '', ' '), | |
203 | ('classA', '', 'the'), |
|
203 | ('classA', '', 'the'), | |
204 | ('classA', '', 're'), |
|
204 | ('classA', '', 're'), | |
205 | ]) |
|
205 | ]) | |
206 |
|
206 | |||
207 | [('classA', [('', 'h'), ('del', 'ell'), ('', 'o')], |
|
207 | [('classA', [('', 'h'), ('del', 'ell'), ('', 'o')], | |
208 | ('classB', [('', ' ')], |
|
208 | ('classB', [('', ' ')], | |
209 | ('classA', [('', 'there')]] |
|
209 | ('classA', [('', 'there')]] | |
210 |
|
210 | |||
211 | """ |
|
211 | """ | |
212 | if tokenstream and len(tokenstream[0]) == 2: |
|
212 | if tokenstream and len(tokenstream[0]) == 2: | |
213 | tokenstream = ((t[0], '', t[1]) for t in tokenstream) |
|
213 | tokenstream = ((t[0], '', t[1]) for t in tokenstream) | |
214 |
|
214 | |||
215 | result = [] |
|
215 | result = [] | |
216 | for token_class, op_list in groupby(tokenstream, lambda t: t[0]): |
|
216 | for token_class, op_list in groupby(tokenstream, lambda t: t[0]): | |
217 | ops = [] |
|
217 | ops = [] | |
218 | for token_op, token_text_list in groupby(op_list, lambda o: o[1]): |
|
218 | for token_op, token_text_list in groupby(op_list, lambda o: o[1]): | |
219 | text_buffer = [] |
|
219 | text_buffer = [] | |
220 | for t_class, t_op, t_text in token_text_list: |
|
220 | for t_class, t_op, t_text in token_text_list: | |
221 | text_buffer.append(t_text) |
|
221 | text_buffer.append(t_text) | |
222 | ops.append((token_op, ''.join(text_buffer))) |
|
222 | ops.append((token_op, ''.join(text_buffer))) | |
223 | result.append((token_class, ops)) |
|
223 | result.append((token_class, ops)) | |
224 | return result |
|
224 | return result | |
225 |
|
225 | |||
226 |
|
226 | |||
227 | def tokens_diff(old_tokens, new_tokens, use_diff_match_patch=True): |
|
227 | def tokens_diff(old_tokens, new_tokens, use_diff_match_patch=True): | |
228 | """ |
|
228 | """ | |
229 | Converts a list of (token_class, token_text) tuples to a list of |
|
229 | Converts a list of (token_class, token_text) tuples to a list of | |
230 | (token_class, token_op, token_text) tuples where token_op is one of |
|
230 | (token_class, token_op, token_text) tuples where token_op is one of | |
231 | ('ins', 'del', '') |
|
231 | ('ins', 'del', '') | |
232 |
|
232 | |||
233 | :param old_tokens: list of (token_class, token_text) tuples of old line |
|
233 | :param old_tokens: list of (token_class, token_text) tuples of old line | |
234 | :param new_tokens: list of (token_class, token_text) tuples of new line |
|
234 | :param new_tokens: list of (token_class, token_text) tuples of new line | |
235 | :param use_diff_match_patch: boolean, will use google's diff match patch |
|
235 | :param use_diff_match_patch: boolean, will use google's diff match patch | |
236 | library which has options to 'smooth' out the character by character |
|
236 | library which has options to 'smooth' out the character by character | |
237 | differences making nicer ins/del blocks |
|
237 | differences making nicer ins/del blocks | |
238 | """ |
|
238 | """ | |
239 |
|
239 | |||
240 | old_tokens_result = [] |
|
240 | old_tokens_result = [] | |
241 | new_tokens_result = [] |
|
241 | new_tokens_result = [] | |
242 |
|
242 | |||
243 | similarity = difflib.SequenceMatcher(None, |
|
243 | similarity = difflib.SequenceMatcher(None, | |
244 | ''.join(token_text for token_class, token_text in old_tokens), |
|
244 | ''.join(token_text for token_class, token_text in old_tokens), | |
245 | ''.join(token_text for token_class, token_text in new_tokens) |
|
245 | ''.join(token_text for token_class, token_text in new_tokens) | |
246 | ).ratio() |
|
246 | ).ratio() | |
247 |
|
247 | |||
248 | if similarity < 0.6: # return, the blocks are too different |
|
248 | if similarity < 0.6: # return, the blocks are too different | |
249 | for token_class, token_text in old_tokens: |
|
249 | for token_class, token_text in old_tokens: | |
250 | old_tokens_result.append((token_class, '', token_text)) |
|
250 | old_tokens_result.append((token_class, '', token_text)) | |
251 | for token_class, token_text in new_tokens: |
|
251 | for token_class, token_text in new_tokens: | |
252 | new_tokens_result.append((token_class, '', token_text)) |
|
252 | new_tokens_result.append((token_class, '', token_text)) | |
253 | return old_tokens_result, new_tokens_result, similarity |
|
253 | return old_tokens_result, new_tokens_result, similarity | |
254 |
|
254 | |||
255 | token_sequence_matcher = difflib.SequenceMatcher(None, |
|
255 | token_sequence_matcher = difflib.SequenceMatcher(None, | |
256 | [x[1] for x in old_tokens], |
|
256 | [x[1] for x in old_tokens], | |
257 | [x[1] for x in new_tokens]) |
|
257 | [x[1] for x in new_tokens]) | |
258 |
|
258 | |||
259 | for tag, o1, o2, n1, n2 in token_sequence_matcher.get_opcodes(): |
|
259 | for tag, o1, o2, n1, n2 in token_sequence_matcher.get_opcodes(): | |
260 | # check the differences by token block types first to give a more |
|
260 | # check the differences by token block types first to give a more | |
261 | # nicer "block" level replacement vs character diffs |
|
261 | # nicer "block" level replacement vs character diffs | |
262 |
|
262 | |||
263 | if tag == 'equal': |
|
263 | if tag == 'equal': | |
264 | for token_class, token_text in old_tokens[o1:o2]: |
|
264 | for token_class, token_text in old_tokens[o1:o2]: | |
265 | old_tokens_result.append((token_class, '', token_text)) |
|
265 | old_tokens_result.append((token_class, '', token_text)) | |
266 | for token_class, token_text in new_tokens[n1:n2]: |
|
266 | for token_class, token_text in new_tokens[n1:n2]: | |
267 | new_tokens_result.append((token_class, '', token_text)) |
|
267 | new_tokens_result.append((token_class, '', token_text)) | |
268 | elif tag == 'delete': |
|
268 | elif tag == 'delete': | |
269 | for token_class, token_text in old_tokens[o1:o2]: |
|
269 | for token_class, token_text in old_tokens[o1:o2]: | |
270 | old_tokens_result.append((token_class, 'del', token_text)) |
|
270 | old_tokens_result.append((token_class, 'del', token_text)) | |
271 | elif tag == 'insert': |
|
271 | elif tag == 'insert': | |
272 | for token_class, token_text in new_tokens[n1:n2]: |
|
272 | for token_class, token_text in new_tokens[n1:n2]: | |
273 | new_tokens_result.append((token_class, 'ins', token_text)) |
|
273 | new_tokens_result.append((token_class, 'ins', token_text)) | |
274 | elif tag == 'replace': |
|
274 | elif tag == 'replace': | |
275 | # if same type token blocks must be replaced, do a diff on the |
|
275 | # if same type token blocks must be replaced, do a diff on the | |
276 | # characters in the token blocks to show individual changes |
|
276 | # characters in the token blocks to show individual changes | |
277 |
|
277 | |||
278 | old_char_tokens = [] |
|
278 | old_char_tokens = [] | |
279 | new_char_tokens = [] |
|
279 | new_char_tokens = [] | |
280 | for token_class, token_text in old_tokens[o1:o2]: |
|
280 | for token_class, token_text in old_tokens[o1:o2]: | |
281 | for char in token_text: |
|
281 | for char in token_text: | |
282 | old_char_tokens.append((token_class, char)) |
|
282 | old_char_tokens.append((token_class, char)) | |
283 |
|
283 | |||
284 | for token_class, token_text in new_tokens[n1:n2]: |
|
284 | for token_class, token_text in new_tokens[n1:n2]: | |
285 | for char in token_text: |
|
285 | for char in token_text: | |
286 | new_char_tokens.append((token_class, char)) |
|
286 | new_char_tokens.append((token_class, char)) | |
287 |
|
287 | |||
288 | old_string = ''.join([token_text for |
|
288 | old_string = ''.join([token_text for | |
289 | token_class, token_text in old_char_tokens]) |
|
289 | token_class, token_text in old_char_tokens]) | |
290 | new_string = ''.join([token_text for |
|
290 | new_string = ''.join([token_text for | |
291 | token_class, token_text in new_char_tokens]) |
|
291 | token_class, token_text in new_char_tokens]) | |
292 |
|
292 | |||
293 | char_sequence = difflib.SequenceMatcher( |
|
293 | char_sequence = difflib.SequenceMatcher( | |
294 | None, old_string, new_string) |
|
294 | None, old_string, new_string) | |
295 | copcodes = char_sequence.get_opcodes() |
|
295 | copcodes = char_sequence.get_opcodes() | |
296 | obuffer, nbuffer = [], [] |
|
296 | obuffer, nbuffer = [], [] | |
297 |
|
297 | |||
298 | if use_diff_match_patch: |
|
298 | if use_diff_match_patch: | |
299 | dmp = diff_match_patch() |
|
299 | dmp = diff_match_patch() | |
300 | dmp.Diff_EditCost = 11 # TODO: dan: extract this to a setting |
|
300 | dmp.Diff_EditCost = 11 # TODO: dan: extract this to a setting | |
301 | reps = dmp.diff_main(old_string, new_string) |
|
301 | reps = dmp.diff_main(old_string, new_string) | |
302 | dmp.diff_cleanupEfficiency(reps) |
|
302 | dmp.diff_cleanupEfficiency(reps) | |
303 |
|
303 | |||
304 | a, b = 0, 0 |
|
304 | a, b = 0, 0 | |
305 | for op, rep in reps: |
|
305 | for op, rep in reps: | |
306 | l = len(rep) |
|
306 | l = len(rep) | |
307 | if op == 0: |
|
307 | if op == 0: | |
308 | for i, c in enumerate(rep): |
|
308 | for i, c in enumerate(rep): | |
309 | obuffer.append((old_char_tokens[a+i][0], '', c)) |
|
309 | obuffer.append((old_char_tokens[a+i][0], '', c)) | |
310 | nbuffer.append((new_char_tokens[b+i][0], '', c)) |
|
310 | nbuffer.append((new_char_tokens[b+i][0], '', c)) | |
311 | a += l |
|
311 | a += l | |
312 | b += l |
|
312 | b += l | |
313 | elif op == -1: |
|
313 | elif op == -1: | |
314 | for i, c in enumerate(rep): |
|
314 | for i, c in enumerate(rep): | |
315 | obuffer.append((old_char_tokens[a+i][0], 'del', c)) |
|
315 | obuffer.append((old_char_tokens[a+i][0], 'del', c)) | |
316 | a += l |
|
316 | a += l | |
317 | elif op == 1: |
|
317 | elif op == 1: | |
318 | for i, c in enumerate(rep): |
|
318 | for i, c in enumerate(rep): | |
319 | nbuffer.append((new_char_tokens[b+i][0], 'ins', c)) |
|
319 | nbuffer.append((new_char_tokens[b+i][0], 'ins', c)) | |
320 | b += l |
|
320 | b += l | |
321 | else: |
|
321 | else: | |
322 | for ctag, co1, co2, cn1, cn2 in copcodes: |
|
322 | for ctag, co1, co2, cn1, cn2 in copcodes: | |
323 | if ctag == 'equal': |
|
323 | if ctag == 'equal': | |
324 | for token_class, token_text in old_char_tokens[co1:co2]: |
|
324 | for token_class, token_text in old_char_tokens[co1:co2]: | |
325 | obuffer.append((token_class, '', token_text)) |
|
325 | obuffer.append((token_class, '', token_text)) | |
326 | for token_class, token_text in new_char_tokens[cn1:cn2]: |
|
326 | for token_class, token_text in new_char_tokens[cn1:cn2]: | |
327 | nbuffer.append((token_class, '', token_text)) |
|
327 | nbuffer.append((token_class, '', token_text)) | |
328 | elif ctag == 'delete': |
|
328 | elif ctag == 'delete': | |
329 | for token_class, token_text in old_char_tokens[co1:co2]: |
|
329 | for token_class, token_text in old_char_tokens[co1:co2]: | |
330 | obuffer.append((token_class, 'del', token_text)) |
|
330 | obuffer.append((token_class, 'del', token_text)) | |
331 | elif ctag == 'insert': |
|
331 | elif ctag == 'insert': | |
332 | for token_class, token_text in new_char_tokens[cn1:cn2]: |
|
332 | for token_class, token_text in new_char_tokens[cn1:cn2]: | |
333 | nbuffer.append((token_class, 'ins', token_text)) |
|
333 | nbuffer.append((token_class, 'ins', token_text)) | |
334 | elif ctag == 'replace': |
|
334 | elif ctag == 'replace': | |
335 | for token_class, token_text in old_char_tokens[co1:co2]: |
|
335 | for token_class, token_text in old_char_tokens[co1:co2]: | |
336 | obuffer.append((token_class, 'del', token_text)) |
|
336 | obuffer.append((token_class, 'del', token_text)) | |
337 | for token_class, token_text in new_char_tokens[cn1:cn2]: |
|
337 | for token_class, token_text in new_char_tokens[cn1:cn2]: | |
338 | nbuffer.append((token_class, 'ins', token_text)) |
|
338 | nbuffer.append((token_class, 'ins', token_text)) | |
339 |
|
339 | |||
340 | old_tokens_result.extend(obuffer) |
|
340 | old_tokens_result.extend(obuffer) | |
341 | new_tokens_result.extend(nbuffer) |
|
341 | new_tokens_result.extend(nbuffer) | |
342 |
|
342 | |||
343 | return old_tokens_result, new_tokens_result, similarity |
|
343 | return old_tokens_result, new_tokens_result, similarity | |
344 |
|
344 | |||
345 |
|
345 | |||
346 | class DiffSet(object): |
|
346 | class DiffSet(object): | |
347 | """ |
|
347 | """ | |
348 | An object for parsing the diff result from diffs.DiffProcessor and |
|
348 | An object for parsing the diff result from diffs.DiffProcessor and | |
349 | adding highlighting, side by side/unified renderings and line diffs |
|
349 | adding highlighting, side by side/unified renderings and line diffs | |
350 | """ |
|
350 | """ | |
351 |
|
351 | |||
352 | HL_REAL = 'REAL' # highlights using original file, slow |
|
352 | HL_REAL = 'REAL' # highlights using original file, slow | |
353 | HL_FAST = 'FAST' # highlights using just the line, fast but not correct |
|
353 | HL_FAST = 'FAST' # highlights using just the line, fast but not correct | |
354 | # in the case of multiline code |
|
354 | # in the case of multiline code | |
355 | HL_NONE = 'NONE' # no highlighting, fastest |
|
355 | HL_NONE = 'NONE' # no highlighting, fastest | |
356 |
|
356 | |||
357 | def __init__(self, highlight_mode=HL_REAL, repo_name=None, |
|
357 | def __init__(self, highlight_mode=HL_REAL, repo_name=None, | |
358 | source_repo_name=None, |
|
358 | source_repo_name=None, | |
359 | source_node_getter=lambda filename: None, |
|
359 | source_node_getter=lambda filename: None, | |
360 | target_node_getter=lambda filename: None, |
|
360 | target_node_getter=lambda filename: None, | |
361 | source_nodes=None, target_nodes=None, |
|
361 | source_nodes=None, target_nodes=None, | |
362 | max_file_size_limit=150 * 1024, # files over this size will |
|
362 | max_file_size_limit=150 * 1024, # files over this size will | |
363 | # use fast highlighting |
|
363 | # use fast highlighting | |
364 | comments=None, |
|
364 | comments=None, | |
365 | ): |
|
365 | ): | |
366 |
|
366 | |||
367 | self.highlight_mode = highlight_mode |
|
367 | self.highlight_mode = highlight_mode | |
368 | self.highlighted_filenodes = {} |
|
368 | self.highlighted_filenodes = {} | |
369 | self.source_node_getter = source_node_getter |
|
369 | self.source_node_getter = source_node_getter | |
370 | self.target_node_getter = target_node_getter |
|
370 | self.target_node_getter = target_node_getter | |
371 | self.source_nodes = source_nodes or {} |
|
371 | self.source_nodes = source_nodes or {} | |
372 | self.target_nodes = target_nodes or {} |
|
372 | self.target_nodes = target_nodes or {} | |
373 | self.repo_name = repo_name |
|
373 | self.repo_name = repo_name | |
374 | self.source_repo_name = source_repo_name or repo_name |
|
374 | self.source_repo_name = source_repo_name or repo_name | |
375 | self.comments = comments or {} |
|
375 | self.comments = comments or {} | |
376 | self.comments_store = self.comments.copy() |
|
376 | self.comments_store = self.comments.copy() | |
377 | self.max_file_size_limit = max_file_size_limit |
|
377 | self.max_file_size_limit = max_file_size_limit | |
378 |
|
378 | |||
379 | def render_patchset(self, patchset, source_ref=None, target_ref=None): |
|
379 | def render_patchset(self, patchset, source_ref=None, target_ref=None): | |
380 | diffset = AttributeDict(dict( |
|
380 | diffset = AttributeDict(dict( | |
381 | lines_added=0, |
|
381 | lines_added=0, | |
382 | lines_deleted=0, |
|
382 | lines_deleted=0, | |
383 | changed_files=0, |
|
383 | changed_files=0, | |
384 | files=[], |
|
384 | files=[], | |
|
385 | file_stats={}, | |||
385 | limited_diff=isinstance(patchset, LimitedDiffContainer), |
|
386 | limited_diff=isinstance(patchset, LimitedDiffContainer), | |
386 | repo_name=self.repo_name, |
|
387 | repo_name=self.repo_name, | |
387 | source_repo_name=self.source_repo_name, |
|
388 | source_repo_name=self.source_repo_name, | |
388 | source_ref=source_ref, |
|
389 | source_ref=source_ref, | |
389 | target_ref=target_ref, |
|
390 | target_ref=target_ref, | |
390 | )) |
|
391 | )) | |
391 | for patch in patchset: |
|
392 | for patch in patchset: | |
|
393 | diffset.file_stats[patch['filename']] = patch['stats'] | |||
392 | filediff = self.render_patch(patch) |
|
394 | filediff = self.render_patch(patch) | |
393 | filediff.diffset = diffset |
|
395 | filediff.diffset = diffset | |
394 | diffset.files.append(filediff) |
|
396 | diffset.files.append(filediff) | |
395 | diffset.changed_files += 1 |
|
397 | diffset.changed_files += 1 | |
396 | if not patch['stats']['binary']: |
|
398 | if not patch['stats']['binary']: | |
397 | diffset.lines_added += patch['stats']['added'] |
|
399 | diffset.lines_added += patch['stats']['added'] | |
398 | diffset.lines_deleted += patch['stats']['deleted'] |
|
400 | diffset.lines_deleted += patch['stats']['deleted'] | |
399 |
|
401 | |||
400 | return diffset |
|
402 | return diffset | |
401 |
|
403 | |||
402 | _lexer_cache = {} |
|
404 | _lexer_cache = {} | |
403 | def _get_lexer_for_filename(self, filename, filenode=None): |
|
405 | def _get_lexer_for_filename(self, filename, filenode=None): | |
404 | # cached because we might need to call it twice for source/target |
|
406 | # cached because we might need to call it twice for source/target | |
405 | if filename not in self._lexer_cache: |
|
407 | if filename not in self._lexer_cache: | |
406 | if filenode: |
|
408 | if filenode: | |
407 | lexer = filenode.lexer |
|
409 | lexer = filenode.lexer | |
408 | else: |
|
410 | else: | |
409 | lexer = FileNode.get_lexer(filename=filename) |
|
411 | lexer = FileNode.get_lexer(filename=filename) | |
410 | self._lexer_cache[filename] = lexer |
|
412 | self._lexer_cache[filename] = lexer | |
411 | return self._lexer_cache[filename] |
|
413 | return self._lexer_cache[filename] | |
412 |
|
414 | |||
413 | def render_patch(self, patch): |
|
415 | def render_patch(self, patch): | |
414 | log.debug('rendering diff for %r' % patch['filename']) |
|
416 | log.debug('rendering diff for %r' % patch['filename']) | |
415 |
|
417 | |||
416 | source_filename = patch['original_filename'] |
|
418 | source_filename = patch['original_filename'] | |
417 | target_filename = patch['filename'] |
|
419 | target_filename = patch['filename'] | |
418 |
|
420 | |||
419 | source_lexer = plain_text_lexer |
|
421 | source_lexer = plain_text_lexer | |
420 | target_lexer = plain_text_lexer |
|
422 | target_lexer = plain_text_lexer | |
421 |
|
423 | |||
422 | if not patch['stats']['binary']: |
|
424 | if not patch['stats']['binary']: | |
423 | if self.highlight_mode == self.HL_REAL: |
|
425 | if self.highlight_mode == self.HL_REAL: | |
424 | if (source_filename and patch['operation'] in ('D', 'M') |
|
426 | if (source_filename and patch['operation'] in ('D', 'M') | |
425 | and source_filename not in self.source_nodes): |
|
427 | and source_filename not in self.source_nodes): | |
426 | self.source_nodes[source_filename] = ( |
|
428 | self.source_nodes[source_filename] = ( | |
427 | self.source_node_getter(source_filename)) |
|
429 | self.source_node_getter(source_filename)) | |
428 |
|
430 | |||
429 | if (target_filename and patch['operation'] in ('A', 'M') |
|
431 | if (target_filename and patch['operation'] in ('A', 'M') | |
430 | and target_filename not in self.target_nodes): |
|
432 | and target_filename not in self.target_nodes): | |
431 | self.target_nodes[target_filename] = ( |
|
433 | self.target_nodes[target_filename] = ( | |
432 | self.target_node_getter(target_filename)) |
|
434 | self.target_node_getter(target_filename)) | |
433 |
|
435 | |||
434 | elif self.highlight_mode == self.HL_FAST: |
|
436 | elif self.highlight_mode == self.HL_FAST: | |
435 | source_lexer = self._get_lexer_for_filename(source_filename) |
|
437 | source_lexer = self._get_lexer_for_filename(source_filename) | |
436 | target_lexer = self._get_lexer_for_filename(target_filename) |
|
438 | target_lexer = self._get_lexer_for_filename(target_filename) | |
437 |
|
439 | |||
438 | source_file = self.source_nodes.get(source_filename, source_filename) |
|
440 | source_file = self.source_nodes.get(source_filename, source_filename) | |
439 | target_file = self.target_nodes.get(target_filename, target_filename) |
|
441 | target_file = self.target_nodes.get(target_filename, target_filename) | |
440 |
|
442 | |||
441 | source_filenode, target_filenode = None, None |
|
443 | source_filenode, target_filenode = None, None | |
442 |
|
444 | |||
443 | # TODO: dan: FileNode.lexer works on the content of the file - which |
|
445 | # TODO: dan: FileNode.lexer works on the content of the file - which | |
444 | # can be slow - issue #4289 explains a lexer clean up - which once |
|
446 | # can be slow - issue #4289 explains a lexer clean up - which once | |
445 | # done can allow caching a lexer for a filenode to avoid the file lookup |
|
447 | # done can allow caching a lexer for a filenode to avoid the file lookup | |
446 | if isinstance(source_file, FileNode): |
|
448 | if isinstance(source_file, FileNode): | |
447 | source_filenode = source_file |
|
449 | source_filenode = source_file | |
448 | #source_lexer = source_file.lexer |
|
450 | #source_lexer = source_file.lexer | |
449 | source_lexer = self._get_lexer_for_filename(source_filename) |
|
451 | source_lexer = self._get_lexer_for_filename(source_filename) | |
450 | source_file.lexer = source_lexer |
|
452 | source_file.lexer = source_lexer | |
451 |
|
453 | |||
452 | if isinstance(target_file, FileNode): |
|
454 | if isinstance(target_file, FileNode): | |
453 | target_filenode = target_file |
|
455 | target_filenode = target_file | |
454 | #target_lexer = target_file.lexer |
|
456 | #target_lexer = target_file.lexer | |
455 | target_lexer = self._get_lexer_for_filename(target_filename) |
|
457 | target_lexer = self._get_lexer_for_filename(target_filename) | |
456 | target_file.lexer = target_lexer |
|
458 | target_file.lexer = target_lexer | |
457 |
|
459 | |||
458 | source_file_path, target_file_path = None, None |
|
460 | source_file_path, target_file_path = None, None | |
459 |
|
461 | |||
460 | if source_filename != '/dev/null': |
|
462 | if source_filename != '/dev/null': | |
461 | source_file_path = source_filename |
|
463 | source_file_path = source_filename | |
462 | if target_filename != '/dev/null': |
|
464 | if target_filename != '/dev/null': | |
463 | target_file_path = target_filename |
|
465 | target_file_path = target_filename | |
464 |
|
466 | |||
465 | source_file_type = source_lexer.name |
|
467 | source_file_type = source_lexer.name | |
466 | target_file_type = target_lexer.name |
|
468 | target_file_type = target_lexer.name | |
467 |
|
469 | |||
468 | op_hunks = patch['chunks'][0] |
|
470 | op_hunks = patch['chunks'][0] | |
469 | hunks = patch['chunks'][1:] |
|
471 | hunks = patch['chunks'][1:] | |
470 |
|
472 | |||
471 | filediff = AttributeDict({ |
|
473 | filediff = AttributeDict({ | |
472 | 'source_file_path': source_file_path, |
|
474 | 'source_file_path': source_file_path, | |
473 | 'target_file_path': target_file_path, |
|
475 | 'target_file_path': target_file_path, | |
474 | 'source_filenode': source_filenode, |
|
476 | 'source_filenode': source_filenode, | |
475 | 'target_filenode': target_filenode, |
|
477 | 'target_filenode': target_filenode, | |
476 | 'hunks': [], |
|
478 | 'hunks': [], | |
477 | 'source_file_type': target_file_type, |
|
479 | 'source_file_type': target_file_type, | |
478 | 'target_file_type': source_file_type, |
|
480 | 'target_file_type': source_file_type, | |
479 | 'patch': patch, |
|
481 | 'patch': patch, | |
480 | 'source_mode': patch['stats']['old_mode'], |
|
482 | 'source_mode': patch['stats']['old_mode'], | |
481 | 'target_mode': patch['stats']['new_mode'], |
|
483 | 'target_mode': patch['stats']['new_mode'], | |
482 | 'limited_diff': isinstance(patch, LimitedDiffContainer), |
|
484 | 'limited_diff': isinstance(patch, LimitedDiffContainer), | |
483 | 'diffset': self, |
|
485 | 'diffset': self, | |
484 | }) |
|
486 | }) | |
485 |
|
487 | |||
486 | for hunk in hunks: |
|
488 | for hunk in hunks: | |
487 | hunkbit = self.parse_hunk(hunk, source_file, target_file) |
|
489 | hunkbit = self.parse_hunk(hunk, source_file, target_file) | |
488 | hunkbit.filediff = filediff |
|
490 | hunkbit.filediff = filediff | |
489 | filediff.hunks.append(hunkbit) |
|
491 | filediff.hunks.append(hunkbit) | |
490 |
|
492 | |||
491 | left_comments = {} |
|
493 | left_comments = {} | |
492 |
|
494 | |||
493 | if source_file_path in self.comments_store: |
|
495 | if source_file_path in self.comments_store: | |
494 | for lineno, comments in self.comments_store[source_file_path].items(): |
|
496 | for lineno, comments in self.comments_store[source_file_path].items(): | |
495 | left_comments[lineno] = comments |
|
497 | left_comments[lineno] = comments | |
496 |
|
498 | |||
497 | if target_file_path in self.comments_store: |
|
499 | if target_file_path in self.comments_store: | |
498 | for lineno, comments in self.comments_store[target_file_path].items(): |
|
500 | for lineno, comments in self.comments_store[target_file_path].items(): | |
499 | left_comments[lineno] = comments |
|
501 | left_comments[lineno] = comments | |
500 |
|
502 | |||
501 | filediff.left_comments = left_comments |
|
503 | filediff.left_comments = left_comments | |
502 | return filediff |
|
504 | return filediff | |
503 |
|
505 | |||
504 | def parse_hunk(self, hunk, source_file, target_file): |
|
506 | def parse_hunk(self, hunk, source_file, target_file): | |
505 | result = AttributeDict(dict( |
|
507 | result = AttributeDict(dict( | |
506 | source_start=hunk['source_start'], |
|
508 | source_start=hunk['source_start'], | |
507 | source_length=hunk['source_length'], |
|
509 | source_length=hunk['source_length'], | |
508 | target_start=hunk['target_start'], |
|
510 | target_start=hunk['target_start'], | |
509 | target_length=hunk['target_length'], |
|
511 | target_length=hunk['target_length'], | |
510 | section_header=hunk['section_header'], |
|
512 | section_header=hunk['section_header'], | |
511 | lines=[], |
|
513 | lines=[], | |
512 | )) |
|
514 | )) | |
513 | before, after = [], [] |
|
515 | before, after = [], [] | |
514 |
|
516 | |||
515 | for line in hunk['lines']: |
|
517 | for line in hunk['lines']: | |
516 | if line['action'] == 'unmod': |
|
518 | if line['action'] == 'unmod': | |
517 | result.lines.extend( |
|
519 | result.lines.extend( | |
518 | self.parse_lines(before, after, source_file, target_file)) |
|
520 | self.parse_lines(before, after, source_file, target_file)) | |
519 | after.append(line) |
|
521 | after.append(line) | |
520 | before.append(line) |
|
522 | before.append(line) | |
521 | elif line['action'] == 'add': |
|
523 | elif line['action'] == 'add': | |
522 | after.append(line) |
|
524 | after.append(line) | |
523 | elif line['action'] == 'del': |
|
525 | elif line['action'] == 'del': | |
524 | before.append(line) |
|
526 | before.append(line) | |
525 | elif line['action'] == 'old-no-nl': |
|
527 | elif line['action'] == 'old-no-nl': | |
526 | before.append(line) |
|
528 | before.append(line) | |
527 | elif line['action'] == 'new-no-nl': |
|
529 | elif line['action'] == 'new-no-nl': | |
528 | after.append(line) |
|
530 | after.append(line) | |
529 |
|
531 | |||
530 | result.lines.extend( |
|
532 | result.lines.extend( | |
531 | self.parse_lines(before, after, source_file, target_file)) |
|
533 | self.parse_lines(before, after, source_file, target_file)) | |
532 | result.unified = self.as_unified(result.lines) |
|
534 | result.unified = self.as_unified(result.lines) | |
533 | result.sideside = result.lines |
|
535 | result.sideside = result.lines | |
534 |
|
536 | |||
535 | return result |
|
537 | return result | |
536 |
|
538 | |||
537 | def parse_lines(self, before_lines, after_lines, source_file, target_file): |
|
539 | def parse_lines(self, before_lines, after_lines, source_file, target_file): | |
538 | # TODO: dan: investigate doing the diff comparison and fast highlighting |
|
540 | # TODO: dan: investigate doing the diff comparison and fast highlighting | |
539 | # on the entire before and after buffered block lines rather than by |
|
541 | # on the entire before and after buffered block lines rather than by | |
540 | # line, this means we can get better 'fast' highlighting if the context |
|
542 | # line, this means we can get better 'fast' highlighting if the context | |
541 | # allows it - eg. |
|
543 | # allows it - eg. | |
542 | # line 4: """ |
|
544 | # line 4: """ | |
543 | # line 5: this gets highlighted as a string |
|
545 | # line 5: this gets highlighted as a string | |
544 | # line 6: """ |
|
546 | # line 6: """ | |
545 |
|
547 | |||
546 | lines = [] |
|
548 | lines = [] | |
547 | while before_lines or after_lines: |
|
549 | while before_lines or after_lines: | |
548 | before, after = None, None |
|
550 | before, after = None, None | |
549 | before_tokens, after_tokens = None, None |
|
551 | before_tokens, after_tokens = None, None | |
550 |
|
552 | |||
551 | if before_lines: |
|
553 | if before_lines: | |
552 | before = before_lines.pop(0) |
|
554 | before = before_lines.pop(0) | |
553 | if after_lines: |
|
555 | if after_lines: | |
554 | after = after_lines.pop(0) |
|
556 | after = after_lines.pop(0) | |
555 |
|
557 | |||
556 | original = AttributeDict() |
|
558 | original = AttributeDict() | |
557 | modified = AttributeDict() |
|
559 | modified = AttributeDict() | |
558 |
|
560 | |||
559 | if before: |
|
561 | if before: | |
560 | if before['action'] == 'old-no-nl': |
|
562 | if before['action'] == 'old-no-nl': | |
561 | before_tokens = [('nonl', before['line'])] |
|
563 | before_tokens = [('nonl', before['line'])] | |
562 | else: |
|
564 | else: | |
563 | before_tokens = self.get_line_tokens( |
|
565 | before_tokens = self.get_line_tokens( | |
564 | line_text=before['line'], line_number=before['old_lineno'], |
|
566 | line_text=before['line'], line_number=before['old_lineno'], | |
565 | file=source_file) |
|
567 | file=source_file) | |
566 | original.lineno = before['old_lineno'] |
|
568 | original.lineno = before['old_lineno'] | |
567 | original.content = before['line'] |
|
569 | original.content = before['line'] | |
568 | original.action = self.action_to_op(before['action']) |
|
570 | original.action = self.action_to_op(before['action']) | |
569 | original.comments = self.get_comments_for('old', |
|
571 | original.comments = self.get_comments_for('old', | |
570 | source_file, before['old_lineno']) |
|
572 | source_file, before['old_lineno']) | |
571 |
|
573 | |||
572 | if after: |
|
574 | if after: | |
573 | if after['action'] == 'new-no-nl': |
|
575 | if after['action'] == 'new-no-nl': | |
574 | after_tokens = [('nonl', after['line'])] |
|
576 | after_tokens = [('nonl', after['line'])] | |
575 | else: |
|
577 | else: | |
576 | after_tokens = self.get_line_tokens( |
|
578 | after_tokens = self.get_line_tokens( | |
577 | line_text=after['line'], line_number=after['new_lineno'], |
|
579 | line_text=after['line'], line_number=after['new_lineno'], | |
578 | file=target_file) |
|
580 | file=target_file) | |
579 | modified.lineno = after['new_lineno'] |
|
581 | modified.lineno = after['new_lineno'] | |
580 | modified.content = after['line'] |
|
582 | modified.content = after['line'] | |
581 | modified.action = self.action_to_op(after['action']) |
|
583 | modified.action = self.action_to_op(after['action']) | |
582 | modified.comments = self.get_comments_for('new', |
|
584 | modified.comments = self.get_comments_for('new', | |
583 | target_file, after['new_lineno']) |
|
585 | target_file, after['new_lineno']) | |
584 |
|
586 | |||
585 | # diff the lines |
|
587 | # diff the lines | |
586 | if before_tokens and after_tokens: |
|
588 | if before_tokens and after_tokens: | |
587 | o_tokens, m_tokens, similarity = tokens_diff( |
|
589 | o_tokens, m_tokens, similarity = tokens_diff( | |
588 | before_tokens, after_tokens) |
|
590 | before_tokens, after_tokens) | |
589 | original.content = render_tokenstream(o_tokens) |
|
591 | original.content = render_tokenstream(o_tokens) | |
590 | modified.content = render_tokenstream(m_tokens) |
|
592 | modified.content = render_tokenstream(m_tokens) | |
591 | elif before_tokens: |
|
593 | elif before_tokens: | |
592 | original.content = render_tokenstream( |
|
594 | original.content = render_tokenstream( | |
593 | [(x[0], '', x[1]) for x in before_tokens]) |
|
595 | [(x[0], '', x[1]) for x in before_tokens]) | |
594 | elif after_tokens: |
|
596 | elif after_tokens: | |
595 | modified.content = render_tokenstream( |
|
597 | modified.content = render_tokenstream( | |
596 | [(x[0], '', x[1]) for x in after_tokens]) |
|
598 | [(x[0], '', x[1]) for x in after_tokens]) | |
597 |
|
599 | |||
598 | lines.append(AttributeDict({ |
|
600 | lines.append(AttributeDict({ | |
599 | 'original': original, |
|
601 | 'original': original, | |
600 | 'modified': modified, |
|
602 | 'modified': modified, | |
601 | })) |
|
603 | })) | |
602 |
|
604 | |||
603 | return lines |
|
605 | return lines | |
604 |
|
606 | |||
605 | def get_comments_for(self, version, file, line_number): |
|
607 | def get_comments_for(self, version, file, line_number): | |
606 | if hasattr(file, 'unicode_path'): |
|
608 | if hasattr(file, 'unicode_path'): | |
607 | file = file.unicode_path |
|
609 | file = file.unicode_path | |
608 |
|
610 | |||
609 | if not isinstance(file, basestring): |
|
611 | if not isinstance(file, basestring): | |
610 | return None |
|
612 | return None | |
611 |
|
613 | |||
612 | line_key = { |
|
614 | line_key = { | |
613 | 'old': 'o', |
|
615 | 'old': 'o', | |
614 | 'new': 'n', |
|
616 | 'new': 'n', | |
615 | }[version] + str(line_number) |
|
617 | }[version] + str(line_number) | |
616 |
|
618 | |||
617 | if file in self.comments_store: |
|
619 | if file in self.comments_store: | |
618 | file_comments = self.comments_store[file] |
|
620 | file_comments = self.comments_store[file] | |
619 | if line_key in file_comments: |
|
621 | if line_key in file_comments: | |
620 | return file_comments.pop(line_key) |
|
622 | return file_comments.pop(line_key) | |
621 |
|
623 | |||
622 | def get_line_tokens(self, line_text, line_number, file=None): |
|
624 | def get_line_tokens(self, line_text, line_number, file=None): | |
623 | filenode = None |
|
625 | filenode = None | |
624 | filename = None |
|
626 | filename = None | |
625 |
|
627 | |||
626 | if isinstance(file, basestring): |
|
628 | if isinstance(file, basestring): | |
627 | filename = file |
|
629 | filename = file | |
628 | elif isinstance(file, FileNode): |
|
630 | elif isinstance(file, FileNode): | |
629 | filenode = file |
|
631 | filenode = file | |
630 | filename = file.unicode_path |
|
632 | filename = file.unicode_path | |
631 |
|
633 | |||
632 | if self.highlight_mode == self.HL_REAL and filenode: |
|
634 | if self.highlight_mode == self.HL_REAL and filenode: | |
633 | lexer = self._get_lexer_for_filename(filename) |
|
635 | lexer = self._get_lexer_for_filename(filename) | |
634 | file_size_allowed = file.size < self.max_file_size_limit |
|
636 | file_size_allowed = file.size < self.max_file_size_limit | |
635 | if line_number and file_size_allowed: |
|
637 | if line_number and file_size_allowed: | |
636 | return self.get_tokenized_filenode_line( |
|
638 | return self.get_tokenized_filenode_line( | |
637 | file, line_number, lexer) |
|
639 | file, line_number, lexer) | |
638 |
|
640 | |||
639 | if self.highlight_mode in (self.HL_REAL, self.HL_FAST) and filename: |
|
641 | if self.highlight_mode in (self.HL_REAL, self.HL_FAST) and filename: | |
640 | lexer = self._get_lexer_for_filename(filename) |
|
642 | lexer = self._get_lexer_for_filename(filename) | |
641 | return list(tokenize_string(line_text, lexer)) |
|
643 | return list(tokenize_string(line_text, lexer)) | |
642 |
|
644 | |||
643 | return list(tokenize_string(line_text, plain_text_lexer)) |
|
645 | return list(tokenize_string(line_text, plain_text_lexer)) | |
644 |
|
646 | |||
645 | def get_tokenized_filenode_line(self, filenode, line_number, lexer=None): |
|
647 | def get_tokenized_filenode_line(self, filenode, line_number, lexer=None): | |
646 |
|
648 | |||
647 | if filenode not in self.highlighted_filenodes: |
|
649 | if filenode not in self.highlighted_filenodes: | |
648 | tokenized_lines = filenode_as_lines_tokens(filenode, lexer) |
|
650 | tokenized_lines = filenode_as_lines_tokens(filenode, lexer) | |
649 | self.highlighted_filenodes[filenode] = tokenized_lines |
|
651 | self.highlighted_filenodes[filenode] = tokenized_lines | |
650 | return self.highlighted_filenodes[filenode][line_number - 1] |
|
652 | return self.highlighted_filenodes[filenode][line_number - 1] | |
651 |
|
653 | |||
652 | def action_to_op(self, action): |
|
654 | def action_to_op(self, action): | |
653 | return { |
|
655 | return { | |
654 | 'add': '+', |
|
656 | 'add': '+', | |
655 | 'del': '-', |
|
657 | 'del': '-', | |
656 | 'unmod': ' ', |
|
658 | 'unmod': ' ', | |
657 | 'old-no-nl': ' ', |
|
659 | 'old-no-nl': ' ', | |
658 | 'new-no-nl': ' ', |
|
660 | 'new-no-nl': ' ', | |
659 | }.get(action, action) |
|
661 | }.get(action, action) | |
660 |
|
662 | |||
661 | def as_unified(self, lines): |
|
663 | def as_unified(self, lines): | |
662 | """ |
|
664 | """ | |
663 | Return a generator that yields the lines of a diff in unified order |
|
665 | Return a generator that yields the lines of a diff in unified order | |
664 | """ |
|
666 | """ | |
665 | def generator(): |
|
667 | def generator(): | |
666 | buf = [] |
|
668 | buf = [] | |
667 | for line in lines: |
|
669 | for line in lines: | |
668 |
|
670 | |||
669 | if buf and not line.original or line.original.action == ' ': |
|
671 | if buf and not line.original or line.original.action == ' ': | |
670 | for b in buf: |
|
672 | for b in buf: | |
671 | yield b |
|
673 | yield b | |
672 | buf = [] |
|
674 | buf = [] | |
673 |
|
675 | |||
674 | if line.original: |
|
676 | if line.original: | |
675 | if line.original.action == ' ': |
|
677 | if line.original.action == ' ': | |
676 | yield (line.original.lineno, line.modified.lineno, |
|
678 | yield (line.original.lineno, line.modified.lineno, | |
677 | line.original.action, line.original.content, |
|
679 | line.original.action, line.original.content, | |
678 | line.original.comments) |
|
680 | line.original.comments) | |
679 | continue |
|
681 | continue | |
680 |
|
682 | |||
681 | if line.original.action == '-': |
|
683 | if line.original.action == '-': | |
682 | yield (line.original.lineno, None, |
|
684 | yield (line.original.lineno, None, | |
683 | line.original.action, line.original.content, |
|
685 | line.original.action, line.original.content, | |
684 | line.original.comments) |
|
686 | line.original.comments) | |
685 |
|
687 | |||
686 | if line.modified.action == '+': |
|
688 | if line.modified.action == '+': | |
687 | buf.append(( |
|
689 | buf.append(( | |
688 | None, line.modified.lineno, |
|
690 | None, line.modified.lineno, | |
689 | line.modified.action, line.modified.content, |
|
691 | line.modified.action, line.modified.content, | |
690 | line.modified.comments)) |
|
692 | line.modified.comments)) | |
691 | continue |
|
693 | continue | |
692 |
|
694 | |||
693 | if line.modified: |
|
695 | if line.modified: | |
694 | yield (None, line.modified.lineno, |
|
696 | yield (None, line.modified.lineno, | |
695 | line.modified.action, line.modified.content, |
|
697 | line.modified.action, line.modified.content, | |
696 | line.modified.comments) |
|
698 | line.modified.comments) | |
697 |
|
699 | |||
698 | for b in buf: |
|
700 | for b in buf: | |
699 | yield b |
|
701 | yield b | |
700 |
|
702 | |||
701 | return generator() |
|
703 | return generator() |
@@ -1,2003 +1,2004 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2010-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2010-2017 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 | """ |
|
21 | """ | |
22 | Helper functions |
|
22 | Helper functions | |
23 |
|
23 | |||
24 | Consists of functions to typically be used within templates, but also |
|
24 | Consists of functions to typically be used within templates, but also | |
25 | available to Controllers. This module is available to both as 'h'. |
|
25 | available to Controllers. This module is available to both as 'h'. | |
26 | """ |
|
26 | """ | |
27 |
|
27 | |||
28 | import random |
|
28 | import random | |
29 | import hashlib |
|
29 | import hashlib | |
30 | import StringIO |
|
30 | import StringIO | |
31 | import urllib |
|
31 | import urllib | |
32 | import math |
|
32 | import math | |
33 | import logging |
|
33 | import logging | |
34 | import re |
|
34 | import re | |
35 | import urlparse |
|
35 | import urlparse | |
36 | import time |
|
36 | import time | |
37 | import string |
|
37 | import string | |
38 | import hashlib |
|
38 | import hashlib | |
39 | import pygments |
|
39 | import pygments | |
|
40 | import itertools | |||
40 |
|
41 | |||
41 | from datetime import datetime |
|
42 | from datetime import datetime | |
42 | from functools import partial |
|
43 | from functools import partial | |
43 | from pygments.formatters.html import HtmlFormatter |
|
44 | from pygments.formatters.html import HtmlFormatter | |
44 | from pygments import highlight as code_highlight |
|
45 | from pygments import highlight as code_highlight | |
45 | from pygments.lexers import ( |
|
46 | from pygments.lexers import ( | |
46 | get_lexer_by_name, get_lexer_for_filename, get_lexer_for_mimetype) |
|
47 | get_lexer_by_name, get_lexer_for_filename, get_lexer_for_mimetype) | |
47 | from pylons import url as pylons_url |
|
48 | from pylons import url as pylons_url | |
48 | from pylons.i18n.translation import _, ungettext |
|
49 | from pylons.i18n.translation import _, ungettext | |
49 | from pyramid.threadlocal import get_current_request |
|
50 | from pyramid.threadlocal import get_current_request | |
50 |
|
51 | |||
51 | from webhelpers.html import literal, HTML, escape |
|
52 | from webhelpers.html import literal, HTML, escape | |
52 | from webhelpers.html.tools import * |
|
53 | from webhelpers.html.tools import * | |
53 | from webhelpers.html.builder import make_tag |
|
54 | from webhelpers.html.builder import make_tag | |
54 | from webhelpers.html.tags import auto_discovery_link, checkbox, css_classes, \ |
|
55 | from webhelpers.html.tags import auto_discovery_link, checkbox, css_classes, \ | |
55 | end_form, file, form as wh_form, hidden, image, javascript_link, link_to, \ |
|
56 | end_form, file, form as wh_form, hidden, image, javascript_link, link_to, \ | |
56 | link_to_if, link_to_unless, ol, required_legend, select, stylesheet_link, \ |
|
57 | link_to_if, link_to_unless, ol, required_legend, select, stylesheet_link, \ | |
57 | submit, text, password, textarea, title, ul, xml_declaration, radio |
|
58 | submit, text, password, textarea, title, ul, xml_declaration, radio | |
58 | from webhelpers.html.tools import auto_link, button_to, highlight, \ |
|
59 | from webhelpers.html.tools import auto_link, button_to, highlight, \ | |
59 | js_obfuscate, mail_to, strip_links, strip_tags, tag_re |
|
60 | js_obfuscate, mail_to, strip_links, strip_tags, tag_re | |
60 | from webhelpers.pylonslib import Flash as _Flash |
|
61 | from webhelpers.pylonslib import Flash as _Flash | |
61 | from webhelpers.text import chop_at, collapse, convert_accented_entities, \ |
|
62 | from webhelpers.text import chop_at, collapse, convert_accented_entities, \ | |
62 | convert_misc_entities, lchop, plural, rchop, remove_formatting, \ |
|
63 | convert_misc_entities, lchop, plural, rchop, remove_formatting, \ | |
63 | replace_whitespace, urlify, truncate, wrap_paragraphs |
|
64 | replace_whitespace, urlify, truncate, wrap_paragraphs | |
64 | from webhelpers.date import time_ago_in_words |
|
65 | from webhelpers.date import time_ago_in_words | |
65 | from webhelpers.paginate import Page as _Page |
|
66 | from webhelpers.paginate import Page as _Page | |
66 | from webhelpers.html.tags import _set_input_attrs, _set_id_attr, \ |
|
67 | from webhelpers.html.tags import _set_input_attrs, _set_id_attr, \ | |
67 | convert_boolean_attrs, NotGiven, _make_safe_id_component |
|
68 | convert_boolean_attrs, NotGiven, _make_safe_id_component | |
68 | from webhelpers2.number import format_byte_size |
|
69 | from webhelpers2.number import format_byte_size | |
69 |
|
70 | |||
70 | from rhodecode.lib.action_parser import action_parser |
|
71 | from rhodecode.lib.action_parser import action_parser | |
71 | from rhodecode.lib.ext_json import json |
|
72 | from rhodecode.lib.ext_json import json | |
72 | from rhodecode.lib.utils import repo_name_slug, get_custom_lexer |
|
73 | from rhodecode.lib.utils import repo_name_slug, get_custom_lexer | |
73 | from rhodecode.lib.utils2 import str2bool, safe_unicode, safe_str, \ |
|
74 | from rhodecode.lib.utils2 import str2bool, safe_unicode, safe_str, \ | |
74 | get_commit_safe, datetime_to_time, time_to_datetime, time_to_utcdatetime, \ |
|
75 | get_commit_safe, datetime_to_time, time_to_datetime, time_to_utcdatetime, \ | |
75 | AttributeDict, safe_int, md5, md5_safe |
|
76 | AttributeDict, safe_int, md5, md5_safe | |
76 | from rhodecode.lib.markup_renderer import MarkupRenderer |
|
77 | from rhodecode.lib.markup_renderer import MarkupRenderer | |
77 | from rhodecode.lib.vcs.exceptions import CommitDoesNotExistError |
|
78 | from rhodecode.lib.vcs.exceptions import CommitDoesNotExistError | |
78 | from rhodecode.lib.vcs.backends.base import BaseChangeset, EmptyCommit |
|
79 | from rhodecode.lib.vcs.backends.base import BaseChangeset, EmptyCommit | |
79 | from rhodecode.config.conf import DATE_FORMAT, DATETIME_FORMAT |
|
80 | from rhodecode.config.conf import DATE_FORMAT, DATETIME_FORMAT | |
80 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
81 | from rhodecode.model.changeset_status import ChangesetStatusModel | |
81 | from rhodecode.model.db import Permission, User, Repository |
|
82 | from rhodecode.model.db import Permission, User, Repository | |
82 | from rhodecode.model.repo_group import RepoGroupModel |
|
83 | from rhodecode.model.repo_group import RepoGroupModel | |
83 | from rhodecode.model.settings import IssueTrackerSettingsModel |
|
84 | from rhodecode.model.settings import IssueTrackerSettingsModel | |
84 |
|
85 | |||
85 | log = logging.getLogger(__name__) |
|
86 | log = logging.getLogger(__name__) | |
86 |
|
87 | |||
87 |
|
88 | |||
88 | DEFAULT_USER = User.DEFAULT_USER |
|
89 | DEFAULT_USER = User.DEFAULT_USER | |
89 | DEFAULT_USER_EMAIL = User.DEFAULT_USER_EMAIL |
|
90 | DEFAULT_USER_EMAIL = User.DEFAULT_USER_EMAIL | |
90 |
|
91 | |||
91 |
|
92 | |||
92 | def url(*args, **kw): |
|
93 | def url(*args, **kw): | |
93 | return pylons_url(*args, **kw) |
|
94 | return pylons_url(*args, **kw) | |
94 |
|
95 | |||
95 |
|
96 | |||
96 | def pylons_url_current(*args, **kw): |
|
97 | def pylons_url_current(*args, **kw): | |
97 | """ |
|
98 | """ | |
98 | This function overrides pylons.url.current() which returns the current |
|
99 | This function overrides pylons.url.current() which returns the current | |
99 | path so that it will also work from a pyramid only context. This |
|
100 | path so that it will also work from a pyramid only context. This | |
100 | should be removed once port to pyramid is complete. |
|
101 | should be removed once port to pyramid is complete. | |
101 | """ |
|
102 | """ | |
102 | if not args and not kw: |
|
103 | if not args and not kw: | |
103 | request = get_current_request() |
|
104 | request = get_current_request() | |
104 | return request.path |
|
105 | return request.path | |
105 | return pylons_url.current(*args, **kw) |
|
106 | return pylons_url.current(*args, **kw) | |
106 |
|
107 | |||
107 | url.current = pylons_url_current |
|
108 | url.current = pylons_url_current | |
108 |
|
109 | |||
109 |
|
110 | |||
110 | def url_replace(**qargs): |
|
111 | def url_replace(**qargs): | |
111 | """ Returns the current request url while replacing query string args """ |
|
112 | """ Returns the current request url while replacing query string args """ | |
112 |
|
113 | |||
113 | request = get_current_request() |
|
114 | request = get_current_request() | |
114 | new_args = request.GET.mixed() |
|
115 | new_args = request.GET.mixed() | |
115 | new_args.update(qargs) |
|
116 | new_args.update(qargs) | |
116 | return url('', **new_args) |
|
117 | return url('', **new_args) | |
117 |
|
118 | |||
118 |
|
119 | |||
119 | def asset(path, ver=None): |
|
120 | def asset(path, ver=None): | |
120 | """ |
|
121 | """ | |
121 | Helper to generate a static asset file path for rhodecode assets |
|
122 | Helper to generate a static asset file path for rhodecode assets | |
122 |
|
123 | |||
123 | eg. h.asset('images/image.png', ver='3923') |
|
124 | eg. h.asset('images/image.png', ver='3923') | |
124 |
|
125 | |||
125 | :param path: path of asset |
|
126 | :param path: path of asset | |
126 | :param ver: optional version query param to append as ?ver= |
|
127 | :param ver: optional version query param to append as ?ver= | |
127 | """ |
|
128 | """ | |
128 | request = get_current_request() |
|
129 | request = get_current_request() | |
129 | query = {} |
|
130 | query = {} | |
130 | if ver: |
|
131 | if ver: | |
131 | query = {'ver': ver} |
|
132 | query = {'ver': ver} | |
132 | return request.static_path( |
|
133 | return request.static_path( | |
133 | 'rhodecode:public/{}'.format(path), _query=query) |
|
134 | 'rhodecode:public/{}'.format(path), _query=query) | |
134 |
|
135 | |||
135 |
|
136 | |||
136 | default_html_escape_table = { |
|
137 | default_html_escape_table = { | |
137 | ord('&'): u'&', |
|
138 | ord('&'): u'&', | |
138 | ord('<'): u'<', |
|
139 | ord('<'): u'<', | |
139 | ord('>'): u'>', |
|
140 | ord('>'): u'>', | |
140 | ord('"'): u'"', |
|
141 | ord('"'): u'"', | |
141 | ord("'"): u''', |
|
142 | ord("'"): u''', | |
142 | } |
|
143 | } | |
143 |
|
144 | |||
144 |
|
145 | |||
145 | def html_escape(text, html_escape_table=default_html_escape_table): |
|
146 | def html_escape(text, html_escape_table=default_html_escape_table): | |
146 | """Produce entities within text.""" |
|
147 | """Produce entities within text.""" | |
147 | return text.translate(html_escape_table) |
|
148 | return text.translate(html_escape_table) | |
148 |
|
149 | |||
149 |
|
150 | |||
150 | def chop_at_smart(s, sub, inclusive=False, suffix_if_chopped=None): |
|
151 | def chop_at_smart(s, sub, inclusive=False, suffix_if_chopped=None): | |
151 | """ |
|
152 | """ | |
152 | Truncate string ``s`` at the first occurrence of ``sub``. |
|
153 | Truncate string ``s`` at the first occurrence of ``sub``. | |
153 |
|
154 | |||
154 | If ``inclusive`` is true, truncate just after ``sub`` rather than at it. |
|
155 | If ``inclusive`` is true, truncate just after ``sub`` rather than at it. | |
155 | """ |
|
156 | """ | |
156 | suffix_if_chopped = suffix_if_chopped or '' |
|
157 | suffix_if_chopped = suffix_if_chopped or '' | |
157 | pos = s.find(sub) |
|
158 | pos = s.find(sub) | |
158 | if pos == -1: |
|
159 | if pos == -1: | |
159 | return s |
|
160 | return s | |
160 |
|
161 | |||
161 | if inclusive: |
|
162 | if inclusive: | |
162 | pos += len(sub) |
|
163 | pos += len(sub) | |
163 |
|
164 | |||
164 | chopped = s[:pos] |
|
165 | chopped = s[:pos] | |
165 | left = s[pos:].strip() |
|
166 | left = s[pos:].strip() | |
166 |
|
167 | |||
167 | if left and suffix_if_chopped: |
|
168 | if left and suffix_if_chopped: | |
168 | chopped += suffix_if_chopped |
|
169 | chopped += suffix_if_chopped | |
169 |
|
170 | |||
170 | return chopped |
|
171 | return chopped | |
171 |
|
172 | |||
172 |
|
173 | |||
173 | def shorter(text, size=20): |
|
174 | def shorter(text, size=20): | |
174 | postfix = '...' |
|
175 | postfix = '...' | |
175 | if len(text) > size: |
|
176 | if len(text) > size: | |
176 | return text[:size - len(postfix)] + postfix |
|
177 | return text[:size - len(postfix)] + postfix | |
177 | return text |
|
178 | return text | |
178 |
|
179 | |||
179 |
|
180 | |||
180 | def _reset(name, value=None, id=NotGiven, type="reset", **attrs): |
|
181 | def _reset(name, value=None, id=NotGiven, type="reset", **attrs): | |
181 | """ |
|
182 | """ | |
182 | Reset button |
|
183 | Reset button | |
183 | """ |
|
184 | """ | |
184 | _set_input_attrs(attrs, type, name, value) |
|
185 | _set_input_attrs(attrs, type, name, value) | |
185 | _set_id_attr(attrs, id, name) |
|
186 | _set_id_attr(attrs, id, name) | |
186 | convert_boolean_attrs(attrs, ["disabled"]) |
|
187 | convert_boolean_attrs(attrs, ["disabled"]) | |
187 | return HTML.input(**attrs) |
|
188 | return HTML.input(**attrs) | |
188 |
|
189 | |||
189 | reset = _reset |
|
190 | reset = _reset | |
190 | safeid = _make_safe_id_component |
|
191 | safeid = _make_safe_id_component | |
191 |
|
192 | |||
192 |
|
193 | |||
193 | def branding(name, length=40): |
|
194 | def branding(name, length=40): | |
194 | return truncate(name, length, indicator="") |
|
195 | return truncate(name, length, indicator="") | |
195 |
|
196 | |||
196 |
|
197 | |||
197 | def FID(raw_id, path): |
|
198 | def FID(raw_id, path): | |
198 | """ |
|
199 | """ | |
199 | Creates a unique ID for filenode based on it's hash of path and commit |
|
200 | Creates a unique ID for filenode based on it's hash of path and commit | |
200 | it's safe to use in urls |
|
201 | it's safe to use in urls | |
201 |
|
202 | |||
202 | :param raw_id: |
|
203 | :param raw_id: | |
203 | :param path: |
|
204 | :param path: | |
204 | """ |
|
205 | """ | |
205 |
|
206 | |||
206 | return 'c-%s-%s' % (short_id(raw_id), md5_safe(path)[:12]) |
|
207 | return 'c-%s-%s' % (short_id(raw_id), md5_safe(path)[:12]) | |
207 |
|
208 | |||
208 |
|
209 | |||
209 | class _GetError(object): |
|
210 | class _GetError(object): | |
210 | """Get error from form_errors, and represent it as span wrapped error |
|
211 | """Get error from form_errors, and represent it as span wrapped error | |
211 | message |
|
212 | message | |
212 |
|
213 | |||
213 | :param field_name: field to fetch errors for |
|
214 | :param field_name: field to fetch errors for | |
214 | :param form_errors: form errors dict |
|
215 | :param form_errors: form errors dict | |
215 | """ |
|
216 | """ | |
216 |
|
217 | |||
217 | def __call__(self, field_name, form_errors): |
|
218 | def __call__(self, field_name, form_errors): | |
218 | tmpl = """<span class="error_msg">%s</span>""" |
|
219 | tmpl = """<span class="error_msg">%s</span>""" | |
219 | if form_errors and field_name in form_errors: |
|
220 | if form_errors and field_name in form_errors: | |
220 | return literal(tmpl % form_errors.get(field_name)) |
|
221 | return literal(tmpl % form_errors.get(field_name)) | |
221 |
|
222 | |||
222 | get_error = _GetError() |
|
223 | get_error = _GetError() | |
223 |
|
224 | |||
224 |
|
225 | |||
225 | class _ToolTip(object): |
|
226 | class _ToolTip(object): | |
226 |
|
227 | |||
227 | def __call__(self, tooltip_title, trim_at=50): |
|
228 | def __call__(self, tooltip_title, trim_at=50): | |
228 | """ |
|
229 | """ | |
229 | Special function just to wrap our text into nice formatted |
|
230 | Special function just to wrap our text into nice formatted | |
230 | autowrapped text |
|
231 | autowrapped text | |
231 |
|
232 | |||
232 | :param tooltip_title: |
|
233 | :param tooltip_title: | |
233 | """ |
|
234 | """ | |
234 | tooltip_title = escape(tooltip_title) |
|
235 | tooltip_title = escape(tooltip_title) | |
235 | tooltip_title = tooltip_title.replace('<', '<').replace('>', '>') |
|
236 | tooltip_title = tooltip_title.replace('<', '<').replace('>', '>') | |
236 | return tooltip_title |
|
237 | return tooltip_title | |
237 | tooltip = _ToolTip() |
|
238 | tooltip = _ToolTip() | |
238 |
|
239 | |||
239 |
|
240 | |||
240 | def files_breadcrumbs(repo_name, commit_id, file_path): |
|
241 | def files_breadcrumbs(repo_name, commit_id, file_path): | |
241 | if isinstance(file_path, str): |
|
242 | if isinstance(file_path, str): | |
242 | file_path = safe_unicode(file_path) |
|
243 | file_path = safe_unicode(file_path) | |
243 |
|
244 | |||
244 | # TODO: johbo: Is this always a url like path, or is this operating |
|
245 | # TODO: johbo: Is this always a url like path, or is this operating | |
245 | # system dependent? |
|
246 | # system dependent? | |
246 | path_segments = file_path.split('/') |
|
247 | path_segments = file_path.split('/') | |
247 |
|
248 | |||
248 | repo_name_html = escape(repo_name) |
|
249 | repo_name_html = escape(repo_name) | |
249 | if len(path_segments) == 1 and path_segments[0] == '': |
|
250 | if len(path_segments) == 1 and path_segments[0] == '': | |
250 | url_segments = [repo_name_html] |
|
251 | url_segments = [repo_name_html] | |
251 | else: |
|
252 | else: | |
252 | url_segments = [ |
|
253 | url_segments = [ | |
253 | link_to( |
|
254 | link_to( | |
254 | repo_name_html, |
|
255 | repo_name_html, | |
255 | url('files_home', |
|
256 | url('files_home', | |
256 | repo_name=repo_name, |
|
257 | repo_name=repo_name, | |
257 | revision=commit_id, |
|
258 | revision=commit_id, | |
258 | f_path=''), |
|
259 | f_path=''), | |
259 | class_='pjax-link')] |
|
260 | class_='pjax-link')] | |
260 |
|
261 | |||
261 | last_cnt = len(path_segments) - 1 |
|
262 | last_cnt = len(path_segments) - 1 | |
262 | for cnt, segment in enumerate(path_segments): |
|
263 | for cnt, segment in enumerate(path_segments): | |
263 | if not segment: |
|
264 | if not segment: | |
264 | continue |
|
265 | continue | |
265 | segment_html = escape(segment) |
|
266 | segment_html = escape(segment) | |
266 |
|
267 | |||
267 | if cnt != last_cnt: |
|
268 | if cnt != last_cnt: | |
268 | url_segments.append( |
|
269 | url_segments.append( | |
269 | link_to( |
|
270 | link_to( | |
270 | segment_html, |
|
271 | segment_html, | |
271 | url('files_home', |
|
272 | url('files_home', | |
272 | repo_name=repo_name, |
|
273 | repo_name=repo_name, | |
273 | revision=commit_id, |
|
274 | revision=commit_id, | |
274 | f_path='/'.join(path_segments[:cnt + 1])), |
|
275 | f_path='/'.join(path_segments[:cnt + 1])), | |
275 | class_='pjax-link')) |
|
276 | class_='pjax-link')) | |
276 | else: |
|
277 | else: | |
277 | url_segments.append(segment_html) |
|
278 | url_segments.append(segment_html) | |
278 |
|
279 | |||
279 | return literal('/'.join(url_segments)) |
|
280 | return literal('/'.join(url_segments)) | |
280 |
|
281 | |||
281 |
|
282 | |||
282 | class CodeHtmlFormatter(HtmlFormatter): |
|
283 | class CodeHtmlFormatter(HtmlFormatter): | |
283 | """ |
|
284 | """ | |
284 | My code Html Formatter for source codes |
|
285 | My code Html Formatter for source codes | |
285 | """ |
|
286 | """ | |
286 |
|
287 | |||
287 | def wrap(self, source, outfile): |
|
288 | def wrap(self, source, outfile): | |
288 | return self._wrap_div(self._wrap_pre(self._wrap_code(source))) |
|
289 | return self._wrap_div(self._wrap_pre(self._wrap_code(source))) | |
289 |
|
290 | |||
290 | def _wrap_code(self, source): |
|
291 | def _wrap_code(self, source): | |
291 | for cnt, it in enumerate(source): |
|
292 | for cnt, it in enumerate(source): | |
292 | i, t = it |
|
293 | i, t = it | |
293 | t = '<div id="L%s">%s</div>' % (cnt + 1, t) |
|
294 | t = '<div id="L%s">%s</div>' % (cnt + 1, t) | |
294 | yield i, t |
|
295 | yield i, t | |
295 |
|
296 | |||
296 | def _wrap_tablelinenos(self, inner): |
|
297 | def _wrap_tablelinenos(self, inner): | |
297 | dummyoutfile = StringIO.StringIO() |
|
298 | dummyoutfile = StringIO.StringIO() | |
298 | lncount = 0 |
|
299 | lncount = 0 | |
299 | for t, line in inner: |
|
300 | for t, line in inner: | |
300 | if t: |
|
301 | if t: | |
301 | lncount += 1 |
|
302 | lncount += 1 | |
302 | dummyoutfile.write(line) |
|
303 | dummyoutfile.write(line) | |
303 |
|
304 | |||
304 | fl = self.linenostart |
|
305 | fl = self.linenostart | |
305 | mw = len(str(lncount + fl - 1)) |
|
306 | mw = len(str(lncount + fl - 1)) | |
306 | sp = self.linenospecial |
|
307 | sp = self.linenospecial | |
307 | st = self.linenostep |
|
308 | st = self.linenostep | |
308 | la = self.lineanchors |
|
309 | la = self.lineanchors | |
309 | aln = self.anchorlinenos |
|
310 | aln = self.anchorlinenos | |
310 | nocls = self.noclasses |
|
311 | nocls = self.noclasses | |
311 | if sp: |
|
312 | if sp: | |
312 | lines = [] |
|
313 | lines = [] | |
313 |
|
314 | |||
314 | for i in range(fl, fl + lncount): |
|
315 | for i in range(fl, fl + lncount): | |
315 | if i % st == 0: |
|
316 | if i % st == 0: | |
316 | if i % sp == 0: |
|
317 | if i % sp == 0: | |
317 | if aln: |
|
318 | if aln: | |
318 | lines.append('<a href="#%s%d" class="special">%*d</a>' % |
|
319 | lines.append('<a href="#%s%d" class="special">%*d</a>' % | |
319 | (la, i, mw, i)) |
|
320 | (la, i, mw, i)) | |
320 | else: |
|
321 | else: | |
321 | lines.append('<span class="special">%*d</span>' % (mw, i)) |
|
322 | lines.append('<span class="special">%*d</span>' % (mw, i)) | |
322 | else: |
|
323 | else: | |
323 | if aln: |
|
324 | if aln: | |
324 | lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i)) |
|
325 | lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i)) | |
325 | else: |
|
326 | else: | |
326 | lines.append('%*d' % (mw, i)) |
|
327 | lines.append('%*d' % (mw, i)) | |
327 | else: |
|
328 | else: | |
328 | lines.append('') |
|
329 | lines.append('') | |
329 | ls = '\n'.join(lines) |
|
330 | ls = '\n'.join(lines) | |
330 | else: |
|
331 | else: | |
331 | lines = [] |
|
332 | lines = [] | |
332 | for i in range(fl, fl + lncount): |
|
333 | for i in range(fl, fl + lncount): | |
333 | if i % st == 0: |
|
334 | if i % st == 0: | |
334 | if aln: |
|
335 | if aln: | |
335 | lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i)) |
|
336 | lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i)) | |
336 | else: |
|
337 | else: | |
337 | lines.append('%*d' % (mw, i)) |
|
338 | lines.append('%*d' % (mw, i)) | |
338 | else: |
|
339 | else: | |
339 | lines.append('') |
|
340 | lines.append('') | |
340 | ls = '\n'.join(lines) |
|
341 | ls = '\n'.join(lines) | |
341 |
|
342 | |||
342 | # in case you wonder about the seemingly redundant <div> here: since the |
|
343 | # in case you wonder about the seemingly redundant <div> here: since the | |
343 | # content in the other cell also is wrapped in a div, some browsers in |
|
344 | # content in the other cell also is wrapped in a div, some browsers in | |
344 | # some configurations seem to mess up the formatting... |
|
345 | # some configurations seem to mess up the formatting... | |
345 | if nocls: |
|
346 | if nocls: | |
346 | yield 0, ('<table class="%stable">' % self.cssclass + |
|
347 | yield 0, ('<table class="%stable">' % self.cssclass + | |
347 | '<tr><td><div class="linenodiv" ' |
|
348 | '<tr><td><div class="linenodiv" ' | |
348 | 'style="background-color: #f0f0f0; padding-right: 10px">' |
|
349 | 'style="background-color: #f0f0f0; padding-right: 10px">' | |
349 | '<pre style="line-height: 125%">' + |
|
350 | '<pre style="line-height: 125%">' + | |
350 | ls + '</pre></div></td><td id="hlcode" class="code">') |
|
351 | ls + '</pre></div></td><td id="hlcode" class="code">') | |
351 | else: |
|
352 | else: | |
352 | yield 0, ('<table class="%stable">' % self.cssclass + |
|
353 | yield 0, ('<table class="%stable">' % self.cssclass + | |
353 | '<tr><td class="linenos"><div class="linenodiv"><pre>' + |
|
354 | '<tr><td class="linenos"><div class="linenodiv"><pre>' + | |
354 | ls + '</pre></div></td><td id="hlcode" class="code">') |
|
355 | ls + '</pre></div></td><td id="hlcode" class="code">') | |
355 | yield 0, dummyoutfile.getvalue() |
|
356 | yield 0, dummyoutfile.getvalue() | |
356 | yield 0, '</td></tr></table>' |
|
357 | yield 0, '</td></tr></table>' | |
357 |
|
358 | |||
358 |
|
359 | |||
359 | class SearchContentCodeHtmlFormatter(CodeHtmlFormatter): |
|
360 | class SearchContentCodeHtmlFormatter(CodeHtmlFormatter): | |
360 | def __init__(self, **kw): |
|
361 | def __init__(self, **kw): | |
361 | # only show these line numbers if set |
|
362 | # only show these line numbers if set | |
362 | self.only_lines = kw.pop('only_line_numbers', []) |
|
363 | self.only_lines = kw.pop('only_line_numbers', []) | |
363 | self.query_terms = kw.pop('query_terms', []) |
|
364 | self.query_terms = kw.pop('query_terms', []) | |
364 | self.max_lines = kw.pop('max_lines', 5) |
|
365 | self.max_lines = kw.pop('max_lines', 5) | |
365 | self.line_context = kw.pop('line_context', 3) |
|
366 | self.line_context = kw.pop('line_context', 3) | |
366 | self.url = kw.pop('url', None) |
|
367 | self.url = kw.pop('url', None) | |
367 |
|
368 | |||
368 | super(CodeHtmlFormatter, self).__init__(**kw) |
|
369 | super(CodeHtmlFormatter, self).__init__(**kw) | |
369 |
|
370 | |||
370 | def _wrap_code(self, source): |
|
371 | def _wrap_code(self, source): | |
371 | for cnt, it in enumerate(source): |
|
372 | for cnt, it in enumerate(source): | |
372 | i, t = it |
|
373 | i, t = it | |
373 | t = '<pre>%s</pre>' % t |
|
374 | t = '<pre>%s</pre>' % t | |
374 | yield i, t |
|
375 | yield i, t | |
375 |
|
376 | |||
376 | def _wrap_tablelinenos(self, inner): |
|
377 | def _wrap_tablelinenos(self, inner): | |
377 | yield 0, '<table class="code-highlight %stable">' % self.cssclass |
|
378 | yield 0, '<table class="code-highlight %stable">' % self.cssclass | |
378 |
|
379 | |||
379 | last_shown_line_number = 0 |
|
380 | last_shown_line_number = 0 | |
380 | current_line_number = 1 |
|
381 | current_line_number = 1 | |
381 |
|
382 | |||
382 | for t, line in inner: |
|
383 | for t, line in inner: | |
383 | if not t: |
|
384 | if not t: | |
384 | yield t, line |
|
385 | yield t, line | |
385 | continue |
|
386 | continue | |
386 |
|
387 | |||
387 | if current_line_number in self.only_lines: |
|
388 | if current_line_number in self.only_lines: | |
388 | if last_shown_line_number + 1 != current_line_number: |
|
389 | if last_shown_line_number + 1 != current_line_number: | |
389 | yield 0, '<tr>' |
|
390 | yield 0, '<tr>' | |
390 | yield 0, '<td class="line">...</td>' |
|
391 | yield 0, '<td class="line">...</td>' | |
391 | yield 0, '<td id="hlcode" class="code"></td>' |
|
392 | yield 0, '<td id="hlcode" class="code"></td>' | |
392 | yield 0, '</tr>' |
|
393 | yield 0, '</tr>' | |
393 |
|
394 | |||
394 | yield 0, '<tr>' |
|
395 | yield 0, '<tr>' | |
395 | if self.url: |
|
396 | if self.url: | |
396 | yield 0, '<td class="line"><a href="%s#L%i">%i</a></td>' % ( |
|
397 | yield 0, '<td class="line"><a href="%s#L%i">%i</a></td>' % ( | |
397 | self.url, current_line_number, current_line_number) |
|
398 | self.url, current_line_number, current_line_number) | |
398 | else: |
|
399 | else: | |
399 | yield 0, '<td class="line"><a href="">%i</a></td>' % ( |
|
400 | yield 0, '<td class="line"><a href="">%i</a></td>' % ( | |
400 | current_line_number) |
|
401 | current_line_number) | |
401 | yield 0, '<td id="hlcode" class="code">' + line + '</td>' |
|
402 | yield 0, '<td id="hlcode" class="code">' + line + '</td>' | |
402 | yield 0, '</tr>' |
|
403 | yield 0, '</tr>' | |
403 |
|
404 | |||
404 | last_shown_line_number = current_line_number |
|
405 | last_shown_line_number = current_line_number | |
405 |
|
406 | |||
406 | current_line_number += 1 |
|
407 | current_line_number += 1 | |
407 |
|
408 | |||
408 |
|
409 | |||
409 | yield 0, '</table>' |
|
410 | yield 0, '</table>' | |
410 |
|
411 | |||
411 |
|
412 | |||
412 | def extract_phrases(text_query): |
|
413 | def extract_phrases(text_query): | |
413 | """ |
|
414 | """ | |
414 | Extracts phrases from search term string making sure phrases |
|
415 | Extracts phrases from search term string making sure phrases | |
415 | contained in double quotes are kept together - and discarding empty values |
|
416 | contained in double quotes are kept together - and discarding empty values | |
416 | or fully whitespace values eg. |
|
417 | or fully whitespace values eg. | |
417 |
|
418 | |||
418 | 'some text "a phrase" more' => ['some', 'text', 'a phrase', 'more'] |
|
419 | 'some text "a phrase" more' => ['some', 'text', 'a phrase', 'more'] | |
419 |
|
420 | |||
420 | """ |
|
421 | """ | |
421 |
|
422 | |||
422 | in_phrase = False |
|
423 | in_phrase = False | |
423 | buf = '' |
|
424 | buf = '' | |
424 | phrases = [] |
|
425 | phrases = [] | |
425 | for char in text_query: |
|
426 | for char in text_query: | |
426 | if in_phrase: |
|
427 | if in_phrase: | |
427 | if char == '"': # end phrase |
|
428 | if char == '"': # end phrase | |
428 | phrases.append(buf) |
|
429 | phrases.append(buf) | |
429 | buf = '' |
|
430 | buf = '' | |
430 | in_phrase = False |
|
431 | in_phrase = False | |
431 | continue |
|
432 | continue | |
432 | else: |
|
433 | else: | |
433 | buf += char |
|
434 | buf += char | |
434 | continue |
|
435 | continue | |
435 | else: |
|
436 | else: | |
436 | if char == '"': # start phrase |
|
437 | if char == '"': # start phrase | |
437 | in_phrase = True |
|
438 | in_phrase = True | |
438 | phrases.append(buf) |
|
439 | phrases.append(buf) | |
439 | buf = '' |
|
440 | buf = '' | |
440 | continue |
|
441 | continue | |
441 | elif char == ' ': |
|
442 | elif char == ' ': | |
442 | phrases.append(buf) |
|
443 | phrases.append(buf) | |
443 | buf = '' |
|
444 | buf = '' | |
444 | continue |
|
445 | continue | |
445 | else: |
|
446 | else: | |
446 | buf += char |
|
447 | buf += char | |
447 |
|
448 | |||
448 | phrases.append(buf) |
|
449 | phrases.append(buf) | |
449 | phrases = [phrase.strip() for phrase in phrases if phrase.strip()] |
|
450 | phrases = [phrase.strip() for phrase in phrases if phrase.strip()] | |
450 | return phrases |
|
451 | return phrases | |
451 |
|
452 | |||
452 |
|
453 | |||
453 | def get_matching_offsets(text, phrases): |
|
454 | def get_matching_offsets(text, phrases): | |
454 | """ |
|
455 | """ | |
455 | Returns a list of string offsets in `text` that the list of `terms` match |
|
456 | Returns a list of string offsets in `text` that the list of `terms` match | |
456 |
|
457 | |||
457 | >>> get_matching_offsets('some text here', ['some', 'here']) |
|
458 | >>> get_matching_offsets('some text here', ['some', 'here']) | |
458 | [(0, 4), (10, 14)] |
|
459 | [(0, 4), (10, 14)] | |
459 |
|
460 | |||
460 | """ |
|
461 | """ | |
461 | offsets = [] |
|
462 | offsets = [] | |
462 | for phrase in phrases: |
|
463 | for phrase in phrases: | |
463 | for match in re.finditer(phrase, text): |
|
464 | for match in re.finditer(phrase, text): | |
464 | offsets.append((match.start(), match.end())) |
|
465 | offsets.append((match.start(), match.end())) | |
465 |
|
466 | |||
466 | return offsets |
|
467 | return offsets | |
467 |
|
468 | |||
468 |
|
469 | |||
469 | def normalize_text_for_matching(x): |
|
470 | def normalize_text_for_matching(x): | |
470 | """ |
|
471 | """ | |
471 | Replaces all non alnum characters to spaces and lower cases the string, |
|
472 | Replaces all non alnum characters to spaces and lower cases the string, | |
472 | useful for comparing two text strings without punctuation |
|
473 | useful for comparing two text strings without punctuation | |
473 | """ |
|
474 | """ | |
474 | return re.sub(r'[^\w]', ' ', x.lower()) |
|
475 | return re.sub(r'[^\w]', ' ', x.lower()) | |
475 |
|
476 | |||
476 |
|
477 | |||
477 | def get_matching_line_offsets(lines, terms): |
|
478 | def get_matching_line_offsets(lines, terms): | |
478 | """ Return a set of `lines` indices (starting from 1) matching a |
|
479 | """ Return a set of `lines` indices (starting from 1) matching a | |
479 | text search query, along with `context` lines above/below matching lines |
|
480 | text search query, along with `context` lines above/below matching lines | |
480 |
|
481 | |||
481 | :param lines: list of strings representing lines |
|
482 | :param lines: list of strings representing lines | |
482 | :param terms: search term string to match in lines eg. 'some text' |
|
483 | :param terms: search term string to match in lines eg. 'some text' | |
483 | :param context: number of lines above/below a matching line to add to result |
|
484 | :param context: number of lines above/below a matching line to add to result | |
484 | :param max_lines: cut off for lines of interest |
|
485 | :param max_lines: cut off for lines of interest | |
485 | eg. |
|
486 | eg. | |
486 |
|
487 | |||
487 | text = ''' |
|
488 | text = ''' | |
488 | words words words |
|
489 | words words words | |
489 | words words words |
|
490 | words words words | |
490 | some text some |
|
491 | some text some | |
491 | words words words |
|
492 | words words words | |
492 | words words words |
|
493 | words words words | |
493 | text here what |
|
494 | text here what | |
494 | ''' |
|
495 | ''' | |
495 | get_matching_line_offsets(text, 'text', context=1) |
|
496 | get_matching_line_offsets(text, 'text', context=1) | |
496 | {3: [(5, 9)], 6: [(0, 4)]] |
|
497 | {3: [(5, 9)], 6: [(0, 4)]] | |
497 |
|
498 | |||
498 | """ |
|
499 | """ | |
499 | matching_lines = {} |
|
500 | matching_lines = {} | |
500 | phrases = [normalize_text_for_matching(phrase) |
|
501 | phrases = [normalize_text_for_matching(phrase) | |
501 | for phrase in extract_phrases(terms)] |
|
502 | for phrase in extract_phrases(terms)] | |
502 |
|
503 | |||
503 | for line_index, line in enumerate(lines, start=1): |
|
504 | for line_index, line in enumerate(lines, start=1): | |
504 | match_offsets = get_matching_offsets( |
|
505 | match_offsets = get_matching_offsets( | |
505 | normalize_text_for_matching(line), phrases) |
|
506 | normalize_text_for_matching(line), phrases) | |
506 | if match_offsets: |
|
507 | if match_offsets: | |
507 | matching_lines[line_index] = match_offsets |
|
508 | matching_lines[line_index] = match_offsets | |
508 |
|
509 | |||
509 | return matching_lines |
|
510 | return matching_lines | |
510 |
|
511 | |||
511 |
|
512 | |||
512 | def hsv_to_rgb(h, s, v): |
|
513 | def hsv_to_rgb(h, s, v): | |
513 | """ Convert hsv color values to rgb """ |
|
514 | """ Convert hsv color values to rgb """ | |
514 |
|
515 | |||
515 | if s == 0.0: |
|
516 | if s == 0.0: | |
516 | return v, v, v |
|
517 | return v, v, v | |
517 | i = int(h * 6.0) # XXX assume int() truncates! |
|
518 | i = int(h * 6.0) # XXX assume int() truncates! | |
518 | f = (h * 6.0) - i |
|
519 | f = (h * 6.0) - i | |
519 | p = v * (1.0 - s) |
|
520 | p = v * (1.0 - s) | |
520 | q = v * (1.0 - s * f) |
|
521 | q = v * (1.0 - s * f) | |
521 | t = v * (1.0 - s * (1.0 - f)) |
|
522 | t = v * (1.0 - s * (1.0 - f)) | |
522 | i = i % 6 |
|
523 | i = i % 6 | |
523 | if i == 0: |
|
524 | if i == 0: | |
524 | return v, t, p |
|
525 | return v, t, p | |
525 | if i == 1: |
|
526 | if i == 1: | |
526 | return q, v, p |
|
527 | return q, v, p | |
527 | if i == 2: |
|
528 | if i == 2: | |
528 | return p, v, t |
|
529 | return p, v, t | |
529 | if i == 3: |
|
530 | if i == 3: | |
530 | return p, q, v |
|
531 | return p, q, v | |
531 | if i == 4: |
|
532 | if i == 4: | |
532 | return t, p, v |
|
533 | return t, p, v | |
533 | if i == 5: |
|
534 | if i == 5: | |
534 | return v, p, q |
|
535 | return v, p, q | |
535 |
|
536 | |||
536 |
|
537 | |||
537 | def unique_color_generator(n=10000, saturation=0.10, lightness=0.95): |
|
538 | def unique_color_generator(n=10000, saturation=0.10, lightness=0.95): | |
538 | """ |
|
539 | """ | |
539 | Generator for getting n of evenly distributed colors using |
|
540 | Generator for getting n of evenly distributed colors using | |
540 | hsv color and golden ratio. It always return same order of colors |
|
541 | hsv color and golden ratio. It always return same order of colors | |
541 |
|
542 | |||
542 | :param n: number of colors to generate |
|
543 | :param n: number of colors to generate | |
543 | :param saturation: saturation of returned colors |
|
544 | :param saturation: saturation of returned colors | |
544 | :param lightness: lightness of returned colors |
|
545 | :param lightness: lightness of returned colors | |
545 | :returns: RGB tuple |
|
546 | :returns: RGB tuple | |
546 | """ |
|
547 | """ | |
547 |
|
548 | |||
548 | golden_ratio = 0.618033988749895 |
|
549 | golden_ratio = 0.618033988749895 | |
549 | h = 0.22717784590367374 |
|
550 | h = 0.22717784590367374 | |
550 |
|
551 | |||
551 | for _ in xrange(n): |
|
552 | for _ in xrange(n): | |
552 | h += golden_ratio |
|
553 | h += golden_ratio | |
553 | h %= 1 |
|
554 | h %= 1 | |
554 | HSV_tuple = [h, saturation, lightness] |
|
555 | HSV_tuple = [h, saturation, lightness] | |
555 | RGB_tuple = hsv_to_rgb(*HSV_tuple) |
|
556 | RGB_tuple = hsv_to_rgb(*HSV_tuple) | |
556 | yield map(lambda x: str(int(x * 256)), RGB_tuple) |
|
557 | yield map(lambda x: str(int(x * 256)), RGB_tuple) | |
557 |
|
558 | |||
558 |
|
559 | |||
559 | def color_hasher(n=10000, saturation=0.10, lightness=0.95): |
|
560 | def color_hasher(n=10000, saturation=0.10, lightness=0.95): | |
560 | """ |
|
561 | """ | |
561 | Returns a function which when called with an argument returns a unique |
|
562 | Returns a function which when called with an argument returns a unique | |
562 | color for that argument, eg. |
|
563 | color for that argument, eg. | |
563 |
|
564 | |||
564 | :param n: number of colors to generate |
|
565 | :param n: number of colors to generate | |
565 | :param saturation: saturation of returned colors |
|
566 | :param saturation: saturation of returned colors | |
566 | :param lightness: lightness of returned colors |
|
567 | :param lightness: lightness of returned colors | |
567 | :returns: css RGB string |
|
568 | :returns: css RGB string | |
568 |
|
569 | |||
569 | >>> color_hash = color_hasher() |
|
570 | >>> color_hash = color_hasher() | |
570 | >>> color_hash('hello') |
|
571 | >>> color_hash('hello') | |
571 | 'rgb(34, 12, 59)' |
|
572 | 'rgb(34, 12, 59)' | |
572 | >>> color_hash('hello') |
|
573 | >>> color_hash('hello') | |
573 | 'rgb(34, 12, 59)' |
|
574 | 'rgb(34, 12, 59)' | |
574 | >>> color_hash('other') |
|
575 | >>> color_hash('other') | |
575 | 'rgb(90, 224, 159)' |
|
576 | 'rgb(90, 224, 159)' | |
576 | """ |
|
577 | """ | |
577 |
|
578 | |||
578 | color_dict = {} |
|
579 | color_dict = {} | |
579 | cgenerator = unique_color_generator( |
|
580 | cgenerator = unique_color_generator( | |
580 | saturation=saturation, lightness=lightness) |
|
581 | saturation=saturation, lightness=lightness) | |
581 |
|
582 | |||
582 | def get_color_string(thing): |
|
583 | def get_color_string(thing): | |
583 | if thing in color_dict: |
|
584 | if thing in color_dict: | |
584 | col = color_dict[thing] |
|
585 | col = color_dict[thing] | |
585 | else: |
|
586 | else: | |
586 | col = color_dict[thing] = cgenerator.next() |
|
587 | col = color_dict[thing] = cgenerator.next() | |
587 | return "rgb(%s)" % (', '.join(col)) |
|
588 | return "rgb(%s)" % (', '.join(col)) | |
588 |
|
589 | |||
589 | return get_color_string |
|
590 | return get_color_string | |
590 |
|
591 | |||
591 |
|
592 | |||
592 | def get_lexer_safe(mimetype=None, filepath=None): |
|
593 | def get_lexer_safe(mimetype=None, filepath=None): | |
593 | """ |
|
594 | """ | |
594 | Tries to return a relevant pygments lexer using mimetype/filepath name, |
|
595 | Tries to return a relevant pygments lexer using mimetype/filepath name, | |
595 | defaulting to plain text if none could be found |
|
596 | defaulting to plain text if none could be found | |
596 | """ |
|
597 | """ | |
597 | lexer = None |
|
598 | lexer = None | |
598 | try: |
|
599 | try: | |
599 | if mimetype: |
|
600 | if mimetype: | |
600 | lexer = get_lexer_for_mimetype(mimetype) |
|
601 | lexer = get_lexer_for_mimetype(mimetype) | |
601 | if not lexer: |
|
602 | if not lexer: | |
602 | lexer = get_lexer_for_filename(filepath) |
|
603 | lexer = get_lexer_for_filename(filepath) | |
603 | except pygments.util.ClassNotFound: |
|
604 | except pygments.util.ClassNotFound: | |
604 | pass |
|
605 | pass | |
605 |
|
606 | |||
606 | if not lexer: |
|
607 | if not lexer: | |
607 | lexer = get_lexer_by_name('text') |
|
608 | lexer = get_lexer_by_name('text') | |
608 |
|
609 | |||
609 | return lexer |
|
610 | return lexer | |
610 |
|
611 | |||
611 |
|
612 | |||
612 | def get_lexer_for_filenode(filenode): |
|
613 | def get_lexer_for_filenode(filenode): | |
613 | lexer = get_custom_lexer(filenode.extension) or filenode.lexer |
|
614 | lexer = get_custom_lexer(filenode.extension) or filenode.lexer | |
614 | return lexer |
|
615 | return lexer | |
615 |
|
616 | |||
616 |
|
617 | |||
617 | def pygmentize(filenode, **kwargs): |
|
618 | def pygmentize(filenode, **kwargs): | |
618 | """ |
|
619 | """ | |
619 | pygmentize function using pygments |
|
620 | pygmentize function using pygments | |
620 |
|
621 | |||
621 | :param filenode: |
|
622 | :param filenode: | |
622 | """ |
|
623 | """ | |
623 | lexer = get_lexer_for_filenode(filenode) |
|
624 | lexer = get_lexer_for_filenode(filenode) | |
624 | return literal(code_highlight(filenode.content, lexer, |
|
625 | return literal(code_highlight(filenode.content, lexer, | |
625 | CodeHtmlFormatter(**kwargs))) |
|
626 | CodeHtmlFormatter(**kwargs))) | |
626 |
|
627 | |||
627 |
|
628 | |||
628 | def is_following_repo(repo_name, user_id): |
|
629 | def is_following_repo(repo_name, user_id): | |
629 | from rhodecode.model.scm import ScmModel |
|
630 | from rhodecode.model.scm import ScmModel | |
630 | return ScmModel().is_following_repo(repo_name, user_id) |
|
631 | return ScmModel().is_following_repo(repo_name, user_id) | |
631 |
|
632 | |||
632 |
|
633 | |||
633 | class _Message(object): |
|
634 | class _Message(object): | |
634 | """A message returned by ``Flash.pop_messages()``. |
|
635 | """A message returned by ``Flash.pop_messages()``. | |
635 |
|
636 | |||
636 | Converting the message to a string returns the message text. Instances |
|
637 | Converting the message to a string returns the message text. Instances | |
637 | also have the following attributes: |
|
638 | also have the following attributes: | |
638 |
|
639 | |||
639 | * ``message``: the message text. |
|
640 | * ``message``: the message text. | |
640 | * ``category``: the category specified when the message was created. |
|
641 | * ``category``: the category specified when the message was created. | |
641 | """ |
|
642 | """ | |
642 |
|
643 | |||
643 | def __init__(self, category, message): |
|
644 | def __init__(self, category, message): | |
644 | self.category = category |
|
645 | self.category = category | |
645 | self.message = message |
|
646 | self.message = message | |
646 |
|
647 | |||
647 | def __str__(self): |
|
648 | def __str__(self): | |
648 | return self.message |
|
649 | return self.message | |
649 |
|
650 | |||
650 | __unicode__ = __str__ |
|
651 | __unicode__ = __str__ | |
651 |
|
652 | |||
652 | def __html__(self): |
|
653 | def __html__(self): | |
653 | return escape(safe_unicode(self.message)) |
|
654 | return escape(safe_unicode(self.message)) | |
654 |
|
655 | |||
655 |
|
656 | |||
656 | class Flash(_Flash): |
|
657 | class Flash(_Flash): | |
657 |
|
658 | |||
658 | def pop_messages(self): |
|
659 | def pop_messages(self): | |
659 | """Return all accumulated messages and delete them from the session. |
|
660 | """Return all accumulated messages and delete them from the session. | |
660 |
|
661 | |||
661 | The return value is a list of ``Message`` objects. |
|
662 | The return value is a list of ``Message`` objects. | |
662 | """ |
|
663 | """ | |
663 | from pylons import session |
|
664 | from pylons import session | |
664 |
|
665 | |||
665 | messages = [] |
|
666 | messages = [] | |
666 |
|
667 | |||
667 | # Pop the 'old' pylons flash messages. They are tuples of the form |
|
668 | # Pop the 'old' pylons flash messages. They are tuples of the form | |
668 | # (category, message) |
|
669 | # (category, message) | |
669 | for cat, msg in session.pop(self.session_key, []): |
|
670 | for cat, msg in session.pop(self.session_key, []): | |
670 | messages.append(_Message(cat, msg)) |
|
671 | messages.append(_Message(cat, msg)) | |
671 |
|
672 | |||
672 | # Pop the 'new' pyramid flash messages for each category as list |
|
673 | # Pop the 'new' pyramid flash messages for each category as list | |
673 | # of strings. |
|
674 | # of strings. | |
674 | for cat in self.categories: |
|
675 | for cat in self.categories: | |
675 | for msg in session.pop_flash(queue=cat): |
|
676 | for msg in session.pop_flash(queue=cat): | |
676 | messages.append(_Message(cat, msg)) |
|
677 | messages.append(_Message(cat, msg)) | |
677 | # Map messages from the default queue to the 'notice' category. |
|
678 | # Map messages from the default queue to the 'notice' category. | |
678 | for msg in session.pop_flash(): |
|
679 | for msg in session.pop_flash(): | |
679 | messages.append(_Message('notice', msg)) |
|
680 | messages.append(_Message('notice', msg)) | |
680 |
|
681 | |||
681 | session.save() |
|
682 | session.save() | |
682 | return messages |
|
683 | return messages | |
683 |
|
684 | |||
684 | def json_alerts(self): |
|
685 | def json_alerts(self): | |
685 | payloads = [] |
|
686 | payloads = [] | |
686 | messages = flash.pop_messages() |
|
687 | messages = flash.pop_messages() | |
687 | if messages: |
|
688 | if messages: | |
688 | for message in messages: |
|
689 | for message in messages: | |
689 | subdata = {} |
|
690 | subdata = {} | |
690 | if hasattr(message.message, 'rsplit'): |
|
691 | if hasattr(message.message, 'rsplit'): | |
691 | flash_data = message.message.rsplit('|DELIM|', 1) |
|
692 | flash_data = message.message.rsplit('|DELIM|', 1) | |
692 | org_message = flash_data[0] |
|
693 | org_message = flash_data[0] | |
693 | if len(flash_data) > 1: |
|
694 | if len(flash_data) > 1: | |
694 | subdata = json.loads(flash_data[1]) |
|
695 | subdata = json.loads(flash_data[1]) | |
695 | else: |
|
696 | else: | |
696 | org_message = message.message |
|
697 | org_message = message.message | |
697 | payloads.append({ |
|
698 | payloads.append({ | |
698 | 'message': { |
|
699 | 'message': { | |
699 | 'message': u'{}'.format(org_message), |
|
700 | 'message': u'{}'.format(org_message), | |
700 | 'level': message.category, |
|
701 | 'level': message.category, | |
701 | 'force': True, |
|
702 | 'force': True, | |
702 | 'subdata': subdata |
|
703 | 'subdata': subdata | |
703 | } |
|
704 | } | |
704 | }) |
|
705 | }) | |
705 | return json.dumps(payloads) |
|
706 | return json.dumps(payloads) | |
706 |
|
707 | |||
707 | flash = Flash() |
|
708 | flash = Flash() | |
708 |
|
709 | |||
709 | #============================================================================== |
|
710 | #============================================================================== | |
710 | # SCM FILTERS available via h. |
|
711 | # SCM FILTERS available via h. | |
711 | #============================================================================== |
|
712 | #============================================================================== | |
712 | from rhodecode.lib.vcs.utils import author_name, author_email |
|
713 | from rhodecode.lib.vcs.utils import author_name, author_email | |
713 | from rhodecode.lib.utils2 import credentials_filter, age as _age |
|
714 | from rhodecode.lib.utils2 import credentials_filter, age as _age | |
714 | from rhodecode.model.db import User, ChangesetStatus |
|
715 | from rhodecode.model.db import User, ChangesetStatus | |
715 |
|
716 | |||
716 | age = _age |
|
717 | age = _age | |
717 | capitalize = lambda x: x.capitalize() |
|
718 | capitalize = lambda x: x.capitalize() | |
718 | email = author_email |
|
719 | email = author_email | |
719 | short_id = lambda x: x[:12] |
|
720 | short_id = lambda x: x[:12] | |
720 | hide_credentials = lambda x: ''.join(credentials_filter(x)) |
|
721 | hide_credentials = lambda x: ''.join(credentials_filter(x)) | |
721 |
|
722 | |||
722 |
|
723 | |||
723 | def age_component(datetime_iso, value=None, time_is_local=False): |
|
724 | def age_component(datetime_iso, value=None, time_is_local=False): | |
724 | title = value or format_date(datetime_iso) |
|
725 | title = value or format_date(datetime_iso) | |
725 | tzinfo = '+00:00' |
|
726 | tzinfo = '+00:00' | |
726 |
|
727 | |||
727 | # detect if we have a timezone info, otherwise, add it |
|
728 | # detect if we have a timezone info, otherwise, add it | |
728 | if isinstance(datetime_iso, datetime) and not datetime_iso.tzinfo: |
|
729 | if isinstance(datetime_iso, datetime) and not datetime_iso.tzinfo: | |
729 | if time_is_local: |
|
730 | if time_is_local: | |
730 | tzinfo = time.strftime("+%H:%M", |
|
731 | tzinfo = time.strftime("+%H:%M", | |
731 | time.gmtime( |
|
732 | time.gmtime( | |
732 | (datetime.now() - datetime.utcnow()).seconds + 1 |
|
733 | (datetime.now() - datetime.utcnow()).seconds + 1 | |
733 | ) |
|
734 | ) | |
734 | ) |
|
735 | ) | |
735 |
|
736 | |||
736 | return literal( |
|
737 | return literal( | |
737 | '<time class="timeago tooltip" ' |
|
738 | '<time class="timeago tooltip" ' | |
738 | 'title="{1}" datetime="{0}{2}">{1}</time>'.format( |
|
739 | 'title="{1}" datetime="{0}{2}">{1}</time>'.format( | |
739 | datetime_iso, title, tzinfo)) |
|
740 | datetime_iso, title, tzinfo)) | |
740 |
|
741 | |||
741 |
|
742 | |||
742 | def _shorten_commit_id(commit_id): |
|
743 | def _shorten_commit_id(commit_id): | |
743 | from rhodecode import CONFIG |
|
744 | from rhodecode import CONFIG | |
744 | def_len = safe_int(CONFIG.get('rhodecode_show_sha_length', 12)) |
|
745 | def_len = safe_int(CONFIG.get('rhodecode_show_sha_length', 12)) | |
745 | return commit_id[:def_len] |
|
746 | return commit_id[:def_len] | |
746 |
|
747 | |||
747 |
|
748 | |||
748 | def show_id(commit): |
|
749 | def show_id(commit): | |
749 | """ |
|
750 | """ | |
750 | Configurable function that shows ID |
|
751 | Configurable function that shows ID | |
751 | by default it's r123:fffeeefffeee |
|
752 | by default it's r123:fffeeefffeee | |
752 |
|
753 | |||
753 | :param commit: commit instance |
|
754 | :param commit: commit instance | |
754 | """ |
|
755 | """ | |
755 | from rhodecode import CONFIG |
|
756 | from rhodecode import CONFIG | |
756 | show_idx = str2bool(CONFIG.get('rhodecode_show_revision_number', True)) |
|
757 | show_idx = str2bool(CONFIG.get('rhodecode_show_revision_number', True)) | |
757 |
|
758 | |||
758 | raw_id = _shorten_commit_id(commit.raw_id) |
|
759 | raw_id = _shorten_commit_id(commit.raw_id) | |
759 | if show_idx: |
|
760 | if show_idx: | |
760 | return 'r%s:%s' % (commit.idx, raw_id) |
|
761 | return 'r%s:%s' % (commit.idx, raw_id) | |
761 | else: |
|
762 | else: | |
762 | return '%s' % (raw_id, ) |
|
763 | return '%s' % (raw_id, ) | |
763 |
|
764 | |||
764 |
|
765 | |||
765 | def format_date(date): |
|
766 | def format_date(date): | |
766 | """ |
|
767 | """ | |
767 | use a standardized formatting for dates used in RhodeCode |
|
768 | use a standardized formatting for dates used in RhodeCode | |
768 |
|
769 | |||
769 | :param date: date/datetime object |
|
770 | :param date: date/datetime object | |
770 | :return: formatted date |
|
771 | :return: formatted date | |
771 | """ |
|
772 | """ | |
772 |
|
773 | |||
773 | if date: |
|
774 | if date: | |
774 | _fmt = "%a, %d %b %Y %H:%M:%S" |
|
775 | _fmt = "%a, %d %b %Y %H:%M:%S" | |
775 | return safe_unicode(date.strftime(_fmt)) |
|
776 | return safe_unicode(date.strftime(_fmt)) | |
776 |
|
777 | |||
777 | return u"" |
|
778 | return u"" | |
778 |
|
779 | |||
779 |
|
780 | |||
780 | class _RepoChecker(object): |
|
781 | class _RepoChecker(object): | |
781 |
|
782 | |||
782 | def __init__(self, backend_alias): |
|
783 | def __init__(self, backend_alias): | |
783 | self._backend_alias = backend_alias |
|
784 | self._backend_alias = backend_alias | |
784 |
|
785 | |||
785 | def __call__(self, repository): |
|
786 | def __call__(self, repository): | |
786 | if hasattr(repository, 'alias'): |
|
787 | if hasattr(repository, 'alias'): | |
787 | _type = repository.alias |
|
788 | _type = repository.alias | |
788 | elif hasattr(repository, 'repo_type'): |
|
789 | elif hasattr(repository, 'repo_type'): | |
789 | _type = repository.repo_type |
|
790 | _type = repository.repo_type | |
790 | else: |
|
791 | else: | |
791 | _type = repository |
|
792 | _type = repository | |
792 | return _type == self._backend_alias |
|
793 | return _type == self._backend_alias | |
793 |
|
794 | |||
794 | is_git = _RepoChecker('git') |
|
795 | is_git = _RepoChecker('git') | |
795 | is_hg = _RepoChecker('hg') |
|
796 | is_hg = _RepoChecker('hg') | |
796 | is_svn = _RepoChecker('svn') |
|
797 | is_svn = _RepoChecker('svn') | |
797 |
|
798 | |||
798 |
|
799 | |||
799 | def get_repo_type_by_name(repo_name): |
|
800 | def get_repo_type_by_name(repo_name): | |
800 | repo = Repository.get_by_repo_name(repo_name) |
|
801 | repo = Repository.get_by_repo_name(repo_name) | |
801 | return repo.repo_type |
|
802 | return repo.repo_type | |
802 |
|
803 | |||
803 |
|
804 | |||
804 | def is_svn_without_proxy(repository): |
|
805 | def is_svn_without_proxy(repository): | |
805 | if is_svn(repository): |
|
806 | if is_svn(repository): | |
806 | from rhodecode.model.settings import VcsSettingsModel |
|
807 | from rhodecode.model.settings import VcsSettingsModel | |
807 | conf = VcsSettingsModel().get_ui_settings_as_config_obj() |
|
808 | conf = VcsSettingsModel().get_ui_settings_as_config_obj() | |
808 | return not str2bool(conf.get('vcs_svn_proxy', 'http_requests_enabled')) |
|
809 | return not str2bool(conf.get('vcs_svn_proxy', 'http_requests_enabled')) | |
809 | return False |
|
810 | return False | |
810 |
|
811 | |||
811 |
|
812 | |||
812 | def discover_user(author): |
|
813 | def discover_user(author): | |
813 | """ |
|
814 | """ | |
814 | Tries to discover RhodeCode User based on the autho string. Author string |
|
815 | Tries to discover RhodeCode User based on the autho string. Author string | |
815 | is typically `FirstName LastName <email@address.com>` |
|
816 | is typically `FirstName LastName <email@address.com>` | |
816 | """ |
|
817 | """ | |
817 |
|
818 | |||
818 | # if author is already an instance use it for extraction |
|
819 | # if author is already an instance use it for extraction | |
819 | if isinstance(author, User): |
|
820 | if isinstance(author, User): | |
820 | return author |
|
821 | return author | |
821 |
|
822 | |||
822 | # Valid email in the attribute passed, see if they're in the system |
|
823 | # Valid email in the attribute passed, see if they're in the system | |
823 | _email = author_email(author) |
|
824 | _email = author_email(author) | |
824 | if _email != '': |
|
825 | if _email != '': | |
825 | user = User.get_by_email(_email, case_insensitive=True, cache=True) |
|
826 | user = User.get_by_email(_email, case_insensitive=True, cache=True) | |
826 | if user is not None: |
|
827 | if user is not None: | |
827 | return user |
|
828 | return user | |
828 |
|
829 | |||
829 | # Maybe it's a username, we try to extract it and fetch by username ? |
|
830 | # Maybe it's a username, we try to extract it and fetch by username ? | |
830 | _author = author_name(author) |
|
831 | _author = author_name(author) | |
831 | user = User.get_by_username(_author, case_insensitive=True, cache=True) |
|
832 | user = User.get_by_username(_author, case_insensitive=True, cache=True) | |
832 | if user is not None: |
|
833 | if user is not None: | |
833 | return user |
|
834 | return user | |
834 |
|
835 | |||
835 | return None |
|
836 | return None | |
836 |
|
837 | |||
837 |
|
838 | |||
838 | def email_or_none(author): |
|
839 | def email_or_none(author): | |
839 | # extract email from the commit string |
|
840 | # extract email from the commit string | |
840 | _email = author_email(author) |
|
841 | _email = author_email(author) | |
841 |
|
842 | |||
842 | # If we have an email, use it, otherwise |
|
843 | # If we have an email, use it, otherwise | |
843 | # see if it contains a username we can get an email from |
|
844 | # see if it contains a username we can get an email from | |
844 | if _email != '': |
|
845 | if _email != '': | |
845 | return _email |
|
846 | return _email | |
846 | else: |
|
847 | else: | |
847 | user = User.get_by_username( |
|
848 | user = User.get_by_username( | |
848 | author_name(author), case_insensitive=True, cache=True) |
|
849 | author_name(author), case_insensitive=True, cache=True) | |
849 |
|
850 | |||
850 | if user is not None: |
|
851 | if user is not None: | |
851 | return user.email |
|
852 | return user.email | |
852 |
|
853 | |||
853 | # No valid email, not a valid user in the system, none! |
|
854 | # No valid email, not a valid user in the system, none! | |
854 | return None |
|
855 | return None | |
855 |
|
856 | |||
856 |
|
857 | |||
857 | def link_to_user(author, length=0, **kwargs): |
|
858 | def link_to_user(author, length=0, **kwargs): | |
858 | user = discover_user(author) |
|
859 | user = discover_user(author) | |
859 | # user can be None, but if we have it already it means we can re-use it |
|
860 | # user can be None, but if we have it already it means we can re-use it | |
860 | # in the person() function, so we save 1 intensive-query |
|
861 | # in the person() function, so we save 1 intensive-query | |
861 | if user: |
|
862 | if user: | |
862 | author = user |
|
863 | author = user | |
863 |
|
864 | |||
864 | display_person = person(author, 'username_or_name_or_email') |
|
865 | display_person = person(author, 'username_or_name_or_email') | |
865 | if length: |
|
866 | if length: | |
866 | display_person = shorter(display_person, length) |
|
867 | display_person = shorter(display_person, length) | |
867 |
|
868 | |||
868 | if user: |
|
869 | if user: | |
869 | return link_to( |
|
870 | return link_to( | |
870 | escape(display_person), |
|
871 | escape(display_person), | |
871 | url('user_profile', username=user.username), |
|
872 | url('user_profile', username=user.username), | |
872 | **kwargs) |
|
873 | **kwargs) | |
873 | else: |
|
874 | else: | |
874 | return escape(display_person) |
|
875 | return escape(display_person) | |
875 |
|
876 | |||
876 |
|
877 | |||
877 | def person(author, show_attr="username_and_name"): |
|
878 | def person(author, show_attr="username_and_name"): | |
878 | user = discover_user(author) |
|
879 | user = discover_user(author) | |
879 | if user: |
|
880 | if user: | |
880 | return getattr(user, show_attr) |
|
881 | return getattr(user, show_attr) | |
881 | else: |
|
882 | else: | |
882 | _author = author_name(author) |
|
883 | _author = author_name(author) | |
883 | _email = email(author) |
|
884 | _email = email(author) | |
884 | return _author or _email |
|
885 | return _author or _email | |
885 |
|
886 | |||
886 |
|
887 | |||
887 | def author_string(email): |
|
888 | def author_string(email): | |
888 | if email: |
|
889 | if email: | |
889 | user = User.get_by_email(email, case_insensitive=True, cache=True) |
|
890 | user = User.get_by_email(email, case_insensitive=True, cache=True) | |
890 | if user: |
|
891 | if user: | |
891 | if user.firstname or user.lastname: |
|
892 | if user.firstname or user.lastname: | |
892 | return '%s %s <%s>' % (user.firstname, user.lastname, email) |
|
893 | return '%s %s <%s>' % (user.firstname, user.lastname, email) | |
893 | else: |
|
894 | else: | |
894 | return email |
|
895 | return email | |
895 | else: |
|
896 | else: | |
896 | return email |
|
897 | return email | |
897 | else: |
|
898 | else: | |
898 | return None |
|
899 | return None | |
899 |
|
900 | |||
900 |
|
901 | |||
901 | def person_by_id(id_, show_attr="username_and_name"): |
|
902 | def person_by_id(id_, show_attr="username_and_name"): | |
902 | # attr to return from fetched user |
|
903 | # attr to return from fetched user | |
903 | person_getter = lambda usr: getattr(usr, show_attr) |
|
904 | person_getter = lambda usr: getattr(usr, show_attr) | |
904 |
|
905 | |||
905 | #maybe it's an ID ? |
|
906 | #maybe it's an ID ? | |
906 | if str(id_).isdigit() or isinstance(id_, int): |
|
907 | if str(id_).isdigit() or isinstance(id_, int): | |
907 | id_ = int(id_) |
|
908 | id_ = int(id_) | |
908 | user = User.get(id_) |
|
909 | user = User.get(id_) | |
909 | if user is not None: |
|
910 | if user is not None: | |
910 | return person_getter(user) |
|
911 | return person_getter(user) | |
911 | return id_ |
|
912 | return id_ | |
912 |
|
913 | |||
913 |
|
914 | |||
914 | def gravatar_with_user(author, show_disabled=False): |
|
915 | def gravatar_with_user(author, show_disabled=False): | |
915 | from rhodecode.lib.utils import PartialRenderer |
|
916 | from rhodecode.lib.utils import PartialRenderer | |
916 | _render = PartialRenderer('base/base.mako') |
|
917 | _render = PartialRenderer('base/base.mako') | |
917 | return _render('gravatar_with_user', author, show_disabled=show_disabled) |
|
918 | return _render('gravatar_with_user', author, show_disabled=show_disabled) | |
918 |
|
919 | |||
919 |
|
920 | |||
920 | def desc_stylize(value): |
|
921 | def desc_stylize(value): | |
921 | """ |
|
922 | """ | |
922 | converts tags from value into html equivalent |
|
923 | converts tags from value into html equivalent | |
923 |
|
924 | |||
924 | :param value: |
|
925 | :param value: | |
925 | """ |
|
926 | """ | |
926 | if not value: |
|
927 | if not value: | |
927 | return '' |
|
928 | return '' | |
928 |
|
929 | |||
929 | value = re.sub(r'\[see\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]', |
|
930 | value = re.sub(r'\[see\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]', | |
930 | '<div class="metatag" tag="see">see => \\1 </div>', value) |
|
931 | '<div class="metatag" tag="see">see => \\1 </div>', value) | |
931 | value = re.sub(r'\[license\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]', |
|
932 | value = re.sub(r'\[license\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]', | |
932 | '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>', value) |
|
933 | '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>', value) | |
933 | value = re.sub(r'\[(requires|recommends|conflicts|base)\ \=\>\ *([a-zA-Z0-9\-\/]*)\]', |
|
934 | value = re.sub(r'\[(requires|recommends|conflicts|base)\ \=\>\ *([a-zA-Z0-9\-\/]*)\]', | |
934 | '<div class="metatag" tag="\\1">\\1 => <a href="/\\2">\\2</a></div>', value) |
|
935 | '<div class="metatag" tag="\\1">\\1 => <a href="/\\2">\\2</a></div>', value) | |
935 | value = re.sub(r'\[(lang|language)\ \=\>\ *([a-zA-Z\-\/\#\+]*)\]', |
|
936 | value = re.sub(r'\[(lang|language)\ \=\>\ *([a-zA-Z\-\/\#\+]*)\]', | |
936 | '<div class="metatag" tag="lang">\\2</div>', value) |
|
937 | '<div class="metatag" tag="lang">\\2</div>', value) | |
937 | value = re.sub(r'\[([a-z]+)\]', |
|
938 | value = re.sub(r'\[([a-z]+)\]', | |
938 | '<div class="metatag" tag="\\1">\\1</div>', value) |
|
939 | '<div class="metatag" tag="\\1">\\1</div>', value) | |
939 |
|
940 | |||
940 | return value |
|
941 | return value | |
941 |
|
942 | |||
942 |
|
943 | |||
943 | def escaped_stylize(value): |
|
944 | def escaped_stylize(value): | |
944 | """ |
|
945 | """ | |
945 | converts tags from value into html equivalent, but escaping its value first |
|
946 | converts tags from value into html equivalent, but escaping its value first | |
946 | """ |
|
947 | """ | |
947 | if not value: |
|
948 | if not value: | |
948 | return '' |
|
949 | return '' | |
949 |
|
950 | |||
950 | # Using default webhelper escape method, but has to force it as a |
|
951 | # Using default webhelper escape method, but has to force it as a | |
951 | # plain unicode instead of a markup tag to be used in regex expressions |
|
952 | # plain unicode instead of a markup tag to be used in regex expressions | |
952 | value = unicode(escape(safe_unicode(value))) |
|
953 | value = unicode(escape(safe_unicode(value))) | |
953 |
|
954 | |||
954 | value = re.sub(r'\[see\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]', |
|
955 | value = re.sub(r'\[see\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]', | |
955 | '<div class="metatag" tag="see">see => \\1 </div>', value) |
|
956 | '<div class="metatag" tag="see">see => \\1 </div>', value) | |
956 | value = re.sub(r'\[license\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]', |
|
957 | value = re.sub(r'\[license\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]', | |
957 | '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>', value) |
|
958 | '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>', value) | |
958 | value = re.sub(r'\[(requires|recommends|conflicts|base)\ \=\>\ *([a-zA-Z0-9\-\/]*)\]', |
|
959 | value = re.sub(r'\[(requires|recommends|conflicts|base)\ \=\>\ *([a-zA-Z0-9\-\/]*)\]', | |
959 | '<div class="metatag" tag="\\1">\\1 => <a href="/\\2">\\2</a></div>', value) |
|
960 | '<div class="metatag" tag="\\1">\\1 => <a href="/\\2">\\2</a></div>', value) | |
960 | value = re.sub(r'\[(lang|language)\ \=\>\ *([a-zA-Z\-\/\#\+]*)\]', |
|
961 | value = re.sub(r'\[(lang|language)\ \=\>\ *([a-zA-Z\-\/\#\+]*)\]', | |
961 | '<div class="metatag" tag="lang">\\2</div>', value) |
|
962 | '<div class="metatag" tag="lang">\\2</div>', value) | |
962 | value = re.sub(r'\[([a-z]+)\]', |
|
963 | value = re.sub(r'\[([a-z]+)\]', | |
963 | '<div class="metatag" tag="\\1">\\1</div>', value) |
|
964 | '<div class="metatag" tag="\\1">\\1</div>', value) | |
964 |
|
965 | |||
965 | return value |
|
966 | return value | |
966 |
|
967 | |||
967 |
|
968 | |||
968 | def bool2icon(value): |
|
969 | def bool2icon(value): | |
969 | """ |
|
970 | """ | |
970 | Returns boolean value of a given value, represented as html element with |
|
971 | Returns boolean value of a given value, represented as html element with | |
971 | classes that will represent icons |
|
972 | classes that will represent icons | |
972 |
|
973 | |||
973 | :param value: given value to convert to html node |
|
974 | :param value: given value to convert to html node | |
974 | """ |
|
975 | """ | |
975 |
|
976 | |||
976 | if value: # does bool conversion |
|
977 | if value: # does bool conversion | |
977 | return HTML.tag('i', class_="icon-true") |
|
978 | return HTML.tag('i', class_="icon-true") | |
978 | else: # not true as bool |
|
979 | else: # not true as bool | |
979 | return HTML.tag('i', class_="icon-false") |
|
980 | return HTML.tag('i', class_="icon-false") | |
980 |
|
981 | |||
981 |
|
982 | |||
982 | #============================================================================== |
|
983 | #============================================================================== | |
983 | # PERMS |
|
984 | # PERMS | |
984 | #============================================================================== |
|
985 | #============================================================================== | |
985 | from rhodecode.lib.auth import HasPermissionAny, HasPermissionAll, \ |
|
986 | from rhodecode.lib.auth import HasPermissionAny, HasPermissionAll, \ | |
986 | HasRepoPermissionAny, HasRepoPermissionAll, HasRepoGroupPermissionAll, \ |
|
987 | HasRepoPermissionAny, HasRepoPermissionAll, HasRepoGroupPermissionAll, \ | |
987 | HasRepoGroupPermissionAny, HasRepoPermissionAnyApi, get_csrf_token, \ |
|
988 | HasRepoGroupPermissionAny, HasRepoPermissionAnyApi, get_csrf_token, \ | |
988 | csrf_token_key |
|
989 | csrf_token_key | |
989 |
|
990 | |||
990 |
|
991 | |||
991 | #============================================================================== |
|
992 | #============================================================================== | |
992 | # GRAVATAR URL |
|
993 | # GRAVATAR URL | |
993 | #============================================================================== |
|
994 | #============================================================================== | |
994 | class InitialsGravatar(object): |
|
995 | class InitialsGravatar(object): | |
995 | def __init__(self, email_address, first_name, last_name, size=30, |
|
996 | def __init__(self, email_address, first_name, last_name, size=30, | |
996 | background=None, text_color='#fff'): |
|
997 | background=None, text_color='#fff'): | |
997 | self.size = size |
|
998 | self.size = size | |
998 | self.first_name = first_name |
|
999 | self.first_name = first_name | |
999 | self.last_name = last_name |
|
1000 | self.last_name = last_name | |
1000 | self.email_address = email_address |
|
1001 | self.email_address = email_address | |
1001 | self.background = background or self.str2color(email_address) |
|
1002 | self.background = background or self.str2color(email_address) | |
1002 | self.text_color = text_color |
|
1003 | self.text_color = text_color | |
1003 |
|
1004 | |||
1004 | def get_color_bank(self): |
|
1005 | def get_color_bank(self): | |
1005 | """ |
|
1006 | """ | |
1006 | returns a predefined list of colors that gravatars can use. |
|
1007 | returns a predefined list of colors that gravatars can use. | |
1007 | Those are randomized distinct colors that guarantee readability and |
|
1008 | Those are randomized distinct colors that guarantee readability and | |
1008 | uniqueness. |
|
1009 | uniqueness. | |
1009 |
|
1010 | |||
1010 | generated with: http://phrogz.net/css/distinct-colors.html |
|
1011 | generated with: http://phrogz.net/css/distinct-colors.html | |
1011 | """ |
|
1012 | """ | |
1012 | return [ |
|
1013 | return [ | |
1013 | '#bf3030', '#a67f53', '#00ff00', '#5989b3', '#392040', '#d90000', |
|
1014 | '#bf3030', '#a67f53', '#00ff00', '#5989b3', '#392040', '#d90000', | |
1014 | '#402910', '#204020', '#79baf2', '#a700b3', '#bf6060', '#7f5320', |
|
1015 | '#402910', '#204020', '#79baf2', '#a700b3', '#bf6060', '#7f5320', | |
1015 | '#008000', '#003059', '#ee00ff', '#ff0000', '#8c4b00', '#007300', |
|
1016 | '#008000', '#003059', '#ee00ff', '#ff0000', '#8c4b00', '#007300', | |
1016 | '#005fb3', '#de73e6', '#ff4040', '#ffaa00', '#3df255', '#203140', |
|
1017 | '#005fb3', '#de73e6', '#ff4040', '#ffaa00', '#3df255', '#203140', | |
1017 | '#47004d', '#591616', '#664400', '#59b365', '#0d2133', '#83008c', |
|
1018 | '#47004d', '#591616', '#664400', '#59b365', '#0d2133', '#83008c', | |
1018 | '#592d2d', '#bf9f60', '#73e682', '#1d3f73', '#73006b', '#402020', |
|
1019 | '#592d2d', '#bf9f60', '#73e682', '#1d3f73', '#73006b', '#402020', | |
1019 | '#b2862d', '#397341', '#597db3', '#e600d6', '#a60000', '#736039', |
|
1020 | '#b2862d', '#397341', '#597db3', '#e600d6', '#a60000', '#736039', | |
1020 | '#00b318', '#79aaf2', '#330d30', '#ff8080', '#403010', '#16591f', |
|
1021 | '#00b318', '#79aaf2', '#330d30', '#ff8080', '#403010', '#16591f', | |
1021 | '#002459', '#8c4688', '#e50000', '#ffbf40', '#00732e', '#102340', |
|
1022 | '#002459', '#8c4688', '#e50000', '#ffbf40', '#00732e', '#102340', | |
1022 | '#bf60ac', '#8c4646', '#cc8800', '#00a642', '#1d3473', '#b32d98', |
|
1023 | '#bf60ac', '#8c4646', '#cc8800', '#00a642', '#1d3473', '#b32d98', | |
1023 | '#660e00', '#ffd580', '#80ffb2', '#7391e6', '#733967', '#d97b6c', |
|
1024 | '#660e00', '#ffd580', '#80ffb2', '#7391e6', '#733967', '#d97b6c', | |
1024 | '#8c5e00', '#59b389', '#3967e6', '#590047', '#73281d', '#665200', |
|
1025 | '#8c5e00', '#59b389', '#3967e6', '#590047', '#73281d', '#665200', | |
1025 | '#00e67a', '#2d50b3', '#8c2377', '#734139', '#b2982d', '#16593a', |
|
1026 | '#00e67a', '#2d50b3', '#8c2377', '#734139', '#b2982d', '#16593a', | |
1026 | '#001859', '#ff00aa', '#a65e53', '#ffcc00', '#0d3321', '#2d3959', |
|
1027 | '#001859', '#ff00aa', '#a65e53', '#ffcc00', '#0d3321', '#2d3959', | |
1027 | '#731d56', '#401610', '#4c3d00', '#468c6c', '#002ca6', '#d936a3', |
|
1028 | '#731d56', '#401610', '#4c3d00', '#468c6c', '#002ca6', '#d936a3', | |
1028 | '#d94c36', '#403920', '#36d9a3', '#0d1733', '#592d4a', '#993626', |
|
1029 | '#d94c36', '#403920', '#36d9a3', '#0d1733', '#592d4a', '#993626', | |
1029 | '#cca300', '#00734d', '#46598c', '#8c005e', '#7f1100', '#8c7000', |
|
1030 | '#cca300', '#00734d', '#46598c', '#8c005e', '#7f1100', '#8c7000', | |
1030 | '#00a66f', '#7382e6', '#b32d74', '#d9896c', '#ffe680', '#1d7362', |
|
1031 | '#00a66f', '#7382e6', '#b32d74', '#d9896c', '#ffe680', '#1d7362', | |
1031 | '#364cd9', '#73003d', '#d93a00', '#998a4d', '#59b3a1', '#5965b3', |
|
1032 | '#364cd9', '#73003d', '#d93a00', '#998a4d', '#59b3a1', '#5965b3', | |
1032 | '#e5007a', '#73341d', '#665f00', '#00b38f', '#0018b3', '#59163a', |
|
1033 | '#e5007a', '#73341d', '#665f00', '#00b38f', '#0018b3', '#59163a', | |
1033 | '#b2502d', '#bfb960', '#00ffcc', '#23318c', '#a6537f', '#734939', |
|
1034 | '#b2502d', '#bfb960', '#00ffcc', '#23318c', '#a6537f', '#734939', | |
1034 | '#b2a700', '#104036', '#3d3df2', '#402031', '#e56739', '#736f39', |
|
1035 | '#b2a700', '#104036', '#3d3df2', '#402031', '#e56739', '#736f39', | |
1035 | '#79f2ea', '#000059', '#401029', '#4c1400', '#ffee00', '#005953', |
|
1036 | '#79f2ea', '#000059', '#401029', '#4c1400', '#ffee00', '#005953', | |
1036 | '#101040', '#990052', '#402820', '#403d10', '#00ffee', '#0000d9', |
|
1037 | '#101040', '#990052', '#402820', '#403d10', '#00ffee', '#0000d9', | |
1037 | '#ff80c4', '#a66953', '#eeff00', '#00ccbe', '#8080ff', '#e673a1', |
|
1038 | '#ff80c4', '#a66953', '#eeff00', '#00ccbe', '#8080ff', '#e673a1', | |
1038 | '#a62c00', '#474d00', '#1a3331', '#46468c', '#733950', '#662900', |
|
1039 | '#a62c00', '#474d00', '#1a3331', '#46468c', '#733950', '#662900', | |
1039 | '#858c23', '#238c85', '#0f0073', '#b20047', '#d9986c', '#becc00', |
|
1040 | '#858c23', '#238c85', '#0f0073', '#b20047', '#d9986c', '#becc00', | |
1040 | '#396f73', '#281d73', '#ff0066', '#ff6600', '#dee673', '#59adb3', |
|
1041 | '#396f73', '#281d73', '#ff0066', '#ff6600', '#dee673', '#59adb3', | |
1041 | '#6559b3', '#590024', '#b2622d', '#98b32d', '#36ced9', '#332d59', |
|
1042 | '#6559b3', '#590024', '#b2622d', '#98b32d', '#36ced9', '#332d59', | |
1042 | '#40001a', '#733f1d', '#526600', '#005359', '#242040', '#bf6079', |
|
1043 | '#40001a', '#733f1d', '#526600', '#005359', '#242040', '#bf6079', | |
1043 | '#735039', '#cef23d', '#007780', '#5630bf', '#66001b', '#b24700', |
|
1044 | '#735039', '#cef23d', '#007780', '#5630bf', '#66001b', '#b24700', | |
1044 | '#acbf60', '#1d6273', '#25008c', '#731d34', '#a67453', '#50592d', |
|
1045 | '#acbf60', '#1d6273', '#25008c', '#731d34', '#a67453', '#50592d', | |
1045 | '#00ccff', '#6600ff', '#ff0044', '#4c1f00', '#8a994d', '#79daf2', |
|
1046 | '#00ccff', '#6600ff', '#ff0044', '#4c1f00', '#8a994d', '#79daf2', | |
1046 | '#a173e6', '#d93662', '#402310', '#aaff00', '#2d98b3', '#8c40ff', |
|
1047 | '#a173e6', '#d93662', '#402310', '#aaff00', '#2d98b3', '#8c40ff', | |
1047 | '#592d39', '#ff8c40', '#354020', '#103640', '#1a0040', '#331a20', |
|
1048 | '#592d39', '#ff8c40', '#354020', '#103640', '#1a0040', '#331a20', | |
1048 | '#331400', '#334d00', '#1d5673', '#583973', '#7f0022', '#4c3626', |
|
1049 | '#331400', '#334d00', '#1d5673', '#583973', '#7f0022', '#4c3626', | |
1049 | '#88cc00', '#36a3d9', '#3d0073', '#d9364c', '#33241a', '#698c23', |
|
1050 | '#88cc00', '#36a3d9', '#3d0073', '#d9364c', '#33241a', '#698c23', | |
1050 | '#5995b3', '#300059', '#e57382', '#7f3300', '#366600', '#00aaff', |
|
1051 | '#5995b3', '#300059', '#e57382', '#7f3300', '#366600', '#00aaff', | |
1051 | '#3a1659', '#733941', '#663600', '#74b32d', '#003c59', '#7f53a6', |
|
1052 | '#3a1659', '#733941', '#663600', '#74b32d', '#003c59', '#7f53a6', | |
1052 | '#73000f', '#ff8800', '#baf279', '#79caf2', '#291040', '#a6293a', |
|
1053 | '#73000f', '#ff8800', '#baf279', '#79caf2', '#291040', '#a6293a', | |
1053 | '#b2742d', '#587339', '#0077b3', '#632699', '#400009', '#d9a66c', |
|
1054 | '#b2742d', '#587339', '#0077b3', '#632699', '#400009', '#d9a66c', | |
1054 | '#294010', '#2d4a59', '#aa00ff', '#4c131b', '#b25f00', '#5ce600', |
|
1055 | '#294010', '#2d4a59', '#aa00ff', '#4c131b', '#b25f00', '#5ce600', | |
1055 | '#267399', '#a336d9', '#990014', '#664e33', '#86bf60', '#0088ff', |
|
1056 | '#267399', '#a336d9', '#990014', '#664e33', '#86bf60', '#0088ff', | |
1056 | '#7700b3', '#593a16', '#073300', '#1d4b73', '#ac60bf', '#e59539', |
|
1057 | '#7700b3', '#593a16', '#073300', '#1d4b73', '#ac60bf', '#e59539', | |
1057 | '#4f8c46', '#368dd9', '#5c0073' |
|
1058 | '#4f8c46', '#368dd9', '#5c0073' | |
1058 | ] |
|
1059 | ] | |
1059 |
|
1060 | |||
1060 | def rgb_to_hex_color(self, rgb_tuple): |
|
1061 | def rgb_to_hex_color(self, rgb_tuple): | |
1061 | """ |
|
1062 | """ | |
1062 | Converts an rgb_tuple passed to an hex color. |
|
1063 | Converts an rgb_tuple passed to an hex color. | |
1063 |
|
1064 | |||
1064 | :param rgb_tuple: tuple with 3 ints represents rgb color space |
|
1065 | :param rgb_tuple: tuple with 3 ints represents rgb color space | |
1065 | """ |
|
1066 | """ | |
1066 | return '#' + ("".join(map(chr, rgb_tuple)).encode('hex')) |
|
1067 | return '#' + ("".join(map(chr, rgb_tuple)).encode('hex')) | |
1067 |
|
1068 | |||
1068 | def email_to_int_list(self, email_str): |
|
1069 | def email_to_int_list(self, email_str): | |
1069 | """ |
|
1070 | """ | |
1070 | Get every byte of the hex digest value of email and turn it to integer. |
|
1071 | Get every byte of the hex digest value of email and turn it to integer. | |
1071 | It's going to be always between 0-255 |
|
1072 | It's going to be always between 0-255 | |
1072 | """ |
|
1073 | """ | |
1073 | digest = md5_safe(email_str.lower()) |
|
1074 | digest = md5_safe(email_str.lower()) | |
1074 | return [int(digest[i * 2:i * 2 + 2], 16) for i in range(16)] |
|
1075 | return [int(digest[i * 2:i * 2 + 2], 16) for i in range(16)] | |
1075 |
|
1076 | |||
1076 | def pick_color_bank_index(self, email_str, color_bank): |
|
1077 | def pick_color_bank_index(self, email_str, color_bank): | |
1077 | return self.email_to_int_list(email_str)[0] % len(color_bank) |
|
1078 | return self.email_to_int_list(email_str)[0] % len(color_bank) | |
1078 |
|
1079 | |||
1079 | def str2color(self, email_str): |
|
1080 | def str2color(self, email_str): | |
1080 | """ |
|
1081 | """ | |
1081 | Tries to map in a stable algorithm an email to color |
|
1082 | Tries to map in a stable algorithm an email to color | |
1082 |
|
1083 | |||
1083 | :param email_str: |
|
1084 | :param email_str: | |
1084 | """ |
|
1085 | """ | |
1085 | color_bank = self.get_color_bank() |
|
1086 | color_bank = self.get_color_bank() | |
1086 | # pick position (module it's length so we always find it in the |
|
1087 | # pick position (module it's length so we always find it in the | |
1087 | # bank even if it's smaller than 256 values |
|
1088 | # bank even if it's smaller than 256 values | |
1088 | pos = self.pick_color_bank_index(email_str, color_bank) |
|
1089 | pos = self.pick_color_bank_index(email_str, color_bank) | |
1089 | return color_bank[pos] |
|
1090 | return color_bank[pos] | |
1090 |
|
1091 | |||
1091 | def normalize_email(self, email_address): |
|
1092 | def normalize_email(self, email_address): | |
1092 | import unicodedata |
|
1093 | import unicodedata | |
1093 | # default host used to fill in the fake/missing email |
|
1094 | # default host used to fill in the fake/missing email | |
1094 | default_host = u'localhost' |
|
1095 | default_host = u'localhost' | |
1095 |
|
1096 | |||
1096 | if not email_address: |
|
1097 | if not email_address: | |
1097 | email_address = u'%s@%s' % (User.DEFAULT_USER, default_host) |
|
1098 | email_address = u'%s@%s' % (User.DEFAULT_USER, default_host) | |
1098 |
|
1099 | |||
1099 | email_address = safe_unicode(email_address) |
|
1100 | email_address = safe_unicode(email_address) | |
1100 |
|
1101 | |||
1101 | if u'@' not in email_address: |
|
1102 | if u'@' not in email_address: | |
1102 | email_address = u'%s@%s' % (email_address, default_host) |
|
1103 | email_address = u'%s@%s' % (email_address, default_host) | |
1103 |
|
1104 | |||
1104 | if email_address.endswith(u'@'): |
|
1105 | if email_address.endswith(u'@'): | |
1105 | email_address = u'%s%s' % (email_address, default_host) |
|
1106 | email_address = u'%s%s' % (email_address, default_host) | |
1106 |
|
1107 | |||
1107 | email_address = unicodedata.normalize('NFKD', email_address)\ |
|
1108 | email_address = unicodedata.normalize('NFKD', email_address)\ | |
1108 | .encode('ascii', 'ignore') |
|
1109 | .encode('ascii', 'ignore') | |
1109 | return email_address |
|
1110 | return email_address | |
1110 |
|
1111 | |||
1111 | def get_initials(self): |
|
1112 | def get_initials(self): | |
1112 | """ |
|
1113 | """ | |
1113 | Returns 2 letter initials calculated based on the input. |
|
1114 | Returns 2 letter initials calculated based on the input. | |
1114 | The algorithm picks first given email address, and takes first letter |
|
1115 | The algorithm picks first given email address, and takes first letter | |
1115 | of part before @, and then the first letter of server name. In case |
|
1116 | of part before @, and then the first letter of server name. In case | |
1116 | the part before @ is in a format of `somestring.somestring2` it replaces |
|
1117 | the part before @ is in a format of `somestring.somestring2` it replaces | |
1117 | the server letter with first letter of somestring2 |
|
1118 | the server letter with first letter of somestring2 | |
1118 |
|
1119 | |||
1119 | In case function was initialized with both first and lastname, this |
|
1120 | In case function was initialized with both first and lastname, this | |
1120 | overrides the extraction from email by first letter of the first and |
|
1121 | overrides the extraction from email by first letter of the first and | |
1121 | last name. We add special logic to that functionality, In case Full name |
|
1122 | last name. We add special logic to that functionality, In case Full name | |
1122 | is compound, like Guido Von Rossum, we use last part of the last name |
|
1123 | is compound, like Guido Von Rossum, we use last part of the last name | |
1123 | (Von Rossum) picking `R`. |
|
1124 | (Von Rossum) picking `R`. | |
1124 |
|
1125 | |||
1125 | Function also normalizes the non-ascii characters to they ascii |
|
1126 | Function also normalizes the non-ascii characters to they ascii | |
1126 | representation, eg Δ => A |
|
1127 | representation, eg Δ => A | |
1127 | """ |
|
1128 | """ | |
1128 | import unicodedata |
|
1129 | import unicodedata | |
1129 | # replace non-ascii to ascii |
|
1130 | # replace non-ascii to ascii | |
1130 | first_name = unicodedata.normalize( |
|
1131 | first_name = unicodedata.normalize( | |
1131 | 'NFKD', safe_unicode(self.first_name)).encode('ascii', 'ignore') |
|
1132 | 'NFKD', safe_unicode(self.first_name)).encode('ascii', 'ignore') | |
1132 | last_name = unicodedata.normalize( |
|
1133 | last_name = unicodedata.normalize( | |
1133 | 'NFKD', safe_unicode(self.last_name)).encode('ascii', 'ignore') |
|
1134 | 'NFKD', safe_unicode(self.last_name)).encode('ascii', 'ignore') | |
1134 |
|
1135 | |||
1135 | # do NFKD encoding, and also make sure email has proper format |
|
1136 | # do NFKD encoding, and also make sure email has proper format | |
1136 | email_address = self.normalize_email(self.email_address) |
|
1137 | email_address = self.normalize_email(self.email_address) | |
1137 |
|
1138 | |||
1138 | # first push the email initials |
|
1139 | # first push the email initials | |
1139 | prefix, server = email_address.split('@', 1) |
|
1140 | prefix, server = email_address.split('@', 1) | |
1140 |
|
1141 | |||
1141 | # check if prefix is maybe a 'firstname.lastname' syntax |
|
1142 | # check if prefix is maybe a 'firstname.lastname' syntax | |
1142 | _dot_split = prefix.rsplit('.', 1) |
|
1143 | _dot_split = prefix.rsplit('.', 1) | |
1143 | if len(_dot_split) == 2: |
|
1144 | if len(_dot_split) == 2: | |
1144 | initials = [_dot_split[0][0], _dot_split[1][0]] |
|
1145 | initials = [_dot_split[0][0], _dot_split[1][0]] | |
1145 | else: |
|
1146 | else: | |
1146 | initials = [prefix[0], server[0]] |
|
1147 | initials = [prefix[0], server[0]] | |
1147 |
|
1148 | |||
1148 | # then try to replace either firtname or lastname |
|
1149 | # then try to replace either firtname or lastname | |
1149 | fn_letter = (first_name or " ")[0].strip() |
|
1150 | fn_letter = (first_name or " ")[0].strip() | |
1150 | ln_letter = (last_name.split(' ', 1)[-1] or " ")[0].strip() |
|
1151 | ln_letter = (last_name.split(' ', 1)[-1] or " ")[0].strip() | |
1151 |
|
1152 | |||
1152 | if fn_letter: |
|
1153 | if fn_letter: | |
1153 | initials[0] = fn_letter |
|
1154 | initials[0] = fn_letter | |
1154 |
|
1155 | |||
1155 | if ln_letter: |
|
1156 | if ln_letter: | |
1156 | initials[1] = ln_letter |
|
1157 | initials[1] = ln_letter | |
1157 |
|
1158 | |||
1158 | return ''.join(initials).upper() |
|
1159 | return ''.join(initials).upper() | |
1159 |
|
1160 | |||
1160 | def get_img_data_by_type(self, font_family, img_type): |
|
1161 | def get_img_data_by_type(self, font_family, img_type): | |
1161 | default_user = """ |
|
1162 | default_user = """ | |
1162 | <svg xmlns="http://www.w3.org/2000/svg" |
|
1163 | <svg xmlns="http://www.w3.org/2000/svg" | |
1163 | version="1.1" x="0px" y="0px" width="{size}" height="{size}" |
|
1164 | version="1.1" x="0px" y="0px" width="{size}" height="{size}" | |
1164 | viewBox="-15 -10 439.165 429.164" |
|
1165 | viewBox="-15 -10 439.165 429.164" | |
1165 |
|
1166 | |||
1166 | xml:space="preserve" |
|
1167 | xml:space="preserve" | |
1167 | style="background:{background};" > |
|
1168 | style="background:{background};" > | |
1168 |
|
1169 | |||
1169 | <path d="M204.583,216.671c50.664,0,91.74-48.075, |
|
1170 | <path d="M204.583,216.671c50.664,0,91.74-48.075, | |
1170 | 91.74-107.378c0-82.237-41.074-107.377-91.74-107.377 |
|
1171 | 91.74-107.378c0-82.237-41.074-107.377-91.74-107.377 | |
1171 | c-50.668,0-91.74,25.14-91.74,107.377C112.844, |
|
1172 | c-50.668,0-91.74,25.14-91.74,107.377C112.844, | |
1172 | 168.596,153.916,216.671, |
|
1173 | 168.596,153.916,216.671, | |
1173 | 204.583,216.671z" fill="{text_color}"/> |
|
1174 | 204.583,216.671z" fill="{text_color}"/> | |
1174 | <path d="M407.164,374.717L360.88, |
|
1175 | <path d="M407.164,374.717L360.88, | |
1175 | 270.454c-2.117-4.771-5.836-8.728-10.465-11.138l-71.83-37.392 |
|
1176 | 270.454c-2.117-4.771-5.836-8.728-10.465-11.138l-71.83-37.392 | |
1176 | c-1.584-0.823-3.502-0.663-4.926,0.415c-20.316, |
|
1177 | c-1.584-0.823-3.502-0.663-4.926,0.415c-20.316, | |
1177 | 15.366-44.203,23.488-69.076,23.488c-24.877, |
|
1178 | 15.366-44.203,23.488-69.076,23.488c-24.877, | |
1178 | 0-48.762-8.122-69.078-23.488 |
|
1179 | 0-48.762-8.122-69.078-23.488 | |
1179 | c-1.428-1.078-3.346-1.238-4.93-0.415L58.75, |
|
1180 | c-1.428-1.078-3.346-1.238-4.93-0.415L58.75, | |
1180 | 259.316c-4.631,2.41-8.346,6.365-10.465,11.138L2.001,374.717 |
|
1181 | 259.316c-4.631,2.41-8.346,6.365-10.465,11.138L2.001,374.717 | |
1181 | c-3.191,7.188-2.537,15.412,1.75,22.005c4.285, |
|
1182 | c-3.191,7.188-2.537,15.412,1.75,22.005c4.285, | |
1182 | 6.592,11.537,10.526,19.4,10.526h362.861c7.863,0,15.117-3.936, |
|
1183 | 6.592,11.537,10.526,19.4,10.526h362.861c7.863,0,15.117-3.936, | |
1183 | 19.402-10.527 C409.699,390.129, |
|
1184 | 19.402-10.527 C409.699,390.129, | |
1184 | 410.355,381.902,407.164,374.717z" fill="{text_color}"/> |
|
1185 | 410.355,381.902,407.164,374.717z" fill="{text_color}"/> | |
1185 | </svg>""".format( |
|
1186 | </svg>""".format( | |
1186 | size=self.size, |
|
1187 | size=self.size, | |
1187 | background='#979797', # @grey4 |
|
1188 | background='#979797', # @grey4 | |
1188 | text_color=self.text_color, |
|
1189 | text_color=self.text_color, | |
1189 | font_family=font_family) |
|
1190 | font_family=font_family) | |
1190 |
|
1191 | |||
1191 | return { |
|
1192 | return { | |
1192 | "default_user": default_user |
|
1193 | "default_user": default_user | |
1193 | }[img_type] |
|
1194 | }[img_type] | |
1194 |
|
1195 | |||
1195 | def get_img_data(self, svg_type=None): |
|
1196 | def get_img_data(self, svg_type=None): | |
1196 | """ |
|
1197 | """ | |
1197 | generates the svg metadata for image |
|
1198 | generates the svg metadata for image | |
1198 | """ |
|
1199 | """ | |
1199 |
|
1200 | |||
1200 | font_family = ','.join([ |
|
1201 | font_family = ','.join([ | |
1201 | 'proximanovaregular', |
|
1202 | 'proximanovaregular', | |
1202 | 'Proxima Nova Regular', |
|
1203 | 'Proxima Nova Regular', | |
1203 | 'Proxima Nova', |
|
1204 | 'Proxima Nova', | |
1204 | 'Arial', |
|
1205 | 'Arial', | |
1205 | 'Lucida Grande', |
|
1206 | 'Lucida Grande', | |
1206 | 'sans-serif' |
|
1207 | 'sans-serif' | |
1207 | ]) |
|
1208 | ]) | |
1208 | if svg_type: |
|
1209 | if svg_type: | |
1209 | return self.get_img_data_by_type(font_family, svg_type) |
|
1210 | return self.get_img_data_by_type(font_family, svg_type) | |
1210 |
|
1211 | |||
1211 | initials = self.get_initials() |
|
1212 | initials = self.get_initials() | |
1212 | img_data = """ |
|
1213 | img_data = """ | |
1213 | <svg xmlns="http://www.w3.org/2000/svg" pointer-events="none" |
|
1214 | <svg xmlns="http://www.w3.org/2000/svg" pointer-events="none" | |
1214 | width="{size}" height="{size}" |
|
1215 | width="{size}" height="{size}" | |
1215 | style="width: 100%; height: 100%; background-color: {background}" |
|
1216 | style="width: 100%; height: 100%; background-color: {background}" | |
1216 | viewBox="0 0 {size} {size}"> |
|
1217 | viewBox="0 0 {size} {size}"> | |
1217 | <text text-anchor="middle" y="50%" x="50%" dy="0.35em" |
|
1218 | <text text-anchor="middle" y="50%" x="50%" dy="0.35em" | |
1218 | pointer-events="auto" fill="{text_color}" |
|
1219 | pointer-events="auto" fill="{text_color}" | |
1219 | font-family="{font_family}" |
|
1220 | font-family="{font_family}" | |
1220 | style="font-weight: 400; font-size: {f_size}px;">{text} |
|
1221 | style="font-weight: 400; font-size: {f_size}px;">{text} | |
1221 | </text> |
|
1222 | </text> | |
1222 | </svg>""".format( |
|
1223 | </svg>""".format( | |
1223 | size=self.size, |
|
1224 | size=self.size, | |
1224 | f_size=self.size/1.85, # scale the text inside the box nicely |
|
1225 | f_size=self.size/1.85, # scale the text inside the box nicely | |
1225 | background=self.background, |
|
1226 | background=self.background, | |
1226 | text_color=self.text_color, |
|
1227 | text_color=self.text_color, | |
1227 | text=initials.upper(), |
|
1228 | text=initials.upper(), | |
1228 | font_family=font_family) |
|
1229 | font_family=font_family) | |
1229 |
|
1230 | |||
1230 | return img_data |
|
1231 | return img_data | |
1231 |
|
1232 | |||
1232 | def generate_svg(self, svg_type=None): |
|
1233 | def generate_svg(self, svg_type=None): | |
1233 | img_data = self.get_img_data(svg_type) |
|
1234 | img_data = self.get_img_data(svg_type) | |
1234 | return "data:image/svg+xml;base64,%s" % img_data.encode('base64') |
|
1235 | return "data:image/svg+xml;base64,%s" % img_data.encode('base64') | |
1235 |
|
1236 | |||
1236 |
|
1237 | |||
1237 | def initials_gravatar(email_address, first_name, last_name, size=30): |
|
1238 | def initials_gravatar(email_address, first_name, last_name, size=30): | |
1238 | svg_type = None |
|
1239 | svg_type = None | |
1239 | if email_address == User.DEFAULT_USER_EMAIL: |
|
1240 | if email_address == User.DEFAULT_USER_EMAIL: | |
1240 | svg_type = 'default_user' |
|
1241 | svg_type = 'default_user' | |
1241 | klass = InitialsGravatar(email_address, first_name, last_name, size) |
|
1242 | klass = InitialsGravatar(email_address, first_name, last_name, size) | |
1242 | return klass.generate_svg(svg_type=svg_type) |
|
1243 | return klass.generate_svg(svg_type=svg_type) | |
1243 |
|
1244 | |||
1244 |
|
1245 | |||
1245 | def gravatar_url(email_address, size=30): |
|
1246 | def gravatar_url(email_address, size=30): | |
1246 | # doh, we need to re-import those to mock it later |
|
1247 | # doh, we need to re-import those to mock it later | |
1247 | from pylons import tmpl_context as c |
|
1248 | from pylons import tmpl_context as c | |
1248 |
|
1249 | |||
1249 | _use_gravatar = c.visual.use_gravatar |
|
1250 | _use_gravatar = c.visual.use_gravatar | |
1250 | _gravatar_url = c.visual.gravatar_url or User.DEFAULT_GRAVATAR_URL |
|
1251 | _gravatar_url = c.visual.gravatar_url or User.DEFAULT_GRAVATAR_URL | |
1251 |
|
1252 | |||
1252 | email_address = email_address or User.DEFAULT_USER_EMAIL |
|
1253 | email_address = email_address or User.DEFAULT_USER_EMAIL | |
1253 | if isinstance(email_address, unicode): |
|
1254 | if isinstance(email_address, unicode): | |
1254 | # hashlib crashes on unicode items |
|
1255 | # hashlib crashes on unicode items | |
1255 | email_address = safe_str(email_address) |
|
1256 | email_address = safe_str(email_address) | |
1256 |
|
1257 | |||
1257 | # empty email or default user |
|
1258 | # empty email or default user | |
1258 | if not email_address or email_address == User.DEFAULT_USER_EMAIL: |
|
1259 | if not email_address or email_address == User.DEFAULT_USER_EMAIL: | |
1259 | return initials_gravatar(User.DEFAULT_USER_EMAIL, '', '', size=size) |
|
1260 | return initials_gravatar(User.DEFAULT_USER_EMAIL, '', '', size=size) | |
1260 |
|
1261 | |||
1261 | if _use_gravatar: |
|
1262 | if _use_gravatar: | |
1262 | # TODO: Disuse pyramid thread locals. Think about another solution to |
|
1263 | # TODO: Disuse pyramid thread locals. Think about another solution to | |
1263 | # get the host and schema here. |
|
1264 | # get the host and schema here. | |
1264 | request = get_current_request() |
|
1265 | request = get_current_request() | |
1265 | tmpl = safe_str(_gravatar_url) |
|
1266 | tmpl = safe_str(_gravatar_url) | |
1266 | tmpl = tmpl.replace('{email}', email_address)\ |
|
1267 | tmpl = tmpl.replace('{email}', email_address)\ | |
1267 | .replace('{md5email}', md5_safe(email_address.lower())) \ |
|
1268 | .replace('{md5email}', md5_safe(email_address.lower())) \ | |
1268 | .replace('{netloc}', request.host)\ |
|
1269 | .replace('{netloc}', request.host)\ | |
1269 | .replace('{scheme}', request.scheme)\ |
|
1270 | .replace('{scheme}', request.scheme)\ | |
1270 | .replace('{size}', safe_str(size)) |
|
1271 | .replace('{size}', safe_str(size)) | |
1271 | return tmpl |
|
1272 | return tmpl | |
1272 | else: |
|
1273 | else: | |
1273 | return initials_gravatar(email_address, '', '', size=size) |
|
1274 | return initials_gravatar(email_address, '', '', size=size) | |
1274 |
|
1275 | |||
1275 |
|
1276 | |||
1276 | class Page(_Page): |
|
1277 | class Page(_Page): | |
1277 | """ |
|
1278 | """ | |
1278 | Custom pager to match rendering style with paginator |
|
1279 | Custom pager to match rendering style with paginator | |
1279 | """ |
|
1280 | """ | |
1280 |
|
1281 | |||
1281 | def _get_pos(self, cur_page, max_page, items): |
|
1282 | def _get_pos(self, cur_page, max_page, items): | |
1282 | edge = (items / 2) + 1 |
|
1283 | edge = (items / 2) + 1 | |
1283 | if (cur_page <= edge): |
|
1284 | if (cur_page <= edge): | |
1284 | radius = max(items / 2, items - cur_page) |
|
1285 | radius = max(items / 2, items - cur_page) | |
1285 | elif (max_page - cur_page) < edge: |
|
1286 | elif (max_page - cur_page) < edge: | |
1286 | radius = (items - 1) - (max_page - cur_page) |
|
1287 | radius = (items - 1) - (max_page - cur_page) | |
1287 | else: |
|
1288 | else: | |
1288 | radius = items / 2 |
|
1289 | radius = items / 2 | |
1289 |
|
1290 | |||
1290 | left = max(1, (cur_page - (radius))) |
|
1291 | left = max(1, (cur_page - (radius))) | |
1291 | right = min(max_page, cur_page + (radius)) |
|
1292 | right = min(max_page, cur_page + (radius)) | |
1292 | return left, cur_page, right |
|
1293 | return left, cur_page, right | |
1293 |
|
1294 | |||
1294 | def _range(self, regexp_match): |
|
1295 | def _range(self, regexp_match): | |
1295 | """ |
|
1296 | """ | |
1296 | Return range of linked pages (e.g. '1 2 [3] 4 5 6 7 8'). |
|
1297 | Return range of linked pages (e.g. '1 2 [3] 4 5 6 7 8'). | |
1297 |
|
1298 | |||
1298 | Arguments: |
|
1299 | Arguments: | |
1299 |
|
1300 | |||
1300 | regexp_match |
|
1301 | regexp_match | |
1301 | A "re" (regular expressions) match object containing the |
|
1302 | A "re" (regular expressions) match object containing the | |
1302 | radius of linked pages around the current page in |
|
1303 | radius of linked pages around the current page in | |
1303 | regexp_match.group(1) as a string |
|
1304 | regexp_match.group(1) as a string | |
1304 |
|
1305 | |||
1305 | This function is supposed to be called as a callable in |
|
1306 | This function is supposed to be called as a callable in | |
1306 | re.sub. |
|
1307 | re.sub. | |
1307 |
|
1308 | |||
1308 | """ |
|
1309 | """ | |
1309 | radius = int(regexp_match.group(1)) |
|
1310 | radius = int(regexp_match.group(1)) | |
1310 |
|
1311 | |||
1311 | # Compute the first and last page number within the radius |
|
1312 | # Compute the first and last page number within the radius | |
1312 | # e.g. '1 .. 5 6 [7] 8 9 .. 12' |
|
1313 | # e.g. '1 .. 5 6 [7] 8 9 .. 12' | |
1313 | # -> leftmost_page = 5 |
|
1314 | # -> leftmost_page = 5 | |
1314 | # -> rightmost_page = 9 |
|
1315 | # -> rightmost_page = 9 | |
1315 | leftmost_page, _cur, rightmost_page = self._get_pos(self.page, |
|
1316 | leftmost_page, _cur, rightmost_page = self._get_pos(self.page, | |
1316 | self.last_page, |
|
1317 | self.last_page, | |
1317 | (radius * 2) + 1) |
|
1318 | (radius * 2) + 1) | |
1318 | nav_items = [] |
|
1319 | nav_items = [] | |
1319 |
|
1320 | |||
1320 | # Create a link to the first page (unless we are on the first page |
|
1321 | # Create a link to the first page (unless we are on the first page | |
1321 | # or there would be no need to insert '..' spacers) |
|
1322 | # or there would be no need to insert '..' spacers) | |
1322 | if self.page != self.first_page and self.first_page < leftmost_page: |
|
1323 | if self.page != self.first_page and self.first_page < leftmost_page: | |
1323 | nav_items.append(self._pagerlink(self.first_page, self.first_page)) |
|
1324 | nav_items.append(self._pagerlink(self.first_page, self.first_page)) | |
1324 |
|
1325 | |||
1325 | # Insert dots if there are pages between the first page |
|
1326 | # Insert dots if there are pages between the first page | |
1326 | # and the currently displayed page range |
|
1327 | # and the currently displayed page range | |
1327 | if leftmost_page - self.first_page > 1: |
|
1328 | if leftmost_page - self.first_page > 1: | |
1328 | # Wrap in a SPAN tag if nolink_attr is set |
|
1329 | # Wrap in a SPAN tag if nolink_attr is set | |
1329 | text = '..' |
|
1330 | text = '..' | |
1330 | if self.dotdot_attr: |
|
1331 | if self.dotdot_attr: | |
1331 | text = HTML.span(c=text, **self.dotdot_attr) |
|
1332 | text = HTML.span(c=text, **self.dotdot_attr) | |
1332 | nav_items.append(text) |
|
1333 | nav_items.append(text) | |
1333 |
|
1334 | |||
1334 | for thispage in xrange(leftmost_page, rightmost_page + 1): |
|
1335 | for thispage in xrange(leftmost_page, rightmost_page + 1): | |
1335 | # Hilight the current page number and do not use a link |
|
1336 | # Hilight the current page number and do not use a link | |
1336 | if thispage == self.page: |
|
1337 | if thispage == self.page: | |
1337 | text = '%s' % (thispage,) |
|
1338 | text = '%s' % (thispage,) | |
1338 | # Wrap in a SPAN tag if nolink_attr is set |
|
1339 | # Wrap in a SPAN tag if nolink_attr is set | |
1339 | if self.curpage_attr: |
|
1340 | if self.curpage_attr: | |
1340 | text = HTML.span(c=text, **self.curpage_attr) |
|
1341 | text = HTML.span(c=text, **self.curpage_attr) | |
1341 | nav_items.append(text) |
|
1342 | nav_items.append(text) | |
1342 | # Otherwise create just a link to that page |
|
1343 | # Otherwise create just a link to that page | |
1343 | else: |
|
1344 | else: | |
1344 | text = '%s' % (thispage,) |
|
1345 | text = '%s' % (thispage,) | |
1345 | nav_items.append(self._pagerlink(thispage, text)) |
|
1346 | nav_items.append(self._pagerlink(thispage, text)) | |
1346 |
|
1347 | |||
1347 | # Insert dots if there are pages between the displayed |
|
1348 | # Insert dots if there are pages between the displayed | |
1348 | # page numbers and the end of the page range |
|
1349 | # page numbers and the end of the page range | |
1349 | if self.last_page - rightmost_page > 1: |
|
1350 | if self.last_page - rightmost_page > 1: | |
1350 | text = '..' |
|
1351 | text = '..' | |
1351 | # Wrap in a SPAN tag if nolink_attr is set |
|
1352 | # Wrap in a SPAN tag if nolink_attr is set | |
1352 | if self.dotdot_attr: |
|
1353 | if self.dotdot_attr: | |
1353 | text = HTML.span(c=text, **self.dotdot_attr) |
|
1354 | text = HTML.span(c=text, **self.dotdot_attr) | |
1354 | nav_items.append(text) |
|
1355 | nav_items.append(text) | |
1355 |
|
1356 | |||
1356 | # Create a link to the very last page (unless we are on the last |
|
1357 | # Create a link to the very last page (unless we are on the last | |
1357 | # page or there would be no need to insert '..' spacers) |
|
1358 | # page or there would be no need to insert '..' spacers) | |
1358 | if self.page != self.last_page and rightmost_page < self.last_page: |
|
1359 | if self.page != self.last_page and rightmost_page < self.last_page: | |
1359 | nav_items.append(self._pagerlink(self.last_page, self.last_page)) |
|
1360 | nav_items.append(self._pagerlink(self.last_page, self.last_page)) | |
1360 |
|
1361 | |||
1361 | ## prerender links |
|
1362 | ## prerender links | |
1362 | #_page_link = url.current() |
|
1363 | #_page_link = url.current() | |
1363 | #nav_items.append(literal('<link rel="prerender" href="%s?page=%s">' % (_page_link, str(int(self.page)+1)))) |
|
1364 | #nav_items.append(literal('<link rel="prerender" href="%s?page=%s">' % (_page_link, str(int(self.page)+1)))) | |
1364 | #nav_items.append(literal('<link rel="prefetch" href="%s?page=%s">' % (_page_link, str(int(self.page)+1)))) |
|
1365 | #nav_items.append(literal('<link rel="prefetch" href="%s?page=%s">' % (_page_link, str(int(self.page)+1)))) | |
1365 | return self.separator.join(nav_items) |
|
1366 | return self.separator.join(nav_items) | |
1366 |
|
1367 | |||
1367 | def pager(self, format='~2~', page_param='page', partial_param='partial', |
|
1368 | def pager(self, format='~2~', page_param='page', partial_param='partial', | |
1368 | show_if_single_page=False, separator=' ', onclick=None, |
|
1369 | show_if_single_page=False, separator=' ', onclick=None, | |
1369 | symbol_first='<<', symbol_last='>>', |
|
1370 | symbol_first='<<', symbol_last='>>', | |
1370 | symbol_previous='<', symbol_next='>', |
|
1371 | symbol_previous='<', symbol_next='>', | |
1371 | link_attr={'class': 'pager_link', 'rel': 'prerender'}, |
|
1372 | link_attr={'class': 'pager_link', 'rel': 'prerender'}, | |
1372 | curpage_attr={'class': 'pager_curpage'}, |
|
1373 | curpage_attr={'class': 'pager_curpage'}, | |
1373 | dotdot_attr={'class': 'pager_dotdot'}, **kwargs): |
|
1374 | dotdot_attr={'class': 'pager_dotdot'}, **kwargs): | |
1374 |
|
1375 | |||
1375 | self.curpage_attr = curpage_attr |
|
1376 | self.curpage_attr = curpage_attr | |
1376 | self.separator = separator |
|
1377 | self.separator = separator | |
1377 | self.pager_kwargs = kwargs |
|
1378 | self.pager_kwargs = kwargs | |
1378 | self.page_param = page_param |
|
1379 | self.page_param = page_param | |
1379 | self.partial_param = partial_param |
|
1380 | self.partial_param = partial_param | |
1380 | self.onclick = onclick |
|
1381 | self.onclick = onclick | |
1381 | self.link_attr = link_attr |
|
1382 | self.link_attr = link_attr | |
1382 | self.dotdot_attr = dotdot_attr |
|
1383 | self.dotdot_attr = dotdot_attr | |
1383 |
|
1384 | |||
1384 | # Don't show navigator if there is no more than one page |
|
1385 | # Don't show navigator if there is no more than one page | |
1385 | if self.page_count == 0 or (self.page_count == 1 and not show_if_single_page): |
|
1386 | if self.page_count == 0 or (self.page_count == 1 and not show_if_single_page): | |
1386 | return '' |
|
1387 | return '' | |
1387 |
|
1388 | |||
1388 | from string import Template |
|
1389 | from string import Template | |
1389 | # Replace ~...~ in token format by range of pages |
|
1390 | # Replace ~...~ in token format by range of pages | |
1390 | result = re.sub(r'~(\d+)~', self._range, format) |
|
1391 | result = re.sub(r'~(\d+)~', self._range, format) | |
1391 |
|
1392 | |||
1392 | # Interpolate '%' variables |
|
1393 | # Interpolate '%' variables | |
1393 | result = Template(result).safe_substitute({ |
|
1394 | result = Template(result).safe_substitute({ | |
1394 | 'first_page': self.first_page, |
|
1395 | 'first_page': self.first_page, | |
1395 | 'last_page': self.last_page, |
|
1396 | 'last_page': self.last_page, | |
1396 | 'page': self.page, |
|
1397 | 'page': self.page, | |
1397 | 'page_count': self.page_count, |
|
1398 | 'page_count': self.page_count, | |
1398 | 'items_per_page': self.items_per_page, |
|
1399 | 'items_per_page': self.items_per_page, | |
1399 | 'first_item': self.first_item, |
|
1400 | 'first_item': self.first_item, | |
1400 | 'last_item': self.last_item, |
|
1401 | 'last_item': self.last_item, | |
1401 | 'item_count': self.item_count, |
|
1402 | 'item_count': self.item_count, | |
1402 | 'link_first': self.page > self.first_page and \ |
|
1403 | 'link_first': self.page > self.first_page and \ | |
1403 | self._pagerlink(self.first_page, symbol_first) or '', |
|
1404 | self._pagerlink(self.first_page, symbol_first) or '', | |
1404 | 'link_last': self.page < self.last_page and \ |
|
1405 | 'link_last': self.page < self.last_page and \ | |
1405 | self._pagerlink(self.last_page, symbol_last) or '', |
|
1406 | self._pagerlink(self.last_page, symbol_last) or '', | |
1406 | 'link_previous': self.previous_page and \ |
|
1407 | 'link_previous': self.previous_page and \ | |
1407 | self._pagerlink(self.previous_page, symbol_previous) \ |
|
1408 | self._pagerlink(self.previous_page, symbol_previous) \ | |
1408 | or HTML.span(symbol_previous, class_="pg-previous disabled"), |
|
1409 | or HTML.span(symbol_previous, class_="pg-previous disabled"), | |
1409 | 'link_next': self.next_page and \ |
|
1410 | 'link_next': self.next_page and \ | |
1410 | self._pagerlink(self.next_page, symbol_next) \ |
|
1411 | self._pagerlink(self.next_page, symbol_next) \ | |
1411 | or HTML.span(symbol_next, class_="pg-next disabled") |
|
1412 | or HTML.span(symbol_next, class_="pg-next disabled") | |
1412 | }) |
|
1413 | }) | |
1413 |
|
1414 | |||
1414 | return literal(result) |
|
1415 | return literal(result) | |
1415 |
|
1416 | |||
1416 |
|
1417 | |||
1417 | #============================================================================== |
|
1418 | #============================================================================== | |
1418 | # REPO PAGER, PAGER FOR REPOSITORY |
|
1419 | # REPO PAGER, PAGER FOR REPOSITORY | |
1419 | #============================================================================== |
|
1420 | #============================================================================== | |
1420 | class RepoPage(Page): |
|
1421 | class RepoPage(Page): | |
1421 |
|
1422 | |||
1422 | def __init__(self, collection, page=1, items_per_page=20, |
|
1423 | def __init__(self, collection, page=1, items_per_page=20, | |
1423 | item_count=None, url=None, **kwargs): |
|
1424 | item_count=None, url=None, **kwargs): | |
1424 |
|
1425 | |||
1425 | """Create a "RepoPage" instance. special pager for paging |
|
1426 | """Create a "RepoPage" instance. special pager for paging | |
1426 | repository |
|
1427 | repository | |
1427 | """ |
|
1428 | """ | |
1428 | self._url_generator = url |
|
1429 | self._url_generator = url | |
1429 |
|
1430 | |||
1430 | # Safe the kwargs class-wide so they can be used in the pager() method |
|
1431 | # Safe the kwargs class-wide so they can be used in the pager() method | |
1431 | self.kwargs = kwargs |
|
1432 | self.kwargs = kwargs | |
1432 |
|
1433 | |||
1433 | # Save a reference to the collection |
|
1434 | # Save a reference to the collection | |
1434 | self.original_collection = collection |
|
1435 | self.original_collection = collection | |
1435 |
|
1436 | |||
1436 | self.collection = collection |
|
1437 | self.collection = collection | |
1437 |
|
1438 | |||
1438 | # The self.page is the number of the current page. |
|
1439 | # The self.page is the number of the current page. | |
1439 | # The first page has the number 1! |
|
1440 | # The first page has the number 1! | |
1440 | try: |
|
1441 | try: | |
1441 | self.page = int(page) # make it int() if we get it as a string |
|
1442 | self.page = int(page) # make it int() if we get it as a string | |
1442 | except (ValueError, TypeError): |
|
1443 | except (ValueError, TypeError): | |
1443 | self.page = 1 |
|
1444 | self.page = 1 | |
1444 |
|
1445 | |||
1445 | self.items_per_page = items_per_page |
|
1446 | self.items_per_page = items_per_page | |
1446 |
|
1447 | |||
1447 | # Unless the user tells us how many items the collections has |
|
1448 | # Unless the user tells us how many items the collections has | |
1448 | # we calculate that ourselves. |
|
1449 | # we calculate that ourselves. | |
1449 | if item_count is not None: |
|
1450 | if item_count is not None: | |
1450 | self.item_count = item_count |
|
1451 | self.item_count = item_count | |
1451 | else: |
|
1452 | else: | |
1452 | self.item_count = len(self.collection) |
|
1453 | self.item_count = len(self.collection) | |
1453 |
|
1454 | |||
1454 | # Compute the number of the first and last available page |
|
1455 | # Compute the number of the first and last available page | |
1455 | if self.item_count > 0: |
|
1456 | if self.item_count > 0: | |
1456 | self.first_page = 1 |
|
1457 | self.first_page = 1 | |
1457 | self.page_count = int(math.ceil(float(self.item_count) / |
|
1458 | self.page_count = int(math.ceil(float(self.item_count) / | |
1458 | self.items_per_page)) |
|
1459 | self.items_per_page)) | |
1459 | self.last_page = self.first_page + self.page_count - 1 |
|
1460 | self.last_page = self.first_page + self.page_count - 1 | |
1460 |
|
1461 | |||
1461 | # Make sure that the requested page number is the range of |
|
1462 | # Make sure that the requested page number is the range of | |
1462 | # valid pages |
|
1463 | # valid pages | |
1463 | if self.page > self.last_page: |
|
1464 | if self.page > self.last_page: | |
1464 | self.page = self.last_page |
|
1465 | self.page = self.last_page | |
1465 | elif self.page < self.first_page: |
|
1466 | elif self.page < self.first_page: | |
1466 | self.page = self.first_page |
|
1467 | self.page = self.first_page | |
1467 |
|
1468 | |||
1468 | # Note: the number of items on this page can be less than |
|
1469 | # Note: the number of items on this page can be less than | |
1469 | # items_per_page if the last page is not full |
|
1470 | # items_per_page if the last page is not full | |
1470 | self.first_item = max(0, (self.item_count) - (self.page * |
|
1471 | self.first_item = max(0, (self.item_count) - (self.page * | |
1471 | items_per_page)) |
|
1472 | items_per_page)) | |
1472 | self.last_item = ((self.item_count - 1) - items_per_page * |
|
1473 | self.last_item = ((self.item_count - 1) - items_per_page * | |
1473 | (self.page - 1)) |
|
1474 | (self.page - 1)) | |
1474 |
|
1475 | |||
1475 | self.items = list(self.collection[self.first_item:self.last_item + 1]) |
|
1476 | self.items = list(self.collection[self.first_item:self.last_item + 1]) | |
1476 |
|
1477 | |||
1477 | # Links to previous and next page |
|
1478 | # Links to previous and next page | |
1478 | if self.page > self.first_page: |
|
1479 | if self.page > self.first_page: | |
1479 | self.previous_page = self.page - 1 |
|
1480 | self.previous_page = self.page - 1 | |
1480 | else: |
|
1481 | else: | |
1481 | self.previous_page = None |
|
1482 | self.previous_page = None | |
1482 |
|
1483 | |||
1483 | if self.page < self.last_page: |
|
1484 | if self.page < self.last_page: | |
1484 | self.next_page = self.page + 1 |
|
1485 | self.next_page = self.page + 1 | |
1485 | else: |
|
1486 | else: | |
1486 | self.next_page = None |
|
1487 | self.next_page = None | |
1487 |
|
1488 | |||
1488 | # No items available |
|
1489 | # No items available | |
1489 | else: |
|
1490 | else: | |
1490 | self.first_page = None |
|
1491 | self.first_page = None | |
1491 | self.page_count = 0 |
|
1492 | self.page_count = 0 | |
1492 | self.last_page = None |
|
1493 | self.last_page = None | |
1493 | self.first_item = None |
|
1494 | self.first_item = None | |
1494 | self.last_item = None |
|
1495 | self.last_item = None | |
1495 | self.previous_page = None |
|
1496 | self.previous_page = None | |
1496 | self.next_page = None |
|
1497 | self.next_page = None | |
1497 | self.items = [] |
|
1498 | self.items = [] | |
1498 |
|
1499 | |||
1499 | # This is a subclass of the 'list' type. Initialise the list now. |
|
1500 | # This is a subclass of the 'list' type. Initialise the list now. | |
1500 | list.__init__(self, reversed(self.items)) |
|
1501 | list.__init__(self, reversed(self.items)) | |
1501 |
|
1502 | |||
1502 |
|
1503 | |||
1503 | def changed_tooltip(nodes): |
|
1504 | def changed_tooltip(nodes): | |
1504 | """ |
|
1505 | """ | |
1505 | Generates a html string for changed nodes in commit page. |
|
1506 | Generates a html string for changed nodes in commit page. | |
1506 | It limits the output to 30 entries |
|
1507 | It limits the output to 30 entries | |
1507 |
|
1508 | |||
1508 | :param nodes: LazyNodesGenerator |
|
1509 | :param nodes: LazyNodesGenerator | |
1509 | """ |
|
1510 | """ | |
1510 | if nodes: |
|
1511 | if nodes: | |
1511 | pref = ': <br/> ' |
|
1512 | pref = ': <br/> ' | |
1512 | suf = '' |
|
1513 | suf = '' | |
1513 | if len(nodes) > 30: |
|
1514 | if len(nodes) > 30: | |
1514 | suf = '<br/>' + _(' and %s more') % (len(nodes) - 30) |
|
1515 | suf = '<br/>' + _(' and %s more') % (len(nodes) - 30) | |
1515 | return literal(pref + '<br/> '.join([safe_unicode(x.path) |
|
1516 | return literal(pref + '<br/> '.join([safe_unicode(x.path) | |
1516 | for x in nodes[:30]]) + suf) |
|
1517 | for x in nodes[:30]]) + suf) | |
1517 | else: |
|
1518 | else: | |
1518 | return ': ' + _('No Files') |
|
1519 | return ': ' + _('No Files') | |
1519 |
|
1520 | |||
1520 |
|
1521 | |||
1521 | def breadcrumb_repo_link(repo): |
|
1522 | def breadcrumb_repo_link(repo): | |
1522 | """ |
|
1523 | """ | |
1523 | Makes a breadcrumbs path link to repo |
|
1524 | Makes a breadcrumbs path link to repo | |
1524 |
|
1525 | |||
1525 | ex:: |
|
1526 | ex:: | |
1526 | group >> subgroup >> repo |
|
1527 | group >> subgroup >> repo | |
1527 |
|
1528 | |||
1528 | :param repo: a Repository instance |
|
1529 | :param repo: a Repository instance | |
1529 | """ |
|
1530 | """ | |
1530 |
|
1531 | |||
1531 | path = [ |
|
1532 | path = [ | |
1532 | link_to(group.name, url('repo_group_home', group_name=group.group_name)) |
|
1533 | link_to(group.name, url('repo_group_home', group_name=group.group_name)) | |
1533 | for group in repo.groups_with_parents |
|
1534 | for group in repo.groups_with_parents | |
1534 | ] + [ |
|
1535 | ] + [ | |
1535 | link_to(repo.just_name, url('summary_home', repo_name=repo.repo_name)) |
|
1536 | link_to(repo.just_name, url('summary_home', repo_name=repo.repo_name)) | |
1536 | ] |
|
1537 | ] | |
1537 |
|
1538 | |||
1538 | return literal(' » '.join(path)) |
|
1539 | return literal(' » '.join(path)) | |
1539 |
|
1540 | |||
1540 |
|
1541 | |||
1541 | def format_byte_size_binary(file_size): |
|
1542 | def format_byte_size_binary(file_size): | |
1542 | """ |
|
1543 | """ | |
1543 | Formats file/folder sizes to standard. |
|
1544 | Formats file/folder sizes to standard. | |
1544 | """ |
|
1545 | """ | |
1545 | formatted_size = format_byte_size(file_size, binary=True) |
|
1546 | formatted_size = format_byte_size(file_size, binary=True) | |
1546 | return formatted_size |
|
1547 | return formatted_size | |
1547 |
|
1548 | |||
1548 |
|
1549 | |||
1549 | def fancy_file_stats(stats): |
|
1550 | def fancy_file_stats(stats): | |
1550 | """ |
|
1551 | """ | |
1551 | Displays a fancy two colored bar for number of added/deleted |
|
1552 | Displays a fancy two colored bar for number of added/deleted | |
1552 | lines of code on file |
|
1553 | lines of code on file | |
1553 |
|
1554 | |||
1554 | :param stats: two element list of added/deleted lines of code |
|
1555 | :param stats: two element list of added/deleted lines of code | |
1555 | """ |
|
1556 | """ | |
1556 | from rhodecode.lib.diffs import NEW_FILENODE, DEL_FILENODE, \ |
|
1557 | from rhodecode.lib.diffs import NEW_FILENODE, DEL_FILENODE, \ | |
1557 | MOD_FILENODE, RENAMED_FILENODE, CHMOD_FILENODE, BIN_FILENODE |
|
1558 | MOD_FILENODE, RENAMED_FILENODE, CHMOD_FILENODE, BIN_FILENODE | |
1558 |
|
1559 | |||
1559 | def cgen(l_type, a_v, d_v): |
|
1560 | def cgen(l_type, a_v, d_v): | |
1560 | mapping = {'tr': 'top-right-rounded-corner-mid', |
|
1561 | mapping = {'tr': 'top-right-rounded-corner-mid', | |
1561 | 'tl': 'top-left-rounded-corner-mid', |
|
1562 | 'tl': 'top-left-rounded-corner-mid', | |
1562 | 'br': 'bottom-right-rounded-corner-mid', |
|
1563 | 'br': 'bottom-right-rounded-corner-mid', | |
1563 | 'bl': 'bottom-left-rounded-corner-mid'} |
|
1564 | 'bl': 'bottom-left-rounded-corner-mid'} | |
1564 | map_getter = lambda x: mapping[x] |
|
1565 | map_getter = lambda x: mapping[x] | |
1565 |
|
1566 | |||
1566 | if l_type == 'a' and d_v: |
|
1567 | if l_type == 'a' and d_v: | |
1567 | #case when added and deleted are present |
|
1568 | #case when added and deleted are present | |
1568 | return ' '.join(map(map_getter, ['tl', 'bl'])) |
|
1569 | return ' '.join(map(map_getter, ['tl', 'bl'])) | |
1569 |
|
1570 | |||
1570 | if l_type == 'a' and not d_v: |
|
1571 | if l_type == 'a' and not d_v: | |
1571 | return ' '.join(map(map_getter, ['tr', 'br', 'tl', 'bl'])) |
|
1572 | return ' '.join(map(map_getter, ['tr', 'br', 'tl', 'bl'])) | |
1572 |
|
1573 | |||
1573 | if l_type == 'd' and a_v: |
|
1574 | if l_type == 'd' and a_v: | |
1574 | return ' '.join(map(map_getter, ['tr', 'br'])) |
|
1575 | return ' '.join(map(map_getter, ['tr', 'br'])) | |
1575 |
|
1576 | |||
1576 | if l_type == 'd' and not a_v: |
|
1577 | if l_type == 'd' and not a_v: | |
1577 | return ' '.join(map(map_getter, ['tr', 'br', 'tl', 'bl'])) |
|
1578 | return ' '.join(map(map_getter, ['tr', 'br', 'tl', 'bl'])) | |
1578 |
|
1579 | |||
1579 | a, d = stats['added'], stats['deleted'] |
|
1580 | a, d = stats['added'], stats['deleted'] | |
1580 | width = 100 |
|
1581 | width = 100 | |
1581 |
|
1582 | |||
1582 | if stats['binary']: # binary operations like chmod/rename etc |
|
1583 | if stats['binary']: # binary operations like chmod/rename etc | |
1583 | lbl = [] |
|
1584 | lbl = [] | |
1584 | bin_op = 0 # undefined |
|
1585 | bin_op = 0 # undefined | |
1585 |
|
1586 | |||
1586 | # prefix with bin for binary files |
|
1587 | # prefix with bin for binary files | |
1587 | if BIN_FILENODE in stats['ops']: |
|
1588 | if BIN_FILENODE in stats['ops']: | |
1588 | lbl += ['bin'] |
|
1589 | lbl += ['bin'] | |
1589 |
|
1590 | |||
1590 | if NEW_FILENODE in stats['ops']: |
|
1591 | if NEW_FILENODE in stats['ops']: | |
1591 | lbl += [_('new file')] |
|
1592 | lbl += [_('new file')] | |
1592 | bin_op = NEW_FILENODE |
|
1593 | bin_op = NEW_FILENODE | |
1593 | elif MOD_FILENODE in stats['ops']: |
|
1594 | elif MOD_FILENODE in stats['ops']: | |
1594 | lbl += [_('mod')] |
|
1595 | lbl += [_('mod')] | |
1595 | bin_op = MOD_FILENODE |
|
1596 | bin_op = MOD_FILENODE | |
1596 | elif DEL_FILENODE in stats['ops']: |
|
1597 | elif DEL_FILENODE in stats['ops']: | |
1597 | lbl += [_('del')] |
|
1598 | lbl += [_('del')] | |
1598 | bin_op = DEL_FILENODE |
|
1599 | bin_op = DEL_FILENODE | |
1599 | elif RENAMED_FILENODE in stats['ops']: |
|
1600 | elif RENAMED_FILENODE in stats['ops']: | |
1600 | lbl += [_('rename')] |
|
1601 | lbl += [_('rename')] | |
1601 | bin_op = RENAMED_FILENODE |
|
1602 | bin_op = RENAMED_FILENODE | |
1602 |
|
1603 | |||
1603 | # chmod can go with other operations, so we add a + to lbl if needed |
|
1604 | # chmod can go with other operations, so we add a + to lbl if needed | |
1604 | if CHMOD_FILENODE in stats['ops']: |
|
1605 | if CHMOD_FILENODE in stats['ops']: | |
1605 | lbl += [_('chmod')] |
|
1606 | lbl += [_('chmod')] | |
1606 | if bin_op == 0: |
|
1607 | if bin_op == 0: | |
1607 | bin_op = CHMOD_FILENODE |
|
1608 | bin_op = CHMOD_FILENODE | |
1608 |
|
1609 | |||
1609 | lbl = '+'.join(lbl) |
|
1610 | lbl = '+'.join(lbl) | |
1610 | b_a = '<div class="bin bin%s %s" style="width:100%%">%s</div>' \ |
|
1611 | b_a = '<div class="bin bin%s %s" style="width:100%%">%s</div>' \ | |
1611 | % (bin_op, cgen('a', a_v='', d_v=0), lbl) |
|
1612 | % (bin_op, cgen('a', a_v='', d_v=0), lbl) | |
1612 | b_d = '<div class="bin bin1" style="width:0%%"></div>' |
|
1613 | b_d = '<div class="bin bin1" style="width:0%%"></div>' | |
1613 | return literal('<div style="width:%spx">%s%s</div>' % (width, b_a, b_d)) |
|
1614 | return literal('<div style="width:%spx">%s%s</div>' % (width, b_a, b_d)) | |
1614 |
|
1615 | |||
1615 | t = stats['added'] + stats['deleted'] |
|
1616 | t = stats['added'] + stats['deleted'] | |
1616 | unit = float(width) / (t or 1) |
|
1617 | unit = float(width) / (t or 1) | |
1617 |
|
1618 | |||
1618 | # needs > 9% of width to be visible or 0 to be hidden |
|
1619 | # needs > 9% of width to be visible or 0 to be hidden | |
1619 | a_p = max(9, unit * a) if a > 0 else 0 |
|
1620 | a_p = max(9, unit * a) if a > 0 else 0 | |
1620 | d_p = max(9, unit * d) if d > 0 else 0 |
|
1621 | d_p = max(9, unit * d) if d > 0 else 0 | |
1621 | p_sum = a_p + d_p |
|
1622 | p_sum = a_p + d_p | |
1622 |
|
1623 | |||
1623 | if p_sum > width: |
|
1624 | if p_sum > width: | |
1624 | #adjust the percentage to be == 100% since we adjusted to 9 |
|
1625 | #adjust the percentage to be == 100% since we adjusted to 9 | |
1625 | if a_p > d_p: |
|
1626 | if a_p > d_p: | |
1626 | a_p = a_p - (p_sum - width) |
|
1627 | a_p = a_p - (p_sum - width) | |
1627 | else: |
|
1628 | else: | |
1628 | d_p = d_p - (p_sum - width) |
|
1629 | d_p = d_p - (p_sum - width) | |
1629 |
|
1630 | |||
1630 | a_v = a if a > 0 else '' |
|
1631 | a_v = a if a > 0 else '' | |
1631 | d_v = d if d > 0 else '' |
|
1632 | d_v = d if d > 0 else '' | |
1632 |
|
1633 | |||
1633 | d_a = '<div class="added %s" style="width:%s%%">%s</div>' % ( |
|
1634 | d_a = '<div class="added %s" style="width:%s%%">%s</div>' % ( | |
1634 | cgen('a', a_v, d_v), a_p, a_v |
|
1635 | cgen('a', a_v, d_v), a_p, a_v | |
1635 | ) |
|
1636 | ) | |
1636 | d_d = '<div class="deleted %s" style="width:%s%%">%s</div>' % ( |
|
1637 | d_d = '<div class="deleted %s" style="width:%s%%">%s</div>' % ( | |
1637 | cgen('d', a_v, d_v), d_p, d_v |
|
1638 | cgen('d', a_v, d_v), d_p, d_v | |
1638 | ) |
|
1639 | ) | |
1639 | return literal('<div style="width:%spx">%s%s</div>' % (width, d_a, d_d)) |
|
1640 | return literal('<div style="width:%spx">%s%s</div>' % (width, d_a, d_d)) | |
1640 |
|
1641 | |||
1641 |
|
1642 | |||
1642 | def urlify_text(text_, safe=True): |
|
1643 | def urlify_text(text_, safe=True): | |
1643 | """ |
|
1644 | """ | |
1644 | Extrac urls from text and make html links out of them |
|
1645 | Extrac urls from text and make html links out of them | |
1645 |
|
1646 | |||
1646 | :param text_: |
|
1647 | :param text_: | |
1647 | """ |
|
1648 | """ | |
1648 |
|
1649 | |||
1649 | url_pat = re.compile(r'''(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@#.&+]''' |
|
1650 | url_pat = re.compile(r'''(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@#.&+]''' | |
1650 | '''|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)''') |
|
1651 | '''|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)''') | |
1651 |
|
1652 | |||
1652 | def url_func(match_obj): |
|
1653 | def url_func(match_obj): | |
1653 | url_full = match_obj.groups()[0] |
|
1654 | url_full = match_obj.groups()[0] | |
1654 | return '<a href="%(url)s">%(url)s</a>' % ({'url': url_full}) |
|
1655 | return '<a href="%(url)s">%(url)s</a>' % ({'url': url_full}) | |
1655 | _newtext = url_pat.sub(url_func, text_) |
|
1656 | _newtext = url_pat.sub(url_func, text_) | |
1656 | if safe: |
|
1657 | if safe: | |
1657 | return literal(_newtext) |
|
1658 | return literal(_newtext) | |
1658 | return _newtext |
|
1659 | return _newtext | |
1659 |
|
1660 | |||
1660 |
|
1661 | |||
1661 | def urlify_commits(text_, repository): |
|
1662 | def urlify_commits(text_, repository): | |
1662 | """ |
|
1663 | """ | |
1663 | Extract commit ids from text and make link from them |
|
1664 | Extract commit ids from text and make link from them | |
1664 |
|
1665 | |||
1665 | :param text_: |
|
1666 | :param text_: | |
1666 | :param repository: repo name to build the URL with |
|
1667 | :param repository: repo name to build the URL with | |
1667 | """ |
|
1668 | """ | |
1668 | from pylons import url # doh, we need to re-import url to mock it later |
|
1669 | from pylons import url # doh, we need to re-import url to mock it later | |
1669 | URL_PAT = re.compile(r'(^|\s)([0-9a-fA-F]{12,40})($|\s)') |
|
1670 | URL_PAT = re.compile(r'(^|\s)([0-9a-fA-F]{12,40})($|\s)') | |
1670 |
|
1671 | |||
1671 | def url_func(match_obj): |
|
1672 | def url_func(match_obj): | |
1672 | commit_id = match_obj.groups()[1] |
|
1673 | commit_id = match_obj.groups()[1] | |
1673 | pref = match_obj.groups()[0] |
|
1674 | pref = match_obj.groups()[0] | |
1674 | suf = match_obj.groups()[2] |
|
1675 | suf = match_obj.groups()[2] | |
1675 |
|
1676 | |||
1676 | tmpl = ( |
|
1677 | tmpl = ( | |
1677 | '%(pref)s<a class="%(cls)s" href="%(url)s">' |
|
1678 | '%(pref)s<a class="%(cls)s" href="%(url)s">' | |
1678 | '%(commit_id)s</a>%(suf)s' |
|
1679 | '%(commit_id)s</a>%(suf)s' | |
1679 | ) |
|
1680 | ) | |
1680 | return tmpl % { |
|
1681 | return tmpl % { | |
1681 | 'pref': pref, |
|
1682 | 'pref': pref, | |
1682 | 'cls': 'revision-link', |
|
1683 | 'cls': 'revision-link', | |
1683 | 'url': url('changeset_home', repo_name=repository, |
|
1684 | 'url': url('changeset_home', repo_name=repository, | |
1684 | revision=commit_id, qualified=True), |
|
1685 | revision=commit_id, qualified=True), | |
1685 | 'commit_id': commit_id, |
|
1686 | 'commit_id': commit_id, | |
1686 | 'suf': suf |
|
1687 | 'suf': suf | |
1687 | } |
|
1688 | } | |
1688 |
|
1689 | |||
1689 | newtext = URL_PAT.sub(url_func, text_) |
|
1690 | newtext = URL_PAT.sub(url_func, text_) | |
1690 |
|
1691 | |||
1691 | return newtext |
|
1692 | return newtext | |
1692 |
|
1693 | |||
1693 |
|
1694 | |||
1694 | def _process_url_func(match_obj, repo_name, uid, entry, |
|
1695 | def _process_url_func(match_obj, repo_name, uid, entry, | |
1695 | return_raw_data=False): |
|
1696 | return_raw_data=False): | |
1696 | pref = '' |
|
1697 | pref = '' | |
1697 | if match_obj.group().startswith(' '): |
|
1698 | if match_obj.group().startswith(' '): | |
1698 | pref = ' ' |
|
1699 | pref = ' ' | |
1699 |
|
1700 | |||
1700 | issue_id = ''.join(match_obj.groups()) |
|
1701 | issue_id = ''.join(match_obj.groups()) | |
1701 | tmpl = ( |
|
1702 | tmpl = ( | |
1702 | '%(pref)s<a class="%(cls)s" href="%(url)s">' |
|
1703 | '%(pref)s<a class="%(cls)s" href="%(url)s">' | |
1703 | '%(issue-prefix)s%(id-repr)s' |
|
1704 | '%(issue-prefix)s%(id-repr)s' | |
1704 | '</a>') |
|
1705 | '</a>') | |
1705 |
|
1706 | |||
1706 | (repo_name_cleaned, |
|
1707 | (repo_name_cleaned, | |
1707 | parent_group_name) = RepoGroupModel().\ |
|
1708 | parent_group_name) = RepoGroupModel().\ | |
1708 | _get_group_name_and_parent(repo_name) |
|
1709 | _get_group_name_and_parent(repo_name) | |
1709 |
|
1710 | |||
1710 | # variables replacement |
|
1711 | # variables replacement | |
1711 | named_vars = { |
|
1712 | named_vars = { | |
1712 | 'id': issue_id, |
|
1713 | 'id': issue_id, | |
1713 | 'repo': repo_name, |
|
1714 | 'repo': repo_name, | |
1714 | 'repo_name': repo_name_cleaned, |
|
1715 | 'repo_name': repo_name_cleaned, | |
1715 | 'group_name': parent_group_name |
|
1716 | 'group_name': parent_group_name | |
1716 | } |
|
1717 | } | |
1717 | # named regex variables |
|
1718 | # named regex variables | |
1718 | named_vars.update(match_obj.groupdict()) |
|
1719 | named_vars.update(match_obj.groupdict()) | |
1719 | _url = string.Template(entry['url']).safe_substitute(**named_vars) |
|
1720 | _url = string.Template(entry['url']).safe_substitute(**named_vars) | |
1720 |
|
1721 | |||
1721 | data = { |
|
1722 | data = { | |
1722 | 'pref': pref, |
|
1723 | 'pref': pref, | |
1723 | 'cls': 'issue-tracker-link', |
|
1724 | 'cls': 'issue-tracker-link', | |
1724 | 'url': _url, |
|
1725 | 'url': _url, | |
1725 | 'id-repr': issue_id, |
|
1726 | 'id-repr': issue_id, | |
1726 | 'issue-prefix': entry['pref'], |
|
1727 | 'issue-prefix': entry['pref'], | |
1727 | 'serv': entry['url'], |
|
1728 | 'serv': entry['url'], | |
1728 | } |
|
1729 | } | |
1729 | if return_raw_data: |
|
1730 | if return_raw_data: | |
1730 | return { |
|
1731 | return { | |
1731 | 'id': issue_id, |
|
1732 | 'id': issue_id, | |
1732 | 'url': _url |
|
1733 | 'url': _url | |
1733 | } |
|
1734 | } | |
1734 | return tmpl % data |
|
1735 | return tmpl % data | |
1735 |
|
1736 | |||
1736 |
|
1737 | |||
1737 | def process_patterns(text_string, repo_name, config=None): |
|
1738 | def process_patterns(text_string, repo_name, config=None): | |
1738 | repo = None |
|
1739 | repo = None | |
1739 | if repo_name: |
|
1740 | if repo_name: | |
1740 | # Retrieving repo_name to avoid invalid repo_name to explode on |
|
1741 | # Retrieving repo_name to avoid invalid repo_name to explode on | |
1741 | # IssueTrackerSettingsModel but still passing invalid name further down |
|
1742 | # IssueTrackerSettingsModel but still passing invalid name further down | |
1742 | repo = Repository.get_by_repo_name(repo_name, cache=True) |
|
1743 | repo = Repository.get_by_repo_name(repo_name, cache=True) | |
1743 |
|
1744 | |||
1744 | settings_model = IssueTrackerSettingsModel(repo=repo) |
|
1745 | settings_model = IssueTrackerSettingsModel(repo=repo) | |
1745 | active_entries = settings_model.get_settings(cache=True) |
|
1746 | active_entries = settings_model.get_settings(cache=True) | |
1746 |
|
1747 | |||
1747 | issues_data = [] |
|
1748 | issues_data = [] | |
1748 | newtext = text_string |
|
1749 | newtext = text_string | |
1749 | for uid, entry in active_entries.items(): |
|
1750 | for uid, entry in active_entries.items(): | |
1750 | log.debug('found issue tracker entry with uid %s' % (uid,)) |
|
1751 | log.debug('found issue tracker entry with uid %s' % (uid,)) | |
1751 |
|
1752 | |||
1752 | if not (entry['pat'] and entry['url']): |
|
1753 | if not (entry['pat'] and entry['url']): | |
1753 | log.debug('skipping due to missing data') |
|
1754 | log.debug('skipping due to missing data') | |
1754 | continue |
|
1755 | continue | |
1755 |
|
1756 | |||
1756 | log.debug('issue tracker entry: uid: `%s` PAT:%s URL:%s PREFIX:%s' |
|
1757 | log.debug('issue tracker entry: uid: `%s` PAT:%s URL:%s PREFIX:%s' | |
1757 | % (uid, entry['pat'], entry['url'], entry['pref'])) |
|
1758 | % (uid, entry['pat'], entry['url'], entry['pref'])) | |
1758 |
|
1759 | |||
1759 | try: |
|
1760 | try: | |
1760 | pattern = re.compile(r'%s' % entry['pat']) |
|
1761 | pattern = re.compile(r'%s' % entry['pat']) | |
1761 | except re.error: |
|
1762 | except re.error: | |
1762 | log.exception( |
|
1763 | log.exception( | |
1763 | 'issue tracker pattern: `%s` failed to compile', |
|
1764 | 'issue tracker pattern: `%s` failed to compile', | |
1764 | entry['pat']) |
|
1765 | entry['pat']) | |
1765 | continue |
|
1766 | continue | |
1766 |
|
1767 | |||
1767 | data_func = partial( |
|
1768 | data_func = partial( | |
1768 | _process_url_func, repo_name=repo_name, entry=entry, uid=uid, |
|
1769 | _process_url_func, repo_name=repo_name, entry=entry, uid=uid, | |
1769 | return_raw_data=True) |
|
1770 | return_raw_data=True) | |
1770 |
|
1771 | |||
1771 | for match_obj in pattern.finditer(text_string): |
|
1772 | for match_obj in pattern.finditer(text_string): | |
1772 | issues_data.append(data_func(match_obj)) |
|
1773 | issues_data.append(data_func(match_obj)) | |
1773 |
|
1774 | |||
1774 | url_func = partial( |
|
1775 | url_func = partial( | |
1775 | _process_url_func, repo_name=repo_name, entry=entry, uid=uid) |
|
1776 | _process_url_func, repo_name=repo_name, entry=entry, uid=uid) | |
1776 |
|
1777 | |||
1777 | newtext = pattern.sub(url_func, newtext) |
|
1778 | newtext = pattern.sub(url_func, newtext) | |
1778 | log.debug('processed prefix:uid `%s`' % (uid,)) |
|
1779 | log.debug('processed prefix:uid `%s`' % (uid,)) | |
1779 |
|
1780 | |||
1780 | return newtext, issues_data |
|
1781 | return newtext, issues_data | |
1781 |
|
1782 | |||
1782 |
|
1783 | |||
1783 | def urlify_commit_message(commit_text, repository=None): |
|
1784 | def urlify_commit_message(commit_text, repository=None): | |
1784 | """ |
|
1785 | """ | |
1785 | Parses given text message and makes proper links. |
|
1786 | Parses given text message and makes proper links. | |
1786 | issues are linked to given issue-server, and rest is a commit link |
|
1787 | issues are linked to given issue-server, and rest is a commit link | |
1787 |
|
1788 | |||
1788 | :param commit_text: |
|
1789 | :param commit_text: | |
1789 | :param repository: |
|
1790 | :param repository: | |
1790 | """ |
|
1791 | """ | |
1791 | from pylons import url # doh, we need to re-import url to mock it later |
|
1792 | from pylons import url # doh, we need to re-import url to mock it later | |
1792 |
|
1793 | |||
1793 | def escaper(string): |
|
1794 | def escaper(string): | |
1794 | return string.replace('<', '<').replace('>', '>') |
|
1795 | return string.replace('<', '<').replace('>', '>') | |
1795 |
|
1796 | |||
1796 | newtext = escaper(commit_text) |
|
1797 | newtext = escaper(commit_text) | |
1797 |
|
1798 | |||
1798 | # extract http/https links and make them real urls |
|
1799 | # extract http/https links and make them real urls | |
1799 | newtext = urlify_text(newtext, safe=False) |
|
1800 | newtext = urlify_text(newtext, safe=False) | |
1800 |
|
1801 | |||
1801 | # urlify commits - extract commit ids and make link out of them, if we have |
|
1802 | # urlify commits - extract commit ids and make link out of them, if we have | |
1802 | # the scope of repository present. |
|
1803 | # the scope of repository present. | |
1803 | if repository: |
|
1804 | if repository: | |
1804 | newtext = urlify_commits(newtext, repository) |
|
1805 | newtext = urlify_commits(newtext, repository) | |
1805 |
|
1806 | |||
1806 | # process issue tracker patterns |
|
1807 | # process issue tracker patterns | |
1807 | newtext, issues = process_patterns(newtext, repository or '') |
|
1808 | newtext, issues = process_patterns(newtext, repository or '') | |
1808 |
|
1809 | |||
1809 | return literal(newtext) |
|
1810 | return literal(newtext) | |
1810 |
|
1811 | |||
1811 |
|
1812 | |||
1812 | def rst(source, mentions=False): |
|
1813 | def rst(source, mentions=False): | |
1813 | return literal('<div class="rst-block">%s</div>' % |
|
1814 | return literal('<div class="rst-block">%s</div>' % | |
1814 | MarkupRenderer.rst(source, mentions=mentions)) |
|
1815 | MarkupRenderer.rst(source, mentions=mentions)) | |
1815 |
|
1816 | |||
1816 |
|
1817 | |||
1817 | def markdown(source, mentions=False): |
|
1818 | def markdown(source, mentions=False): | |
1818 | return literal('<div class="markdown-block">%s</div>' % |
|
1819 | return literal('<div class="markdown-block">%s</div>' % | |
1819 | MarkupRenderer.markdown(source, flavored=True, |
|
1820 | MarkupRenderer.markdown(source, flavored=True, | |
1820 | mentions=mentions)) |
|
1821 | mentions=mentions)) | |
1821 |
|
1822 | |||
1822 | def renderer_from_filename(filename, exclude=None): |
|
1823 | def renderer_from_filename(filename, exclude=None): | |
1823 | return MarkupRenderer.renderer_from_filename(filename, exclude=exclude) |
|
1824 | return MarkupRenderer.renderer_from_filename(filename, exclude=exclude) | |
1824 |
|
1825 | |||
1825 |
|
1826 | |||
1826 | def render(source, renderer='rst', mentions=False): |
|
1827 | def render(source, renderer='rst', mentions=False): | |
1827 | if renderer == 'rst': |
|
1828 | if renderer == 'rst': | |
1828 | return rst(source, mentions=mentions) |
|
1829 | return rst(source, mentions=mentions) | |
1829 | if renderer == 'markdown': |
|
1830 | if renderer == 'markdown': | |
1830 | return markdown(source, mentions=mentions) |
|
1831 | return markdown(source, mentions=mentions) | |
1831 |
|
1832 | |||
1832 |
|
1833 | |||
1833 | def commit_status(repo, commit_id): |
|
1834 | def commit_status(repo, commit_id): | |
1834 | return ChangesetStatusModel().get_status(repo, commit_id) |
|
1835 | return ChangesetStatusModel().get_status(repo, commit_id) | |
1835 |
|
1836 | |||
1836 |
|
1837 | |||
1837 | def commit_status_lbl(commit_status): |
|
1838 | def commit_status_lbl(commit_status): | |
1838 | return dict(ChangesetStatus.STATUSES).get(commit_status) |
|
1839 | return dict(ChangesetStatus.STATUSES).get(commit_status) | |
1839 |
|
1840 | |||
1840 |
|
1841 | |||
1841 | def commit_time(repo_name, commit_id): |
|
1842 | def commit_time(repo_name, commit_id): | |
1842 | repo = Repository.get_by_repo_name(repo_name) |
|
1843 | repo = Repository.get_by_repo_name(repo_name) | |
1843 | commit = repo.get_commit(commit_id=commit_id) |
|
1844 | commit = repo.get_commit(commit_id=commit_id) | |
1844 | return commit.date |
|
1845 | return commit.date | |
1845 |
|
1846 | |||
1846 |
|
1847 | |||
1847 | def get_permission_name(key): |
|
1848 | def get_permission_name(key): | |
1848 | return dict(Permission.PERMS).get(key) |
|
1849 | return dict(Permission.PERMS).get(key) | |
1849 |
|
1850 | |||
1850 |
|
1851 | |||
1851 | def journal_filter_help(): |
|
1852 | def journal_filter_help(): | |
1852 | return _( |
|
1853 | return _( | |
1853 | 'Example filter terms:\n' + |
|
1854 | 'Example filter terms:\n' + | |
1854 | ' repository:vcs\n' + |
|
1855 | ' repository:vcs\n' + | |
1855 | ' username:marcin\n' + |
|
1856 | ' username:marcin\n' + | |
1856 | ' action:*push*\n' + |
|
1857 | ' action:*push*\n' + | |
1857 | ' ip:127.0.0.1\n' + |
|
1858 | ' ip:127.0.0.1\n' + | |
1858 | ' date:20120101\n' + |
|
1859 | ' date:20120101\n' + | |
1859 | ' date:[20120101100000 TO 20120102]\n' + |
|
1860 | ' date:[20120101100000 TO 20120102]\n' + | |
1860 | '\n' + |
|
1861 | '\n' + | |
1861 | 'Generate wildcards using \'*\' character:\n' + |
|
1862 | 'Generate wildcards using \'*\' character:\n' + | |
1862 | ' "repository:vcs*" - search everything starting with \'vcs\'\n' + |
|
1863 | ' "repository:vcs*" - search everything starting with \'vcs\'\n' + | |
1863 | ' "repository:*vcs*" - search for repository containing \'vcs\'\n' + |
|
1864 | ' "repository:*vcs*" - search for repository containing \'vcs\'\n' + | |
1864 | '\n' + |
|
1865 | '\n' + | |
1865 | 'Optional AND / OR operators in queries\n' + |
|
1866 | 'Optional AND / OR operators in queries\n' + | |
1866 | ' "repository:vcs OR repository:test"\n' + |
|
1867 | ' "repository:vcs OR repository:test"\n' + | |
1867 | ' "username:test AND repository:test*"\n' |
|
1868 | ' "username:test AND repository:test*"\n' | |
1868 | ) |
|
1869 | ) | |
1869 |
|
1870 | |||
1870 |
|
1871 | |||
1871 | def not_mapped_error(repo_name): |
|
1872 | def not_mapped_error(repo_name): | |
1872 | flash(_('%s repository is not mapped to db perhaps' |
|
1873 | flash(_('%s repository is not mapped to db perhaps' | |
1873 | ' it was created or renamed from the filesystem' |
|
1874 | ' it was created or renamed from the filesystem' | |
1874 | ' please run the application again' |
|
1875 | ' please run the application again' | |
1875 | ' in order to rescan repositories') % repo_name, category='error') |
|
1876 | ' in order to rescan repositories') % repo_name, category='error') | |
1876 |
|
1877 | |||
1877 |
|
1878 | |||
1878 | def ip_range(ip_addr): |
|
1879 | def ip_range(ip_addr): | |
1879 | from rhodecode.model.db import UserIpMap |
|
1880 | from rhodecode.model.db import UserIpMap | |
1880 | s, e = UserIpMap._get_ip_range(ip_addr) |
|
1881 | s, e = UserIpMap._get_ip_range(ip_addr) | |
1881 | return '%s - %s' % (s, e) |
|
1882 | return '%s - %s' % (s, e) | |
1882 |
|
1883 | |||
1883 |
|
1884 | |||
1884 | def form(url, method='post', needs_csrf_token=True, **attrs): |
|
1885 | def form(url, method='post', needs_csrf_token=True, **attrs): | |
1885 | """Wrapper around webhelpers.tags.form to prevent CSRF attacks.""" |
|
1886 | """Wrapper around webhelpers.tags.form to prevent CSRF attacks.""" | |
1886 | if method.lower() != 'get' and needs_csrf_token: |
|
1887 | if method.lower() != 'get' and needs_csrf_token: | |
1887 | raise Exception( |
|
1888 | raise Exception( | |
1888 | 'Forms to POST/PUT/DELETE endpoints should have (in general) a ' + |
|
1889 | 'Forms to POST/PUT/DELETE endpoints should have (in general) a ' + | |
1889 | 'CSRF token. If the endpoint does not require such token you can ' + |
|
1890 | 'CSRF token. If the endpoint does not require such token you can ' + | |
1890 | 'explicitly set the parameter needs_csrf_token to false.') |
|
1891 | 'explicitly set the parameter needs_csrf_token to false.') | |
1891 |
|
1892 | |||
1892 | return wh_form(url, method=method, **attrs) |
|
1893 | return wh_form(url, method=method, **attrs) | |
1893 |
|
1894 | |||
1894 |
|
1895 | |||
1895 | def secure_form(url, method="POST", multipart=False, **attrs): |
|
1896 | def secure_form(url, method="POST", multipart=False, **attrs): | |
1896 | """Start a form tag that points the action to an url. This |
|
1897 | """Start a form tag that points the action to an url. This | |
1897 | form tag will also include the hidden field containing |
|
1898 | form tag will also include the hidden field containing | |
1898 | the auth token. |
|
1899 | the auth token. | |
1899 |
|
1900 | |||
1900 | The url options should be given either as a string, or as a |
|
1901 | The url options should be given either as a string, or as a | |
1901 | ``url()`` function. The method for the form defaults to POST. |
|
1902 | ``url()`` function. The method for the form defaults to POST. | |
1902 |
|
1903 | |||
1903 | Options: |
|
1904 | Options: | |
1904 |
|
1905 | |||
1905 | ``multipart`` |
|
1906 | ``multipart`` | |
1906 | If set to True, the enctype is set to "multipart/form-data". |
|
1907 | If set to True, the enctype is set to "multipart/form-data". | |
1907 | ``method`` |
|
1908 | ``method`` | |
1908 | The method to use when submitting the form, usually either |
|
1909 | The method to use when submitting the form, usually either | |
1909 | "GET" or "POST". If "PUT", "DELETE", or another verb is used, a |
|
1910 | "GET" or "POST". If "PUT", "DELETE", or another verb is used, a | |
1910 | hidden input with name _method is added to simulate the verb |
|
1911 | hidden input with name _method is added to simulate the verb | |
1911 | over POST. |
|
1912 | over POST. | |
1912 |
|
1913 | |||
1913 | """ |
|
1914 | """ | |
1914 | from webhelpers.pylonslib.secure_form import insecure_form |
|
1915 | from webhelpers.pylonslib.secure_form import insecure_form | |
1915 | form = insecure_form(url, method, multipart, **attrs) |
|
1916 | form = insecure_form(url, method, multipart, **attrs) | |
1916 | token = csrf_input() |
|
1917 | token = csrf_input() | |
1917 | return literal("%s\n%s" % (form, token)) |
|
1918 | return literal("%s\n%s" % (form, token)) | |
1918 |
|
1919 | |||
1919 | def csrf_input(): |
|
1920 | def csrf_input(): | |
1920 | return literal( |
|
1921 | return literal( | |
1921 | '<input type="hidden" id="{}" name="{}" value="{}">'.format( |
|
1922 | '<input type="hidden" id="{}" name="{}" value="{}">'.format( | |
1922 | csrf_token_key, csrf_token_key, get_csrf_token())) |
|
1923 | csrf_token_key, csrf_token_key, get_csrf_token())) | |
1923 |
|
1924 | |||
1924 | def dropdownmenu(name, selected, options, enable_filter=False, **attrs): |
|
1925 | def dropdownmenu(name, selected, options, enable_filter=False, **attrs): | |
1925 | select_html = select(name, selected, options, **attrs) |
|
1926 | select_html = select(name, selected, options, **attrs) | |
1926 | select2 = """ |
|
1927 | select2 = """ | |
1927 | <script> |
|
1928 | <script> | |
1928 | $(document).ready(function() { |
|
1929 | $(document).ready(function() { | |
1929 | $('#%s').select2({ |
|
1930 | $('#%s').select2({ | |
1930 | containerCssClass: 'drop-menu', |
|
1931 | containerCssClass: 'drop-menu', | |
1931 | dropdownCssClass: 'drop-menu-dropdown', |
|
1932 | dropdownCssClass: 'drop-menu-dropdown', | |
1932 | dropdownAutoWidth: true%s |
|
1933 | dropdownAutoWidth: true%s | |
1933 | }); |
|
1934 | }); | |
1934 | }); |
|
1935 | }); | |
1935 | </script> |
|
1936 | </script> | |
1936 | """ |
|
1937 | """ | |
1937 | filter_option = """, |
|
1938 | filter_option = """, | |
1938 | minimumResultsForSearch: -1 |
|
1939 | minimumResultsForSearch: -1 | |
1939 | """ |
|
1940 | """ | |
1940 | input_id = attrs.get('id') or name |
|
1941 | input_id = attrs.get('id') or name | |
1941 | filter_enabled = "" if enable_filter else filter_option |
|
1942 | filter_enabled = "" if enable_filter else filter_option | |
1942 | select_script = literal(select2 % (input_id, filter_enabled)) |
|
1943 | select_script = literal(select2 % (input_id, filter_enabled)) | |
1943 |
|
1944 | |||
1944 | return literal(select_html+select_script) |
|
1945 | return literal(select_html+select_script) | |
1945 |
|
1946 | |||
1946 |
|
1947 | |||
1947 | def get_visual_attr(tmpl_context_var, attr_name): |
|
1948 | def get_visual_attr(tmpl_context_var, attr_name): | |
1948 | """ |
|
1949 | """ | |
1949 | A safe way to get a variable from visual variable of template context |
|
1950 | A safe way to get a variable from visual variable of template context | |
1950 |
|
1951 | |||
1951 | :param tmpl_context_var: instance of tmpl_context, usually present as `c` |
|
1952 | :param tmpl_context_var: instance of tmpl_context, usually present as `c` | |
1952 | :param attr_name: name of the attribute we fetch from the c.visual |
|
1953 | :param attr_name: name of the attribute we fetch from the c.visual | |
1953 | """ |
|
1954 | """ | |
1954 | visual = getattr(tmpl_context_var, 'visual', None) |
|
1955 | visual = getattr(tmpl_context_var, 'visual', None) | |
1955 | if not visual: |
|
1956 | if not visual: | |
1956 | return |
|
1957 | return | |
1957 | else: |
|
1958 | else: | |
1958 | return getattr(visual, attr_name, None) |
|
1959 | return getattr(visual, attr_name, None) | |
1959 |
|
1960 | |||
1960 |
|
1961 | |||
1961 | def get_last_path_part(file_node): |
|
1962 | def get_last_path_part(file_node): | |
1962 | if not file_node.path: |
|
1963 | if not file_node.path: | |
1963 | return u'' |
|
1964 | return u'' | |
1964 |
|
1965 | |||
1965 | path = safe_unicode(file_node.path.split('/')[-1]) |
|
1966 | path = safe_unicode(file_node.path.split('/')[-1]) | |
1966 | return u'../' + path |
|
1967 | return u'../' + path | |
1967 |
|
1968 | |||
1968 |
|
1969 | |||
1969 | def route_path(*args, **kwds): |
|
1970 | def route_path(*args, **kwds): | |
1970 | """ |
|
1971 | """ | |
1971 | Wrapper around pyramids `route_path` function. It is used to generate |
|
1972 | Wrapper around pyramids `route_path` function. It is used to generate | |
1972 | URLs from within pylons views or templates. This will be removed when |
|
1973 | URLs from within pylons views or templates. This will be removed when | |
1973 | pyramid migration if finished. |
|
1974 | pyramid migration if finished. | |
1974 | """ |
|
1975 | """ | |
1975 | req = get_current_request() |
|
1976 | req = get_current_request() | |
1976 | return req.route_path(*args, **kwds) |
|
1977 | return req.route_path(*args, **kwds) | |
1977 |
|
1978 | |||
1978 |
|
1979 | |||
1979 | def route_path_or_none(*args, **kwargs): |
|
1980 | def route_path_or_none(*args, **kwargs): | |
1980 | try: |
|
1981 | try: | |
1981 | return route_path(*args, **kwargs) |
|
1982 | return route_path(*args, **kwargs) | |
1982 | except KeyError: |
|
1983 | except KeyError: | |
1983 | return None |
|
1984 | return None | |
1984 |
|
1985 | |||
1985 |
|
1986 | |||
1986 | def static_url(*args, **kwds): |
|
1987 | def static_url(*args, **kwds): | |
1987 | """ |
|
1988 | """ | |
1988 | Wrapper around pyramids `route_path` function. It is used to generate |
|
1989 | Wrapper around pyramids `route_path` function. It is used to generate | |
1989 | URLs from within pylons views or templates. This will be removed when |
|
1990 | URLs from within pylons views or templates. This will be removed when | |
1990 | pyramid migration if finished. |
|
1991 | pyramid migration if finished. | |
1991 | """ |
|
1992 | """ | |
1992 | req = get_current_request() |
|
1993 | req = get_current_request() | |
1993 | return req.static_url(*args, **kwds) |
|
1994 | return req.static_url(*args, **kwds) | |
1994 |
|
1995 | |||
1995 |
|
1996 | |||
1996 | def resource_path(*args, **kwds): |
|
1997 | def resource_path(*args, **kwds): | |
1997 | """ |
|
1998 | """ | |
1998 | Wrapper around pyramids `route_path` function. It is used to generate |
|
1999 | Wrapper around pyramids `route_path` function. It is used to generate | |
1999 | URLs from within pylons views or templates. This will be removed when |
|
2000 | URLs from within pylons views or templates. This will be removed when | |
2000 | pyramid migration if finished. |
|
2001 | pyramid migration if finished. | |
2001 | """ |
|
2002 | """ | |
2002 | req = get_current_request() |
|
2003 | req = get_current_request() | |
2003 | return req.resource_path(*args, **kwds) |
|
2004 | return req.resource_path(*args, **kwds) |
1 | NO CONTENT: modified file |
|
NO CONTENT: modified file | ||
The requested commit or file is too big and content was truncated. Show full diff |
@@ -1,376 +1,378 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2011-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2011-2017 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 |
|
21 | |||
22 | """ |
|
22 | """ | |
23 | Model for notifications |
|
23 | Model for notifications | |
24 | """ |
|
24 | """ | |
25 |
|
25 | |||
26 |
|
26 | |||
27 | import logging |
|
27 | import logging | |
28 | import traceback |
|
28 | import traceback | |
29 |
|
29 | |||
30 | from pylons.i18n.translation import _, ungettext |
|
30 | from pylons.i18n.translation import _, ungettext | |
31 | from sqlalchemy.sql.expression import false, true |
|
31 | from sqlalchemy.sql.expression import false, true | |
32 | from mako import exceptions |
|
32 | from mako import exceptions | |
33 |
|
33 | |||
34 | import rhodecode |
|
34 | import rhodecode | |
35 | from rhodecode.lib import helpers as h |
|
35 | from rhodecode.lib import helpers as h | |
36 | from rhodecode.lib.utils import PartialRenderer |
|
36 | from rhodecode.lib.utils import PartialRenderer | |
37 | from rhodecode.model import BaseModel |
|
37 | from rhodecode.model import BaseModel | |
38 | from rhodecode.model.db import Notification, User, UserNotification |
|
38 | from rhodecode.model.db import Notification, User, UserNotification | |
39 | from rhodecode.model.meta import Session |
|
39 | from rhodecode.model.meta import Session | |
40 | from rhodecode.model.settings import SettingsModel |
|
40 | from rhodecode.model.settings import SettingsModel | |
41 |
|
41 | |||
42 | log = logging.getLogger(__name__) |
|
42 | log = logging.getLogger(__name__) | |
43 |
|
43 | |||
44 |
|
44 | |||
45 | class NotificationModel(BaseModel): |
|
45 | class NotificationModel(BaseModel): | |
46 |
|
46 | |||
47 | cls = Notification |
|
47 | cls = Notification | |
48 |
|
48 | |||
49 | def __get_notification(self, notification): |
|
49 | def __get_notification(self, notification): | |
50 | if isinstance(notification, Notification): |
|
50 | if isinstance(notification, Notification): | |
51 | return notification |
|
51 | return notification | |
52 | elif isinstance(notification, (int, long)): |
|
52 | elif isinstance(notification, (int, long)): | |
53 | return Notification.get(notification) |
|
53 | return Notification.get(notification) | |
54 | else: |
|
54 | else: | |
55 | if notification: |
|
55 | if notification: | |
56 | raise Exception('notification must be int, long or Instance' |
|
56 | raise Exception('notification must be int, long or Instance' | |
57 | ' of Notification got %s' % type(notification)) |
|
57 | ' of Notification got %s' % type(notification)) | |
58 |
|
58 | |||
59 | def create( |
|
59 | def create( | |
60 | self, created_by, notification_subject, notification_body, |
|
60 | self, created_by, notification_subject, notification_body, | |
61 | notification_type=Notification.TYPE_MESSAGE, recipients=None, |
|
61 | notification_type=Notification.TYPE_MESSAGE, recipients=None, | |
62 | mention_recipients=None, with_email=True, email_kwargs=None): |
|
62 | mention_recipients=None, with_email=True, email_kwargs=None): | |
63 | """ |
|
63 | """ | |
64 |
|
64 | |||
65 | Creates notification of given type |
|
65 | Creates notification of given type | |
66 |
|
66 | |||
67 | :param created_by: int, str or User instance. User who created this |
|
67 | :param created_by: int, str or User instance. User who created this | |
68 | notification |
|
68 | notification | |
69 | :param notification_subject: subject of notification itself |
|
69 | :param notification_subject: subject of notification itself | |
70 | :param notification_body: body of notification text |
|
70 | :param notification_body: body of notification text | |
71 | :param notification_type: type of notification, based on that we |
|
71 | :param notification_type: type of notification, based on that we | |
72 | pick templates |
|
72 | pick templates | |
73 |
|
73 | |||
74 | :param recipients: list of int, str or User objects, when None |
|
74 | :param recipients: list of int, str or User objects, when None | |
75 | is given send to all admins |
|
75 | is given send to all admins | |
76 | :param mention_recipients: list of int, str or User objects, |
|
76 | :param mention_recipients: list of int, str or User objects, | |
77 | that were mentioned |
|
77 | that were mentioned | |
78 | :param with_email: send email with this notification |
|
78 | :param with_email: send email with this notification | |
79 | :param email_kwargs: dict with arguments to generate email |
|
79 | :param email_kwargs: dict with arguments to generate email | |
80 | """ |
|
80 | """ | |
81 |
|
81 | |||
82 | from rhodecode.lib.celerylib import tasks, run_task |
|
82 | from rhodecode.lib.celerylib import tasks, run_task | |
83 |
|
83 | |||
84 | if recipients and not getattr(recipients, '__iter__', False): |
|
84 | if recipients and not getattr(recipients, '__iter__', False): | |
85 | raise Exception('recipients must be an iterable object') |
|
85 | raise Exception('recipients must be an iterable object') | |
86 |
|
86 | |||
87 | created_by_obj = self._get_user(created_by) |
|
87 | created_by_obj = self._get_user(created_by) | |
88 | # default MAIN body if not given |
|
88 | # default MAIN body if not given | |
89 | email_kwargs = email_kwargs or {'body': notification_body} |
|
89 | email_kwargs = email_kwargs or {'body': notification_body} | |
90 | mention_recipients = mention_recipients or set() |
|
90 | mention_recipients = mention_recipients or set() | |
91 |
|
91 | |||
92 | if not created_by_obj: |
|
92 | if not created_by_obj: | |
93 | raise Exception('unknown user %s' % created_by) |
|
93 | raise Exception('unknown user %s' % created_by) | |
94 |
|
94 | |||
95 | if recipients is None: |
|
95 | if recipients is None: | |
96 | # recipients is None means to all admins |
|
96 | # recipients is None means to all admins | |
97 | recipients_objs = User.query().filter(User.admin == true()).all() |
|
97 | recipients_objs = User.query().filter(User.admin == true()).all() | |
98 | log.debug('sending notifications %s to admins: %s', |
|
98 | log.debug('sending notifications %s to admins: %s', | |
99 | notification_type, recipients_objs) |
|
99 | notification_type, recipients_objs) | |
100 | else: |
|
100 | else: | |
101 | recipients_objs = [] |
|
101 | recipients_objs = [] | |
102 | for u in recipients: |
|
102 | for u in recipients: | |
103 | obj = self._get_user(u) |
|
103 | obj = self._get_user(u) | |
104 | if obj: |
|
104 | if obj: | |
105 | recipients_objs.append(obj) |
|
105 | recipients_objs.append(obj) | |
106 | else: # we didn't find this user, log the error and carry on |
|
106 | else: # we didn't find this user, log the error and carry on | |
107 | log.error('cannot notify unknown user %r', u) |
|
107 | log.error('cannot notify unknown user %r', u) | |
108 |
|
108 | |||
109 | recipients_objs = set(recipients_objs) |
|
109 | recipients_objs = set(recipients_objs) | |
110 | if not recipients_objs: |
|
110 | if not recipients_objs: | |
111 | raise Exception('no valid recipients specified') |
|
111 | raise Exception('no valid recipients specified') | |
112 |
|
112 | |||
113 | log.debug('sending notifications %s to %s', |
|
113 | log.debug('sending notifications %s to %s', | |
114 | notification_type, recipients_objs) |
|
114 | notification_type, recipients_objs) | |
115 |
|
115 | |||
116 | # add mentioned users into recipients |
|
116 | # add mentioned users into recipients | |
117 | final_recipients = set(recipients_objs).union(mention_recipients) |
|
117 | final_recipients = set(recipients_objs).union(mention_recipients) | |
118 | notification = Notification.create( |
|
118 | notification = Notification.create( | |
119 | created_by=created_by_obj, subject=notification_subject, |
|
119 | created_by=created_by_obj, subject=notification_subject, | |
120 | body=notification_body, recipients=final_recipients, |
|
120 | body=notification_body, recipients=final_recipients, | |
121 | type_=notification_type |
|
121 | type_=notification_type | |
122 | ) |
|
122 | ) | |
123 |
|
123 | |||
124 | if not with_email: # skip sending email, and just create notification |
|
124 | if not with_email: # skip sending email, and just create notification | |
125 | return notification |
|
125 | return notification | |
126 |
|
126 | |||
127 | # don't send email to person who created this comment |
|
127 | # don't send email to person who created this comment | |
128 | rec_objs = set(recipients_objs).difference(set([created_by_obj])) |
|
128 | rec_objs = set(recipients_objs).difference(set([created_by_obj])) | |
129 |
|
129 | |||
130 | # now notify all recipients in question |
|
130 | # now notify all recipients in question | |
131 |
|
131 | |||
132 | for recipient in rec_objs.union(mention_recipients): |
|
132 | for recipient in rec_objs.union(mention_recipients): | |
133 | # inject current recipient |
|
133 | # inject current recipient | |
134 | email_kwargs['recipient'] = recipient |
|
134 | email_kwargs['recipient'] = recipient | |
135 | email_kwargs['mention'] = recipient in mention_recipients |
|
135 | email_kwargs['mention'] = recipient in mention_recipients | |
136 | (subject, headers, email_body, |
|
136 | (subject, headers, email_body, | |
137 | email_body_plaintext) = EmailNotificationModel().render_email( |
|
137 | email_body_plaintext) = EmailNotificationModel().render_email( | |
138 | notification_type, **email_kwargs) |
|
138 | notification_type, **email_kwargs) | |
139 |
|
139 | |||
140 | log.debug( |
|
140 | log.debug( | |
141 | 'Creating notification email task for user:`%s`', recipient) |
|
141 | 'Creating notification email task for user:`%s`', recipient) | |
142 | task = run_task( |
|
142 | task = run_task( | |
143 | tasks.send_email, recipient.email, subject, |
|
143 | tasks.send_email, recipient.email, subject, | |
144 | email_body_plaintext, email_body) |
|
144 | email_body_plaintext, email_body) | |
145 | log.debug('Created email task: %s', task) |
|
145 | log.debug('Created email task: %s', task) | |
146 |
|
146 | |||
147 | return notification |
|
147 | return notification | |
148 |
|
148 | |||
149 | def delete(self, user, notification): |
|
149 | def delete(self, user, notification): | |
150 | # we don't want to remove actual notification just the assignment |
|
150 | # we don't want to remove actual notification just the assignment | |
151 | try: |
|
151 | try: | |
152 | notification = self.__get_notification(notification) |
|
152 | notification = self.__get_notification(notification) | |
153 | user = self._get_user(user) |
|
153 | user = self._get_user(user) | |
154 | if notification and user: |
|
154 | if notification and user: | |
155 | obj = UserNotification.query()\ |
|
155 | obj = UserNotification.query()\ | |
156 | .filter(UserNotification.user == user)\ |
|
156 | .filter(UserNotification.user == user)\ | |
157 | .filter(UserNotification.notification == notification)\ |
|
157 | .filter(UserNotification.notification == notification)\ | |
158 | .one() |
|
158 | .one() | |
159 | Session().delete(obj) |
|
159 | Session().delete(obj) | |
160 | return True |
|
160 | return True | |
161 | except Exception: |
|
161 | except Exception: | |
162 | log.error(traceback.format_exc()) |
|
162 | log.error(traceback.format_exc()) | |
163 | raise |
|
163 | raise | |
164 |
|
164 | |||
165 | def get_for_user(self, user, filter_=None): |
|
165 | def get_for_user(self, user, filter_=None): | |
166 | """ |
|
166 | """ | |
167 | Get mentions for given user, filter them if filter dict is given |
|
167 | Get mentions for given user, filter them if filter dict is given | |
168 |
|
168 | |||
169 | :param user: |
|
169 | :param user: | |
170 | :param filter: |
|
170 | :param filter: | |
171 | """ |
|
171 | """ | |
172 | user = self._get_user(user) |
|
172 | user = self._get_user(user) | |
173 |
|
173 | |||
174 | q = UserNotification.query()\ |
|
174 | q = UserNotification.query()\ | |
175 | .filter(UserNotification.user == user)\ |
|
175 | .filter(UserNotification.user == user)\ | |
176 | .join(( |
|
176 | .join(( | |
177 | Notification, UserNotification.notification_id == |
|
177 | Notification, UserNotification.notification_id == | |
178 | Notification.notification_id)) |
|
178 | Notification.notification_id)) | |
179 |
|
179 | |||
180 | if filter_: |
|
180 | if filter_: | |
181 | q = q.filter(Notification.type_.in_(filter_)) |
|
181 | q = q.filter(Notification.type_.in_(filter_)) | |
182 |
|
182 | |||
183 | return q.all() |
|
183 | return q.all() | |
184 |
|
184 | |||
185 | def mark_read(self, user, notification): |
|
185 | def mark_read(self, user, notification): | |
186 | try: |
|
186 | try: | |
187 | notification = self.__get_notification(notification) |
|
187 | notification = self.__get_notification(notification) | |
188 | user = self._get_user(user) |
|
188 | user = self._get_user(user) | |
189 | if notification and user: |
|
189 | if notification and user: | |
190 | obj = UserNotification.query()\ |
|
190 | obj = UserNotification.query()\ | |
191 | .filter(UserNotification.user == user)\ |
|
191 | .filter(UserNotification.user == user)\ | |
192 | .filter(UserNotification.notification == notification)\ |
|
192 | .filter(UserNotification.notification == notification)\ | |
193 | .one() |
|
193 | .one() | |
194 | obj.read = True |
|
194 | obj.read = True | |
195 | Session().add(obj) |
|
195 | Session().add(obj) | |
196 | return True |
|
196 | return True | |
197 | except Exception: |
|
197 | except Exception: | |
198 | log.error(traceback.format_exc()) |
|
198 | log.error(traceback.format_exc()) | |
199 | raise |
|
199 | raise | |
200 |
|
200 | |||
201 | def mark_all_read_for_user(self, user, filter_=None): |
|
201 | def mark_all_read_for_user(self, user, filter_=None): | |
202 | user = self._get_user(user) |
|
202 | user = self._get_user(user) | |
203 | q = UserNotification.query()\ |
|
203 | q = UserNotification.query()\ | |
204 | .filter(UserNotification.user == user)\ |
|
204 | .filter(UserNotification.user == user)\ | |
205 | .filter(UserNotification.read == false())\ |
|
205 | .filter(UserNotification.read == false())\ | |
206 | .join(( |
|
206 | .join(( | |
207 | Notification, UserNotification.notification_id == |
|
207 | Notification, UserNotification.notification_id == | |
208 | Notification.notification_id)) |
|
208 | Notification.notification_id)) | |
209 | if filter_: |
|
209 | if filter_: | |
210 | q = q.filter(Notification.type_.in_(filter_)) |
|
210 | q = q.filter(Notification.type_.in_(filter_)) | |
211 |
|
211 | |||
212 | # this is a little inefficient but sqlalchemy doesn't support |
|
212 | # this is a little inefficient but sqlalchemy doesn't support | |
213 | # update on joined tables :( |
|
213 | # update on joined tables :( | |
214 | for obj in q.all(): |
|
214 | for obj in q.all(): | |
215 | obj.read = True |
|
215 | obj.read = True | |
216 | Session().add(obj) |
|
216 | Session().add(obj) | |
217 |
|
217 | |||
218 | def get_unread_cnt_for_user(self, user): |
|
218 | def get_unread_cnt_for_user(self, user): | |
219 | user = self._get_user(user) |
|
219 | user = self._get_user(user) | |
220 | return UserNotification.query()\ |
|
220 | return UserNotification.query()\ | |
221 | .filter(UserNotification.read == false())\ |
|
221 | .filter(UserNotification.read == false())\ | |
222 | .filter(UserNotification.user == user).count() |
|
222 | .filter(UserNotification.user == user).count() | |
223 |
|
223 | |||
224 | def get_unread_for_user(self, user): |
|
224 | def get_unread_for_user(self, user): | |
225 | user = self._get_user(user) |
|
225 | user = self._get_user(user) | |
226 | return [x.notification for x in UserNotification.query() |
|
226 | return [x.notification for x in UserNotification.query() | |
227 | .filter(UserNotification.read == false()) |
|
227 | .filter(UserNotification.read == false()) | |
228 | .filter(UserNotification.user == user).all()] |
|
228 | .filter(UserNotification.user == user).all()] | |
229 |
|
229 | |||
230 | def get_user_notification(self, user, notification): |
|
230 | def get_user_notification(self, user, notification): | |
231 | user = self._get_user(user) |
|
231 | user = self._get_user(user) | |
232 | notification = self.__get_notification(notification) |
|
232 | notification = self.__get_notification(notification) | |
233 |
|
233 | |||
234 | return UserNotification.query()\ |
|
234 | return UserNotification.query()\ | |
235 | .filter(UserNotification.notification == notification)\ |
|
235 | .filter(UserNotification.notification == notification)\ | |
236 | .filter(UserNotification.user == user).scalar() |
|
236 | .filter(UserNotification.user == user).scalar() | |
237 |
|
237 | |||
238 | def make_description(self, notification, show_age=True): |
|
238 | def make_description(self, notification, show_age=True, translate=None): | |
239 | """ |
|
239 | """ | |
240 | Creates a human readable description based on properties |
|
240 | Creates a human readable description based on properties | |
241 | of notification object |
|
241 | of notification object | |
242 | """ |
|
242 | """ | |
243 |
|
243 | |||
244 | _map = { |
|
244 | _map = { | |
245 | notification.TYPE_CHANGESET_COMMENT: [ |
|
245 | notification.TYPE_CHANGESET_COMMENT: [ | |
246 | _('%(user)s commented on commit %(date_or_age)s'), |
|
246 | _('%(user)s commented on commit %(date_or_age)s'), | |
247 | _('%(user)s commented on commit at %(date_or_age)s'), |
|
247 | _('%(user)s commented on commit at %(date_or_age)s'), | |
248 | ], |
|
248 | ], | |
249 | notification.TYPE_MESSAGE: [ |
|
249 | notification.TYPE_MESSAGE: [ | |
250 | _('%(user)s sent message %(date_or_age)s'), |
|
250 | _('%(user)s sent message %(date_or_age)s'), | |
251 | _('%(user)s sent message at %(date_or_age)s'), |
|
251 | _('%(user)s sent message at %(date_or_age)s'), | |
252 | ], |
|
252 | ], | |
253 | notification.TYPE_MENTION: [ |
|
253 | notification.TYPE_MENTION: [ | |
254 | _('%(user)s mentioned you %(date_or_age)s'), |
|
254 | _('%(user)s mentioned you %(date_or_age)s'), | |
255 | _('%(user)s mentioned you at %(date_or_age)s'), |
|
255 | _('%(user)s mentioned you at %(date_or_age)s'), | |
256 | ], |
|
256 | ], | |
257 | notification.TYPE_REGISTRATION: [ |
|
257 | notification.TYPE_REGISTRATION: [ | |
258 | _('%(user)s registered in RhodeCode %(date_or_age)s'), |
|
258 | _('%(user)s registered in RhodeCode %(date_or_age)s'), | |
259 | _('%(user)s registered in RhodeCode at %(date_or_age)s'), |
|
259 | _('%(user)s registered in RhodeCode at %(date_or_age)s'), | |
260 | ], |
|
260 | ], | |
261 | notification.TYPE_PULL_REQUEST: [ |
|
261 | notification.TYPE_PULL_REQUEST: [ | |
262 | _('%(user)s opened new pull request %(date_or_age)s'), |
|
262 | _('%(user)s opened new pull request %(date_or_age)s'), | |
263 | _('%(user)s opened new pull request at %(date_or_age)s'), |
|
263 | _('%(user)s opened new pull request at %(date_or_age)s'), | |
264 | ], |
|
264 | ], | |
265 | notification.TYPE_PULL_REQUEST_COMMENT: [ |
|
265 | notification.TYPE_PULL_REQUEST_COMMENT: [ | |
266 | _('%(user)s commented on pull request %(date_or_age)s'), |
|
266 | _('%(user)s commented on pull request %(date_or_age)s'), | |
267 | _('%(user)s commented on pull request at %(date_or_age)s'), |
|
267 | _('%(user)s commented on pull request at %(date_or_age)s'), | |
268 | ], |
|
268 | ], | |
269 | } |
|
269 | } | |
270 |
|
270 | |||
271 | templates = _map[notification.type_] |
|
271 | templates = _map[notification.type_] | |
272 |
|
272 | |||
273 | if show_age: |
|
273 | if show_age: | |
274 | template = templates[0] |
|
274 | template = templates[0] | |
275 | date_or_age = h.age(notification.created_on) |
|
275 | date_or_age = h.age(notification.created_on) | |
|
276 | if translate: | |||
|
277 | date_or_age = translate(date_or_age) | |||
276 | else: |
|
278 | else: | |
277 | template = templates[1] |
|
279 | template = templates[1] | |
278 | date_or_age = h.format_date(notification.created_on) |
|
280 | date_or_age = h.format_date(notification.created_on) | |
279 |
|
281 | |||
280 | return template % { |
|
282 | return template % { | |
281 | 'user': notification.created_by_user.username, |
|
283 | 'user': notification.created_by_user.username, | |
282 | 'date_or_age': date_or_age, |
|
284 | 'date_or_age': date_or_age, | |
283 | } |
|
285 | } | |
284 |
|
286 | |||
285 |
|
287 | |||
286 | class EmailNotificationModel(BaseModel): |
|
288 | class EmailNotificationModel(BaseModel): | |
287 | TYPE_COMMIT_COMMENT = Notification.TYPE_CHANGESET_COMMENT |
|
289 | TYPE_COMMIT_COMMENT = Notification.TYPE_CHANGESET_COMMENT | |
288 | TYPE_REGISTRATION = Notification.TYPE_REGISTRATION |
|
290 | TYPE_REGISTRATION = Notification.TYPE_REGISTRATION | |
289 | TYPE_PULL_REQUEST = Notification.TYPE_PULL_REQUEST |
|
291 | TYPE_PULL_REQUEST = Notification.TYPE_PULL_REQUEST | |
290 | TYPE_PULL_REQUEST_COMMENT = Notification.TYPE_PULL_REQUEST_COMMENT |
|
292 | TYPE_PULL_REQUEST_COMMENT = Notification.TYPE_PULL_REQUEST_COMMENT | |
291 | TYPE_MAIN = Notification.TYPE_MESSAGE |
|
293 | TYPE_MAIN = Notification.TYPE_MESSAGE | |
292 |
|
294 | |||
293 | TYPE_PASSWORD_RESET = 'password_reset' |
|
295 | TYPE_PASSWORD_RESET = 'password_reset' | |
294 | TYPE_PASSWORD_RESET_CONFIRMATION = 'password_reset_confirmation' |
|
296 | TYPE_PASSWORD_RESET_CONFIRMATION = 'password_reset_confirmation' | |
295 | TYPE_EMAIL_TEST = 'email_test' |
|
297 | TYPE_EMAIL_TEST = 'email_test' | |
296 | TYPE_TEST = 'test' |
|
298 | TYPE_TEST = 'test' | |
297 |
|
299 | |||
298 | email_types = { |
|
300 | email_types = { | |
299 | TYPE_MAIN: 'email_templates/main.mako', |
|
301 | TYPE_MAIN: 'email_templates/main.mako', | |
300 | TYPE_TEST: 'email_templates/test.mako', |
|
302 | TYPE_TEST: 'email_templates/test.mako', | |
301 | TYPE_EMAIL_TEST: 'email_templates/email_test.mako', |
|
303 | TYPE_EMAIL_TEST: 'email_templates/email_test.mako', | |
302 | TYPE_REGISTRATION: 'email_templates/user_registration.mako', |
|
304 | TYPE_REGISTRATION: 'email_templates/user_registration.mako', | |
303 | TYPE_PASSWORD_RESET: 'email_templates/password_reset.mako', |
|
305 | TYPE_PASSWORD_RESET: 'email_templates/password_reset.mako', | |
304 | TYPE_PASSWORD_RESET_CONFIRMATION: 'email_templates/password_reset_confirmation.mako', |
|
306 | TYPE_PASSWORD_RESET_CONFIRMATION: 'email_templates/password_reset_confirmation.mako', | |
305 | TYPE_COMMIT_COMMENT: 'email_templates/commit_comment.mako', |
|
307 | TYPE_COMMIT_COMMENT: 'email_templates/commit_comment.mako', | |
306 | TYPE_PULL_REQUEST: 'email_templates/pull_request_review.mako', |
|
308 | TYPE_PULL_REQUEST: 'email_templates/pull_request_review.mako', | |
307 | TYPE_PULL_REQUEST_COMMENT: 'email_templates/pull_request_comment.mako', |
|
309 | TYPE_PULL_REQUEST_COMMENT: 'email_templates/pull_request_comment.mako', | |
308 | } |
|
310 | } | |
309 |
|
311 | |||
310 | def __init__(self): |
|
312 | def __init__(self): | |
311 | """ |
|
313 | """ | |
312 | Example usage:: |
|
314 | Example usage:: | |
313 |
|
315 | |||
314 | (subject, headers, email_body, |
|
316 | (subject, headers, email_body, | |
315 | email_body_plaintext) = EmailNotificationModel().render_email( |
|
317 | email_body_plaintext) = EmailNotificationModel().render_email( | |
316 | EmailNotificationModel.TYPE_TEST, **email_kwargs) |
|
318 | EmailNotificationModel.TYPE_TEST, **email_kwargs) | |
317 |
|
319 | |||
318 | """ |
|
320 | """ | |
319 | super(EmailNotificationModel, self).__init__() |
|
321 | super(EmailNotificationModel, self).__init__() | |
320 | self.rhodecode_instance_name = None |
|
322 | self.rhodecode_instance_name = None | |
321 |
|
323 | |||
322 | def _update_kwargs_for_render(self, kwargs): |
|
324 | def _update_kwargs_for_render(self, kwargs): | |
323 | """ |
|
325 | """ | |
324 | Inject params required for Mako rendering |
|
326 | Inject params required for Mako rendering | |
325 |
|
327 | |||
326 | :param kwargs: |
|
328 | :param kwargs: | |
327 | :return: |
|
329 | :return: | |
328 | """ |
|
330 | """ | |
329 | rhodecode_name = self.rhodecode_instance_name |
|
331 | rhodecode_name = self.rhodecode_instance_name | |
330 | if not rhodecode_name: |
|
332 | if not rhodecode_name: | |
331 | try: |
|
333 | try: | |
332 | rc_config = SettingsModel().get_all_settings() |
|
334 | rc_config = SettingsModel().get_all_settings() | |
333 | except Exception: |
|
335 | except Exception: | |
334 | log.exception('failed to fetch settings') |
|
336 | log.exception('failed to fetch settings') | |
335 | rc_config = {} |
|
337 | rc_config = {} | |
336 | rhodecode_name = rc_config.get('rhodecode_title', '') |
|
338 | rhodecode_name = rc_config.get('rhodecode_title', '') | |
337 | kwargs['rhodecode_instance_name'] = rhodecode_name |
|
339 | kwargs['rhodecode_instance_name'] = rhodecode_name | |
338 |
|
340 | |||
339 | _kwargs = { |
|
341 | _kwargs = { | |
340 | 'instance_url': h.url('home', qualified=True), |
|
342 | 'instance_url': h.url('home', qualified=True), | |
341 | } |
|
343 | } | |
342 | _kwargs.update(kwargs) |
|
344 | _kwargs.update(kwargs) | |
343 | return _kwargs |
|
345 | return _kwargs | |
344 |
|
346 | |||
345 | def get_renderer(self, type_): |
|
347 | def get_renderer(self, type_): | |
346 | template_name = self.email_types[type_] |
|
348 | template_name = self.email_types[type_] | |
347 | return PartialRenderer(template_name) |
|
349 | return PartialRenderer(template_name) | |
348 |
|
350 | |||
349 | def render_email(self, type_, **kwargs): |
|
351 | def render_email(self, type_, **kwargs): | |
350 | """ |
|
352 | """ | |
351 | renders template for email, and returns a tuple of |
|
353 | renders template for email, and returns a tuple of | |
352 | (subject, email_headers, email_html_body, email_plaintext_body) |
|
354 | (subject, email_headers, email_html_body, email_plaintext_body) | |
353 | """ |
|
355 | """ | |
354 | # translator and helpers inject |
|
356 | # translator and helpers inject | |
355 | _kwargs = self._update_kwargs_for_render(kwargs) |
|
357 | _kwargs = self._update_kwargs_for_render(kwargs) | |
356 |
|
358 | |||
357 | email_template = self.get_renderer(type_) |
|
359 | email_template = self.get_renderer(type_) | |
358 |
|
360 | |||
359 | subject = email_template.render('subject', **_kwargs) |
|
361 | subject = email_template.render('subject', **_kwargs) | |
360 |
|
362 | |||
361 | try: |
|
363 | try: | |
362 | headers = email_template.render('headers', **_kwargs) |
|
364 | headers = email_template.render('headers', **_kwargs) | |
363 | except AttributeError: |
|
365 | except AttributeError: | |
364 | # it's not defined in template, ok we can skip it |
|
366 | # it's not defined in template, ok we can skip it | |
365 | headers = '' |
|
367 | headers = '' | |
366 |
|
368 | |||
367 | try: |
|
369 | try: | |
368 | body_plaintext = email_template.render('body_plaintext', **_kwargs) |
|
370 | body_plaintext = email_template.render('body_plaintext', **_kwargs) | |
369 | except AttributeError: |
|
371 | except AttributeError: | |
370 | # it's not defined in template, ok we can skip it |
|
372 | # it's not defined in template, ok we can skip it | |
371 | body_plaintext = '' |
|
373 | body_plaintext = '' | |
372 |
|
374 | |||
373 | # render WHOLE template |
|
375 | # render WHOLE template | |
374 | body = email_template.render(None, **_kwargs) |
|
376 | body = email_template.render(None, **_kwargs) | |
375 |
|
377 | |||
376 | return subject, headers, body, body_plaintext |
|
378 | return subject, headers, body, body_plaintext |
@@ -1,1409 +1,1420 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2012-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2012-2017 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 |
|
21 | |||
22 | """ |
|
22 | """ | |
23 | pull request model for RhodeCode |
|
23 | pull request model for RhodeCode | |
24 | """ |
|
24 | """ | |
25 |
|
25 | |||
26 | from collections import namedtuple |
|
26 | from collections import namedtuple | |
27 | import json |
|
27 | import json | |
28 | import logging |
|
28 | import logging | |
29 | import datetime |
|
29 | import datetime | |
30 | import urllib |
|
30 | import urllib | |
31 |
|
31 | |||
32 | from pylons.i18n.translation import _ |
|
32 | from pylons.i18n.translation import _ | |
33 | from pylons.i18n.translation import lazy_ugettext |
|
33 | from pylons.i18n.translation import lazy_ugettext | |
34 | from sqlalchemy import or_ |
|
34 | from sqlalchemy import or_ | |
35 |
|
35 | |||
36 | from rhodecode.lib import helpers as h, hooks_utils, diffs |
|
36 | from rhodecode.lib import helpers as h, hooks_utils, diffs | |
37 | from rhodecode.lib.compat import OrderedDict |
|
37 | from rhodecode.lib.compat import OrderedDict | |
38 | from rhodecode.lib.hooks_daemon import prepare_callback_daemon |
|
38 | from rhodecode.lib.hooks_daemon import prepare_callback_daemon | |
39 | from rhodecode.lib.markup_renderer import ( |
|
39 | from rhodecode.lib.markup_renderer import ( | |
40 | DEFAULT_COMMENTS_RENDERER, RstTemplateRenderer) |
|
40 | DEFAULT_COMMENTS_RENDERER, RstTemplateRenderer) | |
41 | from rhodecode.lib.utils import action_logger |
|
41 | from rhodecode.lib.utils import action_logger | |
42 | from rhodecode.lib.utils2 import safe_unicode, safe_str, md5_safe |
|
42 | from rhodecode.lib.utils2 import safe_unicode, safe_str, md5_safe | |
43 | from rhodecode.lib.vcs.backends.base import ( |
|
43 | from rhodecode.lib.vcs.backends.base import ( | |
44 | Reference, MergeResponse, MergeFailureReason, UpdateFailureReason) |
|
44 | Reference, MergeResponse, MergeFailureReason, UpdateFailureReason) | |
45 | from rhodecode.lib.vcs.conf import settings as vcs_settings |
|
45 | from rhodecode.lib.vcs.conf import settings as vcs_settings | |
46 | from rhodecode.lib.vcs.exceptions import ( |
|
46 | from rhodecode.lib.vcs.exceptions import ( | |
47 | CommitDoesNotExistError, EmptyRepositoryError) |
|
47 | CommitDoesNotExistError, EmptyRepositoryError) | |
48 | from rhodecode.model import BaseModel |
|
48 | from rhodecode.model import BaseModel | |
49 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
49 | from rhodecode.model.changeset_status import ChangesetStatusModel | |
50 | from rhodecode.model.comment import CommentsModel |
|
50 | from rhodecode.model.comment import CommentsModel | |
51 | from rhodecode.model.db import ( |
|
51 | from rhodecode.model.db import ( | |
52 | PullRequest, PullRequestReviewers, ChangesetStatus, |
|
52 | PullRequest, PullRequestReviewers, ChangesetStatus, | |
53 | PullRequestVersion, ChangesetComment) |
|
53 | PullRequestVersion, ChangesetComment, Repository) | |
54 | from rhodecode.model.meta import Session |
|
54 | from rhodecode.model.meta import Session | |
55 | from rhodecode.model.notification import NotificationModel, \ |
|
55 | from rhodecode.model.notification import NotificationModel, \ | |
56 | EmailNotificationModel |
|
56 | EmailNotificationModel | |
57 | from rhodecode.model.scm import ScmModel |
|
57 | from rhodecode.model.scm import ScmModel | |
58 | from rhodecode.model.settings import VcsSettingsModel |
|
58 | from rhodecode.model.settings import VcsSettingsModel | |
59 |
|
59 | |||
60 |
|
60 | |||
61 | log = logging.getLogger(__name__) |
|
61 | log = logging.getLogger(__name__) | |
62 |
|
62 | |||
63 |
|
63 | |||
64 | # Data structure to hold the response data when updating commits during a pull |
|
64 | # Data structure to hold the response data when updating commits during a pull | |
65 | # request update. |
|
65 | # request update. | |
66 | UpdateResponse = namedtuple( |
|
66 | UpdateResponse = namedtuple( | |
67 | 'UpdateResponse', 'executed, reason, new, old, changes') |
|
67 | 'UpdateResponse', 'executed, reason, new, old, changes') | |
68 |
|
68 | |||
69 |
|
69 | |||
70 | class PullRequestModel(BaseModel): |
|
70 | class PullRequestModel(BaseModel): | |
71 |
|
71 | |||
72 | cls = PullRequest |
|
72 | cls = PullRequest | |
73 |
|
73 | |||
74 | DIFF_CONTEXT = 3 |
|
74 | DIFF_CONTEXT = 3 | |
75 |
|
75 | |||
76 | MERGE_STATUS_MESSAGES = { |
|
76 | MERGE_STATUS_MESSAGES = { | |
77 | MergeFailureReason.NONE: lazy_ugettext( |
|
77 | MergeFailureReason.NONE: lazy_ugettext( | |
78 | 'This pull request can be automatically merged.'), |
|
78 | 'This pull request can be automatically merged.'), | |
79 | MergeFailureReason.UNKNOWN: lazy_ugettext( |
|
79 | MergeFailureReason.UNKNOWN: lazy_ugettext( | |
80 | 'This pull request cannot be merged because of an unhandled' |
|
80 | 'This pull request cannot be merged because of an unhandled' | |
81 | ' exception.'), |
|
81 | ' exception.'), | |
82 | MergeFailureReason.MERGE_FAILED: lazy_ugettext( |
|
82 | MergeFailureReason.MERGE_FAILED: lazy_ugettext( | |
83 | 'This pull request cannot be merged because of merge conflicts.'), |
|
83 | 'This pull request cannot be merged because of merge conflicts.'), | |
84 | MergeFailureReason.PUSH_FAILED: lazy_ugettext( |
|
84 | MergeFailureReason.PUSH_FAILED: lazy_ugettext( | |
85 | 'This pull request could not be merged because push to target' |
|
85 | 'This pull request could not be merged because push to target' | |
86 | ' failed.'), |
|
86 | ' failed.'), | |
87 | MergeFailureReason.TARGET_IS_NOT_HEAD: lazy_ugettext( |
|
87 | MergeFailureReason.TARGET_IS_NOT_HEAD: lazy_ugettext( | |
88 | 'This pull request cannot be merged because the target is not a' |
|
88 | 'This pull request cannot be merged because the target is not a' | |
89 | ' head.'), |
|
89 | ' head.'), | |
90 | MergeFailureReason.HG_SOURCE_HAS_MORE_BRANCHES: lazy_ugettext( |
|
90 | MergeFailureReason.HG_SOURCE_HAS_MORE_BRANCHES: lazy_ugettext( | |
91 | 'This pull request cannot be merged because the source contains' |
|
91 | 'This pull request cannot be merged because the source contains' | |
92 | ' more branches than the target.'), |
|
92 | ' more branches than the target.'), | |
93 | MergeFailureReason.HG_TARGET_HAS_MULTIPLE_HEADS: lazy_ugettext( |
|
93 | MergeFailureReason.HG_TARGET_HAS_MULTIPLE_HEADS: lazy_ugettext( | |
94 | 'This pull request cannot be merged because the target has' |
|
94 | 'This pull request cannot be merged because the target has' | |
95 | ' multiple heads.'), |
|
95 | ' multiple heads.'), | |
96 | MergeFailureReason.TARGET_IS_LOCKED: lazy_ugettext( |
|
96 | MergeFailureReason.TARGET_IS_LOCKED: lazy_ugettext( | |
97 | 'This pull request cannot be merged because the target repository' |
|
97 | 'This pull request cannot be merged because the target repository' | |
98 | ' is locked.'), |
|
98 | ' is locked.'), | |
99 | MergeFailureReason._DEPRECATED_MISSING_COMMIT: lazy_ugettext( |
|
99 | MergeFailureReason._DEPRECATED_MISSING_COMMIT: lazy_ugettext( | |
100 | 'This pull request cannot be merged because the target or the ' |
|
100 | 'This pull request cannot be merged because the target or the ' | |
101 | 'source reference is missing.'), |
|
101 | 'source reference is missing.'), | |
102 | MergeFailureReason.MISSING_TARGET_REF: lazy_ugettext( |
|
102 | MergeFailureReason.MISSING_TARGET_REF: lazy_ugettext( | |
103 | 'This pull request cannot be merged because the target ' |
|
103 | 'This pull request cannot be merged because the target ' | |
104 | 'reference is missing.'), |
|
104 | 'reference is missing.'), | |
105 | MergeFailureReason.MISSING_SOURCE_REF: lazy_ugettext( |
|
105 | MergeFailureReason.MISSING_SOURCE_REF: lazy_ugettext( | |
106 | 'This pull request cannot be merged because the source ' |
|
106 | 'This pull request cannot be merged because the source ' | |
107 | 'reference is missing.'), |
|
107 | 'reference is missing.'), | |
108 | MergeFailureReason.SUBREPO_MERGE_FAILED: lazy_ugettext( |
|
108 | MergeFailureReason.SUBREPO_MERGE_FAILED: lazy_ugettext( | |
109 | 'This pull request cannot be merged because of conflicts related ' |
|
109 | 'This pull request cannot be merged because of conflicts related ' | |
110 | 'to sub repositories.'), |
|
110 | 'to sub repositories.'), | |
111 | } |
|
111 | } | |
112 |
|
112 | |||
113 | UPDATE_STATUS_MESSAGES = { |
|
113 | UPDATE_STATUS_MESSAGES = { | |
114 | UpdateFailureReason.NONE: lazy_ugettext( |
|
114 | UpdateFailureReason.NONE: lazy_ugettext( | |
115 | 'Pull request update successful.'), |
|
115 | 'Pull request update successful.'), | |
116 | UpdateFailureReason.UNKNOWN: lazy_ugettext( |
|
116 | UpdateFailureReason.UNKNOWN: lazy_ugettext( | |
117 | 'Pull request update failed because of an unknown error.'), |
|
117 | 'Pull request update failed because of an unknown error.'), | |
118 | UpdateFailureReason.NO_CHANGE: lazy_ugettext( |
|
118 | UpdateFailureReason.NO_CHANGE: lazy_ugettext( | |
119 | 'No update needed because the source reference is already ' |
|
119 | 'No update needed because the source reference is already ' | |
120 | 'up to date.'), |
|
120 | 'up to date.'), | |
121 | UpdateFailureReason.WRONG_REF_TPYE: lazy_ugettext( |
|
121 | UpdateFailureReason.WRONG_REF_TPYE: lazy_ugettext( | |
122 | 'Pull request cannot be updated because the reference type is ' |
|
122 | 'Pull request cannot be updated because the reference type is ' | |
123 | 'not supported for an update.'), |
|
123 | 'not supported for an update.'), | |
124 | UpdateFailureReason.MISSING_TARGET_REF: lazy_ugettext( |
|
124 | UpdateFailureReason.MISSING_TARGET_REF: lazy_ugettext( | |
125 | 'This pull request cannot be updated because the target ' |
|
125 | 'This pull request cannot be updated because the target ' | |
126 | 'reference is missing.'), |
|
126 | 'reference is missing.'), | |
127 | UpdateFailureReason.MISSING_SOURCE_REF: lazy_ugettext( |
|
127 | UpdateFailureReason.MISSING_SOURCE_REF: lazy_ugettext( | |
128 | 'This pull request cannot be updated because the source ' |
|
128 | 'This pull request cannot be updated because the source ' | |
129 | 'reference is missing.'), |
|
129 | 'reference is missing.'), | |
130 | } |
|
130 | } | |
131 |
|
131 | |||
132 | def __get_pull_request(self, pull_request): |
|
132 | def __get_pull_request(self, pull_request): | |
133 | return self._get_instance(( |
|
133 | return self._get_instance(( | |
134 | PullRequest, PullRequestVersion), pull_request) |
|
134 | PullRequest, PullRequestVersion), pull_request) | |
135 |
|
135 | |||
136 | def _check_perms(self, perms, pull_request, user, api=False): |
|
136 | def _check_perms(self, perms, pull_request, user, api=False): | |
137 | if not api: |
|
137 | if not api: | |
138 | return h.HasRepoPermissionAny(*perms)( |
|
138 | return h.HasRepoPermissionAny(*perms)( | |
139 | user=user, repo_name=pull_request.target_repo.repo_name) |
|
139 | user=user, repo_name=pull_request.target_repo.repo_name) | |
140 | else: |
|
140 | else: | |
141 | return h.HasRepoPermissionAnyApi(*perms)( |
|
141 | return h.HasRepoPermissionAnyApi(*perms)( | |
142 | user=user, repo_name=pull_request.target_repo.repo_name) |
|
142 | user=user, repo_name=pull_request.target_repo.repo_name) | |
143 |
|
143 | |||
144 | def check_user_read(self, pull_request, user, api=False): |
|
144 | def check_user_read(self, pull_request, user, api=False): | |
145 | _perms = ('repository.admin', 'repository.write', 'repository.read',) |
|
145 | _perms = ('repository.admin', 'repository.write', 'repository.read',) | |
146 | return self._check_perms(_perms, pull_request, user, api) |
|
146 | return self._check_perms(_perms, pull_request, user, api) | |
147 |
|
147 | |||
148 | def check_user_merge(self, pull_request, user, api=False): |
|
148 | def check_user_merge(self, pull_request, user, api=False): | |
149 | _perms = ('repository.admin', 'repository.write', 'hg.admin',) |
|
149 | _perms = ('repository.admin', 'repository.write', 'hg.admin',) | |
150 | return self._check_perms(_perms, pull_request, user, api) |
|
150 | return self._check_perms(_perms, pull_request, user, api) | |
151 |
|
151 | |||
152 | def check_user_update(self, pull_request, user, api=False): |
|
152 | def check_user_update(self, pull_request, user, api=False): | |
153 | owner = user.user_id == pull_request.user_id |
|
153 | owner = user.user_id == pull_request.user_id | |
154 | return self.check_user_merge(pull_request, user, api) or owner |
|
154 | return self.check_user_merge(pull_request, user, api) or owner | |
155 |
|
155 | |||
156 | def check_user_delete(self, pull_request, user): |
|
156 | def check_user_delete(self, pull_request, user): | |
157 | owner = user.user_id == pull_request.user_id |
|
157 | owner = user.user_id == pull_request.user_id | |
158 | _perms = ('repository.admin') |
|
158 | _perms = ('repository.admin') | |
159 | return self._check_perms(_perms, pull_request, user) or owner |
|
159 | return self._check_perms(_perms, pull_request, user) or owner | |
160 |
|
160 | |||
161 | def check_user_change_status(self, pull_request, user, api=False): |
|
161 | def check_user_change_status(self, pull_request, user, api=False): | |
162 | reviewer = user.user_id in [x.user_id for x in |
|
162 | reviewer = user.user_id in [x.user_id for x in | |
163 | pull_request.reviewers] |
|
163 | pull_request.reviewers] | |
164 | return self.check_user_update(pull_request, user, api) or reviewer |
|
164 | return self.check_user_update(pull_request, user, api) or reviewer | |
165 |
|
165 | |||
166 | def get(self, pull_request): |
|
166 | def get(self, pull_request): | |
167 | return self.__get_pull_request(pull_request) |
|
167 | return self.__get_pull_request(pull_request) | |
168 |
|
168 | |||
169 | def _prepare_get_all_query(self, repo_name, source=False, statuses=None, |
|
169 | def _prepare_get_all_query(self, repo_name, source=False, statuses=None, | |
170 | opened_by=None, order_by=None, |
|
170 | opened_by=None, order_by=None, | |
171 | order_dir='desc'): |
|
171 | order_dir='desc'): | |
172 | repo = None |
|
172 | repo = None | |
173 | if repo_name: |
|
173 | if repo_name: | |
174 | repo = self._get_repo(repo_name) |
|
174 | repo = self._get_repo(repo_name) | |
175 |
|
175 | |||
176 | q = PullRequest.query() |
|
176 | q = PullRequest.query() | |
177 |
|
177 | |||
178 | # source or target |
|
178 | # source or target | |
179 | if repo and source: |
|
179 | if repo and source: | |
180 | q = q.filter(PullRequest.source_repo == repo) |
|
180 | q = q.filter(PullRequest.source_repo == repo) | |
181 | elif repo: |
|
181 | elif repo: | |
182 | q = q.filter(PullRequest.target_repo == repo) |
|
182 | q = q.filter(PullRequest.target_repo == repo) | |
183 |
|
183 | |||
184 | # closed,opened |
|
184 | # closed,opened | |
185 | if statuses: |
|
185 | if statuses: | |
186 | q = q.filter(PullRequest.status.in_(statuses)) |
|
186 | q = q.filter(PullRequest.status.in_(statuses)) | |
187 |
|
187 | |||
188 | # opened by filter |
|
188 | # opened by filter | |
189 | if opened_by: |
|
189 | if opened_by: | |
190 | q = q.filter(PullRequest.user_id.in_(opened_by)) |
|
190 | q = q.filter(PullRequest.user_id.in_(opened_by)) | |
191 |
|
191 | |||
192 | if order_by: |
|
192 | if order_by: | |
193 | order_map = { |
|
193 | order_map = { | |
194 | 'name_raw': PullRequest.pull_request_id, |
|
194 | 'name_raw': PullRequest.pull_request_id, | |
195 | 'title': PullRequest.title, |
|
195 | 'title': PullRequest.title, | |
196 | 'updated_on_raw': PullRequest.updated_on, |
|
196 | 'updated_on_raw': PullRequest.updated_on, | |
197 | 'target_repo': PullRequest.target_repo_id |
|
197 | 'target_repo': PullRequest.target_repo_id | |
198 | } |
|
198 | } | |
199 | if order_dir == 'asc': |
|
199 | if order_dir == 'asc': | |
200 | q = q.order_by(order_map[order_by].asc()) |
|
200 | q = q.order_by(order_map[order_by].asc()) | |
201 | else: |
|
201 | else: | |
202 | q = q.order_by(order_map[order_by].desc()) |
|
202 | q = q.order_by(order_map[order_by].desc()) | |
203 |
|
203 | |||
204 | return q |
|
204 | return q | |
205 |
|
205 | |||
206 | def count_all(self, repo_name, source=False, statuses=None, |
|
206 | def count_all(self, repo_name, source=False, statuses=None, | |
207 | opened_by=None): |
|
207 | opened_by=None): | |
208 | """ |
|
208 | """ | |
209 | Count the number of pull requests for a specific repository. |
|
209 | Count the number of pull requests for a specific repository. | |
210 |
|
210 | |||
211 | :param repo_name: target or source repo |
|
211 | :param repo_name: target or source repo | |
212 | :param source: boolean flag to specify if repo_name refers to source |
|
212 | :param source: boolean flag to specify if repo_name refers to source | |
213 | :param statuses: list of pull request statuses |
|
213 | :param statuses: list of pull request statuses | |
214 | :param opened_by: author user of the pull request |
|
214 | :param opened_by: author user of the pull request | |
215 | :returns: int number of pull requests |
|
215 | :returns: int number of pull requests | |
216 | """ |
|
216 | """ | |
217 | q = self._prepare_get_all_query( |
|
217 | q = self._prepare_get_all_query( | |
218 | repo_name, source=source, statuses=statuses, opened_by=opened_by) |
|
218 | repo_name, source=source, statuses=statuses, opened_by=opened_by) | |
219 |
|
219 | |||
220 | return q.count() |
|
220 | return q.count() | |
221 |
|
221 | |||
222 | def get_all(self, repo_name, source=False, statuses=None, opened_by=None, |
|
222 | def get_all(self, repo_name, source=False, statuses=None, opened_by=None, | |
223 | offset=0, length=None, order_by=None, order_dir='desc'): |
|
223 | offset=0, length=None, order_by=None, order_dir='desc'): | |
224 | """ |
|
224 | """ | |
225 | Get all pull requests for a specific repository. |
|
225 | Get all pull requests for a specific repository. | |
226 |
|
226 | |||
227 | :param repo_name: target or source repo |
|
227 | :param repo_name: target or source repo | |
228 | :param source: boolean flag to specify if repo_name refers to source |
|
228 | :param source: boolean flag to specify if repo_name refers to source | |
229 | :param statuses: list of pull request statuses |
|
229 | :param statuses: list of pull request statuses | |
230 | :param opened_by: author user of the pull request |
|
230 | :param opened_by: author user of the pull request | |
231 | :param offset: pagination offset |
|
231 | :param offset: pagination offset | |
232 | :param length: length of returned list |
|
232 | :param length: length of returned list | |
233 | :param order_by: order of the returned list |
|
233 | :param order_by: order of the returned list | |
234 | :param order_dir: 'asc' or 'desc' ordering direction |
|
234 | :param order_dir: 'asc' or 'desc' ordering direction | |
235 | :returns: list of pull requests |
|
235 | :returns: list of pull requests | |
236 | """ |
|
236 | """ | |
237 | q = self._prepare_get_all_query( |
|
237 | q = self._prepare_get_all_query( | |
238 | repo_name, source=source, statuses=statuses, opened_by=opened_by, |
|
238 | repo_name, source=source, statuses=statuses, opened_by=opened_by, | |
239 | order_by=order_by, order_dir=order_dir) |
|
239 | order_by=order_by, order_dir=order_dir) | |
240 |
|
240 | |||
241 | if length: |
|
241 | if length: | |
242 | pull_requests = q.limit(length).offset(offset).all() |
|
242 | pull_requests = q.limit(length).offset(offset).all() | |
243 | else: |
|
243 | else: | |
244 | pull_requests = q.all() |
|
244 | pull_requests = q.all() | |
245 |
|
245 | |||
246 | return pull_requests |
|
246 | return pull_requests | |
247 |
|
247 | |||
248 | def count_awaiting_review(self, repo_name, source=False, statuses=None, |
|
248 | def count_awaiting_review(self, repo_name, source=False, statuses=None, | |
249 | opened_by=None): |
|
249 | opened_by=None): | |
250 | """ |
|
250 | """ | |
251 | Count the number of pull requests for a specific repository that are |
|
251 | Count the number of pull requests for a specific repository that are | |
252 | awaiting review. |
|
252 | awaiting review. | |
253 |
|
253 | |||
254 | :param repo_name: target or source repo |
|
254 | :param repo_name: target or source repo | |
255 | :param source: boolean flag to specify if repo_name refers to source |
|
255 | :param source: boolean flag to specify if repo_name refers to source | |
256 | :param statuses: list of pull request statuses |
|
256 | :param statuses: list of pull request statuses | |
257 | :param opened_by: author user of the pull request |
|
257 | :param opened_by: author user of the pull request | |
258 | :returns: int number of pull requests |
|
258 | :returns: int number of pull requests | |
259 | """ |
|
259 | """ | |
260 | pull_requests = self.get_awaiting_review( |
|
260 | pull_requests = self.get_awaiting_review( | |
261 | repo_name, source=source, statuses=statuses, opened_by=opened_by) |
|
261 | repo_name, source=source, statuses=statuses, opened_by=opened_by) | |
262 |
|
262 | |||
263 | return len(pull_requests) |
|
263 | return len(pull_requests) | |
264 |
|
264 | |||
265 | def get_awaiting_review(self, repo_name, source=False, statuses=None, |
|
265 | def get_awaiting_review(self, repo_name, source=False, statuses=None, | |
266 | opened_by=None, offset=0, length=None, |
|
266 | opened_by=None, offset=0, length=None, | |
267 | order_by=None, order_dir='desc'): |
|
267 | order_by=None, order_dir='desc'): | |
268 | """ |
|
268 | """ | |
269 | Get all pull requests for a specific repository that are awaiting |
|
269 | Get all pull requests for a specific repository that are awaiting | |
270 | review. |
|
270 | review. | |
271 |
|
271 | |||
272 | :param repo_name: target or source repo |
|
272 | :param repo_name: target or source repo | |
273 | :param source: boolean flag to specify if repo_name refers to source |
|
273 | :param source: boolean flag to specify if repo_name refers to source | |
274 | :param statuses: list of pull request statuses |
|
274 | :param statuses: list of pull request statuses | |
275 | :param opened_by: author user of the pull request |
|
275 | :param opened_by: author user of the pull request | |
276 | :param offset: pagination offset |
|
276 | :param offset: pagination offset | |
277 | :param length: length of returned list |
|
277 | :param length: length of returned list | |
278 | :param order_by: order of the returned list |
|
278 | :param order_by: order of the returned list | |
279 | :param order_dir: 'asc' or 'desc' ordering direction |
|
279 | :param order_dir: 'asc' or 'desc' ordering direction | |
280 | :returns: list of pull requests |
|
280 | :returns: list of pull requests | |
281 | """ |
|
281 | """ | |
282 | pull_requests = self.get_all( |
|
282 | pull_requests = self.get_all( | |
283 | repo_name, source=source, statuses=statuses, opened_by=opened_by, |
|
283 | repo_name, source=source, statuses=statuses, opened_by=opened_by, | |
284 | order_by=order_by, order_dir=order_dir) |
|
284 | order_by=order_by, order_dir=order_dir) | |
285 |
|
285 | |||
286 | _filtered_pull_requests = [] |
|
286 | _filtered_pull_requests = [] | |
287 | for pr in pull_requests: |
|
287 | for pr in pull_requests: | |
288 | status = pr.calculated_review_status() |
|
288 | status = pr.calculated_review_status() | |
289 | if status in [ChangesetStatus.STATUS_NOT_REVIEWED, |
|
289 | if status in [ChangesetStatus.STATUS_NOT_REVIEWED, | |
290 | ChangesetStatus.STATUS_UNDER_REVIEW]: |
|
290 | ChangesetStatus.STATUS_UNDER_REVIEW]: | |
291 | _filtered_pull_requests.append(pr) |
|
291 | _filtered_pull_requests.append(pr) | |
292 | if length: |
|
292 | if length: | |
293 | return _filtered_pull_requests[offset:offset+length] |
|
293 | return _filtered_pull_requests[offset:offset+length] | |
294 | else: |
|
294 | else: | |
295 | return _filtered_pull_requests |
|
295 | return _filtered_pull_requests | |
296 |
|
296 | |||
297 | def count_awaiting_my_review(self, repo_name, source=False, statuses=None, |
|
297 | def count_awaiting_my_review(self, repo_name, source=False, statuses=None, | |
298 | opened_by=None, user_id=None): |
|
298 | opened_by=None, user_id=None): | |
299 | """ |
|
299 | """ | |
300 | Count the number of pull requests for a specific repository that are |
|
300 | Count the number of pull requests for a specific repository that are | |
301 | awaiting review from a specific user. |
|
301 | awaiting review from a specific user. | |
302 |
|
302 | |||
303 | :param repo_name: target or source repo |
|
303 | :param repo_name: target or source repo | |
304 | :param source: boolean flag to specify if repo_name refers to source |
|
304 | :param source: boolean flag to specify if repo_name refers to source | |
305 | :param statuses: list of pull request statuses |
|
305 | :param statuses: list of pull request statuses | |
306 | :param opened_by: author user of the pull request |
|
306 | :param opened_by: author user of the pull request | |
307 | :param user_id: reviewer user of the pull request |
|
307 | :param user_id: reviewer user of the pull request | |
308 | :returns: int number of pull requests |
|
308 | :returns: int number of pull requests | |
309 | """ |
|
309 | """ | |
310 | pull_requests = self.get_awaiting_my_review( |
|
310 | pull_requests = self.get_awaiting_my_review( | |
311 | repo_name, source=source, statuses=statuses, opened_by=opened_by, |
|
311 | repo_name, source=source, statuses=statuses, opened_by=opened_by, | |
312 | user_id=user_id) |
|
312 | user_id=user_id) | |
313 |
|
313 | |||
314 | return len(pull_requests) |
|
314 | return len(pull_requests) | |
315 |
|
315 | |||
316 | def get_awaiting_my_review(self, repo_name, source=False, statuses=None, |
|
316 | def get_awaiting_my_review(self, repo_name, source=False, statuses=None, | |
317 | opened_by=None, user_id=None, offset=0, |
|
317 | opened_by=None, user_id=None, offset=0, | |
318 | length=None, order_by=None, order_dir='desc'): |
|
318 | length=None, order_by=None, order_dir='desc'): | |
319 | """ |
|
319 | """ | |
320 | Get all pull requests for a specific repository that are awaiting |
|
320 | Get all pull requests for a specific repository that are awaiting | |
321 | review from a specific user. |
|
321 | review from a specific user. | |
322 |
|
322 | |||
323 | :param repo_name: target or source repo |
|
323 | :param repo_name: target or source repo | |
324 | :param source: boolean flag to specify if repo_name refers to source |
|
324 | :param source: boolean flag to specify if repo_name refers to source | |
325 | :param statuses: list of pull request statuses |
|
325 | :param statuses: list of pull request statuses | |
326 | :param opened_by: author user of the pull request |
|
326 | :param opened_by: author user of the pull request | |
327 | :param user_id: reviewer user of the pull request |
|
327 | :param user_id: reviewer user of the pull request | |
328 | :param offset: pagination offset |
|
328 | :param offset: pagination offset | |
329 | :param length: length of returned list |
|
329 | :param length: length of returned list | |
330 | :param order_by: order of the returned list |
|
330 | :param order_by: order of the returned list | |
331 | :param order_dir: 'asc' or 'desc' ordering direction |
|
331 | :param order_dir: 'asc' or 'desc' ordering direction | |
332 | :returns: list of pull requests |
|
332 | :returns: list of pull requests | |
333 | """ |
|
333 | """ | |
334 | pull_requests = self.get_all( |
|
334 | pull_requests = self.get_all( | |
335 | repo_name, source=source, statuses=statuses, opened_by=opened_by, |
|
335 | repo_name, source=source, statuses=statuses, opened_by=opened_by, | |
336 | order_by=order_by, order_dir=order_dir) |
|
336 | order_by=order_by, order_dir=order_dir) | |
337 |
|
337 | |||
338 | _my = PullRequestModel().get_not_reviewed(user_id) |
|
338 | _my = PullRequestModel().get_not_reviewed(user_id) | |
339 | my_participation = [] |
|
339 | my_participation = [] | |
340 | for pr in pull_requests: |
|
340 | for pr in pull_requests: | |
341 | if pr in _my: |
|
341 | if pr in _my: | |
342 | my_participation.append(pr) |
|
342 | my_participation.append(pr) | |
343 | _filtered_pull_requests = my_participation |
|
343 | _filtered_pull_requests = my_participation | |
344 | if length: |
|
344 | if length: | |
345 | return _filtered_pull_requests[offset:offset+length] |
|
345 | return _filtered_pull_requests[offset:offset+length] | |
346 | else: |
|
346 | else: | |
347 | return _filtered_pull_requests |
|
347 | return _filtered_pull_requests | |
348 |
|
348 | |||
349 | def get_not_reviewed(self, user_id): |
|
349 | def get_not_reviewed(self, user_id): | |
350 | return [ |
|
350 | return [ | |
351 | x.pull_request for x in PullRequestReviewers.query().filter( |
|
351 | x.pull_request for x in PullRequestReviewers.query().filter( | |
352 | PullRequestReviewers.user_id == user_id).all() |
|
352 | PullRequestReviewers.user_id == user_id).all() | |
353 | ] |
|
353 | ] | |
354 |
|
354 | |||
355 | def _prepare_participating_query(self, user_id=None, statuses=None, |
|
355 | def _prepare_participating_query(self, user_id=None, statuses=None, | |
356 | order_by=None, order_dir='desc'): |
|
356 | order_by=None, order_dir='desc'): | |
357 | q = PullRequest.query() |
|
357 | q = PullRequest.query() | |
358 | if user_id: |
|
358 | if user_id: | |
359 | reviewers_subquery = Session().query( |
|
359 | reviewers_subquery = Session().query( | |
360 | PullRequestReviewers.pull_request_id).filter( |
|
360 | PullRequestReviewers.pull_request_id).filter( | |
361 | PullRequestReviewers.user_id == user_id).subquery() |
|
361 | PullRequestReviewers.user_id == user_id).subquery() | |
362 | user_filter= or_( |
|
362 | user_filter= or_( | |
363 | PullRequest.user_id == user_id, |
|
363 | PullRequest.user_id == user_id, | |
364 | PullRequest.pull_request_id.in_(reviewers_subquery) |
|
364 | PullRequest.pull_request_id.in_(reviewers_subquery) | |
365 | ) |
|
365 | ) | |
366 | q = PullRequest.query().filter(user_filter) |
|
366 | q = PullRequest.query().filter(user_filter) | |
367 |
|
367 | |||
368 | # closed,opened |
|
368 | # closed,opened | |
369 | if statuses: |
|
369 | if statuses: | |
370 | q = q.filter(PullRequest.status.in_(statuses)) |
|
370 | q = q.filter(PullRequest.status.in_(statuses)) | |
371 |
|
371 | |||
372 | if order_by: |
|
372 | if order_by: | |
373 | order_map = { |
|
373 | order_map = { | |
374 | 'name_raw': PullRequest.pull_request_id, |
|
374 | 'name_raw': PullRequest.pull_request_id, | |
375 | 'title': PullRequest.title, |
|
375 | 'title': PullRequest.title, | |
376 | 'updated_on_raw': PullRequest.updated_on, |
|
376 | 'updated_on_raw': PullRequest.updated_on, | |
377 | 'target_repo': PullRequest.target_repo_id |
|
377 | 'target_repo': PullRequest.target_repo_id | |
378 | } |
|
378 | } | |
379 | if order_dir == 'asc': |
|
379 | if order_dir == 'asc': | |
380 | q = q.order_by(order_map[order_by].asc()) |
|
380 | q = q.order_by(order_map[order_by].asc()) | |
381 | else: |
|
381 | else: | |
382 | q = q.order_by(order_map[order_by].desc()) |
|
382 | q = q.order_by(order_map[order_by].desc()) | |
383 |
|
383 | |||
384 | return q |
|
384 | return q | |
385 |
|
385 | |||
386 | def count_im_participating_in(self, user_id=None, statuses=None): |
|
386 | def count_im_participating_in(self, user_id=None, statuses=None): | |
387 | q = self._prepare_participating_query(user_id, statuses=statuses) |
|
387 | q = self._prepare_participating_query(user_id, statuses=statuses) | |
388 | return q.count() |
|
388 | return q.count() | |
389 |
|
389 | |||
390 | def get_im_participating_in( |
|
390 | def get_im_participating_in( | |
391 | self, user_id=None, statuses=None, offset=0, |
|
391 | self, user_id=None, statuses=None, offset=0, | |
392 | length=None, order_by=None, order_dir='desc'): |
|
392 | length=None, order_by=None, order_dir='desc'): | |
393 | """ |
|
393 | """ | |
394 | Get all Pull requests that i'm participating in, or i have opened |
|
394 | Get all Pull requests that i'm participating in, or i have opened | |
395 | """ |
|
395 | """ | |
396 |
|
396 | |||
397 | q = self._prepare_participating_query( |
|
397 | q = self._prepare_participating_query( | |
398 | user_id, statuses=statuses, order_by=order_by, |
|
398 | user_id, statuses=statuses, order_by=order_by, | |
399 | order_dir=order_dir) |
|
399 | order_dir=order_dir) | |
400 |
|
400 | |||
401 | if length: |
|
401 | if length: | |
402 | pull_requests = q.limit(length).offset(offset).all() |
|
402 | pull_requests = q.limit(length).offset(offset).all() | |
403 | else: |
|
403 | else: | |
404 | pull_requests = q.all() |
|
404 | pull_requests = q.all() | |
405 |
|
405 | |||
406 | return pull_requests |
|
406 | return pull_requests | |
407 |
|
407 | |||
408 | def get_versions(self, pull_request): |
|
408 | def get_versions(self, pull_request): | |
409 | """ |
|
409 | """ | |
410 | returns version of pull request sorted by ID descending |
|
410 | returns version of pull request sorted by ID descending | |
411 | """ |
|
411 | """ | |
412 | return PullRequestVersion.query()\ |
|
412 | return PullRequestVersion.query()\ | |
413 | .filter(PullRequestVersion.pull_request == pull_request)\ |
|
413 | .filter(PullRequestVersion.pull_request == pull_request)\ | |
414 | .order_by(PullRequestVersion.pull_request_version_id.asc())\ |
|
414 | .order_by(PullRequestVersion.pull_request_version_id.asc())\ | |
415 | .all() |
|
415 | .all() | |
416 |
|
416 | |||
417 | def create(self, created_by, source_repo, source_ref, target_repo, |
|
417 | def create(self, created_by, source_repo, source_ref, target_repo, | |
418 | target_ref, revisions, reviewers, title, description=None): |
|
418 | target_ref, revisions, reviewers, title, description=None): | |
419 | created_by_user = self._get_user(created_by) |
|
419 | created_by_user = self._get_user(created_by) | |
420 | source_repo = self._get_repo(source_repo) |
|
420 | source_repo = self._get_repo(source_repo) | |
421 | target_repo = self._get_repo(target_repo) |
|
421 | target_repo = self._get_repo(target_repo) | |
422 |
|
422 | |||
423 | pull_request = PullRequest() |
|
423 | pull_request = PullRequest() | |
424 | pull_request.source_repo = source_repo |
|
424 | pull_request.source_repo = source_repo | |
425 | pull_request.source_ref = source_ref |
|
425 | pull_request.source_ref = source_ref | |
426 | pull_request.target_repo = target_repo |
|
426 | pull_request.target_repo = target_repo | |
427 | pull_request.target_ref = target_ref |
|
427 | pull_request.target_ref = target_ref | |
428 | pull_request.revisions = revisions |
|
428 | pull_request.revisions = revisions | |
429 | pull_request.title = title |
|
429 | pull_request.title = title | |
430 | pull_request.description = description |
|
430 | pull_request.description = description | |
431 | pull_request.author = created_by_user |
|
431 | pull_request.author = created_by_user | |
432 |
|
432 | |||
433 | Session().add(pull_request) |
|
433 | Session().add(pull_request) | |
434 | Session().flush() |
|
434 | Session().flush() | |
435 |
|
435 | |||
436 | reviewer_ids = set() |
|
436 | reviewer_ids = set() | |
437 | # members / reviewers |
|
437 | # members / reviewers | |
438 | for reviewer_object in reviewers: |
|
438 | for reviewer_object in reviewers: | |
439 | if isinstance(reviewer_object, tuple): |
|
439 | if isinstance(reviewer_object, tuple): | |
440 | user_id, reasons = reviewer_object |
|
440 | user_id, reasons = reviewer_object | |
441 | else: |
|
441 | else: | |
442 | user_id, reasons = reviewer_object, [] |
|
442 | user_id, reasons = reviewer_object, [] | |
443 |
|
443 | |||
444 | user = self._get_user(user_id) |
|
444 | user = self._get_user(user_id) | |
445 | reviewer_ids.add(user.user_id) |
|
445 | reviewer_ids.add(user.user_id) | |
446 |
|
446 | |||
447 | reviewer = PullRequestReviewers(user, pull_request, reasons) |
|
447 | reviewer = PullRequestReviewers(user, pull_request, reasons) | |
448 | Session().add(reviewer) |
|
448 | Session().add(reviewer) | |
449 |
|
449 | |||
450 | # Set approval status to "Under Review" for all commits which are |
|
450 | # Set approval status to "Under Review" for all commits which are | |
451 | # part of this pull request. |
|
451 | # part of this pull request. | |
452 | ChangesetStatusModel().set_status( |
|
452 | ChangesetStatusModel().set_status( | |
453 | repo=target_repo, |
|
453 | repo=target_repo, | |
454 | status=ChangesetStatus.STATUS_UNDER_REVIEW, |
|
454 | status=ChangesetStatus.STATUS_UNDER_REVIEW, | |
455 | user=created_by_user, |
|
455 | user=created_by_user, | |
456 | pull_request=pull_request |
|
456 | pull_request=pull_request | |
457 | ) |
|
457 | ) | |
458 |
|
458 | |||
459 | self.notify_reviewers(pull_request, reviewer_ids) |
|
459 | self.notify_reviewers(pull_request, reviewer_ids) | |
460 | self._trigger_pull_request_hook( |
|
460 | self._trigger_pull_request_hook( | |
461 | pull_request, created_by_user, 'create') |
|
461 | pull_request, created_by_user, 'create') | |
462 |
|
462 | |||
463 | return pull_request |
|
463 | return pull_request | |
464 |
|
464 | |||
465 | def _trigger_pull_request_hook(self, pull_request, user, action): |
|
465 | def _trigger_pull_request_hook(self, pull_request, user, action): | |
466 | pull_request = self.__get_pull_request(pull_request) |
|
466 | pull_request = self.__get_pull_request(pull_request) | |
467 | target_scm = pull_request.target_repo.scm_instance() |
|
467 | target_scm = pull_request.target_repo.scm_instance() | |
468 | if action == 'create': |
|
468 | if action == 'create': | |
469 | trigger_hook = hooks_utils.trigger_log_create_pull_request_hook |
|
469 | trigger_hook = hooks_utils.trigger_log_create_pull_request_hook | |
470 | elif action == 'merge': |
|
470 | elif action == 'merge': | |
471 | trigger_hook = hooks_utils.trigger_log_merge_pull_request_hook |
|
471 | trigger_hook = hooks_utils.trigger_log_merge_pull_request_hook | |
472 | elif action == 'close': |
|
472 | elif action == 'close': | |
473 | trigger_hook = hooks_utils.trigger_log_close_pull_request_hook |
|
473 | trigger_hook = hooks_utils.trigger_log_close_pull_request_hook | |
474 | elif action == 'review_status_change': |
|
474 | elif action == 'review_status_change': | |
475 | trigger_hook = hooks_utils.trigger_log_review_pull_request_hook |
|
475 | trigger_hook = hooks_utils.trigger_log_review_pull_request_hook | |
476 | elif action == 'update': |
|
476 | elif action == 'update': | |
477 | trigger_hook = hooks_utils.trigger_log_update_pull_request_hook |
|
477 | trigger_hook = hooks_utils.trigger_log_update_pull_request_hook | |
478 | else: |
|
478 | else: | |
479 | return |
|
479 | return | |
480 |
|
480 | |||
481 | trigger_hook( |
|
481 | trigger_hook( | |
482 | username=user.username, |
|
482 | username=user.username, | |
483 | repo_name=pull_request.target_repo.repo_name, |
|
483 | repo_name=pull_request.target_repo.repo_name, | |
484 | repo_alias=target_scm.alias, |
|
484 | repo_alias=target_scm.alias, | |
485 | pull_request=pull_request) |
|
485 | pull_request=pull_request) | |
486 |
|
486 | |||
487 | def _get_commit_ids(self, pull_request): |
|
487 | def _get_commit_ids(self, pull_request): | |
488 | """ |
|
488 | """ | |
489 | Return the commit ids of the merged pull request. |
|
489 | Return the commit ids of the merged pull request. | |
490 |
|
490 | |||
491 | This method is not dealing correctly yet with the lack of autoupdates |
|
491 | This method is not dealing correctly yet with the lack of autoupdates | |
492 | nor with the implicit target updates. |
|
492 | nor with the implicit target updates. | |
493 | For example: if a commit in the source repo is already in the target it |
|
493 | For example: if a commit in the source repo is already in the target it | |
494 | will be reported anyways. |
|
494 | will be reported anyways. | |
495 | """ |
|
495 | """ | |
496 | merge_rev = pull_request.merge_rev |
|
496 | merge_rev = pull_request.merge_rev | |
497 | if merge_rev is None: |
|
497 | if merge_rev is None: | |
498 | raise ValueError('This pull request was not merged yet') |
|
498 | raise ValueError('This pull request was not merged yet') | |
499 |
|
499 | |||
500 | commit_ids = list(pull_request.revisions) |
|
500 | commit_ids = list(pull_request.revisions) | |
501 | if merge_rev not in commit_ids: |
|
501 | if merge_rev not in commit_ids: | |
502 | commit_ids.append(merge_rev) |
|
502 | commit_ids.append(merge_rev) | |
503 |
|
503 | |||
504 | return commit_ids |
|
504 | return commit_ids | |
505 |
|
505 | |||
506 | def merge(self, pull_request, user, extras): |
|
506 | def merge(self, pull_request, user, extras): | |
507 | log.debug("Merging pull request %s", pull_request.pull_request_id) |
|
507 | log.debug("Merging pull request %s", pull_request.pull_request_id) | |
508 | merge_state = self._merge_pull_request(pull_request, user, extras) |
|
508 | merge_state = self._merge_pull_request(pull_request, user, extras) | |
509 | if merge_state.executed: |
|
509 | if merge_state.executed: | |
510 | log.debug( |
|
510 | log.debug( | |
511 | "Merge was successful, updating the pull request comments.") |
|
511 | "Merge was successful, updating the pull request comments.") | |
512 | self._comment_and_close_pr(pull_request, user, merge_state) |
|
512 | self._comment_and_close_pr(pull_request, user, merge_state) | |
513 | self._log_action('user_merged_pull_request', user, pull_request) |
|
513 | self._log_action('user_merged_pull_request', user, pull_request) | |
514 | else: |
|
514 | else: | |
515 | log.warn("Merge failed, not updating the pull request.") |
|
515 | log.warn("Merge failed, not updating the pull request.") | |
516 | return merge_state |
|
516 | return merge_state | |
517 |
|
517 | |||
518 | def _merge_pull_request(self, pull_request, user, extras): |
|
518 | def _merge_pull_request(self, pull_request, user, extras): | |
519 | target_vcs = pull_request.target_repo.scm_instance() |
|
519 | target_vcs = pull_request.target_repo.scm_instance() | |
520 | source_vcs = pull_request.source_repo.scm_instance() |
|
520 | source_vcs = pull_request.source_repo.scm_instance() | |
521 | target_ref = self._refresh_reference( |
|
521 | target_ref = self._refresh_reference( | |
522 | pull_request.target_ref_parts, target_vcs) |
|
522 | pull_request.target_ref_parts, target_vcs) | |
523 |
|
523 | |||
524 | message = _( |
|
524 | message = _( | |
525 | 'Merge pull request #%(pr_id)s from ' |
|
525 | 'Merge pull request #%(pr_id)s from ' | |
526 | '%(source_repo)s %(source_ref_name)s\n\n %(pr_title)s') % { |
|
526 | '%(source_repo)s %(source_ref_name)s\n\n %(pr_title)s') % { | |
527 | 'pr_id': pull_request.pull_request_id, |
|
527 | 'pr_id': pull_request.pull_request_id, | |
528 | 'source_repo': source_vcs.name, |
|
528 | 'source_repo': source_vcs.name, | |
529 | 'source_ref_name': pull_request.source_ref_parts.name, |
|
529 | 'source_ref_name': pull_request.source_ref_parts.name, | |
530 | 'pr_title': pull_request.title |
|
530 | 'pr_title': pull_request.title | |
531 | } |
|
531 | } | |
532 |
|
532 | |||
533 | workspace_id = self._workspace_id(pull_request) |
|
533 | workspace_id = self._workspace_id(pull_request) | |
534 | use_rebase = self._use_rebase_for_merging(pull_request) |
|
534 | use_rebase = self._use_rebase_for_merging(pull_request) | |
535 |
|
535 | |||
536 | callback_daemon, extras = prepare_callback_daemon( |
|
536 | callback_daemon, extras = prepare_callback_daemon( | |
537 | extras, protocol=vcs_settings.HOOKS_PROTOCOL, |
|
537 | extras, protocol=vcs_settings.HOOKS_PROTOCOL, | |
538 | use_direct_calls=vcs_settings.HOOKS_DIRECT_CALLS) |
|
538 | use_direct_calls=vcs_settings.HOOKS_DIRECT_CALLS) | |
539 |
|
539 | |||
540 | with callback_daemon: |
|
540 | with callback_daemon: | |
541 | # TODO: johbo: Implement a clean way to run a config_override |
|
541 | # TODO: johbo: Implement a clean way to run a config_override | |
542 | # for a single call. |
|
542 | # for a single call. | |
543 | target_vcs.config.set( |
|
543 | target_vcs.config.set( | |
544 | 'rhodecode', 'RC_SCM_DATA', json.dumps(extras)) |
|
544 | 'rhodecode', 'RC_SCM_DATA', json.dumps(extras)) | |
545 | merge_state = target_vcs.merge( |
|
545 | merge_state = target_vcs.merge( | |
546 | target_ref, source_vcs, pull_request.source_ref_parts, |
|
546 | target_ref, source_vcs, pull_request.source_ref_parts, | |
547 | workspace_id, user_name=user.username, |
|
547 | workspace_id, user_name=user.username, | |
548 | user_email=user.email, message=message, use_rebase=use_rebase) |
|
548 | user_email=user.email, message=message, use_rebase=use_rebase) | |
549 | return merge_state |
|
549 | return merge_state | |
550 |
|
550 | |||
551 | def _comment_and_close_pr(self, pull_request, user, merge_state): |
|
551 | def _comment_and_close_pr(self, pull_request, user, merge_state): | |
552 | pull_request.merge_rev = merge_state.merge_ref.commit_id |
|
552 | pull_request.merge_rev = merge_state.merge_ref.commit_id | |
553 | pull_request.updated_on = datetime.datetime.now() |
|
553 | pull_request.updated_on = datetime.datetime.now() | |
554 |
|
554 | |||
555 | CommentsModel().create( |
|
555 | CommentsModel().create( | |
556 | text=unicode(_('Pull request merged and closed')), |
|
556 | text=unicode(_('Pull request merged and closed')), | |
557 | repo=pull_request.target_repo.repo_id, |
|
557 | repo=pull_request.target_repo.repo_id, | |
558 | user=user.user_id, |
|
558 | user=user.user_id, | |
559 | pull_request=pull_request.pull_request_id, |
|
559 | pull_request=pull_request.pull_request_id, | |
560 | f_path=None, |
|
560 | f_path=None, | |
561 | line_no=None, |
|
561 | line_no=None, | |
562 | closing_pr=True |
|
562 | closing_pr=True | |
563 | ) |
|
563 | ) | |
564 |
|
564 | |||
565 | Session().add(pull_request) |
|
565 | Session().add(pull_request) | |
566 | Session().flush() |
|
566 | Session().flush() | |
567 | # TODO: paris: replace invalidation with less radical solution |
|
567 | # TODO: paris: replace invalidation with less radical solution | |
568 | ScmModel().mark_for_invalidation( |
|
568 | ScmModel().mark_for_invalidation( | |
569 | pull_request.target_repo.repo_name) |
|
569 | pull_request.target_repo.repo_name) | |
570 | self._trigger_pull_request_hook(pull_request, user, 'merge') |
|
570 | self._trigger_pull_request_hook(pull_request, user, 'merge') | |
571 |
|
571 | |||
572 | def has_valid_update_type(self, pull_request): |
|
572 | def has_valid_update_type(self, pull_request): | |
573 | source_ref_type = pull_request.source_ref_parts.type |
|
573 | source_ref_type = pull_request.source_ref_parts.type | |
574 | return source_ref_type in ['book', 'branch', 'tag'] |
|
574 | return source_ref_type in ['book', 'branch', 'tag'] | |
575 |
|
575 | |||
576 | def update_commits(self, pull_request): |
|
576 | def update_commits(self, pull_request): | |
577 | """ |
|
577 | """ | |
578 | Get the updated list of commits for the pull request |
|
578 | Get the updated list of commits for the pull request | |
579 | and return the new pull request version and the list |
|
579 | and return the new pull request version and the list | |
580 | of commits processed by this update action |
|
580 | of commits processed by this update action | |
581 | """ |
|
581 | """ | |
582 | pull_request = self.__get_pull_request(pull_request) |
|
582 | pull_request = self.__get_pull_request(pull_request) | |
583 | source_ref_type = pull_request.source_ref_parts.type |
|
583 | source_ref_type = pull_request.source_ref_parts.type | |
584 | source_ref_name = pull_request.source_ref_parts.name |
|
584 | source_ref_name = pull_request.source_ref_parts.name | |
585 | source_ref_id = pull_request.source_ref_parts.commit_id |
|
585 | source_ref_id = pull_request.source_ref_parts.commit_id | |
586 |
|
586 | |||
587 | if not self.has_valid_update_type(pull_request): |
|
587 | if not self.has_valid_update_type(pull_request): | |
588 | log.debug( |
|
588 | log.debug( | |
589 | "Skipping update of pull request %s due to ref type: %s", |
|
589 | "Skipping update of pull request %s due to ref type: %s", | |
590 | pull_request, source_ref_type) |
|
590 | pull_request, source_ref_type) | |
591 | return UpdateResponse( |
|
591 | return UpdateResponse( | |
592 | executed=False, |
|
592 | executed=False, | |
593 | reason=UpdateFailureReason.WRONG_REF_TPYE, |
|
593 | reason=UpdateFailureReason.WRONG_REF_TPYE, | |
594 | old=pull_request, new=None, changes=None) |
|
594 | old=pull_request, new=None, changes=None) | |
595 |
|
595 | |||
596 | source_repo = pull_request.source_repo.scm_instance() |
|
596 | source_repo = pull_request.source_repo.scm_instance() | |
597 | try: |
|
597 | try: | |
598 | source_commit = source_repo.get_commit(commit_id=source_ref_name) |
|
598 | source_commit = source_repo.get_commit(commit_id=source_ref_name) | |
599 | except CommitDoesNotExistError: |
|
599 | except CommitDoesNotExistError: | |
600 | return UpdateResponse( |
|
600 | return UpdateResponse( | |
601 | executed=False, |
|
601 | executed=False, | |
602 | reason=UpdateFailureReason.MISSING_SOURCE_REF, |
|
602 | reason=UpdateFailureReason.MISSING_SOURCE_REF, | |
603 | old=pull_request, new=None, changes=None) |
|
603 | old=pull_request, new=None, changes=None) | |
604 |
|
604 | |||
605 | if source_ref_id == source_commit.raw_id: |
|
605 | if source_ref_id == source_commit.raw_id: | |
606 | log.debug("Nothing changed in pull request %s", pull_request) |
|
606 | log.debug("Nothing changed in pull request %s", pull_request) | |
607 | return UpdateResponse( |
|
607 | return UpdateResponse( | |
608 | executed=False, |
|
608 | executed=False, | |
609 | reason=UpdateFailureReason.NO_CHANGE, |
|
609 | reason=UpdateFailureReason.NO_CHANGE, | |
610 | old=pull_request, new=None, changes=None) |
|
610 | old=pull_request, new=None, changes=None) | |
611 |
|
611 | |||
612 | # Finally there is a need for an update |
|
612 | # Finally there is a need for an update | |
613 | pull_request_version = self._create_version_from_snapshot(pull_request) |
|
613 | pull_request_version = self._create_version_from_snapshot(pull_request) | |
614 | self._link_comments_to_version(pull_request_version) |
|
614 | self._link_comments_to_version(pull_request_version) | |
615 |
|
615 | |||
616 | target_ref_type = pull_request.target_ref_parts.type |
|
616 | target_ref_type = pull_request.target_ref_parts.type | |
617 | target_ref_name = pull_request.target_ref_parts.name |
|
617 | target_ref_name = pull_request.target_ref_parts.name | |
618 | target_ref_id = pull_request.target_ref_parts.commit_id |
|
618 | target_ref_id = pull_request.target_ref_parts.commit_id | |
619 | target_repo = pull_request.target_repo.scm_instance() |
|
619 | target_repo = pull_request.target_repo.scm_instance() | |
620 |
|
620 | |||
621 | try: |
|
621 | try: | |
622 | if target_ref_type in ('tag', 'branch', 'book'): |
|
622 | if target_ref_type in ('tag', 'branch', 'book'): | |
623 | target_commit = target_repo.get_commit(target_ref_name) |
|
623 | target_commit = target_repo.get_commit(target_ref_name) | |
624 | else: |
|
624 | else: | |
625 | target_commit = target_repo.get_commit(target_ref_id) |
|
625 | target_commit = target_repo.get_commit(target_ref_id) | |
626 | except CommitDoesNotExistError: |
|
626 | except CommitDoesNotExistError: | |
627 | return UpdateResponse( |
|
627 | return UpdateResponse( | |
628 | executed=False, |
|
628 | executed=False, | |
629 | reason=UpdateFailureReason.MISSING_TARGET_REF, |
|
629 | reason=UpdateFailureReason.MISSING_TARGET_REF, | |
630 | old=pull_request, new=None, changes=None) |
|
630 | old=pull_request, new=None, changes=None) | |
631 |
|
631 | |||
632 | # re-compute commit ids |
|
632 | # re-compute commit ids | |
633 | old_commit_ids = set(pull_request.revisions) |
|
633 | old_commit_ids = set(pull_request.revisions) | |
634 | pre_load = ["author", "branch", "date", "message"] |
|
634 | pre_load = ["author", "branch", "date", "message"] | |
635 | commit_ranges = target_repo.compare( |
|
635 | commit_ranges = target_repo.compare( | |
636 | target_commit.raw_id, source_commit.raw_id, source_repo, merge=True, |
|
636 | target_commit.raw_id, source_commit.raw_id, source_repo, merge=True, | |
637 | pre_load=pre_load) |
|
637 | pre_load=pre_load) | |
638 |
|
638 | |||
639 | ancestor = target_repo.get_common_ancestor( |
|
639 | ancestor = target_repo.get_common_ancestor( | |
640 | target_commit.raw_id, source_commit.raw_id, source_repo) |
|
640 | target_commit.raw_id, source_commit.raw_id, source_repo) | |
641 |
|
641 | |||
642 | pull_request.source_ref = '%s:%s:%s' % ( |
|
642 | pull_request.source_ref = '%s:%s:%s' % ( | |
643 | source_ref_type, source_ref_name, source_commit.raw_id) |
|
643 | source_ref_type, source_ref_name, source_commit.raw_id) | |
644 | pull_request.target_ref = '%s:%s:%s' % ( |
|
644 | pull_request.target_ref = '%s:%s:%s' % ( | |
645 | target_ref_type, target_ref_name, ancestor) |
|
645 | target_ref_type, target_ref_name, ancestor) | |
646 | pull_request.revisions = [ |
|
646 | pull_request.revisions = [ | |
647 | commit.raw_id for commit in reversed(commit_ranges)] |
|
647 | commit.raw_id for commit in reversed(commit_ranges)] | |
648 | pull_request.updated_on = datetime.datetime.now() |
|
648 | pull_request.updated_on = datetime.datetime.now() | |
649 | Session().add(pull_request) |
|
649 | Session().add(pull_request) | |
650 | new_commit_ids = set(pull_request.revisions) |
|
650 | new_commit_ids = set(pull_request.revisions) | |
651 |
|
651 | |||
652 | changes = self._calculate_commit_id_changes( |
|
652 | changes = self._calculate_commit_id_changes( | |
653 | old_commit_ids, new_commit_ids) |
|
653 | old_commit_ids, new_commit_ids) | |
654 |
|
654 | |||
655 | old_diff_data, new_diff_data = self._generate_update_diffs( |
|
655 | old_diff_data, new_diff_data = self._generate_update_diffs( | |
656 | pull_request, pull_request_version) |
|
656 | pull_request, pull_request_version) | |
657 |
|
657 | |||
658 | CommentsModel().outdate_comments( |
|
658 | CommentsModel().outdate_comments( | |
659 | pull_request, old_diff_data=old_diff_data, |
|
659 | pull_request, old_diff_data=old_diff_data, | |
660 | new_diff_data=new_diff_data) |
|
660 | new_diff_data=new_diff_data) | |
661 |
|
661 | |||
662 | file_changes = self._calculate_file_changes( |
|
662 | file_changes = self._calculate_file_changes( | |
663 | old_diff_data, new_diff_data) |
|
663 | old_diff_data, new_diff_data) | |
664 |
|
664 | |||
665 | # Add an automatic comment to the pull request |
|
665 | # Add an automatic comment to the pull request | |
666 | update_comment = CommentsModel().create( |
|
666 | update_comment = CommentsModel().create( | |
667 | text=self._render_update_message(changes, file_changes), |
|
667 | text=self._render_update_message(changes, file_changes), | |
668 | repo=pull_request.target_repo, |
|
668 | repo=pull_request.target_repo, | |
669 | user=pull_request.author, |
|
669 | user=pull_request.author, | |
670 | pull_request=pull_request, |
|
670 | pull_request=pull_request, | |
671 | send_email=False, renderer=DEFAULT_COMMENTS_RENDERER) |
|
671 | send_email=False, renderer=DEFAULT_COMMENTS_RENDERER) | |
672 |
|
672 | |||
673 | # Update status to "Under Review" for added commits |
|
673 | # Update status to "Under Review" for added commits | |
674 | for commit_id in changes.added: |
|
674 | for commit_id in changes.added: | |
675 | ChangesetStatusModel().set_status( |
|
675 | ChangesetStatusModel().set_status( | |
676 | repo=pull_request.source_repo, |
|
676 | repo=pull_request.source_repo, | |
677 | status=ChangesetStatus.STATUS_UNDER_REVIEW, |
|
677 | status=ChangesetStatus.STATUS_UNDER_REVIEW, | |
678 | comment=update_comment, |
|
678 | comment=update_comment, | |
679 | user=pull_request.author, |
|
679 | user=pull_request.author, | |
680 | pull_request=pull_request, |
|
680 | pull_request=pull_request, | |
681 | revision=commit_id) |
|
681 | revision=commit_id) | |
682 |
|
682 | |||
683 | log.debug( |
|
683 | log.debug( | |
684 | 'Updated pull request %s, added_ids: %s, common_ids: %s, ' |
|
684 | 'Updated pull request %s, added_ids: %s, common_ids: %s, ' | |
685 | 'removed_ids: %s', pull_request.pull_request_id, |
|
685 | 'removed_ids: %s', pull_request.pull_request_id, | |
686 | changes.added, changes.common, changes.removed) |
|
686 | changes.added, changes.common, changes.removed) | |
687 | log.debug('Updated pull request with the following file changes: %s', |
|
687 | log.debug('Updated pull request with the following file changes: %s', | |
688 | file_changes) |
|
688 | file_changes) | |
689 |
|
689 | |||
690 | log.info( |
|
690 | log.info( | |
691 | "Updated pull request %s from commit %s to commit %s, " |
|
691 | "Updated pull request %s from commit %s to commit %s, " | |
692 | "stored new version %s of this pull request.", |
|
692 | "stored new version %s of this pull request.", | |
693 | pull_request.pull_request_id, source_ref_id, |
|
693 | pull_request.pull_request_id, source_ref_id, | |
694 | pull_request.source_ref_parts.commit_id, |
|
694 | pull_request.source_ref_parts.commit_id, | |
695 | pull_request_version.pull_request_version_id) |
|
695 | pull_request_version.pull_request_version_id) | |
696 | Session().commit() |
|
696 | Session().commit() | |
697 | self._trigger_pull_request_hook(pull_request, pull_request.author, |
|
697 | self._trigger_pull_request_hook(pull_request, pull_request.author, | |
698 | 'update') |
|
698 | 'update') | |
699 |
|
699 | |||
700 | return UpdateResponse( |
|
700 | return UpdateResponse( | |
701 | executed=True, reason=UpdateFailureReason.NONE, |
|
701 | executed=True, reason=UpdateFailureReason.NONE, | |
702 | old=pull_request, new=pull_request_version, changes=changes) |
|
702 | old=pull_request, new=pull_request_version, changes=changes) | |
703 |
|
703 | |||
704 | def _create_version_from_snapshot(self, pull_request): |
|
704 | def _create_version_from_snapshot(self, pull_request): | |
705 | version = PullRequestVersion() |
|
705 | version = PullRequestVersion() | |
706 | version.title = pull_request.title |
|
706 | version.title = pull_request.title | |
707 | version.description = pull_request.description |
|
707 | version.description = pull_request.description | |
708 | version.status = pull_request.status |
|
708 | version.status = pull_request.status | |
709 | version.created_on = datetime.datetime.now() |
|
709 | version.created_on = datetime.datetime.now() | |
710 | version.updated_on = pull_request.updated_on |
|
710 | version.updated_on = pull_request.updated_on | |
711 | version.user_id = pull_request.user_id |
|
711 | version.user_id = pull_request.user_id | |
712 | version.source_repo = pull_request.source_repo |
|
712 | version.source_repo = pull_request.source_repo | |
713 | version.source_ref = pull_request.source_ref |
|
713 | version.source_ref = pull_request.source_ref | |
714 | version.target_repo = pull_request.target_repo |
|
714 | version.target_repo = pull_request.target_repo | |
715 | version.target_ref = pull_request.target_ref |
|
715 | version.target_ref = pull_request.target_ref | |
716 |
|
716 | |||
717 | version._last_merge_source_rev = pull_request._last_merge_source_rev |
|
717 | version._last_merge_source_rev = pull_request._last_merge_source_rev | |
718 | version._last_merge_target_rev = pull_request._last_merge_target_rev |
|
718 | version._last_merge_target_rev = pull_request._last_merge_target_rev | |
719 | version._last_merge_status = pull_request._last_merge_status |
|
719 | version._last_merge_status = pull_request._last_merge_status | |
720 | version.shadow_merge_ref = pull_request.shadow_merge_ref |
|
720 | version.shadow_merge_ref = pull_request.shadow_merge_ref | |
721 | version.merge_rev = pull_request.merge_rev |
|
721 | version.merge_rev = pull_request.merge_rev | |
722 |
|
722 | |||
723 | version.revisions = pull_request.revisions |
|
723 | version.revisions = pull_request.revisions | |
724 | version.pull_request = pull_request |
|
724 | version.pull_request = pull_request | |
725 | Session().add(version) |
|
725 | Session().add(version) | |
726 | Session().flush() |
|
726 | Session().flush() | |
727 |
|
727 | |||
728 | return version |
|
728 | return version | |
729 |
|
729 | |||
730 | def _generate_update_diffs(self, pull_request, pull_request_version): |
|
730 | def _generate_update_diffs(self, pull_request, pull_request_version): | |
|
731 | ||||
731 | diff_context = ( |
|
732 | diff_context = ( | |
732 | self.DIFF_CONTEXT + |
|
733 | self.DIFF_CONTEXT + | |
733 | CommentsModel.needed_extra_diff_context()) |
|
734 | CommentsModel.needed_extra_diff_context()) | |
|
735 | ||||
|
736 | source_repo = pull_request_version.source_repo | |||
|
737 | source_ref_id = pull_request_version.source_ref_parts.commit_id | |||
|
738 | target_ref_id = pull_request_version.target_ref_parts.commit_id | |||
734 | old_diff = self._get_diff_from_pr_or_version( |
|
739 | old_diff = self._get_diff_from_pr_or_version( | |
735 |
|
|
740 | source_repo, source_ref_id, target_ref_id, context=diff_context) | |
|
741 | ||||
|
742 | source_repo = pull_request.source_repo | |||
|
743 | source_ref_id = pull_request.source_ref_parts.commit_id | |||
|
744 | target_ref_id = pull_request.target_ref_parts.commit_id | |||
|
745 | ||||
736 | new_diff = self._get_diff_from_pr_or_version( |
|
746 | new_diff = self._get_diff_from_pr_or_version( | |
737 |
|
|
747 | source_repo, source_ref_id, target_ref_id, context=diff_context) | |
738 |
|
748 | |||
739 | old_diff_data = diffs.DiffProcessor(old_diff) |
|
749 | old_diff_data = diffs.DiffProcessor(old_diff) | |
740 | old_diff_data.prepare() |
|
750 | old_diff_data.prepare() | |
741 | new_diff_data = diffs.DiffProcessor(new_diff) |
|
751 | new_diff_data = diffs.DiffProcessor(new_diff) | |
742 | new_diff_data.prepare() |
|
752 | new_diff_data.prepare() | |
743 |
|
753 | |||
744 | return old_diff_data, new_diff_data |
|
754 | return old_diff_data, new_diff_data | |
745 |
|
755 | |||
746 | def _link_comments_to_version(self, pull_request_version): |
|
756 | def _link_comments_to_version(self, pull_request_version): | |
747 | """ |
|
757 | """ | |
748 | Link all unlinked comments of this pull request to the given version. |
|
758 | Link all unlinked comments of this pull request to the given version. | |
749 |
|
759 | |||
750 | :param pull_request_version: The `PullRequestVersion` to which |
|
760 | :param pull_request_version: The `PullRequestVersion` to which | |
751 | the comments shall be linked. |
|
761 | the comments shall be linked. | |
752 |
|
762 | |||
753 | """ |
|
763 | """ | |
754 | pull_request = pull_request_version.pull_request |
|
764 | pull_request = pull_request_version.pull_request | |
755 | comments = ChangesetComment.query().filter( |
|
765 | comments = ChangesetComment.query().filter( | |
756 | # TODO: johbo: Should we query for the repo at all here? |
|
766 | # TODO: johbo: Should we query for the repo at all here? | |
757 | # Pending decision on how comments of PRs are to be related |
|
767 | # Pending decision on how comments of PRs are to be related | |
758 | # to either the source repo, the target repo or no repo at all. |
|
768 | # to either the source repo, the target repo or no repo at all. | |
759 | ChangesetComment.repo_id == pull_request.target_repo.repo_id, |
|
769 | ChangesetComment.repo_id == pull_request.target_repo.repo_id, | |
760 | ChangesetComment.pull_request == pull_request, |
|
770 | ChangesetComment.pull_request == pull_request, | |
761 | ChangesetComment.pull_request_version == None) |
|
771 | ChangesetComment.pull_request_version == None) | |
762 |
|
772 | |||
763 | # TODO: johbo: Find out why this breaks if it is done in a bulk |
|
773 | # TODO: johbo: Find out why this breaks if it is done in a bulk | |
764 | # operation. |
|
774 | # operation. | |
765 | for comment in comments: |
|
775 | for comment in comments: | |
766 | comment.pull_request_version_id = ( |
|
776 | comment.pull_request_version_id = ( | |
767 | pull_request_version.pull_request_version_id) |
|
777 | pull_request_version.pull_request_version_id) | |
768 | Session().add(comment) |
|
778 | Session().add(comment) | |
769 |
|
779 | |||
770 | def _calculate_commit_id_changes(self, old_ids, new_ids): |
|
780 | def _calculate_commit_id_changes(self, old_ids, new_ids): | |
771 |
added = new_ids |
|
781 | added = [x for x in new_ids if x not in old_ids] | |
772 | common = old_ids.intersection(new_ids) |
|
782 | common = [x for x in new_ids if x in old_ids] | |
773 |
removed = old_ids |
|
783 | removed = [x for x in old_ids if x not in new_ids] | |
774 | return ChangeTuple(added, common, removed) |
|
784 | total = new_ids | |
|
785 | return ChangeTuple(added, common, removed, total) | |||
775 |
|
786 | |||
776 | def _calculate_file_changes(self, old_diff_data, new_diff_data): |
|
787 | def _calculate_file_changes(self, old_diff_data, new_diff_data): | |
777 |
|
788 | |||
778 | old_files = OrderedDict() |
|
789 | old_files = OrderedDict() | |
779 | for diff_data in old_diff_data.parsed_diff: |
|
790 | for diff_data in old_diff_data.parsed_diff: | |
780 | old_files[diff_data['filename']] = md5_safe(diff_data['raw_diff']) |
|
791 | old_files[diff_data['filename']] = md5_safe(diff_data['raw_diff']) | |
781 |
|
792 | |||
782 | added_files = [] |
|
793 | added_files = [] | |
783 | modified_files = [] |
|
794 | modified_files = [] | |
784 | removed_files = [] |
|
795 | removed_files = [] | |
785 | for diff_data in new_diff_data.parsed_diff: |
|
796 | for diff_data in new_diff_data.parsed_diff: | |
786 | new_filename = diff_data['filename'] |
|
797 | new_filename = diff_data['filename'] | |
787 | new_hash = md5_safe(diff_data['raw_diff']) |
|
798 | new_hash = md5_safe(diff_data['raw_diff']) | |
788 |
|
799 | |||
789 | old_hash = old_files.get(new_filename) |
|
800 | old_hash = old_files.get(new_filename) | |
790 | if not old_hash: |
|
801 | if not old_hash: | |
791 | # file is not present in old diff, means it's added |
|
802 | # file is not present in old diff, means it's added | |
792 | added_files.append(new_filename) |
|
803 | added_files.append(new_filename) | |
793 | else: |
|
804 | else: | |
794 | if new_hash != old_hash: |
|
805 | if new_hash != old_hash: | |
795 | modified_files.append(new_filename) |
|
806 | modified_files.append(new_filename) | |
796 | # now remove a file from old, since we have seen it already |
|
807 | # now remove a file from old, since we have seen it already | |
797 | del old_files[new_filename] |
|
808 | del old_files[new_filename] | |
798 |
|
809 | |||
799 | # removed files is when there are present in old, but not in NEW, |
|
810 | # removed files is when there are present in old, but not in NEW, | |
800 | # since we remove old files that are present in new diff, left-overs |
|
811 | # since we remove old files that are present in new diff, left-overs | |
801 | # if any should be the removed files |
|
812 | # if any should be the removed files | |
802 | removed_files.extend(old_files.keys()) |
|
813 | removed_files.extend(old_files.keys()) | |
803 |
|
814 | |||
804 | return FileChangeTuple(added_files, modified_files, removed_files) |
|
815 | return FileChangeTuple(added_files, modified_files, removed_files) | |
805 |
|
816 | |||
806 | def _render_update_message(self, changes, file_changes): |
|
817 | def _render_update_message(self, changes, file_changes): | |
807 | """ |
|
818 | """ | |
808 | render the message using DEFAULT_COMMENTS_RENDERER (RST renderer), |
|
819 | render the message using DEFAULT_COMMENTS_RENDERER (RST renderer), | |
809 | so it's always looking the same disregarding on which default |
|
820 | so it's always looking the same disregarding on which default | |
810 | renderer system is using. |
|
821 | renderer system is using. | |
811 |
|
822 | |||
812 | :param changes: changes named tuple |
|
823 | :param changes: changes named tuple | |
813 | :param file_changes: file changes named tuple |
|
824 | :param file_changes: file changes named tuple | |
814 |
|
825 | |||
815 | """ |
|
826 | """ | |
816 | new_status = ChangesetStatus.get_status_lbl( |
|
827 | new_status = ChangesetStatus.get_status_lbl( | |
817 | ChangesetStatus.STATUS_UNDER_REVIEW) |
|
828 | ChangesetStatus.STATUS_UNDER_REVIEW) | |
818 |
|
829 | |||
819 | changed_files = ( |
|
830 | changed_files = ( | |
820 | file_changes.added + file_changes.modified + file_changes.removed) |
|
831 | file_changes.added + file_changes.modified + file_changes.removed) | |
821 |
|
832 | |||
822 | params = { |
|
833 | params = { | |
823 | 'under_review_label': new_status, |
|
834 | 'under_review_label': new_status, | |
824 | 'added_commits': changes.added, |
|
835 | 'added_commits': changes.added, | |
825 | 'removed_commits': changes.removed, |
|
836 | 'removed_commits': changes.removed, | |
826 | 'changed_files': changed_files, |
|
837 | 'changed_files': changed_files, | |
827 | 'added_files': file_changes.added, |
|
838 | 'added_files': file_changes.added, | |
828 | 'modified_files': file_changes.modified, |
|
839 | 'modified_files': file_changes.modified, | |
829 | 'removed_files': file_changes.removed, |
|
840 | 'removed_files': file_changes.removed, | |
830 | } |
|
841 | } | |
831 | renderer = RstTemplateRenderer() |
|
842 | renderer = RstTemplateRenderer() | |
832 | return renderer.render('pull_request_update.mako', **params) |
|
843 | return renderer.render('pull_request_update.mako', **params) | |
833 |
|
844 | |||
834 | def edit(self, pull_request, title, description): |
|
845 | def edit(self, pull_request, title, description): | |
835 | pull_request = self.__get_pull_request(pull_request) |
|
846 | pull_request = self.__get_pull_request(pull_request) | |
836 | if pull_request.is_closed(): |
|
847 | if pull_request.is_closed(): | |
837 | raise ValueError('This pull request is closed') |
|
848 | raise ValueError('This pull request is closed') | |
838 | if title: |
|
849 | if title: | |
839 | pull_request.title = title |
|
850 | pull_request.title = title | |
840 | pull_request.description = description |
|
851 | pull_request.description = description | |
841 | pull_request.updated_on = datetime.datetime.now() |
|
852 | pull_request.updated_on = datetime.datetime.now() | |
842 | Session().add(pull_request) |
|
853 | Session().add(pull_request) | |
843 |
|
854 | |||
844 | def update_reviewers(self, pull_request, reviewer_data): |
|
855 | def update_reviewers(self, pull_request, reviewer_data): | |
845 | """ |
|
856 | """ | |
846 | Update the reviewers in the pull request |
|
857 | Update the reviewers in the pull request | |
847 |
|
858 | |||
848 | :param pull_request: the pr to update |
|
859 | :param pull_request: the pr to update | |
849 | :param reviewer_data: list of tuples [(user, ['reason1', 'reason2'])] |
|
860 | :param reviewer_data: list of tuples [(user, ['reason1', 'reason2'])] | |
850 | """ |
|
861 | """ | |
851 |
|
862 | |||
852 | reviewers_reasons = {} |
|
863 | reviewers_reasons = {} | |
853 | for user_id, reasons in reviewer_data: |
|
864 | for user_id, reasons in reviewer_data: | |
854 | if isinstance(user_id, (int, basestring)): |
|
865 | if isinstance(user_id, (int, basestring)): | |
855 | user_id = self._get_user(user_id).user_id |
|
866 | user_id = self._get_user(user_id).user_id | |
856 | reviewers_reasons[user_id] = reasons |
|
867 | reviewers_reasons[user_id] = reasons | |
857 |
|
868 | |||
858 | reviewers_ids = set(reviewers_reasons.keys()) |
|
869 | reviewers_ids = set(reviewers_reasons.keys()) | |
859 | pull_request = self.__get_pull_request(pull_request) |
|
870 | pull_request = self.__get_pull_request(pull_request) | |
860 | current_reviewers = PullRequestReviewers.query()\ |
|
871 | current_reviewers = PullRequestReviewers.query()\ | |
861 | .filter(PullRequestReviewers.pull_request == |
|
872 | .filter(PullRequestReviewers.pull_request == | |
862 | pull_request).all() |
|
873 | pull_request).all() | |
863 | current_reviewers_ids = set([x.user.user_id for x in current_reviewers]) |
|
874 | current_reviewers_ids = set([x.user.user_id for x in current_reviewers]) | |
864 |
|
875 | |||
865 | ids_to_add = reviewers_ids.difference(current_reviewers_ids) |
|
876 | ids_to_add = reviewers_ids.difference(current_reviewers_ids) | |
866 | ids_to_remove = current_reviewers_ids.difference(reviewers_ids) |
|
877 | ids_to_remove = current_reviewers_ids.difference(reviewers_ids) | |
867 |
|
878 | |||
868 | log.debug("Adding %s reviewers", ids_to_add) |
|
879 | log.debug("Adding %s reviewers", ids_to_add) | |
869 | log.debug("Removing %s reviewers", ids_to_remove) |
|
880 | log.debug("Removing %s reviewers", ids_to_remove) | |
870 | changed = False |
|
881 | changed = False | |
871 | for uid in ids_to_add: |
|
882 | for uid in ids_to_add: | |
872 | changed = True |
|
883 | changed = True | |
873 | _usr = self._get_user(uid) |
|
884 | _usr = self._get_user(uid) | |
874 | reasons = reviewers_reasons[uid] |
|
885 | reasons = reviewers_reasons[uid] | |
875 | reviewer = PullRequestReviewers(_usr, pull_request, reasons) |
|
886 | reviewer = PullRequestReviewers(_usr, pull_request, reasons) | |
876 | Session().add(reviewer) |
|
887 | Session().add(reviewer) | |
877 |
|
888 | |||
878 | self.notify_reviewers(pull_request, ids_to_add) |
|
889 | self.notify_reviewers(pull_request, ids_to_add) | |
879 |
|
890 | |||
880 | for uid in ids_to_remove: |
|
891 | for uid in ids_to_remove: | |
881 | changed = True |
|
892 | changed = True | |
882 | reviewer = PullRequestReviewers.query()\ |
|
893 | reviewer = PullRequestReviewers.query()\ | |
883 | .filter(PullRequestReviewers.user_id == uid, |
|
894 | .filter(PullRequestReviewers.user_id == uid, | |
884 | PullRequestReviewers.pull_request == pull_request)\ |
|
895 | PullRequestReviewers.pull_request == pull_request)\ | |
885 | .scalar() |
|
896 | .scalar() | |
886 | if reviewer: |
|
897 | if reviewer: | |
887 | Session().delete(reviewer) |
|
898 | Session().delete(reviewer) | |
888 | if changed: |
|
899 | if changed: | |
889 | pull_request.updated_on = datetime.datetime.now() |
|
900 | pull_request.updated_on = datetime.datetime.now() | |
890 | Session().add(pull_request) |
|
901 | Session().add(pull_request) | |
891 |
|
902 | |||
892 | return ids_to_add, ids_to_remove |
|
903 | return ids_to_add, ids_to_remove | |
893 |
|
904 | |||
894 | def get_url(self, pull_request): |
|
905 | def get_url(self, pull_request): | |
895 | return h.url('pullrequest_show', |
|
906 | return h.url('pullrequest_show', | |
896 | repo_name=safe_str(pull_request.target_repo.repo_name), |
|
907 | repo_name=safe_str(pull_request.target_repo.repo_name), | |
897 | pull_request_id=pull_request.pull_request_id, |
|
908 | pull_request_id=pull_request.pull_request_id, | |
898 | qualified=True) |
|
909 | qualified=True) | |
899 |
|
910 | |||
900 | def get_shadow_clone_url(self, pull_request): |
|
911 | def get_shadow_clone_url(self, pull_request): | |
901 | """ |
|
912 | """ | |
902 | Returns qualified url pointing to the shadow repository. If this pull |
|
913 | Returns qualified url pointing to the shadow repository. If this pull | |
903 | request is closed there is no shadow repository and ``None`` will be |
|
914 | request is closed there is no shadow repository and ``None`` will be | |
904 | returned. |
|
915 | returned. | |
905 | """ |
|
916 | """ | |
906 | if pull_request.is_closed(): |
|
917 | if pull_request.is_closed(): | |
907 | return None |
|
918 | return None | |
908 | else: |
|
919 | else: | |
909 | pr_url = urllib.unquote(self.get_url(pull_request)) |
|
920 | pr_url = urllib.unquote(self.get_url(pull_request)) | |
910 | return safe_unicode('{pr_url}/repository'.format(pr_url=pr_url)) |
|
921 | return safe_unicode('{pr_url}/repository'.format(pr_url=pr_url)) | |
911 |
|
922 | |||
912 | def notify_reviewers(self, pull_request, reviewers_ids): |
|
923 | def notify_reviewers(self, pull_request, reviewers_ids): | |
913 | # notification to reviewers |
|
924 | # notification to reviewers | |
914 | if not reviewers_ids: |
|
925 | if not reviewers_ids: | |
915 | return |
|
926 | return | |
916 |
|
927 | |||
917 | pull_request_obj = pull_request |
|
928 | pull_request_obj = pull_request | |
918 | # get the current participants of this pull request |
|
929 | # get the current participants of this pull request | |
919 | recipients = reviewers_ids |
|
930 | recipients = reviewers_ids | |
920 | notification_type = EmailNotificationModel.TYPE_PULL_REQUEST |
|
931 | notification_type = EmailNotificationModel.TYPE_PULL_REQUEST | |
921 |
|
932 | |||
922 | pr_source_repo = pull_request_obj.source_repo |
|
933 | pr_source_repo = pull_request_obj.source_repo | |
923 | pr_target_repo = pull_request_obj.target_repo |
|
934 | pr_target_repo = pull_request_obj.target_repo | |
924 |
|
935 | |||
925 | pr_url = h.url( |
|
936 | pr_url = h.url( | |
926 | 'pullrequest_show', |
|
937 | 'pullrequest_show', | |
927 | repo_name=pr_target_repo.repo_name, |
|
938 | repo_name=pr_target_repo.repo_name, | |
928 | pull_request_id=pull_request_obj.pull_request_id, |
|
939 | pull_request_id=pull_request_obj.pull_request_id, | |
929 | qualified=True,) |
|
940 | qualified=True,) | |
930 |
|
941 | |||
931 | # set some variables for email notification |
|
942 | # set some variables for email notification | |
932 | pr_target_repo_url = h.url( |
|
943 | pr_target_repo_url = h.url( | |
933 | 'summary_home', |
|
944 | 'summary_home', | |
934 | repo_name=pr_target_repo.repo_name, |
|
945 | repo_name=pr_target_repo.repo_name, | |
935 | qualified=True) |
|
946 | qualified=True) | |
936 |
|
947 | |||
937 | pr_source_repo_url = h.url( |
|
948 | pr_source_repo_url = h.url( | |
938 | 'summary_home', |
|
949 | 'summary_home', | |
939 | repo_name=pr_source_repo.repo_name, |
|
950 | repo_name=pr_source_repo.repo_name, | |
940 | qualified=True) |
|
951 | qualified=True) | |
941 |
|
952 | |||
942 | # pull request specifics |
|
953 | # pull request specifics | |
943 | pull_request_commits = [ |
|
954 | pull_request_commits = [ | |
944 | (x.raw_id, x.message) |
|
955 | (x.raw_id, x.message) | |
945 | for x in map(pr_source_repo.get_commit, pull_request.revisions)] |
|
956 | for x in map(pr_source_repo.get_commit, pull_request.revisions)] | |
946 |
|
957 | |||
947 | kwargs = { |
|
958 | kwargs = { | |
948 | 'user': pull_request.author, |
|
959 | 'user': pull_request.author, | |
949 | 'pull_request': pull_request_obj, |
|
960 | 'pull_request': pull_request_obj, | |
950 | 'pull_request_commits': pull_request_commits, |
|
961 | 'pull_request_commits': pull_request_commits, | |
951 |
|
962 | |||
952 | 'pull_request_target_repo': pr_target_repo, |
|
963 | 'pull_request_target_repo': pr_target_repo, | |
953 | 'pull_request_target_repo_url': pr_target_repo_url, |
|
964 | 'pull_request_target_repo_url': pr_target_repo_url, | |
954 |
|
965 | |||
955 | 'pull_request_source_repo': pr_source_repo, |
|
966 | 'pull_request_source_repo': pr_source_repo, | |
956 | 'pull_request_source_repo_url': pr_source_repo_url, |
|
967 | 'pull_request_source_repo_url': pr_source_repo_url, | |
957 |
|
968 | |||
958 | 'pull_request_url': pr_url, |
|
969 | 'pull_request_url': pr_url, | |
959 | } |
|
970 | } | |
960 |
|
971 | |||
961 | # pre-generate the subject for notification itself |
|
972 | # pre-generate the subject for notification itself | |
962 | (subject, |
|
973 | (subject, | |
963 | _h, _e, # we don't care about those |
|
974 | _h, _e, # we don't care about those | |
964 | body_plaintext) = EmailNotificationModel().render_email( |
|
975 | body_plaintext) = EmailNotificationModel().render_email( | |
965 | notification_type, **kwargs) |
|
976 | notification_type, **kwargs) | |
966 |
|
977 | |||
967 | # create notification objects, and emails |
|
978 | # create notification objects, and emails | |
968 | NotificationModel().create( |
|
979 | NotificationModel().create( | |
969 | created_by=pull_request.author, |
|
980 | created_by=pull_request.author, | |
970 | notification_subject=subject, |
|
981 | notification_subject=subject, | |
971 | notification_body=body_plaintext, |
|
982 | notification_body=body_plaintext, | |
972 | notification_type=notification_type, |
|
983 | notification_type=notification_type, | |
973 | recipients=recipients, |
|
984 | recipients=recipients, | |
974 | email_kwargs=kwargs, |
|
985 | email_kwargs=kwargs, | |
975 | ) |
|
986 | ) | |
976 |
|
987 | |||
977 | def delete(self, pull_request): |
|
988 | def delete(self, pull_request): | |
978 | pull_request = self.__get_pull_request(pull_request) |
|
989 | pull_request = self.__get_pull_request(pull_request) | |
979 | self._cleanup_merge_workspace(pull_request) |
|
990 | self._cleanup_merge_workspace(pull_request) | |
980 | Session().delete(pull_request) |
|
991 | Session().delete(pull_request) | |
981 |
|
992 | |||
982 | def close_pull_request(self, pull_request, user): |
|
993 | def close_pull_request(self, pull_request, user): | |
983 | pull_request = self.__get_pull_request(pull_request) |
|
994 | pull_request = self.__get_pull_request(pull_request) | |
984 | self._cleanup_merge_workspace(pull_request) |
|
995 | self._cleanup_merge_workspace(pull_request) | |
985 | pull_request.status = PullRequest.STATUS_CLOSED |
|
996 | pull_request.status = PullRequest.STATUS_CLOSED | |
986 | pull_request.updated_on = datetime.datetime.now() |
|
997 | pull_request.updated_on = datetime.datetime.now() | |
987 | Session().add(pull_request) |
|
998 | Session().add(pull_request) | |
988 | self._trigger_pull_request_hook( |
|
999 | self._trigger_pull_request_hook( | |
989 | pull_request, pull_request.author, 'close') |
|
1000 | pull_request, pull_request.author, 'close') | |
990 | self._log_action('user_closed_pull_request', user, pull_request) |
|
1001 | self._log_action('user_closed_pull_request', user, pull_request) | |
991 |
|
1002 | |||
992 | def close_pull_request_with_comment(self, pull_request, user, repo, |
|
1003 | def close_pull_request_with_comment(self, pull_request, user, repo, | |
993 | message=None): |
|
1004 | message=None): | |
994 | status = ChangesetStatus.STATUS_REJECTED |
|
1005 | status = ChangesetStatus.STATUS_REJECTED | |
995 |
|
1006 | |||
996 | if not message: |
|
1007 | if not message: | |
997 | message = ( |
|
1008 | message = ( | |
998 | _('Status change %(transition_icon)s %(status)s') % { |
|
1009 | _('Status change %(transition_icon)s %(status)s') % { | |
999 | 'transition_icon': '>', |
|
1010 | 'transition_icon': '>', | |
1000 | 'status': ChangesetStatus.get_status_lbl(status)}) |
|
1011 | 'status': ChangesetStatus.get_status_lbl(status)}) | |
1001 |
|
1012 | |||
1002 | internal_message = _('Closing with') + ' ' + message |
|
1013 | internal_message = _('Closing with') + ' ' + message | |
1003 |
|
1014 | |||
1004 | comm = CommentsModel().create( |
|
1015 | comm = CommentsModel().create( | |
1005 | text=internal_message, |
|
1016 | text=internal_message, | |
1006 | repo=repo.repo_id, |
|
1017 | repo=repo.repo_id, | |
1007 | user=user.user_id, |
|
1018 | user=user.user_id, | |
1008 | pull_request=pull_request.pull_request_id, |
|
1019 | pull_request=pull_request.pull_request_id, | |
1009 | f_path=None, |
|
1020 | f_path=None, | |
1010 | line_no=None, |
|
1021 | line_no=None, | |
1011 | status_change=ChangesetStatus.get_status_lbl(status), |
|
1022 | status_change=ChangesetStatus.get_status_lbl(status), | |
1012 | status_change_type=status, |
|
1023 | status_change_type=status, | |
1013 | closing_pr=True |
|
1024 | closing_pr=True | |
1014 | ) |
|
1025 | ) | |
1015 |
|
1026 | |||
1016 | ChangesetStatusModel().set_status( |
|
1027 | ChangesetStatusModel().set_status( | |
1017 | repo.repo_id, |
|
1028 | repo.repo_id, | |
1018 | status, |
|
1029 | status, | |
1019 | user.user_id, |
|
1030 | user.user_id, | |
1020 | comm, |
|
1031 | comm, | |
1021 | pull_request=pull_request.pull_request_id |
|
1032 | pull_request=pull_request.pull_request_id | |
1022 | ) |
|
1033 | ) | |
1023 | Session().flush() |
|
1034 | Session().flush() | |
1024 |
|
1035 | |||
1025 | PullRequestModel().close_pull_request( |
|
1036 | PullRequestModel().close_pull_request( | |
1026 | pull_request.pull_request_id, user) |
|
1037 | pull_request.pull_request_id, user) | |
1027 |
|
1038 | |||
1028 | def merge_status(self, pull_request): |
|
1039 | def merge_status(self, pull_request): | |
1029 | if not self._is_merge_enabled(pull_request): |
|
1040 | if not self._is_merge_enabled(pull_request): | |
1030 | return False, _('Server-side pull request merging is disabled.') |
|
1041 | return False, _('Server-side pull request merging is disabled.') | |
1031 | if pull_request.is_closed(): |
|
1042 | if pull_request.is_closed(): | |
1032 | return False, _('This pull request is closed.') |
|
1043 | return False, _('This pull request is closed.') | |
1033 | merge_possible, msg = self._check_repo_requirements( |
|
1044 | merge_possible, msg = self._check_repo_requirements( | |
1034 | target=pull_request.target_repo, source=pull_request.source_repo) |
|
1045 | target=pull_request.target_repo, source=pull_request.source_repo) | |
1035 | if not merge_possible: |
|
1046 | if not merge_possible: | |
1036 | return merge_possible, msg |
|
1047 | return merge_possible, msg | |
1037 |
|
1048 | |||
1038 | try: |
|
1049 | try: | |
1039 | resp = self._try_merge(pull_request) |
|
1050 | resp = self._try_merge(pull_request) | |
1040 | log.debug("Merge response: %s", resp) |
|
1051 | log.debug("Merge response: %s", resp) | |
1041 | status = resp.possible, self.merge_status_message( |
|
1052 | status = resp.possible, self.merge_status_message( | |
1042 | resp.failure_reason) |
|
1053 | resp.failure_reason) | |
1043 | except NotImplementedError: |
|
1054 | except NotImplementedError: | |
1044 | status = False, _('Pull request merging is not supported.') |
|
1055 | status = False, _('Pull request merging is not supported.') | |
1045 |
|
1056 | |||
1046 | return status |
|
1057 | return status | |
1047 |
|
1058 | |||
1048 | def _check_repo_requirements(self, target, source): |
|
1059 | def _check_repo_requirements(self, target, source): | |
1049 | """ |
|
1060 | """ | |
1050 | Check if `target` and `source` have compatible requirements. |
|
1061 | Check if `target` and `source` have compatible requirements. | |
1051 |
|
1062 | |||
1052 | Currently this is just checking for largefiles. |
|
1063 | Currently this is just checking for largefiles. | |
1053 | """ |
|
1064 | """ | |
1054 | target_has_largefiles = self._has_largefiles(target) |
|
1065 | target_has_largefiles = self._has_largefiles(target) | |
1055 | source_has_largefiles = self._has_largefiles(source) |
|
1066 | source_has_largefiles = self._has_largefiles(source) | |
1056 | merge_possible = True |
|
1067 | merge_possible = True | |
1057 | message = u'' |
|
1068 | message = u'' | |
1058 |
|
1069 | |||
1059 | if target_has_largefiles != source_has_largefiles: |
|
1070 | if target_has_largefiles != source_has_largefiles: | |
1060 | merge_possible = False |
|
1071 | merge_possible = False | |
1061 | if source_has_largefiles: |
|
1072 | if source_has_largefiles: | |
1062 | message = _( |
|
1073 | message = _( | |
1063 | 'Target repository large files support is disabled.') |
|
1074 | 'Target repository large files support is disabled.') | |
1064 | else: |
|
1075 | else: | |
1065 | message = _( |
|
1076 | message = _( | |
1066 | 'Source repository large files support is disabled.') |
|
1077 | 'Source repository large files support is disabled.') | |
1067 |
|
1078 | |||
1068 | return merge_possible, message |
|
1079 | return merge_possible, message | |
1069 |
|
1080 | |||
1070 | def _has_largefiles(self, repo): |
|
1081 | def _has_largefiles(self, repo): | |
1071 | largefiles_ui = VcsSettingsModel(repo=repo).get_ui_settings( |
|
1082 | largefiles_ui = VcsSettingsModel(repo=repo).get_ui_settings( | |
1072 | 'extensions', 'largefiles') |
|
1083 | 'extensions', 'largefiles') | |
1073 | return largefiles_ui and largefiles_ui[0].active |
|
1084 | return largefiles_ui and largefiles_ui[0].active | |
1074 |
|
1085 | |||
1075 | def _try_merge(self, pull_request): |
|
1086 | def _try_merge(self, pull_request): | |
1076 | """ |
|
1087 | """ | |
1077 | Try to merge the pull request and return the merge status. |
|
1088 | Try to merge the pull request and return the merge status. | |
1078 | """ |
|
1089 | """ | |
1079 | log.debug( |
|
1090 | log.debug( | |
1080 | "Trying out if the pull request %s can be merged.", |
|
1091 | "Trying out if the pull request %s can be merged.", | |
1081 | pull_request.pull_request_id) |
|
1092 | pull_request.pull_request_id) | |
1082 | target_vcs = pull_request.target_repo.scm_instance() |
|
1093 | target_vcs = pull_request.target_repo.scm_instance() | |
1083 |
|
1094 | |||
1084 | # Refresh the target reference. |
|
1095 | # Refresh the target reference. | |
1085 | try: |
|
1096 | try: | |
1086 | target_ref = self._refresh_reference( |
|
1097 | target_ref = self._refresh_reference( | |
1087 | pull_request.target_ref_parts, target_vcs) |
|
1098 | pull_request.target_ref_parts, target_vcs) | |
1088 | except CommitDoesNotExistError: |
|
1099 | except CommitDoesNotExistError: | |
1089 | merge_state = MergeResponse( |
|
1100 | merge_state = MergeResponse( | |
1090 | False, False, None, MergeFailureReason.MISSING_TARGET_REF) |
|
1101 | False, False, None, MergeFailureReason.MISSING_TARGET_REF) | |
1091 | return merge_state |
|
1102 | return merge_state | |
1092 |
|
1103 | |||
1093 | target_locked = pull_request.target_repo.locked |
|
1104 | target_locked = pull_request.target_repo.locked | |
1094 | if target_locked and target_locked[0]: |
|
1105 | if target_locked and target_locked[0]: | |
1095 | log.debug("The target repository is locked.") |
|
1106 | log.debug("The target repository is locked.") | |
1096 | merge_state = MergeResponse( |
|
1107 | merge_state = MergeResponse( | |
1097 | False, False, None, MergeFailureReason.TARGET_IS_LOCKED) |
|
1108 | False, False, None, MergeFailureReason.TARGET_IS_LOCKED) | |
1098 | elif self._needs_merge_state_refresh(pull_request, target_ref): |
|
1109 | elif self._needs_merge_state_refresh(pull_request, target_ref): | |
1099 | log.debug("Refreshing the merge status of the repository.") |
|
1110 | log.debug("Refreshing the merge status of the repository.") | |
1100 | merge_state = self._refresh_merge_state( |
|
1111 | merge_state = self._refresh_merge_state( | |
1101 | pull_request, target_vcs, target_ref) |
|
1112 | pull_request, target_vcs, target_ref) | |
1102 | else: |
|
1113 | else: | |
1103 | possible = pull_request.\ |
|
1114 | possible = pull_request.\ | |
1104 | _last_merge_status == MergeFailureReason.NONE |
|
1115 | _last_merge_status == MergeFailureReason.NONE | |
1105 | merge_state = MergeResponse( |
|
1116 | merge_state = MergeResponse( | |
1106 | possible, False, None, pull_request._last_merge_status) |
|
1117 | possible, False, None, pull_request._last_merge_status) | |
1107 |
|
1118 | |||
1108 | return merge_state |
|
1119 | return merge_state | |
1109 |
|
1120 | |||
1110 | def _refresh_reference(self, reference, vcs_repository): |
|
1121 | def _refresh_reference(self, reference, vcs_repository): | |
1111 | if reference.type in ('branch', 'book'): |
|
1122 | if reference.type in ('branch', 'book'): | |
1112 | name_or_id = reference.name |
|
1123 | name_or_id = reference.name | |
1113 | else: |
|
1124 | else: | |
1114 | name_or_id = reference.commit_id |
|
1125 | name_or_id = reference.commit_id | |
1115 | refreshed_commit = vcs_repository.get_commit(name_or_id) |
|
1126 | refreshed_commit = vcs_repository.get_commit(name_or_id) | |
1116 | refreshed_reference = Reference( |
|
1127 | refreshed_reference = Reference( | |
1117 | reference.type, reference.name, refreshed_commit.raw_id) |
|
1128 | reference.type, reference.name, refreshed_commit.raw_id) | |
1118 | return refreshed_reference |
|
1129 | return refreshed_reference | |
1119 |
|
1130 | |||
1120 | def _needs_merge_state_refresh(self, pull_request, target_reference): |
|
1131 | def _needs_merge_state_refresh(self, pull_request, target_reference): | |
1121 | return not( |
|
1132 | return not( | |
1122 | pull_request.revisions and |
|
1133 | pull_request.revisions and | |
1123 | pull_request.revisions[0] == pull_request._last_merge_source_rev and |
|
1134 | pull_request.revisions[0] == pull_request._last_merge_source_rev and | |
1124 | target_reference.commit_id == pull_request._last_merge_target_rev) |
|
1135 | target_reference.commit_id == pull_request._last_merge_target_rev) | |
1125 |
|
1136 | |||
1126 | def _refresh_merge_state(self, pull_request, target_vcs, target_reference): |
|
1137 | def _refresh_merge_state(self, pull_request, target_vcs, target_reference): | |
1127 | workspace_id = self._workspace_id(pull_request) |
|
1138 | workspace_id = self._workspace_id(pull_request) | |
1128 | source_vcs = pull_request.source_repo.scm_instance() |
|
1139 | source_vcs = pull_request.source_repo.scm_instance() | |
1129 | use_rebase = self._use_rebase_for_merging(pull_request) |
|
1140 | use_rebase = self._use_rebase_for_merging(pull_request) | |
1130 | merge_state = target_vcs.merge( |
|
1141 | merge_state = target_vcs.merge( | |
1131 | target_reference, source_vcs, pull_request.source_ref_parts, |
|
1142 | target_reference, source_vcs, pull_request.source_ref_parts, | |
1132 | workspace_id, dry_run=True, use_rebase=use_rebase) |
|
1143 | workspace_id, dry_run=True, use_rebase=use_rebase) | |
1133 |
|
1144 | |||
1134 | # Do not store the response if there was an unknown error. |
|
1145 | # Do not store the response if there was an unknown error. | |
1135 | if merge_state.failure_reason != MergeFailureReason.UNKNOWN: |
|
1146 | if merge_state.failure_reason != MergeFailureReason.UNKNOWN: | |
1136 | pull_request._last_merge_source_rev = \ |
|
1147 | pull_request._last_merge_source_rev = \ | |
1137 | pull_request.source_ref_parts.commit_id |
|
1148 | pull_request.source_ref_parts.commit_id | |
1138 | pull_request._last_merge_target_rev = target_reference.commit_id |
|
1149 | pull_request._last_merge_target_rev = target_reference.commit_id | |
1139 | pull_request._last_merge_status = merge_state.failure_reason |
|
1150 | pull_request._last_merge_status = merge_state.failure_reason | |
1140 | pull_request.shadow_merge_ref = merge_state.merge_ref |
|
1151 | pull_request.shadow_merge_ref = merge_state.merge_ref | |
1141 | Session().add(pull_request) |
|
1152 | Session().add(pull_request) | |
1142 | Session().commit() |
|
1153 | Session().commit() | |
1143 |
|
1154 | |||
1144 | return merge_state |
|
1155 | return merge_state | |
1145 |
|
1156 | |||
1146 | def _workspace_id(self, pull_request): |
|
1157 | def _workspace_id(self, pull_request): | |
1147 | workspace_id = 'pr-%s' % pull_request.pull_request_id |
|
1158 | workspace_id = 'pr-%s' % pull_request.pull_request_id | |
1148 | return workspace_id |
|
1159 | return workspace_id | |
1149 |
|
1160 | |||
1150 | def merge_status_message(self, status_code): |
|
1161 | def merge_status_message(self, status_code): | |
1151 | """ |
|
1162 | """ | |
1152 | Return a human friendly error message for the given merge status code. |
|
1163 | Return a human friendly error message for the given merge status code. | |
1153 | """ |
|
1164 | """ | |
1154 | return self.MERGE_STATUS_MESSAGES[status_code] |
|
1165 | return self.MERGE_STATUS_MESSAGES[status_code] | |
1155 |
|
1166 | |||
1156 | def generate_repo_data(self, repo, commit_id=None, branch=None, |
|
1167 | def generate_repo_data(self, repo, commit_id=None, branch=None, | |
1157 | bookmark=None): |
|
1168 | bookmark=None): | |
1158 | all_refs, selected_ref = \ |
|
1169 | all_refs, selected_ref = \ | |
1159 | self._get_repo_pullrequest_sources( |
|
1170 | self._get_repo_pullrequest_sources( | |
1160 | repo.scm_instance(), commit_id=commit_id, |
|
1171 | repo.scm_instance(), commit_id=commit_id, | |
1161 | branch=branch, bookmark=bookmark) |
|
1172 | branch=branch, bookmark=bookmark) | |
1162 |
|
1173 | |||
1163 | refs_select2 = [] |
|
1174 | refs_select2 = [] | |
1164 | for element in all_refs: |
|
1175 | for element in all_refs: | |
1165 | children = [{'id': x[0], 'text': x[1]} for x in element[0]] |
|
1176 | children = [{'id': x[0], 'text': x[1]} for x in element[0]] | |
1166 | refs_select2.append({'text': element[1], 'children': children}) |
|
1177 | refs_select2.append({'text': element[1], 'children': children}) | |
1167 |
|
1178 | |||
1168 | return { |
|
1179 | return { | |
1169 | 'user': { |
|
1180 | 'user': { | |
1170 | 'user_id': repo.user.user_id, |
|
1181 | 'user_id': repo.user.user_id, | |
1171 | 'username': repo.user.username, |
|
1182 | 'username': repo.user.username, | |
1172 | 'firstname': repo.user.firstname, |
|
1183 | 'firstname': repo.user.firstname, | |
1173 | 'lastname': repo.user.lastname, |
|
1184 | 'lastname': repo.user.lastname, | |
1174 | 'gravatar_link': h.gravatar_url(repo.user.email, 14), |
|
1185 | 'gravatar_link': h.gravatar_url(repo.user.email, 14), | |
1175 | }, |
|
1186 | }, | |
1176 | 'description': h.chop_at_smart(repo.description, '\n'), |
|
1187 | 'description': h.chop_at_smart(repo.description, '\n'), | |
1177 | 'refs': { |
|
1188 | 'refs': { | |
1178 | 'all_refs': all_refs, |
|
1189 | 'all_refs': all_refs, | |
1179 | 'selected_ref': selected_ref, |
|
1190 | 'selected_ref': selected_ref, | |
1180 | 'select2_refs': refs_select2 |
|
1191 | 'select2_refs': refs_select2 | |
1181 | } |
|
1192 | } | |
1182 | } |
|
1193 | } | |
1183 |
|
1194 | |||
1184 | def generate_pullrequest_title(self, source, source_ref, target): |
|
1195 | def generate_pullrequest_title(self, source, source_ref, target): | |
1185 | return u'{source}#{at_ref} to {target}'.format( |
|
1196 | return u'{source}#{at_ref} to {target}'.format( | |
1186 | source=source, |
|
1197 | source=source, | |
1187 | at_ref=source_ref, |
|
1198 | at_ref=source_ref, | |
1188 | target=target, |
|
1199 | target=target, | |
1189 | ) |
|
1200 | ) | |
1190 |
|
1201 | |||
1191 | def _cleanup_merge_workspace(self, pull_request): |
|
1202 | def _cleanup_merge_workspace(self, pull_request): | |
1192 | # Merging related cleanup |
|
1203 | # Merging related cleanup | |
1193 | target_scm = pull_request.target_repo.scm_instance() |
|
1204 | target_scm = pull_request.target_repo.scm_instance() | |
1194 | workspace_id = 'pr-%s' % pull_request.pull_request_id |
|
1205 | workspace_id = 'pr-%s' % pull_request.pull_request_id | |
1195 |
|
1206 | |||
1196 | try: |
|
1207 | try: | |
1197 | target_scm.cleanup_merge_workspace(workspace_id) |
|
1208 | target_scm.cleanup_merge_workspace(workspace_id) | |
1198 | except NotImplementedError: |
|
1209 | except NotImplementedError: | |
1199 | pass |
|
1210 | pass | |
1200 |
|
1211 | |||
1201 | def _get_repo_pullrequest_sources( |
|
1212 | def _get_repo_pullrequest_sources( | |
1202 | self, repo, commit_id=None, branch=None, bookmark=None): |
|
1213 | self, repo, commit_id=None, branch=None, bookmark=None): | |
1203 | """ |
|
1214 | """ | |
1204 | Return a structure with repo's interesting commits, suitable for |
|
1215 | Return a structure with repo's interesting commits, suitable for | |
1205 | the selectors in pullrequest controller |
|
1216 | the selectors in pullrequest controller | |
1206 |
|
1217 | |||
1207 | :param commit_id: a commit that must be in the list somehow |
|
1218 | :param commit_id: a commit that must be in the list somehow | |
1208 | and selected by default |
|
1219 | and selected by default | |
1209 | :param branch: a branch that must be in the list and selected |
|
1220 | :param branch: a branch that must be in the list and selected | |
1210 | by default - even if closed |
|
1221 | by default - even if closed | |
1211 | :param bookmark: a bookmark that must be in the list and selected |
|
1222 | :param bookmark: a bookmark that must be in the list and selected | |
1212 | """ |
|
1223 | """ | |
1213 |
|
1224 | |||
1214 | commit_id = safe_str(commit_id) if commit_id else None |
|
1225 | commit_id = safe_str(commit_id) if commit_id else None | |
1215 | branch = safe_str(branch) if branch else None |
|
1226 | branch = safe_str(branch) if branch else None | |
1216 | bookmark = safe_str(bookmark) if bookmark else None |
|
1227 | bookmark = safe_str(bookmark) if bookmark else None | |
1217 |
|
1228 | |||
1218 | selected = None |
|
1229 | selected = None | |
1219 |
|
1230 | |||
1220 | # order matters: first source that has commit_id in it will be selected |
|
1231 | # order matters: first source that has commit_id in it will be selected | |
1221 | sources = [] |
|
1232 | sources = [] | |
1222 | sources.append(('book', repo.bookmarks.items(), _('Bookmarks'), bookmark)) |
|
1233 | sources.append(('book', repo.bookmarks.items(), _('Bookmarks'), bookmark)) | |
1223 | sources.append(('branch', repo.branches.items(), _('Branches'), branch)) |
|
1234 | sources.append(('branch', repo.branches.items(), _('Branches'), branch)) | |
1224 |
|
1235 | |||
1225 | if commit_id: |
|
1236 | if commit_id: | |
1226 | ref_commit = (h.short_id(commit_id), commit_id) |
|
1237 | ref_commit = (h.short_id(commit_id), commit_id) | |
1227 | sources.append(('rev', [ref_commit], _('Commit IDs'), commit_id)) |
|
1238 | sources.append(('rev', [ref_commit], _('Commit IDs'), commit_id)) | |
1228 |
|
1239 | |||
1229 | sources.append( |
|
1240 | sources.append( | |
1230 | ('branch', repo.branches_closed.items(), _('Closed Branches'), branch), |
|
1241 | ('branch', repo.branches_closed.items(), _('Closed Branches'), branch), | |
1231 | ) |
|
1242 | ) | |
1232 |
|
1243 | |||
1233 | groups = [] |
|
1244 | groups = [] | |
1234 | for group_key, ref_list, group_name, match in sources: |
|
1245 | for group_key, ref_list, group_name, match in sources: | |
1235 | group_refs = [] |
|
1246 | group_refs = [] | |
1236 | for ref_name, ref_id in ref_list: |
|
1247 | for ref_name, ref_id in ref_list: | |
1237 | ref_key = '%s:%s:%s' % (group_key, ref_name, ref_id) |
|
1248 | ref_key = '%s:%s:%s' % (group_key, ref_name, ref_id) | |
1238 | group_refs.append((ref_key, ref_name)) |
|
1249 | group_refs.append((ref_key, ref_name)) | |
1239 |
|
1250 | |||
1240 | if not selected: |
|
1251 | if not selected: | |
1241 | if set([commit_id, match]) & set([ref_id, ref_name]): |
|
1252 | if set([commit_id, match]) & set([ref_id, ref_name]): | |
1242 | selected = ref_key |
|
1253 | selected = ref_key | |
1243 |
|
1254 | |||
1244 | if group_refs: |
|
1255 | if group_refs: | |
1245 | groups.append((group_refs, group_name)) |
|
1256 | groups.append((group_refs, group_name)) | |
1246 |
|
1257 | |||
1247 | if not selected: |
|
1258 | if not selected: | |
1248 | ref = commit_id or branch or bookmark |
|
1259 | ref = commit_id or branch or bookmark | |
1249 | if ref: |
|
1260 | if ref: | |
1250 | raise CommitDoesNotExistError( |
|
1261 | raise CommitDoesNotExistError( | |
1251 | 'No commit refs could be found matching: %s' % ref) |
|
1262 | 'No commit refs could be found matching: %s' % ref) | |
1252 | elif repo.DEFAULT_BRANCH_NAME in repo.branches: |
|
1263 | elif repo.DEFAULT_BRANCH_NAME in repo.branches: | |
1253 | selected = 'branch:%s:%s' % ( |
|
1264 | selected = 'branch:%s:%s' % ( | |
1254 | repo.DEFAULT_BRANCH_NAME, |
|
1265 | repo.DEFAULT_BRANCH_NAME, | |
1255 | repo.branches[repo.DEFAULT_BRANCH_NAME] |
|
1266 | repo.branches[repo.DEFAULT_BRANCH_NAME] | |
1256 | ) |
|
1267 | ) | |
1257 | elif repo.commit_ids: |
|
1268 | elif repo.commit_ids: | |
1258 | rev = repo.commit_ids[0] |
|
1269 | rev = repo.commit_ids[0] | |
1259 | selected = 'rev:%s:%s' % (rev, rev) |
|
1270 | selected = 'rev:%s:%s' % (rev, rev) | |
1260 | else: |
|
1271 | else: | |
1261 | raise EmptyRepositoryError() |
|
1272 | raise EmptyRepositoryError() | |
1262 | return groups, selected |
|
1273 | return groups, selected | |
1263 |
|
1274 | |||
1264 |
def get_diff(self, |
|
1275 | def get_diff(self, source_repo, source_ref_id, target_ref_id, context=DIFF_CONTEXT): | |
1265 | pull_request = self.__get_pull_request(pull_request) |
|
1276 | return self._get_diff_from_pr_or_version( | |
1266 | return self._get_diff_from_pr_or_version(pull_request, context=context) |
|
1277 | source_repo, source_ref_id, target_ref_id, context=context) | |
1267 |
|
1278 | |||
1268 |
def _get_diff_from_pr_or_version( |
|
1279 | def _get_diff_from_pr_or_version( | |
1269 | source_repo = pr_or_version.source_repo |
|
1280 | self, source_repo, source_ref_id, target_ref_id, context): | |
1270 |
|
||||
1271 | # we swap org/other ref since we run a simple diff on one repo |
|
|||
1272 | target_ref_id = pr_or_version.target_ref_parts.commit_id |
|
|||
1273 | source_ref_id = pr_or_version.source_ref_parts.commit_id |
|
|||
1274 | target_commit = source_repo.get_commit( |
|
1281 | target_commit = source_repo.get_commit( | |
1275 | commit_id=safe_str(target_ref_id)) |
|
1282 | commit_id=safe_str(target_ref_id)) | |
1276 |
source_commit = source_repo.get_commit( |
|
1283 | source_commit = source_repo.get_commit( | |
1277 | vcs_repo = source_repo.scm_instance() |
|
1284 | commit_id=safe_str(source_ref_id)) | |
|
1285 | if isinstance(source_repo, Repository): | |||
|
1286 | vcs_repo = source_repo.scm_instance() | |||
|
1287 | else: | |||
|
1288 | vcs_repo = source_repo | |||
1278 |
|
1289 | |||
1279 | # TODO: johbo: In the context of an update, we cannot reach |
|
1290 | # TODO: johbo: In the context of an update, we cannot reach | |
1280 | # the old commit anymore with our normal mechanisms. It needs |
|
1291 | # the old commit anymore with our normal mechanisms. It needs | |
1281 | # some sort of special support in the vcs layer to avoid this |
|
1292 | # some sort of special support in the vcs layer to avoid this | |
1282 | # workaround. |
|
1293 | # workaround. | |
1283 | if (source_commit.raw_id == vcs_repo.EMPTY_COMMIT_ID and |
|
1294 | if (source_commit.raw_id == vcs_repo.EMPTY_COMMIT_ID and | |
1284 | vcs_repo.alias == 'git'): |
|
1295 | vcs_repo.alias == 'git'): | |
1285 | source_commit.raw_id = safe_str(source_ref_id) |
|
1296 | source_commit.raw_id = safe_str(source_ref_id) | |
1286 |
|
1297 | |||
1287 | log.debug('calculating diff between ' |
|
1298 | log.debug('calculating diff between ' | |
1288 | 'source_ref:%s and target_ref:%s for repo `%s`', |
|
1299 | 'source_ref:%s and target_ref:%s for repo `%s`', | |
1289 | target_ref_id, source_ref_id, |
|
1300 | target_ref_id, source_ref_id, | |
1290 | safe_unicode(vcs_repo.path)) |
|
1301 | safe_unicode(vcs_repo.path)) | |
1291 |
|
1302 | |||
1292 | vcs_diff = vcs_repo.get_diff( |
|
1303 | vcs_diff = vcs_repo.get_diff( | |
1293 | commit1=target_commit, commit2=source_commit, context=context) |
|
1304 | commit1=target_commit, commit2=source_commit, context=context) | |
1294 | return vcs_diff |
|
1305 | return vcs_diff | |
1295 |
|
1306 | |||
1296 | def _is_merge_enabled(self, pull_request): |
|
1307 | def _is_merge_enabled(self, pull_request): | |
1297 | settings_model = VcsSettingsModel(repo=pull_request.target_repo) |
|
1308 | settings_model = VcsSettingsModel(repo=pull_request.target_repo) | |
1298 | settings = settings_model.get_general_settings() |
|
1309 | settings = settings_model.get_general_settings() | |
1299 | return settings.get('rhodecode_pr_merge_enabled', False) |
|
1310 | return settings.get('rhodecode_pr_merge_enabled', False) | |
1300 |
|
1311 | |||
1301 | def _use_rebase_for_merging(self, pull_request): |
|
1312 | def _use_rebase_for_merging(self, pull_request): | |
1302 | settings_model = VcsSettingsModel(repo=pull_request.target_repo) |
|
1313 | settings_model = VcsSettingsModel(repo=pull_request.target_repo) | |
1303 | settings = settings_model.get_general_settings() |
|
1314 | settings = settings_model.get_general_settings() | |
1304 | return settings.get('rhodecode_hg_use_rebase_for_merging', False) |
|
1315 | return settings.get('rhodecode_hg_use_rebase_for_merging', False) | |
1305 |
|
1316 | |||
1306 | def _log_action(self, action, user, pull_request): |
|
1317 | def _log_action(self, action, user, pull_request): | |
1307 | action_logger( |
|
1318 | action_logger( | |
1308 | user, |
|
1319 | user, | |
1309 | '{action}:{pr_id}'.format( |
|
1320 | '{action}:{pr_id}'.format( | |
1310 | action=action, pr_id=pull_request.pull_request_id), |
|
1321 | action=action, pr_id=pull_request.pull_request_id), | |
1311 | pull_request.target_repo) |
|
1322 | pull_request.target_repo) | |
1312 |
|
1323 | |||
1313 |
|
1324 | |||
1314 | class MergeCheck(object): |
|
1325 | class MergeCheck(object): | |
1315 | """ |
|
1326 | """ | |
1316 | Perform Merge Checks and returns a check object which stores information |
|
1327 | Perform Merge Checks and returns a check object which stores information | |
1317 | about merge errors, and merge conditions |
|
1328 | about merge errors, and merge conditions | |
1318 | """ |
|
1329 | """ | |
1319 | TODO_CHECK = 'todo' |
|
1330 | TODO_CHECK = 'todo' | |
1320 | PERM_CHECK = 'perm' |
|
1331 | PERM_CHECK = 'perm' | |
1321 | REVIEW_CHECK = 'review' |
|
1332 | REVIEW_CHECK = 'review' | |
1322 | MERGE_CHECK = 'merge' |
|
1333 | MERGE_CHECK = 'merge' | |
1323 |
|
1334 | |||
1324 | def __init__(self): |
|
1335 | def __init__(self): | |
1325 | self.merge_possible = None |
|
1336 | self.merge_possible = None | |
1326 | self.merge_msg = '' |
|
1337 | self.merge_msg = '' | |
1327 | self.failed = None |
|
1338 | self.failed = None | |
1328 | self.errors = [] |
|
1339 | self.errors = [] | |
1329 | self.error_details = OrderedDict() |
|
1340 | self.error_details = OrderedDict() | |
1330 |
|
1341 | |||
1331 | def push_error(self, error_type, message, error_key, details): |
|
1342 | def push_error(self, error_type, message, error_key, details): | |
1332 | self.failed = True |
|
1343 | self.failed = True | |
1333 | self.errors.append([error_type, message]) |
|
1344 | self.errors.append([error_type, message]) | |
1334 | self.error_details[error_key] = dict( |
|
1345 | self.error_details[error_key] = dict( | |
1335 | details=details, |
|
1346 | details=details, | |
1336 | error_type=error_type, |
|
1347 | error_type=error_type, | |
1337 | message=message |
|
1348 | message=message | |
1338 | ) |
|
1349 | ) | |
1339 |
|
1350 | |||
1340 | @classmethod |
|
1351 | @classmethod | |
1341 | def validate(cls, pull_request, user, fail_early=False, translator=None): |
|
1352 | def validate(cls, pull_request, user, fail_early=False, translator=None): | |
1342 | # if migrated to pyramid... |
|
1353 | # if migrated to pyramid... | |
1343 | # _ = lambda: translator or _ # use passed in translator if any |
|
1354 | # _ = lambda: translator or _ # use passed in translator if any | |
1344 |
|
1355 | |||
1345 | merge_check = cls() |
|
1356 | merge_check = cls() | |
1346 |
|
1357 | |||
1347 | # permissions |
|
1358 | # permissions | |
1348 | user_allowed_to_merge = PullRequestModel().check_user_merge( |
|
1359 | user_allowed_to_merge = PullRequestModel().check_user_merge( | |
1349 | pull_request, user) |
|
1360 | pull_request, user) | |
1350 | if not user_allowed_to_merge: |
|
1361 | if not user_allowed_to_merge: | |
1351 | log.debug("MergeCheck: cannot merge, approval is pending.") |
|
1362 | log.debug("MergeCheck: cannot merge, approval is pending.") | |
1352 |
|
1363 | |||
1353 | msg = _('User `{}` not allowed to perform merge').format(user) |
|
1364 | msg = _('User `{}` not allowed to perform merge').format(user) | |
1354 | merge_check.push_error('error', msg, cls.PERM_CHECK, user.username) |
|
1365 | merge_check.push_error('error', msg, cls.PERM_CHECK, user.username) | |
1355 | if fail_early: |
|
1366 | if fail_early: | |
1356 | return merge_check |
|
1367 | return merge_check | |
1357 |
|
1368 | |||
1358 | # review status |
|
1369 | # review status | |
1359 | review_status = pull_request.calculated_review_status() |
|
1370 | review_status = pull_request.calculated_review_status() | |
1360 | status_approved = review_status == ChangesetStatus.STATUS_APPROVED |
|
1371 | status_approved = review_status == ChangesetStatus.STATUS_APPROVED | |
1361 | if not status_approved: |
|
1372 | if not status_approved: | |
1362 | log.debug("MergeCheck: cannot merge, approval is pending.") |
|
1373 | log.debug("MergeCheck: cannot merge, approval is pending.") | |
1363 |
|
1374 | |||
1364 | msg = _('Pull request reviewer approval is pending.') |
|
1375 | msg = _('Pull request reviewer approval is pending.') | |
1365 |
|
1376 | |||
1366 | merge_check.push_error( |
|
1377 | merge_check.push_error( | |
1367 | 'warning', msg, cls.REVIEW_CHECK, review_status) |
|
1378 | 'warning', msg, cls.REVIEW_CHECK, review_status) | |
1368 |
|
1379 | |||
1369 | if fail_early: |
|
1380 | if fail_early: | |
1370 | return merge_check |
|
1381 | return merge_check | |
1371 |
|
1382 | |||
1372 | # left over TODOs |
|
1383 | # left over TODOs | |
1373 | todos = CommentsModel().get_unresolved_todos(pull_request) |
|
1384 | todos = CommentsModel().get_unresolved_todos(pull_request) | |
1374 | if todos: |
|
1385 | if todos: | |
1375 | log.debug("MergeCheck: cannot merge, {} " |
|
1386 | log.debug("MergeCheck: cannot merge, {} " | |
1376 | "unresolved todos left.".format(len(todos))) |
|
1387 | "unresolved todos left.".format(len(todos))) | |
1377 |
|
1388 | |||
1378 | if len(todos) == 1: |
|
1389 | if len(todos) == 1: | |
1379 | msg = _('Cannot merge, {} TODO still not resolved.').format( |
|
1390 | msg = _('Cannot merge, {} TODO still not resolved.').format( | |
1380 | len(todos)) |
|
1391 | len(todos)) | |
1381 | else: |
|
1392 | else: | |
1382 | msg = _('Cannot merge, {} TODOs still not resolved.').format( |
|
1393 | msg = _('Cannot merge, {} TODOs still not resolved.').format( | |
1383 | len(todos)) |
|
1394 | len(todos)) | |
1384 |
|
1395 | |||
1385 | merge_check.push_error('warning', msg, cls.TODO_CHECK, todos) |
|
1396 | merge_check.push_error('warning', msg, cls.TODO_CHECK, todos) | |
1386 |
|
1397 | |||
1387 | if fail_early: |
|
1398 | if fail_early: | |
1388 | return merge_check |
|
1399 | return merge_check | |
1389 |
|
1400 | |||
1390 | # merge possible |
|
1401 | # merge possible | |
1391 | merge_status, msg = PullRequestModel().merge_status(pull_request) |
|
1402 | merge_status, msg = PullRequestModel().merge_status(pull_request) | |
1392 | merge_check.merge_possible = merge_status |
|
1403 | merge_check.merge_possible = merge_status | |
1393 | merge_check.merge_msg = msg |
|
1404 | merge_check.merge_msg = msg | |
1394 | if not merge_status: |
|
1405 | if not merge_status: | |
1395 | log.debug( |
|
1406 | log.debug( | |
1396 | "MergeCheck: cannot merge, pull request merge not possible.") |
|
1407 | "MergeCheck: cannot merge, pull request merge not possible.") | |
1397 | merge_check.push_error('warning', msg, cls.MERGE_CHECK, None) |
|
1408 | merge_check.push_error('warning', msg, cls.MERGE_CHECK, None) | |
1398 |
|
1409 | |||
1399 | if fail_early: |
|
1410 | if fail_early: | |
1400 | return merge_check |
|
1411 | return merge_check | |
1401 |
|
1412 | |||
1402 | return merge_check |
|
1413 | return merge_check | |
1403 |
|
1414 | |||
1404 |
|
1415 | |||
1405 | ChangeTuple = namedtuple('ChangeTuple', |
|
1416 | ChangeTuple = namedtuple('ChangeTuple', | |
1406 | ['added', 'common', 'removed']) |
|
1417 | ['added', 'common', 'removed', 'total']) | |
1407 |
|
1418 | |||
1408 | FileChangeTuple = namedtuple('FileChangeTuple', |
|
1419 | FileChangeTuple = namedtuple('FileChangeTuple', | |
1409 | ['added', 'modified', 'removed']) |
|
1420 | ['added', 'modified', 'removed']) |
@@ -1,2261 +1,2337 b'' | |||||
1 | //Primary CSS |
|
1 | //Primary CSS | |
2 |
|
2 | |||
3 | //--- IMPORTS ------------------// |
|
3 | //--- IMPORTS ------------------// | |
4 |
|
4 | |||
5 | @import 'helpers'; |
|
5 | @import 'helpers'; | |
6 | @import 'mixins'; |
|
6 | @import 'mixins'; | |
7 | @import 'rcicons'; |
|
7 | @import 'rcicons'; | |
8 | @import 'fonts'; |
|
8 | @import 'fonts'; | |
9 | @import 'variables'; |
|
9 | @import 'variables'; | |
10 | @import 'bootstrap-variables'; |
|
10 | @import 'bootstrap-variables'; | |
11 | @import 'form-bootstrap'; |
|
11 | @import 'form-bootstrap'; | |
12 | @import 'codemirror'; |
|
12 | @import 'codemirror'; | |
13 | @import 'legacy_code_styles'; |
|
13 | @import 'legacy_code_styles'; | |
14 | @import 'progress-bar'; |
|
14 | @import 'progress-bar'; | |
15 |
|
15 | |||
16 | @import 'type'; |
|
16 | @import 'type'; | |
17 | @import 'alerts'; |
|
17 | @import 'alerts'; | |
18 | @import 'buttons'; |
|
18 | @import 'buttons'; | |
19 | @import 'tags'; |
|
19 | @import 'tags'; | |
20 | @import 'code-block'; |
|
20 | @import 'code-block'; | |
21 | @import 'examples'; |
|
21 | @import 'examples'; | |
22 | @import 'login'; |
|
22 | @import 'login'; | |
23 | @import 'main-content'; |
|
23 | @import 'main-content'; | |
24 | @import 'select2'; |
|
24 | @import 'select2'; | |
25 | @import 'comments'; |
|
25 | @import 'comments'; | |
26 | @import 'panels-bootstrap'; |
|
26 | @import 'panels-bootstrap'; | |
27 | @import 'panels'; |
|
27 | @import 'panels'; | |
28 | @import 'deform'; |
|
28 | @import 'deform'; | |
29 |
|
29 | |||
30 | //--- BASE ------------------// |
|
30 | //--- BASE ------------------// | |
31 | .noscript-error { |
|
31 | .noscript-error { | |
32 | top: 0; |
|
32 | top: 0; | |
33 | left: 0; |
|
33 | left: 0; | |
34 | width: 100%; |
|
34 | width: 100%; | |
35 | z-index: 101; |
|
35 | z-index: 101; | |
36 | text-align: center; |
|
36 | text-align: center; | |
37 | font-family: @text-semibold; |
|
37 | font-family: @text-semibold; | |
38 | font-size: 120%; |
|
38 | font-size: 120%; | |
39 | color: white; |
|
39 | color: white; | |
40 | background-color: @alert2; |
|
40 | background-color: @alert2; | |
41 | padding: 5px 0 5px 0; |
|
41 | padding: 5px 0 5px 0; | |
42 | } |
|
42 | } | |
43 |
|
43 | |||
44 | html { |
|
44 | html { | |
45 | display: table; |
|
45 | display: table; | |
46 | height: 100%; |
|
46 | height: 100%; | |
47 | width: 100%; |
|
47 | width: 100%; | |
48 | } |
|
48 | } | |
49 |
|
49 | |||
50 | body { |
|
50 | body { | |
51 | display: table-cell; |
|
51 | display: table-cell; | |
52 | width: 100%; |
|
52 | width: 100%; | |
53 | } |
|
53 | } | |
54 |
|
54 | |||
55 | //--- LAYOUT ------------------// |
|
55 | //--- LAYOUT ------------------// | |
56 |
|
56 | |||
57 | .hidden{ |
|
57 | .hidden{ | |
58 | display: none !important; |
|
58 | display: none !important; | |
59 | } |
|
59 | } | |
60 |
|
60 | |||
61 | .box{ |
|
61 | .box{ | |
62 | float: left; |
|
62 | float: left; | |
63 | width: 100%; |
|
63 | width: 100%; | |
64 | } |
|
64 | } | |
65 |
|
65 | |||
66 | .browser-header { |
|
66 | .browser-header { | |
67 | clear: both; |
|
67 | clear: both; | |
68 | } |
|
68 | } | |
69 | .main { |
|
69 | .main { | |
70 | clear: both; |
|
70 | clear: both; | |
71 | padding:0 0 @pagepadding; |
|
71 | padding:0 0 @pagepadding; | |
72 | height: auto; |
|
72 | height: auto; | |
73 |
|
73 | |||
74 | &:after { //clearfix |
|
74 | &:after { //clearfix | |
75 | content:""; |
|
75 | content:""; | |
76 | clear:both; |
|
76 | clear:both; | |
77 | width:100%; |
|
77 | width:100%; | |
78 | display:block; |
|
78 | display:block; | |
79 | } |
|
79 | } | |
80 | } |
|
80 | } | |
81 |
|
81 | |||
82 | .action-link{ |
|
82 | .action-link{ | |
83 | margin-left: @padding; |
|
83 | margin-left: @padding; | |
84 | padding-left: @padding; |
|
84 | padding-left: @padding; | |
85 | border-left: @border-thickness solid @border-default-color; |
|
85 | border-left: @border-thickness solid @border-default-color; | |
86 | } |
|
86 | } | |
87 |
|
87 | |||
88 | input + .action-link, .action-link.first{ |
|
88 | input + .action-link, .action-link.first{ | |
89 | border-left: none; |
|
89 | border-left: none; | |
90 | } |
|
90 | } | |
91 |
|
91 | |||
92 | .action-link.last{ |
|
92 | .action-link.last{ | |
93 | margin-right: @padding; |
|
93 | margin-right: @padding; | |
94 | padding-right: @padding; |
|
94 | padding-right: @padding; | |
95 | } |
|
95 | } | |
96 |
|
96 | |||
97 | .action-link.active, |
|
97 | .action-link.active, | |
98 | .action-link.active a{ |
|
98 | .action-link.active a{ | |
99 | color: @grey4; |
|
99 | color: @grey4; | |
100 | } |
|
100 | } | |
101 |
|
101 | |||
102 | ul.simple-list{ |
|
102 | ul.simple-list{ | |
103 | list-style: none; |
|
103 | list-style: none; | |
104 | margin: 0; |
|
104 | margin: 0; | |
105 | padding: 0; |
|
105 | padding: 0; | |
106 | } |
|
106 | } | |
107 |
|
107 | |||
108 | .main-content { |
|
108 | .main-content { | |
109 | padding-bottom: @pagepadding; |
|
109 | padding-bottom: @pagepadding; | |
110 | } |
|
110 | } | |
111 |
|
111 | |||
112 | .wide-mode-wrapper { |
|
112 | .wide-mode-wrapper { | |
113 | max-width:4000px !important; |
|
113 | max-width:4000px !important; | |
114 | } |
|
114 | } | |
115 |
|
115 | |||
116 | .wrapper { |
|
116 | .wrapper { | |
117 | position: relative; |
|
117 | position: relative; | |
118 | max-width: @wrapper-maxwidth; |
|
118 | max-width: @wrapper-maxwidth; | |
119 | margin: 0 auto; |
|
119 | margin: 0 auto; | |
120 | } |
|
120 | } | |
121 |
|
121 | |||
122 | #content { |
|
122 | #content { | |
123 | clear: both; |
|
123 | clear: both; | |
124 | padding: 0 @contentpadding; |
|
124 | padding: 0 @contentpadding; | |
125 | } |
|
125 | } | |
126 |
|
126 | |||
127 | .advanced-settings-fields{ |
|
127 | .advanced-settings-fields{ | |
128 | input{ |
|
128 | input{ | |
129 | margin-left: @textmargin; |
|
129 | margin-left: @textmargin; | |
130 | margin-right: @padding/2; |
|
130 | margin-right: @padding/2; | |
131 | } |
|
131 | } | |
132 | } |
|
132 | } | |
133 |
|
133 | |||
134 | .cs_files_title { |
|
134 | .cs_files_title { | |
135 | margin: @pagepadding 0 0; |
|
135 | margin: @pagepadding 0 0; | |
136 | } |
|
136 | } | |
137 |
|
137 | |||
138 | input.inline[type="file"] { |
|
138 | input.inline[type="file"] { | |
139 | display: inline; |
|
139 | display: inline; | |
140 | } |
|
140 | } | |
141 |
|
141 | |||
142 | .error_page { |
|
142 | .error_page { | |
143 | margin: 10% auto; |
|
143 | margin: 10% auto; | |
144 |
|
144 | |||
145 | h1 { |
|
145 | h1 { | |
146 | color: @grey2; |
|
146 | color: @grey2; | |
147 | } |
|
147 | } | |
148 |
|
148 | |||
149 | .alert { |
|
149 | .alert { | |
150 | margin: @padding 0; |
|
150 | margin: @padding 0; | |
151 | } |
|
151 | } | |
152 |
|
152 | |||
153 | .error-branding { |
|
153 | .error-branding { | |
154 | font-family: @text-semibold; |
|
154 | font-family: @text-semibold; | |
155 | color: @grey4; |
|
155 | color: @grey4; | |
156 | } |
|
156 | } | |
157 |
|
157 | |||
158 | .error_message { |
|
158 | .error_message { | |
159 | font-family: @text-regular; |
|
159 | font-family: @text-regular; | |
160 | } |
|
160 | } | |
161 |
|
161 | |||
162 | .sidebar { |
|
162 | .sidebar { | |
163 | min-height: 275px; |
|
163 | min-height: 275px; | |
164 | margin: 0; |
|
164 | margin: 0; | |
165 | padding: 0 0 @sidebarpadding @sidebarpadding; |
|
165 | padding: 0 0 @sidebarpadding @sidebarpadding; | |
166 | border: none; |
|
166 | border: none; | |
167 | } |
|
167 | } | |
168 |
|
168 | |||
169 | .main-content { |
|
169 | .main-content { | |
170 | position: relative; |
|
170 | position: relative; | |
171 | margin: 0 @sidebarpadding @sidebarpadding; |
|
171 | margin: 0 @sidebarpadding @sidebarpadding; | |
172 | padding: 0 0 0 @sidebarpadding; |
|
172 | padding: 0 0 0 @sidebarpadding; | |
173 | border-left: @border-thickness solid @grey5; |
|
173 | border-left: @border-thickness solid @grey5; | |
174 |
|
174 | |||
175 | @media (max-width:767px) { |
|
175 | @media (max-width:767px) { | |
176 | clear: both; |
|
176 | clear: both; | |
177 | width: 100%; |
|
177 | width: 100%; | |
178 | margin: 0; |
|
178 | margin: 0; | |
179 | border: none; |
|
179 | border: none; | |
180 | } |
|
180 | } | |
181 | } |
|
181 | } | |
182 |
|
182 | |||
183 | .inner-column { |
|
183 | .inner-column { | |
184 | float: left; |
|
184 | float: left; | |
185 | width: 29.75%; |
|
185 | width: 29.75%; | |
186 | min-height: 150px; |
|
186 | min-height: 150px; | |
187 | margin: @sidebarpadding 2% 0 0; |
|
187 | margin: @sidebarpadding 2% 0 0; | |
188 | padding: 0 2% 0 0; |
|
188 | padding: 0 2% 0 0; | |
189 | border-right: @border-thickness solid @grey5; |
|
189 | border-right: @border-thickness solid @grey5; | |
190 |
|
190 | |||
191 | @media (max-width:767px) { |
|
191 | @media (max-width:767px) { | |
192 | clear: both; |
|
192 | clear: both; | |
193 | width: 100%; |
|
193 | width: 100%; | |
194 | border: none; |
|
194 | border: none; | |
195 | } |
|
195 | } | |
196 |
|
196 | |||
197 | ul { |
|
197 | ul { | |
198 | padding-left: 1.25em; |
|
198 | padding-left: 1.25em; | |
199 | } |
|
199 | } | |
200 |
|
200 | |||
201 | &:last-child { |
|
201 | &:last-child { | |
202 | margin: @sidebarpadding 0 0; |
|
202 | margin: @sidebarpadding 0 0; | |
203 | border: none; |
|
203 | border: none; | |
204 | } |
|
204 | } | |
205 |
|
205 | |||
206 | h4 { |
|
206 | h4 { | |
207 | margin: 0 0 @padding; |
|
207 | margin: 0 0 @padding; | |
208 | font-family: @text-semibold; |
|
208 | font-family: @text-semibold; | |
209 | } |
|
209 | } | |
210 | } |
|
210 | } | |
211 | } |
|
211 | } | |
212 | .error-page-logo { |
|
212 | .error-page-logo { | |
213 | width: 130px; |
|
213 | width: 130px; | |
214 | height: 160px; |
|
214 | height: 160px; | |
215 | } |
|
215 | } | |
216 |
|
216 | |||
217 | // HEADER |
|
217 | // HEADER | |
218 | .header { |
|
218 | .header { | |
219 |
|
219 | |||
220 | // TODO: johbo: Fix login pages, so that they work without a min-height |
|
220 | // TODO: johbo: Fix login pages, so that they work without a min-height | |
221 | // for the header and then remove the min-height. I chose a smaller value |
|
221 | // for the header and then remove the min-height. I chose a smaller value | |
222 | // intentionally here to avoid rendering issues in the main navigation. |
|
222 | // intentionally here to avoid rendering issues in the main navigation. | |
223 | min-height: 49px; |
|
223 | min-height: 49px; | |
224 |
|
224 | |||
225 | position: relative; |
|
225 | position: relative; | |
226 | vertical-align: bottom; |
|
226 | vertical-align: bottom; | |
227 | padding: 0 @header-padding; |
|
227 | padding: 0 @header-padding; | |
228 | background-color: @grey2; |
|
228 | background-color: @grey2; | |
229 | color: @grey5; |
|
229 | color: @grey5; | |
230 |
|
230 | |||
231 | .title { |
|
231 | .title { | |
232 | overflow: visible; |
|
232 | overflow: visible; | |
233 | } |
|
233 | } | |
234 |
|
234 | |||
235 | &:before, |
|
235 | &:before, | |
236 | &:after { |
|
236 | &:after { | |
237 | content: ""; |
|
237 | content: ""; | |
238 | clear: both; |
|
238 | clear: both; | |
239 | width: 100%; |
|
239 | width: 100%; | |
240 | } |
|
240 | } | |
241 |
|
241 | |||
242 | // TODO: johbo: Avoids breaking "Repositories" chooser |
|
242 | // TODO: johbo: Avoids breaking "Repositories" chooser | |
243 | .select2-container .select2-choice .select2-arrow { |
|
243 | .select2-container .select2-choice .select2-arrow { | |
244 | display: none; |
|
244 | display: none; | |
245 | } |
|
245 | } | |
246 | } |
|
246 | } | |
247 |
|
247 | |||
248 | #header-inner { |
|
248 | #header-inner { | |
249 | &.title { |
|
249 | &.title { | |
250 | margin: 0; |
|
250 | margin: 0; | |
251 | } |
|
251 | } | |
252 | &:before, |
|
252 | &:before, | |
253 | &:after { |
|
253 | &:after { | |
254 | content: ""; |
|
254 | content: ""; | |
255 | clear: both; |
|
255 | clear: both; | |
256 | } |
|
256 | } | |
257 | } |
|
257 | } | |
258 |
|
258 | |||
259 | // Gists |
|
259 | // Gists | |
260 | #files_data { |
|
260 | #files_data { | |
261 | clear: both; //for firefox |
|
261 | clear: both; //for firefox | |
262 | } |
|
262 | } | |
263 | #gistid { |
|
263 | #gistid { | |
264 | margin-right: @padding; |
|
264 | margin-right: @padding; | |
265 | } |
|
265 | } | |
266 |
|
266 | |||
267 | // Global Settings Editor |
|
267 | // Global Settings Editor | |
268 | .textarea.editor { |
|
268 | .textarea.editor { | |
269 | float: left; |
|
269 | float: left; | |
270 | position: relative; |
|
270 | position: relative; | |
271 | max-width: @texteditor-width; |
|
271 | max-width: @texteditor-width; | |
272 |
|
272 | |||
273 | select { |
|
273 | select { | |
274 | position: absolute; |
|
274 | position: absolute; | |
275 | top:10px; |
|
275 | top:10px; | |
276 | right:0; |
|
276 | right:0; | |
277 | } |
|
277 | } | |
278 |
|
278 | |||
279 | .CodeMirror { |
|
279 | .CodeMirror { | |
280 | margin: 0; |
|
280 | margin: 0; | |
281 | } |
|
281 | } | |
282 |
|
282 | |||
283 | .help-block { |
|
283 | .help-block { | |
284 | margin: 0 0 @padding; |
|
284 | margin: 0 0 @padding; | |
285 | padding:.5em; |
|
285 | padding:.5em; | |
286 | background-color: @grey6; |
|
286 | background-color: @grey6; | |
287 | } |
|
287 | } | |
288 | } |
|
288 | } | |
289 |
|
289 | |||
290 | ul.auth_plugins { |
|
290 | ul.auth_plugins { | |
291 | margin: @padding 0 @padding @legend-width; |
|
291 | margin: @padding 0 @padding @legend-width; | |
292 | padding: 0; |
|
292 | padding: 0; | |
293 |
|
293 | |||
294 | li { |
|
294 | li { | |
295 | margin-bottom: @padding; |
|
295 | margin-bottom: @padding; | |
296 | line-height: 1em; |
|
296 | line-height: 1em; | |
297 | list-style-type: none; |
|
297 | list-style-type: none; | |
298 |
|
298 | |||
299 | .auth_buttons .btn { |
|
299 | .auth_buttons .btn { | |
300 | margin-right: @padding; |
|
300 | margin-right: @padding; | |
301 | } |
|
301 | } | |
302 |
|
302 | |||
303 | &:before { content: none; } |
|
303 | &:before { content: none; } | |
304 | } |
|
304 | } | |
305 | } |
|
305 | } | |
306 |
|
306 | |||
307 |
|
307 | |||
308 | // My Account PR list |
|
308 | // My Account PR list | |
309 |
|
309 | |||
310 | #show_closed { |
|
310 | #show_closed { | |
311 | margin: 0 1em 0 0; |
|
311 | margin: 0 1em 0 0; | |
312 | } |
|
312 | } | |
313 |
|
313 | |||
314 | .pullrequestlist { |
|
314 | .pullrequestlist { | |
315 | .closed { |
|
315 | .closed { | |
316 | background-color: @grey6; |
|
316 | background-color: @grey6; | |
317 | } |
|
317 | } | |
318 | .td-status { |
|
318 | .td-status { | |
319 | padding-left: .5em; |
|
319 | padding-left: .5em; | |
320 | } |
|
320 | } | |
321 | .log-container .truncate { |
|
321 | .log-container .truncate { | |
322 | height: 2.75em; |
|
322 | height: 2.75em; | |
323 | white-space: pre-line; |
|
323 | white-space: pre-line; | |
324 | } |
|
324 | } | |
325 | table.rctable .user { |
|
325 | table.rctable .user { | |
326 | padding-left: 0; |
|
326 | padding-left: 0; | |
327 | } |
|
327 | } | |
328 | table.rctable { |
|
328 | table.rctable { | |
329 | td.td-description, |
|
329 | td.td-description, | |
330 | .rc-user { |
|
330 | .rc-user { | |
331 | min-width: auto; |
|
331 | min-width: auto; | |
332 | } |
|
332 | } | |
333 | } |
|
333 | } | |
334 | } |
|
334 | } | |
335 |
|
335 | |||
336 | // Pull Requests |
|
336 | // Pull Requests | |
337 |
|
337 | |||
338 | .pullrequests_section_head { |
|
338 | .pullrequests_section_head { | |
339 | display: block; |
|
339 | display: block; | |
340 | clear: both; |
|
340 | clear: both; | |
341 | margin: @padding 0; |
|
341 | margin: @padding 0; | |
342 | font-family: @text-bold; |
|
342 | font-family: @text-bold; | |
343 | } |
|
343 | } | |
344 |
|
344 | |||
345 | .pr-origininfo, .pr-targetinfo { |
|
345 | .pr-origininfo, .pr-targetinfo { | |
346 | position: relative; |
|
346 | position: relative; | |
347 |
|
347 | |||
348 | .tag { |
|
348 | .tag { | |
349 | display: inline-block; |
|
349 | display: inline-block; | |
350 | margin: 0 1em .5em 0; |
|
350 | margin: 0 1em .5em 0; | |
351 | } |
|
351 | } | |
352 |
|
352 | |||
353 | .clone-url { |
|
353 | .clone-url { | |
354 | display: inline-block; |
|
354 | display: inline-block; | |
355 | margin: 0 0 .5em 0; |
|
355 | margin: 0 0 .5em 0; | |
356 | padding: 0; |
|
356 | padding: 0; | |
357 | line-height: 1.2em; |
|
357 | line-height: 1.2em; | |
358 | } |
|
358 | } | |
359 | } |
|
359 | } | |
360 |
|
360 | |||
361 | .pr-pullinfo { |
|
361 | .pr-pullinfo { | |
362 | clear: both; |
|
362 | clear: both; | |
363 | margin: .5em 0; |
|
363 | margin: .5em 0; | |
364 | } |
|
364 | } | |
365 |
|
365 | |||
366 | #pr-title-input { |
|
366 | #pr-title-input { | |
367 | width: 72%; |
|
367 | width: 72%; | |
368 | font-size: 1em; |
|
368 | font-size: 1em; | |
369 | font-family: @text-bold; |
|
369 | font-family: @text-bold; | |
370 | margin: 0; |
|
370 | margin: 0; | |
371 | padding: 0 0 0 @padding/4; |
|
371 | padding: 0 0 0 @padding/4; | |
372 | line-height: 1.7em; |
|
372 | line-height: 1.7em; | |
373 | color: @text-color; |
|
373 | color: @text-color; | |
374 | letter-spacing: .02em; |
|
374 | letter-spacing: .02em; | |
375 | } |
|
375 | } | |
376 |
|
376 | |||
377 | #pullrequest_title { |
|
377 | #pullrequest_title { | |
378 | width: 100%; |
|
378 | width: 100%; | |
379 | box-sizing: border-box; |
|
379 | box-sizing: border-box; | |
380 | } |
|
380 | } | |
381 |
|
381 | |||
382 | #pr_open_message { |
|
382 | #pr_open_message { | |
383 | border: @border-thickness solid #fff; |
|
383 | border: @border-thickness solid #fff; | |
384 | border-radius: @border-radius; |
|
384 | border-radius: @border-radius; | |
385 | padding: @padding-large-vertical @padding-large-vertical @padding-large-vertical 0; |
|
385 | padding: @padding-large-vertical @padding-large-vertical @padding-large-vertical 0; | |
386 | text-align: right; |
|
386 | text-align: right; | |
387 | overflow: hidden; |
|
387 | overflow: hidden; | |
388 | } |
|
388 | } | |
389 |
|
389 | |||
390 | .pr-submit-button { |
|
390 | .pr-submit-button { | |
391 | float: right; |
|
391 | float: right; | |
392 | margin: 0 0 0 5px; |
|
392 | margin: 0 0 0 5px; | |
393 | } |
|
393 | } | |
394 |
|
394 | |||
395 | .pr-spacing-container { |
|
395 | .pr-spacing-container { | |
396 | padding: 20px; |
|
396 | padding: 20px; | |
397 | clear: both |
|
397 | clear: both | |
398 | } |
|
398 | } | |
399 |
|
399 | |||
400 | #pr-description-input { |
|
400 | #pr-description-input { | |
401 | margin-bottom: 0; |
|
401 | margin-bottom: 0; | |
402 | } |
|
402 | } | |
403 |
|
403 | |||
404 | .pr-description-label { |
|
404 | .pr-description-label { | |
405 | vertical-align: top; |
|
405 | vertical-align: top; | |
406 | } |
|
406 | } | |
407 |
|
407 | |||
408 | .perms_section_head { |
|
408 | .perms_section_head { | |
409 | min-width: 625px; |
|
409 | min-width: 625px; | |
410 |
|
410 | |||
411 | h2 { |
|
411 | h2 { | |
412 | margin-bottom: 0; |
|
412 | margin-bottom: 0; | |
413 | } |
|
413 | } | |
414 |
|
414 | |||
415 | .label-checkbox { |
|
415 | .label-checkbox { | |
416 | float: left; |
|
416 | float: left; | |
417 | } |
|
417 | } | |
418 |
|
418 | |||
419 | &.field { |
|
419 | &.field { | |
420 | margin: @space 0 @padding; |
|
420 | margin: @space 0 @padding; | |
421 | } |
|
421 | } | |
422 |
|
422 | |||
423 | &:first-child.field { |
|
423 | &:first-child.field { | |
424 | margin-top: 0; |
|
424 | margin-top: 0; | |
425 |
|
425 | |||
426 | .label { |
|
426 | .label { | |
427 | margin-top: 0; |
|
427 | margin-top: 0; | |
428 | padding-top: 0; |
|
428 | padding-top: 0; | |
429 | } |
|
429 | } | |
430 |
|
430 | |||
431 | .radios { |
|
431 | .radios { | |
432 | padding-top: 0; |
|
432 | padding-top: 0; | |
433 | } |
|
433 | } | |
434 | } |
|
434 | } | |
435 |
|
435 | |||
436 | .radios { |
|
436 | .radios { | |
437 | float: right; |
|
437 | float: right; | |
438 | position: relative; |
|
438 | position: relative; | |
439 | width: 405px; |
|
439 | width: 405px; | |
440 | } |
|
440 | } | |
441 | } |
|
441 | } | |
442 |
|
442 | |||
443 | //--- MODULES ------------------// |
|
443 | //--- MODULES ------------------// | |
444 |
|
444 | |||
445 |
|
445 | |||
446 | // Server Announcement |
|
446 | // Server Announcement | |
447 | #server-announcement { |
|
447 | #server-announcement { | |
448 | width: 95%; |
|
448 | width: 95%; | |
449 | margin: @padding auto; |
|
449 | margin: @padding auto; | |
450 | padding: @padding; |
|
450 | padding: @padding; | |
451 | border-width: 2px; |
|
451 | border-width: 2px; | |
452 | border-style: solid; |
|
452 | border-style: solid; | |
453 | .border-radius(2px); |
|
453 | .border-radius(2px); | |
454 | font-family: @text-bold; |
|
454 | font-family: @text-bold; | |
455 |
|
455 | |||
456 | &.info { border-color: @alert4; background-color: @alert4-inner; } |
|
456 | &.info { border-color: @alert4; background-color: @alert4-inner; } | |
457 | &.warning { border-color: @alert3; background-color: @alert3-inner; } |
|
457 | &.warning { border-color: @alert3; background-color: @alert3-inner; } | |
458 | &.error { border-color: @alert2; background-color: @alert2-inner; } |
|
458 | &.error { border-color: @alert2; background-color: @alert2-inner; } | |
459 | &.success { border-color: @alert1; background-color: @alert1-inner; } |
|
459 | &.success { border-color: @alert1; background-color: @alert1-inner; } | |
460 | &.neutral { border-color: @grey3; background-color: @grey6; } |
|
460 | &.neutral { border-color: @grey3; background-color: @grey6; } | |
461 | } |
|
461 | } | |
462 |
|
462 | |||
463 | // Fixed Sidebar Column |
|
463 | // Fixed Sidebar Column | |
464 | .sidebar-col-wrapper { |
|
464 | .sidebar-col-wrapper { | |
465 | padding-left: @sidebar-all-width; |
|
465 | padding-left: @sidebar-all-width; | |
466 |
|
466 | |||
467 | .sidebar { |
|
467 | .sidebar { | |
468 | width: @sidebar-width; |
|
468 | width: @sidebar-width; | |
469 | margin-left: -@sidebar-all-width; |
|
469 | margin-left: -@sidebar-all-width; | |
470 | } |
|
470 | } | |
471 | } |
|
471 | } | |
472 |
|
472 | |||
473 | .sidebar-col-wrapper.scw-small { |
|
473 | .sidebar-col-wrapper.scw-small { | |
474 | padding-left: @sidebar-small-all-width; |
|
474 | padding-left: @sidebar-small-all-width; | |
475 |
|
475 | |||
476 | .sidebar { |
|
476 | .sidebar { | |
477 | width: @sidebar-small-width; |
|
477 | width: @sidebar-small-width; | |
478 | margin-left: -@sidebar-small-all-width; |
|
478 | margin-left: -@sidebar-small-all-width; | |
479 | } |
|
479 | } | |
480 | } |
|
480 | } | |
481 |
|
481 | |||
482 |
|
482 | |||
483 | // FOOTER |
|
483 | // FOOTER | |
484 | #footer { |
|
484 | #footer { | |
485 | padding: 0; |
|
485 | padding: 0; | |
486 | text-align: center; |
|
486 | text-align: center; | |
487 | vertical-align: middle; |
|
487 | vertical-align: middle; | |
488 | color: @grey2; |
|
488 | color: @grey2; | |
489 | background-color: @grey6; |
|
489 | background-color: @grey6; | |
490 |
|
490 | |||
491 | p { |
|
491 | p { | |
492 | margin: 0; |
|
492 | margin: 0; | |
493 | padding: 1em; |
|
493 | padding: 1em; | |
494 | line-height: 1em; |
|
494 | line-height: 1em; | |
495 | } |
|
495 | } | |
496 |
|
496 | |||
497 | .server-instance { //server instance |
|
497 | .server-instance { //server instance | |
498 | display: none; |
|
498 | display: none; | |
499 | } |
|
499 | } | |
500 |
|
500 | |||
501 | .title { |
|
501 | .title { | |
502 | float: none; |
|
502 | float: none; | |
503 | margin: 0 auto; |
|
503 | margin: 0 auto; | |
504 | } |
|
504 | } | |
505 | } |
|
505 | } | |
506 |
|
506 | |||
507 | button.close { |
|
507 | button.close { | |
508 | padding: 0; |
|
508 | padding: 0; | |
509 | cursor: pointer; |
|
509 | cursor: pointer; | |
510 | background: transparent; |
|
510 | background: transparent; | |
511 | border: 0; |
|
511 | border: 0; | |
512 | .box-shadow(none); |
|
512 | .box-shadow(none); | |
513 | -webkit-appearance: none; |
|
513 | -webkit-appearance: none; | |
514 | } |
|
514 | } | |
515 |
|
515 | |||
516 | .close { |
|
516 | .close { | |
517 | float: right; |
|
517 | float: right; | |
518 | font-size: 21px; |
|
518 | font-size: 21px; | |
519 | font-family: @text-bootstrap; |
|
519 | font-family: @text-bootstrap; | |
520 | line-height: 1em; |
|
520 | line-height: 1em; | |
521 | font-weight: bold; |
|
521 | font-weight: bold; | |
522 | color: @grey2; |
|
522 | color: @grey2; | |
523 |
|
523 | |||
524 | &:hover, |
|
524 | &:hover, | |
525 | &:focus { |
|
525 | &:focus { | |
526 | color: @grey1; |
|
526 | color: @grey1; | |
527 | text-decoration: none; |
|
527 | text-decoration: none; | |
528 | cursor: pointer; |
|
528 | cursor: pointer; | |
529 | } |
|
529 | } | |
530 | } |
|
530 | } | |
531 |
|
531 | |||
532 | // GRID |
|
532 | // GRID | |
533 | .sorting, |
|
533 | .sorting, | |
534 | .sorting_desc, |
|
534 | .sorting_desc, | |
535 | .sorting_asc { |
|
535 | .sorting_asc { | |
536 | cursor: pointer; |
|
536 | cursor: pointer; | |
537 | } |
|
537 | } | |
538 | .sorting_desc:after { |
|
538 | .sorting_desc:after { | |
539 | content: "\00A0\25B2"; |
|
539 | content: "\00A0\25B2"; | |
540 | font-size: .75em; |
|
540 | font-size: .75em; | |
541 | } |
|
541 | } | |
542 | .sorting_asc:after { |
|
542 | .sorting_asc:after { | |
543 | content: "\00A0\25BC"; |
|
543 | content: "\00A0\25BC"; | |
544 | font-size: .68em; |
|
544 | font-size: .68em; | |
545 | } |
|
545 | } | |
546 |
|
546 | |||
547 |
|
547 | |||
548 | .user_auth_tokens { |
|
548 | .user_auth_tokens { | |
549 |
|
549 | |||
550 | &.truncate { |
|
550 | &.truncate { | |
551 | white-space: nowrap; |
|
551 | white-space: nowrap; | |
552 | overflow: hidden; |
|
552 | overflow: hidden; | |
553 | text-overflow: ellipsis; |
|
553 | text-overflow: ellipsis; | |
554 | } |
|
554 | } | |
555 |
|
555 | |||
556 | .fields .field .input { |
|
556 | .fields .field .input { | |
557 | margin: 0; |
|
557 | margin: 0; | |
558 | } |
|
558 | } | |
559 |
|
559 | |||
560 | input#description { |
|
560 | input#description { | |
561 | width: 100px; |
|
561 | width: 100px; | |
562 | margin: 0; |
|
562 | margin: 0; | |
563 | } |
|
563 | } | |
564 |
|
564 | |||
565 | .drop-menu { |
|
565 | .drop-menu { | |
566 | // TODO: johbo: Remove this, should work out of the box when |
|
566 | // TODO: johbo: Remove this, should work out of the box when | |
567 | // having multiple inputs inline |
|
567 | // having multiple inputs inline | |
568 | margin: 0 0 0 5px; |
|
568 | margin: 0 0 0 5px; | |
569 | } |
|
569 | } | |
570 | } |
|
570 | } | |
571 | #user_list_table { |
|
571 | #user_list_table { | |
572 | .closed { |
|
572 | .closed { | |
573 | background-color: @grey6; |
|
573 | background-color: @grey6; | |
574 | } |
|
574 | } | |
575 | } |
|
575 | } | |
576 |
|
576 | |||
577 |
|
577 | |||
578 | input { |
|
578 | input { | |
579 | &.disabled { |
|
579 | &.disabled { | |
580 | opacity: .5; |
|
580 | opacity: .5; | |
581 | } |
|
581 | } | |
582 | } |
|
582 | } | |
583 |
|
583 | |||
584 | // remove extra padding in firefox |
|
584 | // remove extra padding in firefox | |
585 | input::-moz-focus-inner { border:0; padding:0 } |
|
585 | input::-moz-focus-inner { border:0; padding:0 } | |
586 |
|
586 | |||
587 | .adjacent input { |
|
587 | .adjacent input { | |
588 | margin-bottom: @padding; |
|
588 | margin-bottom: @padding; | |
589 | } |
|
589 | } | |
590 |
|
590 | |||
591 | .permissions_boxes { |
|
591 | .permissions_boxes { | |
592 | display: block; |
|
592 | display: block; | |
593 | } |
|
593 | } | |
594 |
|
594 | |||
595 | //TODO: lisa: this should be in tables |
|
595 | //TODO: lisa: this should be in tables | |
596 | .show_more_col { |
|
596 | .show_more_col { | |
597 | width: 20px; |
|
597 | width: 20px; | |
598 | } |
|
598 | } | |
599 |
|
599 | |||
600 | //FORMS |
|
600 | //FORMS | |
601 |
|
601 | |||
602 | .medium-inline, |
|
602 | .medium-inline, | |
603 | input#description.medium-inline { |
|
603 | input#description.medium-inline { | |
604 | display: inline; |
|
604 | display: inline; | |
605 | width: @medium-inline-input-width; |
|
605 | width: @medium-inline-input-width; | |
606 | min-width: 100px; |
|
606 | min-width: 100px; | |
607 | } |
|
607 | } | |
608 |
|
608 | |||
609 | select { |
|
609 | select { | |
610 | //reset |
|
610 | //reset | |
611 | -webkit-appearance: none; |
|
611 | -webkit-appearance: none; | |
612 | -moz-appearance: none; |
|
612 | -moz-appearance: none; | |
613 |
|
613 | |||
614 | display: inline-block; |
|
614 | display: inline-block; | |
615 | height: 28px; |
|
615 | height: 28px; | |
616 | width: auto; |
|
616 | width: auto; | |
617 | margin: 0 @padding @padding 0; |
|
617 | margin: 0 @padding @padding 0; | |
618 | padding: 0 18px 0 8px; |
|
618 | padding: 0 18px 0 8px; | |
619 | line-height:1em; |
|
619 | line-height:1em; | |
620 | font-size: @basefontsize; |
|
620 | font-size: @basefontsize; | |
621 | border: @border-thickness solid @rcblue; |
|
621 | border: @border-thickness solid @rcblue; | |
622 | background:white url("../images/dt-arrow-dn.png") no-repeat 100% 50%; |
|
622 | background:white url("../images/dt-arrow-dn.png") no-repeat 100% 50%; | |
623 | color: @rcblue; |
|
623 | color: @rcblue; | |
624 |
|
624 | |||
625 | &:after { |
|
625 | &:after { | |
626 | content: "\00A0\25BE"; |
|
626 | content: "\00A0\25BE"; | |
627 | } |
|
627 | } | |
628 |
|
628 | |||
629 | &:focus { |
|
629 | &:focus { | |
630 | outline: none; |
|
630 | outline: none; | |
631 | } |
|
631 | } | |
632 | } |
|
632 | } | |
633 |
|
633 | |||
634 | option { |
|
634 | option { | |
635 | &:focus { |
|
635 | &:focus { | |
636 | outline: none; |
|
636 | outline: none; | |
637 | } |
|
637 | } | |
638 | } |
|
638 | } | |
639 |
|
639 | |||
640 | input, |
|
640 | input, | |
641 | textarea { |
|
641 | textarea { | |
642 | padding: @input-padding; |
|
642 | padding: @input-padding; | |
643 | border: @input-border-thickness solid @border-highlight-color; |
|
643 | border: @input-border-thickness solid @border-highlight-color; | |
644 | .border-radius (@border-radius); |
|
644 | .border-radius (@border-radius); | |
645 | font-family: @text-light; |
|
645 | font-family: @text-light; | |
646 | font-size: @basefontsize; |
|
646 | font-size: @basefontsize; | |
647 |
|
647 | |||
648 | &.input-sm { |
|
648 | &.input-sm { | |
649 | padding: 5px; |
|
649 | padding: 5px; | |
650 | } |
|
650 | } | |
651 |
|
651 | |||
652 | &#description { |
|
652 | &#description { | |
653 | min-width: @input-description-minwidth; |
|
653 | min-width: @input-description-minwidth; | |
654 | min-height: 1em; |
|
654 | min-height: 1em; | |
655 | padding: 10px; |
|
655 | padding: 10px; | |
656 | } |
|
656 | } | |
657 | } |
|
657 | } | |
658 |
|
658 | |||
659 | .field-sm { |
|
659 | .field-sm { | |
660 | input, |
|
660 | input, | |
661 | textarea { |
|
661 | textarea { | |
662 | padding: 5px; |
|
662 | padding: 5px; | |
663 | } |
|
663 | } | |
664 | } |
|
664 | } | |
665 |
|
665 | |||
666 | textarea { |
|
666 | textarea { | |
667 | display: block; |
|
667 | display: block; | |
668 | clear: both; |
|
668 | clear: both; | |
669 | width: 100%; |
|
669 | width: 100%; | |
670 | min-height: 100px; |
|
670 | min-height: 100px; | |
671 | margin-bottom: @padding; |
|
671 | margin-bottom: @padding; | |
672 | .box-sizing(border-box); |
|
672 | .box-sizing(border-box); | |
673 | overflow: auto; |
|
673 | overflow: auto; | |
674 | } |
|
674 | } | |
675 |
|
675 | |||
676 | label { |
|
676 | label { | |
677 | font-family: @text-light; |
|
677 | font-family: @text-light; | |
678 | } |
|
678 | } | |
679 |
|
679 | |||
680 | // GRAVATARS |
|
680 | // GRAVATARS | |
681 | // centers gravatar on username to the right |
|
681 | // centers gravatar on username to the right | |
682 |
|
682 | |||
683 | .gravatar { |
|
683 | .gravatar { | |
684 | display: inline; |
|
684 | display: inline; | |
685 | min-width: 16px; |
|
685 | min-width: 16px; | |
686 | min-height: 16px; |
|
686 | min-height: 16px; | |
687 | margin: -5px 0; |
|
687 | margin: -5px 0; | |
688 | padding: 0; |
|
688 | padding: 0; | |
689 | line-height: 1em; |
|
689 | line-height: 1em; | |
690 | border: 1px solid @grey4; |
|
690 | border: 1px solid @grey4; | |
691 | box-sizing: content-box; |
|
691 | box-sizing: content-box; | |
692 |
|
692 | |||
693 | &.gravatar-large { |
|
693 | &.gravatar-large { | |
694 | margin: -0.5em .25em -0.5em 0; |
|
694 | margin: -0.5em .25em -0.5em 0; | |
695 | } |
|
695 | } | |
696 |
|
696 | |||
697 | & + .user { |
|
697 | & + .user { | |
698 | display: inline; |
|
698 | display: inline; | |
699 | margin: 0; |
|
699 | margin: 0; | |
700 | padding: 0 0 0 .17em; |
|
700 | padding: 0 0 0 .17em; | |
701 | line-height: 1em; |
|
701 | line-height: 1em; | |
702 | } |
|
702 | } | |
703 | } |
|
703 | } | |
704 |
|
704 | |||
705 | .user-inline-data { |
|
705 | .user-inline-data { | |
706 | display: inline-block; |
|
706 | display: inline-block; | |
707 | float: left; |
|
707 | float: left; | |
708 | padding-left: .5em; |
|
708 | padding-left: .5em; | |
709 | line-height: 1.3em; |
|
709 | line-height: 1.3em; | |
710 | } |
|
710 | } | |
711 |
|
711 | |||
712 | .rc-user { // gravatar + user wrapper |
|
712 | .rc-user { // gravatar + user wrapper | |
713 | float: left; |
|
713 | float: left; | |
714 | position: relative; |
|
714 | position: relative; | |
715 | min-width: 100px; |
|
715 | min-width: 100px; | |
716 | max-width: 200px; |
|
716 | max-width: 200px; | |
717 | min-height: (@gravatar-size + @border-thickness * 2); // account for border |
|
717 | min-height: (@gravatar-size + @border-thickness * 2); // account for border | |
718 | display: block; |
|
718 | display: block; | |
719 | padding: 0 0 0 (@gravatar-size + @basefontsize/2 + @border-thickness * 2); |
|
719 | padding: 0 0 0 (@gravatar-size + @basefontsize/2 + @border-thickness * 2); | |
720 |
|
720 | |||
721 |
|
721 | |||
722 | .gravatar { |
|
722 | .gravatar { | |
723 | display: block; |
|
723 | display: block; | |
724 | position: absolute; |
|
724 | position: absolute; | |
725 | top: 0; |
|
725 | top: 0; | |
726 | left: 0; |
|
726 | left: 0; | |
727 | min-width: @gravatar-size; |
|
727 | min-width: @gravatar-size; | |
728 | min-height: @gravatar-size; |
|
728 | min-height: @gravatar-size; | |
729 | margin: 0; |
|
729 | margin: 0; | |
730 | } |
|
730 | } | |
731 |
|
731 | |||
732 | .user { |
|
732 | .user { | |
733 | display: block; |
|
733 | display: block; | |
734 | max-width: 175px; |
|
734 | max-width: 175px; | |
735 | padding-top: 2px; |
|
735 | padding-top: 2px; | |
736 | overflow: hidden; |
|
736 | overflow: hidden; | |
737 | text-overflow: ellipsis; |
|
737 | text-overflow: ellipsis; | |
738 | } |
|
738 | } | |
739 | } |
|
739 | } | |
740 |
|
740 | |||
741 | .gist-gravatar, |
|
741 | .gist-gravatar, | |
742 | .journal_container { |
|
742 | .journal_container { | |
743 | .gravatar-large { |
|
743 | .gravatar-large { | |
744 | margin: 0 .5em -10px 0; |
|
744 | margin: 0 .5em -10px 0; | |
745 | } |
|
745 | } | |
746 | } |
|
746 | } | |
747 |
|
747 | |||
748 |
|
748 | |||
749 | // ADMIN SETTINGS |
|
749 | // ADMIN SETTINGS | |
750 |
|
750 | |||
751 | // Tag Patterns |
|
751 | // Tag Patterns | |
752 | .tag_patterns { |
|
752 | .tag_patterns { | |
753 | .tag_input { |
|
753 | .tag_input { | |
754 | margin-bottom: @padding; |
|
754 | margin-bottom: @padding; | |
755 | } |
|
755 | } | |
756 | } |
|
756 | } | |
757 |
|
757 | |||
758 | .locked_input { |
|
758 | .locked_input { | |
759 | position: relative; |
|
759 | position: relative; | |
760 |
|
760 | |||
761 | input { |
|
761 | input { | |
762 | display: inline; |
|
762 | display: inline; | |
763 | margin-top: 3px; |
|
763 | margin-top: 3px; | |
764 | } |
|
764 | } | |
765 |
|
765 | |||
766 | br { |
|
766 | br { | |
767 | display: none; |
|
767 | display: none; | |
768 | } |
|
768 | } | |
769 |
|
769 | |||
770 | .error-message { |
|
770 | .error-message { | |
771 | float: left; |
|
771 | float: left; | |
772 | width: 100%; |
|
772 | width: 100%; | |
773 | } |
|
773 | } | |
774 |
|
774 | |||
775 | .lock_input_button { |
|
775 | .lock_input_button { | |
776 | display: inline; |
|
776 | display: inline; | |
777 | } |
|
777 | } | |
778 |
|
778 | |||
779 | .help-block { |
|
779 | .help-block { | |
780 | clear: both; |
|
780 | clear: both; | |
781 | } |
|
781 | } | |
782 | } |
|
782 | } | |
783 |
|
783 | |||
784 | // Notifications |
|
784 | // Notifications | |
785 |
|
785 | |||
786 | .notifications_buttons { |
|
786 | .notifications_buttons { | |
787 | margin: 0 0 @space 0; |
|
787 | margin: 0 0 @space 0; | |
788 | padding: 0; |
|
788 | padding: 0; | |
789 |
|
789 | |||
790 | .btn { |
|
790 | .btn { | |
791 | display: inline-block; |
|
791 | display: inline-block; | |
792 | } |
|
792 | } | |
793 | } |
|
793 | } | |
794 |
|
794 | |||
795 | .notification-list { |
|
795 | .notification-list { | |
796 |
|
796 | |||
797 | div { |
|
797 | div { | |
798 | display: inline-block; |
|
798 | display: inline-block; | |
799 | vertical-align: middle; |
|
799 | vertical-align: middle; | |
800 | } |
|
800 | } | |
801 |
|
801 | |||
802 | .container { |
|
802 | .container { | |
803 | display: block; |
|
803 | display: block; | |
804 | margin: 0 0 @padding 0; |
|
804 | margin: 0 0 @padding 0; | |
805 | } |
|
805 | } | |
806 |
|
806 | |||
807 | .delete-notifications { |
|
807 | .delete-notifications { | |
808 | margin-left: @padding; |
|
808 | margin-left: @padding; | |
809 | text-align: right; |
|
809 | text-align: right; | |
810 | cursor: pointer; |
|
810 | cursor: pointer; | |
811 | } |
|
811 | } | |
812 |
|
812 | |||
813 | .read-notifications { |
|
813 | .read-notifications { | |
814 | margin-left: @padding/2; |
|
814 | margin-left: @padding/2; | |
815 | text-align: right; |
|
815 | text-align: right; | |
816 | width: 35px; |
|
816 | width: 35px; | |
817 | cursor: pointer; |
|
817 | cursor: pointer; | |
818 | } |
|
818 | } | |
819 |
|
819 | |||
820 | .icon-minus-sign { |
|
820 | .icon-minus-sign { | |
821 | color: @alert2; |
|
821 | color: @alert2; | |
822 | } |
|
822 | } | |
823 |
|
823 | |||
824 | .icon-ok-sign { |
|
824 | .icon-ok-sign { | |
825 | color: @alert1; |
|
825 | color: @alert1; | |
826 | } |
|
826 | } | |
827 | } |
|
827 | } | |
828 |
|
828 | |||
829 | .user_settings { |
|
829 | .user_settings { | |
830 | float: left; |
|
830 | float: left; | |
831 | clear: both; |
|
831 | clear: both; | |
832 | display: block; |
|
832 | display: block; | |
833 | width: 100%; |
|
833 | width: 100%; | |
834 |
|
834 | |||
835 | .gravatar_box { |
|
835 | .gravatar_box { | |
836 | margin-bottom: @padding; |
|
836 | margin-bottom: @padding; | |
837 |
|
837 | |||
838 | &:after { |
|
838 | &:after { | |
839 | content: " "; |
|
839 | content: " "; | |
840 | clear: both; |
|
840 | clear: both; | |
841 | width: 100%; |
|
841 | width: 100%; | |
842 | } |
|
842 | } | |
843 | } |
|
843 | } | |
844 |
|
844 | |||
845 | .fields .field { |
|
845 | .fields .field { | |
846 | clear: both; |
|
846 | clear: both; | |
847 | } |
|
847 | } | |
848 | } |
|
848 | } | |
849 |
|
849 | |||
850 | .advanced_settings { |
|
850 | .advanced_settings { | |
851 | margin-bottom: @space; |
|
851 | margin-bottom: @space; | |
852 |
|
852 | |||
853 | .help-block { |
|
853 | .help-block { | |
854 | margin-left: 0; |
|
854 | margin-left: 0; | |
855 | } |
|
855 | } | |
856 |
|
856 | |||
857 | button + .help-block { |
|
857 | button + .help-block { | |
858 | margin-top: @padding; |
|
858 | margin-top: @padding; | |
859 | } |
|
859 | } | |
860 | } |
|
860 | } | |
861 |
|
861 | |||
862 | // admin settings radio buttons and labels |
|
862 | // admin settings radio buttons and labels | |
863 | .label-2 { |
|
863 | .label-2 { | |
864 | float: left; |
|
864 | float: left; | |
865 | width: @label2-width; |
|
865 | width: @label2-width; | |
866 |
|
866 | |||
867 | label { |
|
867 | label { | |
868 | color: @grey1; |
|
868 | color: @grey1; | |
869 | } |
|
869 | } | |
870 | } |
|
870 | } | |
871 | .checkboxes { |
|
871 | .checkboxes { | |
872 | float: left; |
|
872 | float: left; | |
873 | width: @checkboxes-width; |
|
873 | width: @checkboxes-width; | |
874 | margin-bottom: @padding; |
|
874 | margin-bottom: @padding; | |
875 |
|
875 | |||
876 | .checkbox { |
|
876 | .checkbox { | |
877 | width: 100%; |
|
877 | width: 100%; | |
878 |
|
878 | |||
879 | label { |
|
879 | label { | |
880 | margin: 0; |
|
880 | margin: 0; | |
881 | padding: 0; |
|
881 | padding: 0; | |
882 | } |
|
882 | } | |
883 | } |
|
883 | } | |
884 |
|
884 | |||
885 | .checkbox + .checkbox { |
|
885 | .checkbox + .checkbox { | |
886 | display: inline-block; |
|
886 | display: inline-block; | |
887 | } |
|
887 | } | |
888 |
|
888 | |||
889 | label { |
|
889 | label { | |
890 | margin-right: 1em; |
|
890 | margin-right: 1em; | |
891 | } |
|
891 | } | |
892 | } |
|
892 | } | |
893 |
|
893 | |||
894 | // CHANGELOG |
|
894 | // CHANGELOG | |
895 | .container_header { |
|
895 | .container_header { | |
896 | float: left; |
|
896 | float: left; | |
897 | display: block; |
|
897 | display: block; | |
898 | width: 100%; |
|
898 | width: 100%; | |
899 | margin: @padding 0 @padding; |
|
899 | margin: @padding 0 @padding; | |
900 |
|
900 | |||
901 | #filter_changelog { |
|
901 | #filter_changelog { | |
902 | float: left; |
|
902 | float: left; | |
903 | margin-right: @padding; |
|
903 | margin-right: @padding; | |
904 | } |
|
904 | } | |
905 |
|
905 | |||
906 | .breadcrumbs_light { |
|
906 | .breadcrumbs_light { | |
907 | display: inline-block; |
|
907 | display: inline-block; | |
908 | } |
|
908 | } | |
909 | } |
|
909 | } | |
910 |
|
910 | |||
911 | .info_box { |
|
911 | .info_box { | |
912 | float: right; |
|
912 | float: right; | |
913 | } |
|
913 | } | |
914 |
|
914 | |||
915 |
|
915 | |||
916 | #graph_nodes { |
|
916 | #graph_nodes { | |
917 | padding-top: 43px; |
|
917 | padding-top: 43px; | |
918 | } |
|
918 | } | |
919 |
|
919 | |||
920 | #graph_content{ |
|
920 | #graph_content{ | |
921 |
|
921 | |||
922 | // adjust for table headers so that graph renders properly |
|
922 | // adjust for table headers so that graph renders properly | |
923 | // #graph_nodes padding - table cell padding |
|
923 | // #graph_nodes padding - table cell padding | |
924 | padding-top: (@space - (@basefontsize * 2.4)); |
|
924 | padding-top: (@space - (@basefontsize * 2.4)); | |
925 |
|
925 | |||
926 | &.graph_full_width { |
|
926 | &.graph_full_width { | |
927 | width: 100%; |
|
927 | width: 100%; | |
928 | max-width: 100%; |
|
928 | max-width: 100%; | |
929 | } |
|
929 | } | |
930 | } |
|
930 | } | |
931 |
|
931 | |||
932 | #graph { |
|
932 | #graph { | |
933 | .flag_status { |
|
933 | .flag_status { | |
934 | margin: 0; |
|
934 | margin: 0; | |
935 | } |
|
935 | } | |
936 |
|
936 | |||
937 | .pagination-left { |
|
937 | .pagination-left { | |
938 | float: left; |
|
938 | float: left; | |
939 | clear: both; |
|
939 | clear: both; | |
940 | } |
|
940 | } | |
941 |
|
941 | |||
942 | .log-container { |
|
942 | .log-container { | |
943 | max-width: 345px; |
|
943 | max-width: 345px; | |
944 |
|
944 | |||
945 | .message{ |
|
945 | .message{ | |
946 | max-width: 340px; |
|
946 | max-width: 340px; | |
947 | } |
|
947 | } | |
948 | } |
|
948 | } | |
949 |
|
949 | |||
950 | .graph-col-wrapper { |
|
950 | .graph-col-wrapper { | |
951 | padding-left: 110px; |
|
951 | padding-left: 110px; | |
952 |
|
952 | |||
953 | #graph_nodes { |
|
953 | #graph_nodes { | |
954 | width: 100px; |
|
954 | width: 100px; | |
955 | margin-left: -110px; |
|
955 | margin-left: -110px; | |
956 | float: left; |
|
956 | float: left; | |
957 | clear: left; |
|
957 | clear: left; | |
958 | } |
|
958 | } | |
959 | } |
|
959 | } | |
960 | } |
|
960 | } | |
961 |
|
961 | |||
962 | #filter_changelog { |
|
962 | #filter_changelog { | |
963 | float: left; |
|
963 | float: left; | |
964 | } |
|
964 | } | |
965 |
|
965 | |||
966 |
|
966 | |||
967 | //--- THEME ------------------// |
|
967 | //--- THEME ------------------// | |
968 |
|
968 | |||
969 | #logo { |
|
969 | #logo { | |
970 | float: left; |
|
970 | float: left; | |
971 | margin: 9px 0 0 0; |
|
971 | margin: 9px 0 0 0; | |
972 |
|
972 | |||
973 | .header { |
|
973 | .header { | |
974 | background-color: transparent; |
|
974 | background-color: transparent; | |
975 | } |
|
975 | } | |
976 |
|
976 | |||
977 | a { |
|
977 | a { | |
978 | display: inline-block; |
|
978 | display: inline-block; | |
979 | } |
|
979 | } | |
980 |
|
980 | |||
981 | img { |
|
981 | img { | |
982 | height:30px; |
|
982 | height:30px; | |
983 | } |
|
983 | } | |
984 | } |
|
984 | } | |
985 |
|
985 | |||
986 | .logo-wrapper { |
|
986 | .logo-wrapper { | |
987 | float:left; |
|
987 | float:left; | |
988 | } |
|
988 | } | |
989 |
|
989 | |||
990 | .branding{ |
|
990 | .branding{ | |
991 | float: left; |
|
991 | float: left; | |
992 | padding: 9px 2px; |
|
992 | padding: 9px 2px; | |
993 | line-height: 1em; |
|
993 | line-height: 1em; | |
994 | font-size: @navigation-fontsize; |
|
994 | font-size: @navigation-fontsize; | |
995 | } |
|
995 | } | |
996 |
|
996 | |||
997 | img { |
|
997 | img { | |
998 | border: none; |
|
998 | border: none; | |
999 | outline: none; |
|
999 | outline: none; | |
1000 | } |
|
1000 | } | |
1001 | user-profile-header |
|
1001 | user-profile-header | |
1002 | label { |
|
1002 | label { | |
1003 |
|
1003 | |||
1004 | input[type="checkbox"] { |
|
1004 | input[type="checkbox"] { | |
1005 | margin-right: 1em; |
|
1005 | margin-right: 1em; | |
1006 | } |
|
1006 | } | |
1007 | input[type="radio"] { |
|
1007 | input[type="radio"] { | |
1008 | margin-right: 1em; |
|
1008 | margin-right: 1em; | |
1009 | } |
|
1009 | } | |
1010 | } |
|
1010 | } | |
1011 |
|
1011 | |||
1012 | .flag_status { |
|
1012 | .flag_status { | |
1013 | margin: 2px 8px 6px 2px; |
|
1013 | margin: 2px 8px 6px 2px; | |
1014 | &.under_review { |
|
1014 | &.under_review { | |
1015 | .circle(5px, @alert3); |
|
1015 | .circle(5px, @alert3); | |
1016 | } |
|
1016 | } | |
1017 | &.approved { |
|
1017 | &.approved { | |
1018 | .circle(5px, @alert1); |
|
1018 | .circle(5px, @alert1); | |
1019 | } |
|
1019 | } | |
1020 | &.rejected, |
|
1020 | &.rejected, | |
1021 | &.forced_closed{ |
|
1021 | &.forced_closed{ | |
1022 | .circle(5px, @alert2); |
|
1022 | .circle(5px, @alert2); | |
1023 | } |
|
1023 | } | |
1024 | &.not_reviewed { |
|
1024 | &.not_reviewed { | |
1025 | .circle(5px, @grey5); |
|
1025 | .circle(5px, @grey5); | |
1026 | } |
|
1026 | } | |
1027 | } |
|
1027 | } | |
1028 |
|
1028 | |||
1029 | .flag_status_comment_box { |
|
1029 | .flag_status_comment_box { | |
1030 | margin: 5px 6px 0px 2px; |
|
1030 | margin: 5px 6px 0px 2px; | |
1031 | } |
|
1031 | } | |
1032 | .test_pattern_preview { |
|
1032 | .test_pattern_preview { | |
1033 | margin: @space 0; |
|
1033 | margin: @space 0; | |
1034 |
|
1034 | |||
1035 | p { |
|
1035 | p { | |
1036 | margin-bottom: 0; |
|
1036 | margin-bottom: 0; | |
1037 | border-bottom: @border-thickness solid @border-default-color; |
|
1037 | border-bottom: @border-thickness solid @border-default-color; | |
1038 | color: @grey3; |
|
1038 | color: @grey3; | |
1039 | } |
|
1039 | } | |
1040 |
|
1040 | |||
1041 | .btn { |
|
1041 | .btn { | |
1042 | margin-bottom: @padding; |
|
1042 | margin-bottom: @padding; | |
1043 | } |
|
1043 | } | |
1044 | } |
|
1044 | } | |
1045 | #test_pattern_result { |
|
1045 | #test_pattern_result { | |
1046 | display: none; |
|
1046 | display: none; | |
1047 | &:extend(pre); |
|
1047 | &:extend(pre); | |
1048 | padding: .9em; |
|
1048 | padding: .9em; | |
1049 | color: @grey3; |
|
1049 | color: @grey3; | |
1050 | background-color: @grey7; |
|
1050 | background-color: @grey7; | |
1051 | border-right: @border-thickness solid @border-default-color; |
|
1051 | border-right: @border-thickness solid @border-default-color; | |
1052 | border-bottom: @border-thickness solid @border-default-color; |
|
1052 | border-bottom: @border-thickness solid @border-default-color; | |
1053 | border-left: @border-thickness solid @border-default-color; |
|
1053 | border-left: @border-thickness solid @border-default-color; | |
1054 | } |
|
1054 | } | |
1055 |
|
1055 | |||
1056 | #repo_vcs_settings { |
|
1056 | #repo_vcs_settings { | |
1057 | #inherit_overlay_vcs_default { |
|
1057 | #inherit_overlay_vcs_default { | |
1058 | display: none; |
|
1058 | display: none; | |
1059 | } |
|
1059 | } | |
1060 | #inherit_overlay_vcs_custom { |
|
1060 | #inherit_overlay_vcs_custom { | |
1061 | display: custom; |
|
1061 | display: custom; | |
1062 | } |
|
1062 | } | |
1063 | &.inherited { |
|
1063 | &.inherited { | |
1064 | #inherit_overlay_vcs_default { |
|
1064 | #inherit_overlay_vcs_default { | |
1065 | display: block; |
|
1065 | display: block; | |
1066 | } |
|
1066 | } | |
1067 | #inherit_overlay_vcs_custom { |
|
1067 | #inherit_overlay_vcs_custom { | |
1068 | display: none; |
|
1068 | display: none; | |
1069 | } |
|
1069 | } | |
1070 | } |
|
1070 | } | |
1071 | } |
|
1071 | } | |
1072 |
|
1072 | |||
1073 | .issue-tracker-link { |
|
1073 | .issue-tracker-link { | |
1074 | color: @rcblue; |
|
1074 | color: @rcblue; | |
1075 | } |
|
1075 | } | |
1076 |
|
1076 | |||
1077 | // Issue Tracker Table Show/Hide |
|
1077 | // Issue Tracker Table Show/Hide | |
1078 | #repo_issue_tracker { |
|
1078 | #repo_issue_tracker { | |
1079 | #inherit_overlay { |
|
1079 | #inherit_overlay { | |
1080 | display: none; |
|
1080 | display: none; | |
1081 | } |
|
1081 | } | |
1082 | #custom_overlay { |
|
1082 | #custom_overlay { | |
1083 | display: custom; |
|
1083 | display: custom; | |
1084 | } |
|
1084 | } | |
1085 | &.inherited { |
|
1085 | &.inherited { | |
1086 | #inherit_overlay { |
|
1086 | #inherit_overlay { | |
1087 | display: block; |
|
1087 | display: block; | |
1088 | } |
|
1088 | } | |
1089 | #custom_overlay { |
|
1089 | #custom_overlay { | |
1090 | display: none; |
|
1090 | display: none; | |
1091 | } |
|
1091 | } | |
1092 | } |
|
1092 | } | |
1093 | } |
|
1093 | } | |
1094 | table.issuetracker { |
|
1094 | table.issuetracker { | |
1095 | &.readonly { |
|
1095 | &.readonly { | |
1096 | tr, td { |
|
1096 | tr, td { | |
1097 | color: @grey3; |
|
1097 | color: @grey3; | |
1098 | } |
|
1098 | } | |
1099 | } |
|
1099 | } | |
1100 | .edit { |
|
1100 | .edit { | |
1101 | display: none; |
|
1101 | display: none; | |
1102 | } |
|
1102 | } | |
1103 | .editopen { |
|
1103 | .editopen { | |
1104 | .edit { |
|
1104 | .edit { | |
1105 | display: inline; |
|
1105 | display: inline; | |
1106 | } |
|
1106 | } | |
1107 | .entry { |
|
1107 | .entry { | |
1108 | display: none; |
|
1108 | display: none; | |
1109 | } |
|
1109 | } | |
1110 | } |
|
1110 | } | |
1111 | tr td.td-action { |
|
1111 | tr td.td-action { | |
1112 | min-width: 117px; |
|
1112 | min-width: 117px; | |
1113 | } |
|
1113 | } | |
1114 | td input { |
|
1114 | td input { | |
1115 | max-width: none; |
|
1115 | max-width: none; | |
1116 | min-width: 30px; |
|
1116 | min-width: 30px; | |
1117 | width: 80%; |
|
1117 | width: 80%; | |
1118 | } |
|
1118 | } | |
1119 | .issuetracker_pref input { |
|
1119 | .issuetracker_pref input { | |
1120 | width: 40%; |
|
1120 | width: 40%; | |
1121 | } |
|
1121 | } | |
1122 | input.edit_issuetracker_update { |
|
1122 | input.edit_issuetracker_update { | |
1123 | margin-right: 0; |
|
1123 | margin-right: 0; | |
1124 | width: auto; |
|
1124 | width: auto; | |
1125 | } |
|
1125 | } | |
1126 | } |
|
1126 | } | |
1127 |
|
1127 | |||
1128 | table.integrations { |
|
1128 | table.integrations { | |
1129 | .td-icon { |
|
1129 | .td-icon { | |
1130 | width: 20px; |
|
1130 | width: 20px; | |
1131 | .integration-icon { |
|
1131 | .integration-icon { | |
1132 | height: 20px; |
|
1132 | height: 20px; | |
1133 | width: 20px; |
|
1133 | width: 20px; | |
1134 | } |
|
1134 | } | |
1135 | } |
|
1135 | } | |
1136 | } |
|
1136 | } | |
1137 |
|
1137 | |||
1138 | .integrations { |
|
1138 | .integrations { | |
1139 | a.integration-box { |
|
1139 | a.integration-box { | |
1140 | color: @text-color; |
|
1140 | color: @text-color; | |
1141 | &:hover { |
|
1141 | &:hover { | |
1142 | .panel { |
|
1142 | .panel { | |
1143 | background: #fbfbfb; |
|
1143 | background: #fbfbfb; | |
1144 | } |
|
1144 | } | |
1145 | } |
|
1145 | } | |
1146 | .integration-icon { |
|
1146 | .integration-icon { | |
1147 | width: 30px; |
|
1147 | width: 30px; | |
1148 | height: 30px; |
|
1148 | height: 30px; | |
1149 | margin-right: 20px; |
|
1149 | margin-right: 20px; | |
1150 | float: left; |
|
1150 | float: left; | |
1151 | } |
|
1151 | } | |
1152 |
|
1152 | |||
1153 | .panel-body { |
|
1153 | .panel-body { | |
1154 | padding: 10px; |
|
1154 | padding: 10px; | |
1155 | } |
|
1155 | } | |
1156 | .panel { |
|
1156 | .panel { | |
1157 | margin-bottom: 10px; |
|
1157 | margin-bottom: 10px; | |
1158 | } |
|
1158 | } | |
1159 | h2 { |
|
1159 | h2 { | |
1160 | display: inline-block; |
|
1160 | display: inline-block; | |
1161 | margin: 0; |
|
1161 | margin: 0; | |
1162 | min-width: 140px; |
|
1162 | min-width: 140px; | |
1163 | } |
|
1163 | } | |
1164 | } |
|
1164 | } | |
1165 | } |
|
1165 | } | |
1166 |
|
1166 | |||
1167 | //Permissions Settings |
|
1167 | //Permissions Settings | |
1168 | #add_perm { |
|
1168 | #add_perm { | |
1169 | margin: 0 0 @padding; |
|
1169 | margin: 0 0 @padding; | |
1170 | cursor: pointer; |
|
1170 | cursor: pointer; | |
1171 | } |
|
1171 | } | |
1172 |
|
1172 | |||
1173 | .perm_ac { |
|
1173 | .perm_ac { | |
1174 | input { |
|
1174 | input { | |
1175 | width: 95%; |
|
1175 | width: 95%; | |
1176 | } |
|
1176 | } | |
1177 | } |
|
1177 | } | |
1178 |
|
1178 | |||
1179 | .autocomplete-suggestions { |
|
1179 | .autocomplete-suggestions { | |
1180 | width: auto !important; // overrides autocomplete.js |
|
1180 | width: auto !important; // overrides autocomplete.js | |
1181 | margin: 0; |
|
1181 | margin: 0; | |
1182 | border: @border-thickness solid @rcblue; |
|
1182 | border: @border-thickness solid @rcblue; | |
1183 | border-radius: @border-radius; |
|
1183 | border-radius: @border-radius; | |
1184 | color: @rcblue; |
|
1184 | color: @rcblue; | |
1185 | background-color: white; |
|
1185 | background-color: white; | |
1186 | } |
|
1186 | } | |
1187 | .autocomplete-selected { |
|
1187 | .autocomplete-selected { | |
1188 | background: #F0F0F0; |
|
1188 | background: #F0F0F0; | |
1189 | } |
|
1189 | } | |
1190 | .ac-container-wrap { |
|
1190 | .ac-container-wrap { | |
1191 | margin: 0; |
|
1191 | margin: 0; | |
1192 | padding: 8px; |
|
1192 | padding: 8px; | |
1193 | border-bottom: @border-thickness solid @rclightblue; |
|
1193 | border-bottom: @border-thickness solid @rclightblue; | |
1194 | list-style-type: none; |
|
1194 | list-style-type: none; | |
1195 | cursor: pointer; |
|
1195 | cursor: pointer; | |
1196 |
|
1196 | |||
1197 | &:hover { |
|
1197 | &:hover { | |
1198 | background-color: @rclightblue; |
|
1198 | background-color: @rclightblue; | |
1199 | } |
|
1199 | } | |
1200 |
|
1200 | |||
1201 | img { |
|
1201 | img { | |
1202 | height: @gravatar-size; |
|
1202 | height: @gravatar-size; | |
1203 | width: @gravatar-size; |
|
1203 | width: @gravatar-size; | |
1204 | margin-right: 1em; |
|
1204 | margin-right: 1em; | |
1205 | } |
|
1205 | } | |
1206 |
|
1206 | |||
1207 | strong { |
|
1207 | strong { | |
1208 | font-weight: normal; |
|
1208 | font-weight: normal; | |
1209 | } |
|
1209 | } | |
1210 | } |
|
1210 | } | |
1211 |
|
1211 | |||
1212 | // Settings Dropdown |
|
1212 | // Settings Dropdown | |
1213 | .user-menu .container { |
|
1213 | .user-menu .container { | |
1214 | padding: 0 4px; |
|
1214 | padding: 0 4px; | |
1215 | margin: 0; |
|
1215 | margin: 0; | |
1216 | } |
|
1216 | } | |
1217 |
|
1217 | |||
1218 | .user-menu .gravatar { |
|
1218 | .user-menu .gravatar { | |
1219 | cursor: pointer; |
|
1219 | cursor: pointer; | |
1220 | } |
|
1220 | } | |
1221 |
|
1221 | |||
1222 | .codeblock { |
|
1222 | .codeblock { | |
1223 | margin-bottom: @padding; |
|
1223 | margin-bottom: @padding; | |
1224 | clear: both; |
|
1224 | clear: both; | |
1225 |
|
1225 | |||
1226 | .stats{ |
|
1226 | .stats{ | |
1227 | overflow: hidden; |
|
1227 | overflow: hidden; | |
1228 | } |
|
1228 | } | |
1229 |
|
1229 | |||
1230 | .message{ |
|
1230 | .message{ | |
1231 | textarea{ |
|
1231 | textarea{ | |
1232 | margin: 0; |
|
1232 | margin: 0; | |
1233 | } |
|
1233 | } | |
1234 | } |
|
1234 | } | |
1235 |
|
1235 | |||
1236 | .code-header { |
|
1236 | .code-header { | |
1237 | .stats { |
|
1237 | .stats { | |
1238 | line-height: 2em; |
|
1238 | line-height: 2em; | |
1239 |
|
1239 | |||
1240 | .revision_id { |
|
1240 | .revision_id { | |
1241 | margin-left: 0; |
|
1241 | margin-left: 0; | |
1242 | } |
|
1242 | } | |
1243 | .buttons { |
|
1243 | .buttons { | |
1244 | padding-right: 0; |
|
1244 | padding-right: 0; | |
1245 | } |
|
1245 | } | |
1246 | } |
|
1246 | } | |
1247 |
|
1247 | |||
1248 | .item{ |
|
1248 | .item{ | |
1249 | margin-right: 0.5em; |
|
1249 | margin-right: 0.5em; | |
1250 | } |
|
1250 | } | |
1251 | } |
|
1251 | } | |
1252 |
|
1252 | |||
1253 | #editor_container{ |
|
1253 | #editor_container{ | |
1254 | position: relative; |
|
1254 | position: relative; | |
1255 | margin: @padding; |
|
1255 | margin: @padding; | |
1256 | } |
|
1256 | } | |
1257 | } |
|
1257 | } | |
1258 |
|
1258 | |||
1259 | #file_history_container { |
|
1259 | #file_history_container { | |
1260 | display: none; |
|
1260 | display: none; | |
1261 | } |
|
1261 | } | |
1262 |
|
1262 | |||
1263 | .file-history-inner { |
|
1263 | .file-history-inner { | |
1264 | margin-bottom: 10px; |
|
1264 | margin-bottom: 10px; | |
1265 | } |
|
1265 | } | |
1266 |
|
1266 | |||
1267 | // Pull Requests |
|
1267 | // Pull Requests | |
1268 | .summary-details { |
|
1268 | .summary-details { | |
1269 | width: 72%; |
|
1269 | width: 72%; | |
1270 | } |
|
1270 | } | |
1271 | .pr-summary { |
|
1271 | .pr-summary { | |
1272 | border-bottom: @border-thickness solid @grey5; |
|
1272 | border-bottom: @border-thickness solid @grey5; | |
1273 | margin-bottom: @space; |
|
1273 | margin-bottom: @space; | |
1274 | } |
|
1274 | } | |
1275 | .reviewers-title { |
|
1275 | .reviewers-title { | |
1276 | width: 25%; |
|
1276 | width: 25%; | |
1277 | min-width: 200px; |
|
1277 | min-width: 200px; | |
1278 | } |
|
1278 | } | |
1279 | .reviewers { |
|
1279 | .reviewers { | |
1280 | width: 25%; |
|
1280 | width: 25%; | |
1281 | min-width: 200px; |
|
1281 | min-width: 200px; | |
1282 | } |
|
1282 | } | |
1283 | .reviewers ul li { |
|
1283 | .reviewers ul li { | |
1284 | position: relative; |
|
1284 | position: relative; | |
1285 | width: 100%; |
|
1285 | width: 100%; | |
1286 | margin-bottom: 8px; |
|
1286 | margin-bottom: 8px; | |
1287 | } |
|
1287 | } | |
1288 | .reviewers_member { |
|
1288 | .reviewers_member { | |
1289 | width: 100%; |
|
1289 | width: 100%; | |
1290 | overflow: auto; |
|
1290 | overflow: auto; | |
1291 | } |
|
1291 | } | |
1292 | .reviewer_reason { |
|
1292 | .reviewer_reason { | |
1293 | padding-left: 20px; |
|
1293 | padding-left: 20px; | |
1294 | } |
|
1294 | } | |
1295 | .reviewer_status { |
|
1295 | .reviewer_status { | |
1296 | display: inline-block; |
|
1296 | display: inline-block; | |
1297 | vertical-align: top; |
|
1297 | vertical-align: top; | |
1298 | width: 7%; |
|
1298 | width: 7%; | |
1299 | min-width: 20px; |
|
1299 | min-width: 20px; | |
1300 | height: 1.2em; |
|
1300 | height: 1.2em; | |
1301 | margin-top: 3px; |
|
1301 | margin-top: 3px; | |
1302 | line-height: 1em; |
|
1302 | line-height: 1em; | |
1303 | } |
|
1303 | } | |
1304 |
|
1304 | |||
1305 | .reviewer_name { |
|
1305 | .reviewer_name { | |
1306 | display: inline-block; |
|
1306 | display: inline-block; | |
1307 | max-width: 83%; |
|
1307 | max-width: 83%; | |
1308 | padding-right: 20px; |
|
1308 | padding-right: 20px; | |
1309 | vertical-align: middle; |
|
1309 | vertical-align: middle; | |
1310 | line-height: 1; |
|
1310 | line-height: 1; | |
1311 |
|
1311 | |||
1312 | .rc-user { |
|
1312 | .rc-user { | |
1313 | min-width: 0; |
|
1313 | min-width: 0; | |
1314 | margin: -2px 1em 0 0; |
|
1314 | margin: -2px 1em 0 0; | |
1315 | } |
|
1315 | } | |
1316 |
|
1316 | |||
1317 | .reviewer { |
|
1317 | .reviewer { | |
1318 | float: left; |
|
1318 | float: left; | |
1319 | } |
|
1319 | } | |
1320 |
|
1320 | |||
1321 | &.to-delete { |
|
1321 | &.to-delete { | |
1322 | .user, |
|
1322 | .user, | |
1323 | .reviewer { |
|
1323 | .reviewer { | |
1324 | text-decoration: line-through; |
|
1324 | text-decoration: line-through; | |
1325 | } |
|
1325 | } | |
1326 | } |
|
1326 | } | |
1327 | } |
|
1327 | } | |
1328 |
|
1328 | |||
1329 | .reviewer_member_remove { |
|
1329 | .reviewer_member_remove { | |
1330 | position: absolute; |
|
1330 | position: absolute; | |
1331 | right: 0; |
|
1331 | right: 0; | |
1332 | top: 0; |
|
1332 | top: 0; | |
1333 | width: 16px; |
|
1333 | width: 16px; | |
1334 | margin-bottom: 10px; |
|
1334 | margin-bottom: 10px; | |
1335 | padding: 0; |
|
1335 | padding: 0; | |
1336 | color: black; |
|
1336 | color: black; | |
1337 | } |
|
1337 | } | |
1338 | .reviewer_member_status { |
|
1338 | .reviewer_member_status { | |
1339 | margin-top: 5px; |
|
1339 | margin-top: 5px; | |
1340 | } |
|
1340 | } | |
1341 | .pr-summary #summary{ |
|
1341 | .pr-summary #summary{ | |
1342 | width: 100%; |
|
1342 | width: 100%; | |
1343 | } |
|
1343 | } | |
1344 | .pr-summary .action_button:hover { |
|
1344 | .pr-summary .action_button:hover { | |
1345 | border: 0; |
|
1345 | border: 0; | |
1346 | cursor: pointer; |
|
1346 | cursor: pointer; | |
1347 | } |
|
1347 | } | |
1348 | .pr-details-title { |
|
1348 | .pr-details-title { | |
1349 | padding-bottom: 8px; |
|
1349 | padding-bottom: 8px; | |
1350 | border-bottom: @border-thickness solid @grey5; |
|
1350 | border-bottom: @border-thickness solid @grey5; | |
1351 |
|
1351 | |||
1352 | .action_button.disabled { |
|
1352 | .action_button.disabled { | |
1353 | color: @grey4; |
|
1353 | color: @grey4; | |
1354 | cursor: inherit; |
|
1354 | cursor: inherit; | |
1355 | } |
|
1355 | } | |
1356 | .action_button { |
|
1356 | .action_button { | |
1357 | color: @rcblue; |
|
1357 | color: @rcblue; | |
1358 | } |
|
1358 | } | |
1359 | } |
|
1359 | } | |
1360 | .pr-details-content { |
|
1360 | .pr-details-content { | |
1361 | margin-top: @textmargin; |
|
1361 | margin-top: @textmargin; | |
1362 | margin-bottom: @textmargin; |
|
1362 | margin-bottom: @textmargin; | |
1363 | } |
|
1363 | } | |
1364 | .pr-description { |
|
1364 | .pr-description { | |
1365 | white-space:pre-wrap; |
|
1365 | white-space:pre-wrap; | |
1366 | } |
|
1366 | } | |
1367 | .group_members { |
|
1367 | .group_members { | |
1368 | margin-top: 0; |
|
1368 | margin-top: 0; | |
1369 | padding: 0; |
|
1369 | padding: 0; | |
1370 | list-style: outside none none; |
|
1370 | list-style: outside none none; | |
1371 |
|
1371 | |||
1372 | img { |
|
1372 | img { | |
1373 | height: @gravatar-size; |
|
1373 | height: @gravatar-size; | |
1374 | width: @gravatar-size; |
|
1374 | width: @gravatar-size; | |
1375 | margin-right: .5em; |
|
1375 | margin-right: .5em; | |
1376 | margin-left: 3px; |
|
1376 | margin-left: 3px; | |
1377 | } |
|
1377 | } | |
1378 |
|
1378 | |||
1379 | .to-delete { |
|
1379 | .to-delete { | |
1380 | .user { |
|
1380 | .user { | |
1381 | text-decoration: line-through; |
|
1381 | text-decoration: line-through; | |
1382 | } |
|
1382 | } | |
1383 | } |
|
1383 | } | |
1384 | } |
|
1384 | } | |
1385 |
|
1385 | |||
1386 | .compare_view_commits_title { |
|
1386 | .compare_view_commits_title { | |
1387 | .disabled { |
|
1387 | .disabled { | |
1388 | cursor: inherit; |
|
1388 | cursor: inherit; | |
1389 | &:hover{ |
|
1389 | &:hover{ | |
1390 | background-color: inherit; |
|
1390 | background-color: inherit; | |
1391 | color: inherit; |
|
1391 | color: inherit; | |
1392 | } |
|
1392 | } | |
1393 | } |
|
1393 | } | |
1394 | } |
|
1394 | } | |
1395 |
|
1395 | |||
|
1396 | .subtitle-compare { | |||
|
1397 | margin: -15px 0px 0px 0px; | |||
|
1398 | } | |||
|
1399 | ||||
|
1400 | .comments-summary-td { | |||
|
1401 | border-top: 1px dashed @grey5; | |||
|
1402 | } | |||
|
1403 | ||||
1396 | // new entry in group_members |
|
1404 | // new entry in group_members | |
1397 | .td-author-new-entry { |
|
1405 | .td-author-new-entry { | |
1398 | background-color: rgba(red(@alert1), green(@alert1), blue(@alert1), 0.3); |
|
1406 | background-color: rgba(red(@alert1), green(@alert1), blue(@alert1), 0.3); | |
1399 | } |
|
1407 | } | |
1400 |
|
1408 | |||
1401 | .usergroup_member_remove { |
|
1409 | .usergroup_member_remove { | |
1402 | width: 16px; |
|
1410 | width: 16px; | |
1403 | margin-bottom: 10px; |
|
1411 | margin-bottom: 10px; | |
1404 | padding: 0; |
|
1412 | padding: 0; | |
1405 | color: black !important; |
|
1413 | color: black !important; | |
1406 | cursor: pointer; |
|
1414 | cursor: pointer; | |
1407 | } |
|
1415 | } | |
1408 |
|
1416 | |||
1409 | .reviewer_ac .ac-input { |
|
1417 | .reviewer_ac .ac-input { | |
1410 | width: 92%; |
|
1418 | width: 92%; | |
1411 | margin-bottom: 1em; |
|
1419 | margin-bottom: 1em; | |
1412 | } |
|
1420 | } | |
1413 |
|
1421 | |||
1414 | .compare_view_commits tr{ |
|
1422 | .compare_view_commits tr{ | |
1415 | height: 20px; |
|
1423 | height: 20px; | |
1416 | } |
|
1424 | } | |
1417 | .compare_view_commits td { |
|
1425 | .compare_view_commits td { | |
1418 | vertical-align: top; |
|
1426 | vertical-align: top; | |
1419 | padding-top: 10px; |
|
1427 | padding-top: 10px; | |
1420 | } |
|
1428 | } | |
1421 | .compare_view_commits .author { |
|
1429 | .compare_view_commits .author { | |
1422 | margin-left: 5px; |
|
1430 | margin-left: 5px; | |
1423 | } |
|
1431 | } | |
1424 |
|
1432 | |||
|
1433 | .compare_view_commits { | |||
|
1434 | .color-a { | |||
|
1435 | color: @alert1; | |||
|
1436 | } | |||
|
1437 | ||||
|
1438 | .color-c { | |||
|
1439 | color: @color3; | |||
|
1440 | } | |||
|
1441 | ||||
|
1442 | .color-r { | |||
|
1443 | color: @color5; | |||
|
1444 | } | |||
|
1445 | ||||
|
1446 | .color-a-bg { | |||
|
1447 | background-color: @alert1; | |||
|
1448 | } | |||
|
1449 | ||||
|
1450 | .color-c-bg { | |||
|
1451 | background-color: @alert3; | |||
|
1452 | } | |||
|
1453 | ||||
|
1454 | .color-r-bg { | |||
|
1455 | background-color: @alert2; | |||
|
1456 | } | |||
|
1457 | ||||
|
1458 | .color-a-border { | |||
|
1459 | border: 1px solid @alert1; | |||
|
1460 | } | |||
|
1461 | ||||
|
1462 | .color-c-border { | |||
|
1463 | border: 1px solid @alert3; | |||
|
1464 | } | |||
|
1465 | ||||
|
1466 | .color-r-border { | |||
|
1467 | border: 1px solid @alert2; | |||
|
1468 | } | |||
|
1469 | ||||
|
1470 | .commit-change-indicator { | |||
|
1471 | width: 15px; | |||
|
1472 | height: 15px; | |||
|
1473 | position: relative; | |||
|
1474 | left: 15px; | |||
|
1475 | } | |||
|
1476 | ||||
|
1477 | .commit-change-content { | |||
|
1478 | text-align: center; | |||
|
1479 | vertical-align: middle; | |||
|
1480 | line-height: 15px; | |||
|
1481 | } | |||
|
1482 | } | |||
|
1483 | ||||
1425 | .compare_view_files { |
|
1484 | .compare_view_files { | |
1426 | width: 100%; |
|
1485 | width: 100%; | |
1427 |
|
1486 | |||
1428 | td { |
|
1487 | td { | |
1429 | vertical-align: middle; |
|
1488 | vertical-align: middle; | |
1430 | } |
|
1489 | } | |
1431 | } |
|
1490 | } | |
1432 |
|
1491 | |||
1433 | .compare_view_filepath { |
|
1492 | .compare_view_filepath { | |
1434 | color: @grey1; |
|
1493 | color: @grey1; | |
1435 | } |
|
1494 | } | |
1436 |
|
1495 | |||
1437 | .show_more { |
|
1496 | .show_more { | |
1438 | display: inline-block; |
|
1497 | display: inline-block; | |
1439 | position: relative; |
|
1498 | position: relative; | |
1440 | vertical-align: middle; |
|
1499 | vertical-align: middle; | |
1441 | width: 4px; |
|
1500 | width: 4px; | |
1442 | height: @basefontsize; |
|
1501 | height: @basefontsize; | |
1443 |
|
1502 | |||
1444 | &:after { |
|
1503 | &:after { | |
1445 | content: "\00A0\25BE"; |
|
1504 | content: "\00A0\25BE"; | |
1446 | display: inline-block; |
|
1505 | display: inline-block; | |
1447 | width:10px; |
|
1506 | width:10px; | |
1448 | line-height: 5px; |
|
1507 | line-height: 5px; | |
1449 | font-size: 12px; |
|
1508 | font-size: 12px; | |
1450 | cursor: pointer; |
|
1509 | cursor: pointer; | |
1451 | } |
|
1510 | } | |
1452 | } |
|
1511 | } | |
1453 |
|
1512 | |||
1454 | .journal_more .show_more { |
|
1513 | .journal_more .show_more { | |
1455 | display: inline; |
|
1514 | display: inline; | |
1456 |
|
1515 | |||
1457 | &:after { |
|
1516 | &:after { | |
1458 | content: none; |
|
1517 | content: none; | |
1459 | } |
|
1518 | } | |
1460 | } |
|
1519 | } | |
1461 |
|
1520 | |||
1462 | .open .show_more:after, |
|
1521 | .open .show_more:after, | |
1463 | .select2-dropdown-open .show_more:after { |
|
1522 | .select2-dropdown-open .show_more:after { | |
1464 | .rotate(180deg); |
|
1523 | .rotate(180deg); | |
1465 | margin-left: 4px; |
|
1524 | margin-left: 4px; | |
1466 | } |
|
1525 | } | |
1467 |
|
1526 | |||
1468 |
|
1527 | |||
1469 | .compare_view_commits .collapse_commit:after { |
|
1528 | .compare_view_commits .collapse_commit:after { | |
1470 | cursor: pointer; |
|
1529 | cursor: pointer; | |
1471 | content: "\00A0\25B4"; |
|
1530 | content: "\00A0\25B4"; | |
1472 | margin-left: -3px; |
|
1531 | margin-left: -3px; | |
1473 | font-size: 17px; |
|
1532 | font-size: 17px; | |
1474 | color: @grey4; |
|
1533 | color: @grey4; | |
1475 | } |
|
1534 | } | |
1476 |
|
1535 | |||
1477 | .diff_links { |
|
1536 | .diff_links { | |
1478 | margin-left: 8px; |
|
1537 | margin-left: 8px; | |
1479 | } |
|
1538 | } | |
1480 |
|
1539 | |||
1481 | div.ancestor { |
|
1540 | div.ancestor { | |
1482 | margin: -30px 0px; |
|
1541 | margin: -30px 0px; | |
1483 | } |
|
1542 | } | |
1484 |
|
1543 | |||
1485 | .cs_icon_td input[type="checkbox"] { |
|
1544 | .cs_icon_td input[type="checkbox"] { | |
1486 | display: none; |
|
1545 | display: none; | |
1487 | } |
|
1546 | } | |
1488 |
|
1547 | |||
1489 | .cs_icon_td .expand_file_icon:after { |
|
1548 | .cs_icon_td .expand_file_icon:after { | |
1490 | cursor: pointer; |
|
1549 | cursor: pointer; | |
1491 | content: "\00A0\25B6"; |
|
1550 | content: "\00A0\25B6"; | |
1492 | font-size: 12px; |
|
1551 | font-size: 12px; | |
1493 | color: @grey4; |
|
1552 | color: @grey4; | |
1494 | } |
|
1553 | } | |
1495 |
|
1554 | |||
1496 | .cs_icon_td .collapse_file_icon:after { |
|
1555 | .cs_icon_td .collapse_file_icon:after { | |
1497 | cursor: pointer; |
|
1556 | cursor: pointer; | |
1498 | content: "\00A0\25BC"; |
|
1557 | content: "\00A0\25BC"; | |
1499 | font-size: 12px; |
|
1558 | font-size: 12px; | |
1500 | color: @grey4; |
|
1559 | color: @grey4; | |
1501 | } |
|
1560 | } | |
1502 |
|
1561 | |||
1503 | /*new binary |
|
1562 | /*new binary | |
1504 | NEW_FILENODE = 1 |
|
1563 | NEW_FILENODE = 1 | |
1505 | DEL_FILENODE = 2 |
|
1564 | DEL_FILENODE = 2 | |
1506 | MOD_FILENODE = 3 |
|
1565 | MOD_FILENODE = 3 | |
1507 | RENAMED_FILENODE = 4 |
|
1566 | RENAMED_FILENODE = 4 | |
1508 | COPIED_FILENODE = 5 |
|
1567 | COPIED_FILENODE = 5 | |
1509 | CHMOD_FILENODE = 6 |
|
1568 | CHMOD_FILENODE = 6 | |
1510 | BIN_FILENODE = 7 |
|
1569 | BIN_FILENODE = 7 | |
1511 | */ |
|
1570 | */ | |
1512 | .cs_files_expand { |
|
1571 | .cs_files_expand { | |
1513 | font-size: @basefontsize + 5px; |
|
1572 | font-size: @basefontsize + 5px; | |
1514 | line-height: 1.8em; |
|
1573 | line-height: 1.8em; | |
1515 | float: right; |
|
1574 | float: right; | |
1516 | } |
|
1575 | } | |
1517 |
|
1576 | |||
1518 | .cs_files_expand span{ |
|
1577 | .cs_files_expand span{ | |
1519 | color: @rcblue; |
|
1578 | color: @rcblue; | |
1520 | cursor: pointer; |
|
1579 | cursor: pointer; | |
1521 | } |
|
1580 | } | |
1522 | .cs_files { |
|
1581 | .cs_files { | |
1523 | clear: both; |
|
1582 | clear: both; | |
1524 | padding-bottom: @padding; |
|
1583 | padding-bottom: @padding; | |
1525 |
|
1584 | |||
1526 | .cur_cs { |
|
1585 | .cur_cs { | |
1527 | margin: 10px 2px; |
|
1586 | margin: 10px 2px; | |
1528 | font-weight: bold; |
|
1587 | font-weight: bold; | |
1529 | } |
|
1588 | } | |
1530 |
|
1589 | |||
1531 | .node { |
|
1590 | .node { | |
1532 | float: left; |
|
1591 | float: left; | |
1533 | } |
|
1592 | } | |
1534 |
|
1593 | |||
1535 | .changes { |
|
1594 | .changes { | |
1536 | float: right; |
|
1595 | float: right; | |
1537 | color: white; |
|
1596 | color: white; | |
1538 | font-size: @basefontsize - 4px; |
|
1597 | font-size: @basefontsize - 4px; | |
1539 | margin-top: 4px; |
|
1598 | margin-top: 4px; | |
1540 | opacity: 0.6; |
|
1599 | opacity: 0.6; | |
1541 | filter: Alpha(opacity=60); /* IE8 and earlier */ |
|
1600 | filter: Alpha(opacity=60); /* IE8 and earlier */ | |
1542 |
|
1601 | |||
1543 | .added { |
|
1602 | .added { | |
1544 | background-color: @alert1; |
|
1603 | background-color: @alert1; | |
1545 | float: left; |
|
1604 | float: left; | |
1546 | text-align: center; |
|
1605 | text-align: center; | |
1547 | } |
|
1606 | } | |
1548 |
|
1607 | |||
1549 | .deleted { |
|
1608 | .deleted { | |
1550 | background-color: @alert2; |
|
1609 | background-color: @alert2; | |
1551 | float: left; |
|
1610 | float: left; | |
1552 | text-align: center; |
|
1611 | text-align: center; | |
1553 | } |
|
1612 | } | |
1554 |
|
1613 | |||
1555 | .bin { |
|
1614 | .bin { | |
1556 | background-color: @alert1; |
|
1615 | background-color: @alert1; | |
1557 | text-align: center; |
|
1616 | text-align: center; | |
1558 | } |
|
1617 | } | |
1559 |
|
1618 | |||
1560 | /*new binary*/ |
|
1619 | /*new binary*/ | |
1561 | .bin.bin1 { |
|
1620 | .bin.bin1 { | |
1562 | background-color: @alert1; |
|
1621 | background-color: @alert1; | |
1563 | text-align: center; |
|
1622 | text-align: center; | |
1564 | } |
|
1623 | } | |
1565 |
|
1624 | |||
1566 | /*deleted binary*/ |
|
1625 | /*deleted binary*/ | |
1567 | .bin.bin2 { |
|
1626 | .bin.bin2 { | |
1568 | background-color: @alert2; |
|
1627 | background-color: @alert2; | |
1569 | text-align: center; |
|
1628 | text-align: center; | |
1570 | } |
|
1629 | } | |
1571 |
|
1630 | |||
1572 | /*mod binary*/ |
|
1631 | /*mod binary*/ | |
1573 | .bin.bin3 { |
|
1632 | .bin.bin3 { | |
1574 | background-color: @grey2; |
|
1633 | background-color: @grey2; | |
1575 | text-align: center; |
|
1634 | text-align: center; | |
1576 | } |
|
1635 | } | |
1577 |
|
1636 | |||
1578 | /*rename file*/ |
|
1637 | /*rename file*/ | |
1579 | .bin.bin4 { |
|
1638 | .bin.bin4 { | |
1580 | background-color: @alert4; |
|
1639 | background-color: @alert4; | |
1581 | text-align: center; |
|
1640 | text-align: center; | |
1582 | } |
|
1641 | } | |
1583 |
|
1642 | |||
1584 | /*copied file*/ |
|
1643 | /*copied file*/ | |
1585 | .bin.bin5 { |
|
1644 | .bin.bin5 { | |
1586 | background-color: @alert4; |
|
1645 | background-color: @alert4; | |
1587 | text-align: center; |
|
1646 | text-align: center; | |
1588 | } |
|
1647 | } | |
1589 |
|
1648 | |||
1590 | /*chmod file*/ |
|
1649 | /*chmod file*/ | |
1591 | .bin.bin6 { |
|
1650 | .bin.bin6 { | |
1592 | background-color: @grey2; |
|
1651 | background-color: @grey2; | |
1593 | text-align: center; |
|
1652 | text-align: center; | |
1594 | } |
|
1653 | } | |
1595 | } |
|
1654 | } | |
1596 | } |
|
1655 | } | |
1597 |
|
1656 | |||
1598 | .cs_files .cs_added, .cs_files .cs_A, |
|
1657 | .cs_files .cs_added, .cs_files .cs_A, | |
1599 | .cs_files .cs_added, .cs_files .cs_M, |
|
1658 | .cs_files .cs_added, .cs_files .cs_M, | |
1600 | .cs_files .cs_added, .cs_files .cs_D { |
|
1659 | .cs_files .cs_added, .cs_files .cs_D { | |
1601 | height: 16px; |
|
1660 | height: 16px; | |
1602 | padding-right: 10px; |
|
1661 | padding-right: 10px; | |
1603 | margin-top: 7px; |
|
1662 | margin-top: 7px; | |
1604 | text-align: left; |
|
1663 | text-align: left; | |
1605 | } |
|
1664 | } | |
1606 |
|
1665 | |||
1607 | .cs_icon_td { |
|
1666 | .cs_icon_td { | |
1608 | min-width: 16px; |
|
1667 | min-width: 16px; | |
1609 | width: 16px; |
|
1668 | width: 16px; | |
1610 | } |
|
1669 | } | |
1611 |
|
1670 | |||
1612 | .pull-request-merge { |
|
1671 | .pull-request-merge { | |
1613 | border: 1px solid @grey5; |
|
1672 | border: 1px solid @grey5; | |
1614 | padding: 10px 0px 20px; |
|
1673 | padding: 10px 0px 20px; | |
1615 | margin-top: 10px; |
|
1674 | margin-top: 10px; | |
1616 | margin-bottom: 20px; |
|
1675 | margin-bottom: 20px; | |
1617 | } |
|
1676 | } | |
1618 |
|
1677 | |||
1619 | .pull-request-merge ul { |
|
1678 | .pull-request-merge ul { | |
1620 | padding: 0px 0px; |
|
1679 | padding: 0px 0px; | |
1621 | } |
|
1680 | } | |
1622 |
|
1681 | |||
1623 | .pull-request-merge li:before{ |
|
1682 | .pull-request-merge li:before{ | |
1624 | content:none; |
|
1683 | content:none; | |
1625 | } |
|
1684 | } | |
1626 |
|
1685 | |||
1627 | .pull-request-merge .pull-request-wrap { |
|
1686 | .pull-request-merge .pull-request-wrap { | |
1628 | height: auto; |
|
1687 | height: auto; | |
1629 | padding: 0px 0px; |
|
1688 | padding: 0px 0px; | |
1630 | text-align: right; |
|
1689 | text-align: right; | |
1631 | } |
|
1690 | } | |
1632 |
|
1691 | |||
1633 | .pull-request-merge span { |
|
1692 | .pull-request-merge span { | |
1634 | margin-right: 5px; |
|
1693 | margin-right: 5px; | |
1635 | } |
|
1694 | } | |
1636 |
|
1695 | |||
1637 | .pull-request-merge-actions { |
|
1696 | .pull-request-merge-actions { | |
1638 | height: 30px; |
|
1697 | height: 30px; | |
1639 | padding: 0px 0px; |
|
1698 | padding: 0px 0px; | |
1640 | } |
|
1699 | } | |
1641 |
|
1700 | |||
1642 | .merge-status { |
|
1701 | .merge-status { | |
1643 | margin-right: 5px; |
|
1702 | margin-right: 5px; | |
1644 | } |
|
1703 | } | |
1645 |
|
1704 | |||
1646 | .merge-message { |
|
1705 | .merge-message { | |
1647 | font-size: 1.2em |
|
1706 | font-size: 1.2em | |
1648 | } |
|
1707 | } | |
1649 |
|
1708 | |||
1650 | .merge-message.success i, |
|
1709 | .merge-message.success i, | |
1651 | .merge-icon.success i { |
|
1710 | .merge-icon.success i { | |
1652 | color:@alert1; |
|
1711 | color:@alert1; | |
1653 | } |
|
1712 | } | |
1654 |
|
1713 | |||
1655 | .merge-message.warning i, |
|
1714 | .merge-message.warning i, | |
1656 | .merge-icon.warning i { |
|
1715 | .merge-icon.warning i { | |
1657 | color: @alert3; |
|
1716 | color: @alert3; | |
1658 | } |
|
1717 | } | |
1659 |
|
1718 | |||
1660 | .merge-message.error i, |
|
1719 | .merge-message.error i, | |
1661 | .merge-icon.error i { |
|
1720 | .merge-icon.error i { | |
1662 | color:@alert2; |
|
1721 | color:@alert2; | |
1663 | } |
|
1722 | } | |
1664 |
|
1723 | |||
1665 | .pr-versions { |
|
1724 | .pr-versions { | |
1666 | position: relative; |
|
1725 | font-size: 1.1em; | |
1667 | top: 6px; |
|
1726 | ||
|
1727 | table { | |||
|
1728 | padding: 0px 5px; | |||
|
1729 | } | |||
|
1730 | ||||
|
1731 | td { | |||
|
1732 | line-height: 15px; | |||
|
1733 | } | |||
|
1734 | ||||
|
1735 | .flag_status { | |||
|
1736 | margin: 0; | |||
|
1737 | } | |||
|
1738 | ||||
|
1739 | .compare-radio-button { | |||
|
1740 | position: relative; | |||
|
1741 | top: -3px; | |||
|
1742 | } | |||
1668 | } |
|
1743 | } | |
1669 |
|
1744 | |||
|
1745 | ||||
1670 | #close_pull_request { |
|
1746 | #close_pull_request { | |
1671 | margin-right: 0px; |
|
1747 | margin-right: 0px; | |
1672 | } |
|
1748 | } | |
1673 |
|
1749 | |||
1674 | .empty_data { |
|
1750 | .empty_data { | |
1675 | color: @grey4; |
|
1751 | color: @grey4; | |
1676 | } |
|
1752 | } | |
1677 |
|
1753 | |||
1678 | #changeset_compare_view_content { |
|
1754 | #changeset_compare_view_content { | |
1679 | margin-bottom: @space; |
|
1755 | margin-bottom: @space; | |
1680 | clear: both; |
|
1756 | clear: both; | |
1681 | width: 100%; |
|
1757 | width: 100%; | |
1682 | box-sizing: border-box; |
|
1758 | box-sizing: border-box; | |
1683 | .border-radius(@border-radius); |
|
1759 | .border-radius(@border-radius); | |
1684 |
|
1760 | |||
1685 | .help-block { |
|
1761 | .help-block { | |
1686 | margin: @padding 0; |
|
1762 | margin: @padding 0; | |
1687 | color: @text-color; |
|
1763 | color: @text-color; | |
1688 | } |
|
1764 | } | |
1689 |
|
1765 | |||
1690 | .empty_data { |
|
1766 | .empty_data { | |
1691 | margin: @padding 0; |
|
1767 | margin: @padding 0; | |
1692 | } |
|
1768 | } | |
1693 |
|
1769 | |||
1694 | .alert { |
|
1770 | .alert { | |
1695 | margin-bottom: @space; |
|
1771 | margin-bottom: @space; | |
1696 | } |
|
1772 | } | |
1697 | } |
|
1773 | } | |
1698 |
|
1774 | |||
1699 | .table_disp { |
|
1775 | .table_disp { | |
1700 | .status { |
|
1776 | .status { | |
1701 | width: auto; |
|
1777 | width: auto; | |
1702 |
|
1778 | |||
1703 | .flag_status { |
|
1779 | .flag_status { | |
1704 | float: left; |
|
1780 | float: left; | |
1705 | } |
|
1781 | } | |
1706 | } |
|
1782 | } | |
1707 | } |
|
1783 | } | |
1708 |
|
1784 | |||
1709 | .status_box_menu { |
|
1785 | .status_box_menu { | |
1710 | margin: 0; |
|
1786 | margin: 0; | |
1711 | } |
|
1787 | } | |
1712 |
|
1788 | |||
1713 | .notification-table{ |
|
1789 | .notification-table{ | |
1714 | margin-bottom: @space; |
|
1790 | margin-bottom: @space; | |
1715 | display: table; |
|
1791 | display: table; | |
1716 | width: 100%; |
|
1792 | width: 100%; | |
1717 |
|
1793 | |||
1718 | .container{ |
|
1794 | .container{ | |
1719 | display: table-row; |
|
1795 | display: table-row; | |
1720 |
|
1796 | |||
1721 | .notification-header{ |
|
1797 | .notification-header{ | |
1722 | border-bottom: @border-thickness solid @border-default-color; |
|
1798 | border-bottom: @border-thickness solid @border-default-color; | |
1723 | } |
|
1799 | } | |
1724 |
|
1800 | |||
1725 | .notification-subject{ |
|
1801 | .notification-subject{ | |
1726 | display: table-cell; |
|
1802 | display: table-cell; | |
1727 | } |
|
1803 | } | |
1728 | } |
|
1804 | } | |
1729 | } |
|
1805 | } | |
1730 |
|
1806 | |||
1731 | // Notifications |
|
1807 | // Notifications | |
1732 | .notification-header{ |
|
1808 | .notification-header{ | |
1733 | display: table; |
|
1809 | display: table; | |
1734 | width: 100%; |
|
1810 | width: 100%; | |
1735 | padding: floor(@basefontsize/2) 0; |
|
1811 | padding: floor(@basefontsize/2) 0; | |
1736 | line-height: 1em; |
|
1812 | line-height: 1em; | |
1737 |
|
1813 | |||
1738 | .desc, .delete-notifications, .read-notifications{ |
|
1814 | .desc, .delete-notifications, .read-notifications{ | |
1739 | display: table-cell; |
|
1815 | display: table-cell; | |
1740 | text-align: left; |
|
1816 | text-align: left; | |
1741 | } |
|
1817 | } | |
1742 |
|
1818 | |||
1743 | .desc{ |
|
1819 | .desc{ | |
1744 | width: 1163px; |
|
1820 | width: 1163px; | |
1745 | } |
|
1821 | } | |
1746 |
|
1822 | |||
1747 | .delete-notifications, .read-notifications{ |
|
1823 | .delete-notifications, .read-notifications{ | |
1748 | width: 35px; |
|
1824 | width: 35px; | |
1749 | min-width: 35px; //fixes when only one button is displayed |
|
1825 | min-width: 35px; //fixes when only one button is displayed | |
1750 | } |
|
1826 | } | |
1751 | } |
|
1827 | } | |
1752 |
|
1828 | |||
1753 | .notification-body { |
|
1829 | .notification-body { | |
1754 | .markdown-block, |
|
1830 | .markdown-block, | |
1755 | .rst-block { |
|
1831 | .rst-block { | |
1756 | padding: @padding 0; |
|
1832 | padding: @padding 0; | |
1757 | } |
|
1833 | } | |
1758 |
|
1834 | |||
1759 | .notification-subject { |
|
1835 | .notification-subject { | |
1760 | padding: @textmargin 0; |
|
1836 | padding: @textmargin 0; | |
1761 | border-bottom: @border-thickness solid @border-default-color; |
|
1837 | border-bottom: @border-thickness solid @border-default-color; | |
1762 | } |
|
1838 | } | |
1763 | } |
|
1839 | } | |
1764 |
|
1840 | |||
1765 |
|
1841 | |||
1766 | .notifications_buttons{ |
|
1842 | .notifications_buttons{ | |
1767 | float: right; |
|
1843 | float: right; | |
1768 | } |
|
1844 | } | |
1769 |
|
1845 | |||
1770 | #notification-status{ |
|
1846 | #notification-status{ | |
1771 | display: inline; |
|
1847 | display: inline; | |
1772 | } |
|
1848 | } | |
1773 |
|
1849 | |||
1774 | // Repositories |
|
1850 | // Repositories | |
1775 |
|
1851 | |||
1776 | #summary.fields{ |
|
1852 | #summary.fields{ | |
1777 | display: table; |
|
1853 | display: table; | |
1778 |
|
1854 | |||
1779 | .field{ |
|
1855 | .field{ | |
1780 | display: table-row; |
|
1856 | display: table-row; | |
1781 |
|
1857 | |||
1782 | .label-summary{ |
|
1858 | .label-summary{ | |
1783 | display: table-cell; |
|
1859 | display: table-cell; | |
1784 | min-width: @label-summary-minwidth; |
|
1860 | min-width: @label-summary-minwidth; | |
1785 | padding-top: @padding/2; |
|
1861 | padding-top: @padding/2; | |
1786 | padding-bottom: @padding/2; |
|
1862 | padding-bottom: @padding/2; | |
1787 | padding-right: @padding/2; |
|
1863 | padding-right: @padding/2; | |
1788 | } |
|
1864 | } | |
1789 |
|
1865 | |||
1790 | .input{ |
|
1866 | .input{ | |
1791 | display: table-cell; |
|
1867 | display: table-cell; | |
1792 | padding: @padding/2; |
|
1868 | padding: @padding/2; | |
1793 |
|
1869 | |||
1794 | input{ |
|
1870 | input{ | |
1795 | min-width: 29em; |
|
1871 | min-width: 29em; | |
1796 | padding: @padding/4; |
|
1872 | padding: @padding/4; | |
1797 | } |
|
1873 | } | |
1798 | } |
|
1874 | } | |
1799 | .statistics, .downloads{ |
|
1875 | .statistics, .downloads{ | |
1800 | .disabled{ |
|
1876 | .disabled{ | |
1801 | color: @grey4; |
|
1877 | color: @grey4; | |
1802 | } |
|
1878 | } | |
1803 | } |
|
1879 | } | |
1804 | } |
|
1880 | } | |
1805 | } |
|
1881 | } | |
1806 |
|
1882 | |||
1807 | #summary{ |
|
1883 | #summary{ | |
1808 | width: 70%; |
|
1884 | width: 70%; | |
1809 | } |
|
1885 | } | |
1810 |
|
1886 | |||
1811 |
|
1887 | |||
1812 | // Journal |
|
1888 | // Journal | |
1813 | .journal.title { |
|
1889 | .journal.title { | |
1814 | h5 { |
|
1890 | h5 { | |
1815 | float: left; |
|
1891 | float: left; | |
1816 | margin: 0; |
|
1892 | margin: 0; | |
1817 | width: 70%; |
|
1893 | width: 70%; | |
1818 | } |
|
1894 | } | |
1819 |
|
1895 | |||
1820 | ul { |
|
1896 | ul { | |
1821 | float: right; |
|
1897 | float: right; | |
1822 | display: inline-block; |
|
1898 | display: inline-block; | |
1823 | margin: 0; |
|
1899 | margin: 0; | |
1824 | width: 30%; |
|
1900 | width: 30%; | |
1825 | text-align: right; |
|
1901 | text-align: right; | |
1826 |
|
1902 | |||
1827 | li { |
|
1903 | li { | |
1828 | display: inline; |
|
1904 | display: inline; | |
1829 | font-size: @journal-fontsize; |
|
1905 | font-size: @journal-fontsize; | |
1830 | line-height: 1em; |
|
1906 | line-height: 1em; | |
1831 |
|
1907 | |||
1832 | &:before { content: none; } |
|
1908 | &:before { content: none; } | |
1833 | } |
|
1909 | } | |
1834 | } |
|
1910 | } | |
1835 | } |
|
1911 | } | |
1836 |
|
1912 | |||
1837 | .filterexample { |
|
1913 | .filterexample { | |
1838 | position: absolute; |
|
1914 | position: absolute; | |
1839 | top: 95px; |
|
1915 | top: 95px; | |
1840 | left: @contentpadding; |
|
1916 | left: @contentpadding; | |
1841 | color: @rcblue; |
|
1917 | color: @rcblue; | |
1842 | font-size: 11px; |
|
1918 | font-size: 11px; | |
1843 | font-family: @text-regular; |
|
1919 | font-family: @text-regular; | |
1844 | cursor: help; |
|
1920 | cursor: help; | |
1845 |
|
1921 | |||
1846 | &:hover { |
|
1922 | &:hover { | |
1847 | color: @rcdarkblue; |
|
1923 | color: @rcdarkblue; | |
1848 | } |
|
1924 | } | |
1849 |
|
1925 | |||
1850 | @media (max-width:768px) { |
|
1926 | @media (max-width:768px) { | |
1851 | position: relative; |
|
1927 | position: relative; | |
1852 | top: auto; |
|
1928 | top: auto; | |
1853 | left: auto; |
|
1929 | left: auto; | |
1854 | display: block; |
|
1930 | display: block; | |
1855 | } |
|
1931 | } | |
1856 | } |
|
1932 | } | |
1857 |
|
1933 | |||
1858 |
|
1934 | |||
1859 | #journal{ |
|
1935 | #journal{ | |
1860 | margin-bottom: @space; |
|
1936 | margin-bottom: @space; | |
1861 |
|
1937 | |||
1862 | .journal_day{ |
|
1938 | .journal_day{ | |
1863 | margin-bottom: @textmargin/2; |
|
1939 | margin-bottom: @textmargin/2; | |
1864 | padding-bottom: @textmargin/2; |
|
1940 | padding-bottom: @textmargin/2; | |
1865 | font-size: @journal-fontsize; |
|
1941 | font-size: @journal-fontsize; | |
1866 | border-bottom: @border-thickness solid @border-default-color; |
|
1942 | border-bottom: @border-thickness solid @border-default-color; | |
1867 | } |
|
1943 | } | |
1868 |
|
1944 | |||
1869 | .journal_container{ |
|
1945 | .journal_container{ | |
1870 | margin-bottom: @space; |
|
1946 | margin-bottom: @space; | |
1871 |
|
1947 | |||
1872 | .journal_user{ |
|
1948 | .journal_user{ | |
1873 | display: inline-block; |
|
1949 | display: inline-block; | |
1874 | } |
|
1950 | } | |
1875 | .journal_action_container{ |
|
1951 | .journal_action_container{ | |
1876 | display: block; |
|
1952 | display: block; | |
1877 | margin-top: @textmargin; |
|
1953 | margin-top: @textmargin; | |
1878 |
|
1954 | |||
1879 | div{ |
|
1955 | div{ | |
1880 | display: inline; |
|
1956 | display: inline; | |
1881 | } |
|
1957 | } | |
1882 |
|
1958 | |||
1883 | div.journal_action_params{ |
|
1959 | div.journal_action_params{ | |
1884 | display: block; |
|
1960 | display: block; | |
1885 | } |
|
1961 | } | |
1886 |
|
1962 | |||
1887 | div.journal_repo:after{ |
|
1963 | div.journal_repo:after{ | |
1888 | content: "\A"; |
|
1964 | content: "\A"; | |
1889 | white-space: pre; |
|
1965 | white-space: pre; | |
1890 | } |
|
1966 | } | |
1891 |
|
1967 | |||
1892 | div.date{ |
|
1968 | div.date{ | |
1893 | display: block; |
|
1969 | display: block; | |
1894 | margin-bottom: @textmargin; |
|
1970 | margin-bottom: @textmargin; | |
1895 | } |
|
1971 | } | |
1896 | } |
|
1972 | } | |
1897 | } |
|
1973 | } | |
1898 | } |
|
1974 | } | |
1899 |
|
1975 | |||
1900 | // Files |
|
1976 | // Files | |
1901 | .edit-file-title { |
|
1977 | .edit-file-title { | |
1902 | border-bottom: @border-thickness solid @border-default-color; |
|
1978 | border-bottom: @border-thickness solid @border-default-color; | |
1903 |
|
1979 | |||
1904 | .breadcrumbs { |
|
1980 | .breadcrumbs { | |
1905 | margin-bottom: 0; |
|
1981 | margin-bottom: 0; | |
1906 | } |
|
1982 | } | |
1907 | } |
|
1983 | } | |
1908 |
|
1984 | |||
1909 | .edit-file-fieldset { |
|
1985 | .edit-file-fieldset { | |
1910 | margin-top: @sidebarpadding; |
|
1986 | margin-top: @sidebarpadding; | |
1911 |
|
1987 | |||
1912 | .fieldset { |
|
1988 | .fieldset { | |
1913 | .left-label { |
|
1989 | .left-label { | |
1914 | width: 13%; |
|
1990 | width: 13%; | |
1915 | } |
|
1991 | } | |
1916 | .right-content { |
|
1992 | .right-content { | |
1917 | width: 87%; |
|
1993 | width: 87%; | |
1918 | max-width: 100%; |
|
1994 | max-width: 100%; | |
1919 | } |
|
1995 | } | |
1920 | .filename-label { |
|
1996 | .filename-label { | |
1921 | margin-top: 13px; |
|
1997 | margin-top: 13px; | |
1922 | } |
|
1998 | } | |
1923 | .commit-message-label { |
|
1999 | .commit-message-label { | |
1924 | margin-top: 4px; |
|
2000 | margin-top: 4px; | |
1925 | } |
|
2001 | } | |
1926 | .file-upload-input { |
|
2002 | .file-upload-input { | |
1927 | input { |
|
2003 | input { | |
1928 | display: none; |
|
2004 | display: none; | |
1929 | } |
|
2005 | } | |
1930 | } |
|
2006 | } | |
1931 | p { |
|
2007 | p { | |
1932 | margin-top: 5px; |
|
2008 | margin-top: 5px; | |
1933 | } |
|
2009 | } | |
1934 |
|
2010 | |||
1935 | } |
|
2011 | } | |
1936 | .custom-path-link { |
|
2012 | .custom-path-link { | |
1937 | margin-left: 5px; |
|
2013 | margin-left: 5px; | |
1938 | } |
|
2014 | } | |
1939 | #commit { |
|
2015 | #commit { | |
1940 | resize: vertical; |
|
2016 | resize: vertical; | |
1941 | } |
|
2017 | } | |
1942 | } |
|
2018 | } | |
1943 |
|
2019 | |||
1944 | .delete-file-preview { |
|
2020 | .delete-file-preview { | |
1945 | max-height: 250px; |
|
2021 | max-height: 250px; | |
1946 | } |
|
2022 | } | |
1947 |
|
2023 | |||
1948 | .new-file, |
|
2024 | .new-file, | |
1949 | #filter_activate, |
|
2025 | #filter_activate, | |
1950 | #filter_deactivate { |
|
2026 | #filter_deactivate { | |
1951 | float: left; |
|
2027 | float: left; | |
1952 | margin: 0 0 0 15px; |
|
2028 | margin: 0 0 0 15px; | |
1953 | } |
|
2029 | } | |
1954 |
|
2030 | |||
1955 | h3.files_location{ |
|
2031 | h3.files_location{ | |
1956 | line-height: 2.4em; |
|
2032 | line-height: 2.4em; | |
1957 | } |
|
2033 | } | |
1958 |
|
2034 | |||
1959 | .browser-nav { |
|
2035 | .browser-nav { | |
1960 | display: table; |
|
2036 | display: table; | |
1961 | margin-bottom: @space; |
|
2037 | margin-bottom: @space; | |
1962 |
|
2038 | |||
1963 |
|
2039 | |||
1964 | .info_box { |
|
2040 | .info_box { | |
1965 | display: inline-table; |
|
2041 | display: inline-table; | |
1966 | height: 2.5em; |
|
2042 | height: 2.5em; | |
1967 |
|
2043 | |||
1968 | .browser-cur-rev, .info_box_elem { |
|
2044 | .browser-cur-rev, .info_box_elem { | |
1969 | display: table-cell; |
|
2045 | display: table-cell; | |
1970 | vertical-align: middle; |
|
2046 | vertical-align: middle; | |
1971 | } |
|
2047 | } | |
1972 |
|
2048 | |||
1973 | .info_box_elem { |
|
2049 | .info_box_elem { | |
1974 | border-top: @border-thickness solid @rcblue; |
|
2050 | border-top: @border-thickness solid @rcblue; | |
1975 | border-bottom: @border-thickness solid @rcblue; |
|
2051 | border-bottom: @border-thickness solid @rcblue; | |
1976 |
|
2052 | |||
1977 | #at_rev, a { |
|
2053 | #at_rev, a { | |
1978 | padding: 0.6em 0.9em; |
|
2054 | padding: 0.6em 0.9em; | |
1979 | margin: 0; |
|
2055 | margin: 0; | |
1980 | .box-shadow(none); |
|
2056 | .box-shadow(none); | |
1981 | border: 0; |
|
2057 | border: 0; | |
1982 | height: 12px; |
|
2058 | height: 12px; | |
1983 | } |
|
2059 | } | |
1984 |
|
2060 | |||
1985 | input#at_rev { |
|
2061 | input#at_rev { | |
1986 | max-width: 50px; |
|
2062 | max-width: 50px; | |
1987 | text-align: right; |
|
2063 | text-align: right; | |
1988 | } |
|
2064 | } | |
1989 |
|
2065 | |||
1990 | &.previous { |
|
2066 | &.previous { | |
1991 | border: @border-thickness solid @rcblue; |
|
2067 | border: @border-thickness solid @rcblue; | |
1992 | .disabled { |
|
2068 | .disabled { | |
1993 | color: @grey4; |
|
2069 | color: @grey4; | |
1994 | cursor: not-allowed; |
|
2070 | cursor: not-allowed; | |
1995 | } |
|
2071 | } | |
1996 | } |
|
2072 | } | |
1997 |
|
2073 | |||
1998 | &.next { |
|
2074 | &.next { | |
1999 | border: @border-thickness solid @rcblue; |
|
2075 | border: @border-thickness solid @rcblue; | |
2000 | .disabled { |
|
2076 | .disabled { | |
2001 | color: @grey4; |
|
2077 | color: @grey4; | |
2002 | cursor: not-allowed; |
|
2078 | cursor: not-allowed; | |
2003 | } |
|
2079 | } | |
2004 | } |
|
2080 | } | |
2005 | } |
|
2081 | } | |
2006 |
|
2082 | |||
2007 | .browser-cur-rev { |
|
2083 | .browser-cur-rev { | |
2008 |
|
2084 | |||
2009 | span{ |
|
2085 | span{ | |
2010 | margin: 0; |
|
2086 | margin: 0; | |
2011 | color: @rcblue; |
|
2087 | color: @rcblue; | |
2012 | height: 12px; |
|
2088 | height: 12px; | |
2013 | display: inline-block; |
|
2089 | display: inline-block; | |
2014 | padding: 0.7em 1em ; |
|
2090 | padding: 0.7em 1em ; | |
2015 | border: @border-thickness solid @rcblue; |
|
2091 | border: @border-thickness solid @rcblue; | |
2016 | margin-right: @padding; |
|
2092 | margin-right: @padding; | |
2017 | } |
|
2093 | } | |
2018 | } |
|
2094 | } | |
2019 | } |
|
2095 | } | |
2020 |
|
2096 | |||
2021 | .search_activate { |
|
2097 | .search_activate { | |
2022 | display: table-cell; |
|
2098 | display: table-cell; | |
2023 | vertical-align: middle; |
|
2099 | vertical-align: middle; | |
2024 |
|
2100 | |||
2025 | input, label{ |
|
2101 | input, label{ | |
2026 | margin: 0; |
|
2102 | margin: 0; | |
2027 | padding: 0; |
|
2103 | padding: 0; | |
2028 | } |
|
2104 | } | |
2029 |
|
2105 | |||
2030 | input{ |
|
2106 | input{ | |
2031 | margin-left: @textmargin; |
|
2107 | margin-left: @textmargin; | |
2032 | } |
|
2108 | } | |
2033 |
|
2109 | |||
2034 | } |
|
2110 | } | |
2035 | } |
|
2111 | } | |
2036 |
|
2112 | |||
2037 | .browser-cur-rev{ |
|
2113 | .browser-cur-rev{ | |
2038 | margin-bottom: @textmargin; |
|
2114 | margin-bottom: @textmargin; | |
2039 | } |
|
2115 | } | |
2040 |
|
2116 | |||
2041 | #node_filter_box_loading{ |
|
2117 | #node_filter_box_loading{ | |
2042 | .info_text; |
|
2118 | .info_text; | |
2043 | } |
|
2119 | } | |
2044 |
|
2120 | |||
2045 | .browser-search { |
|
2121 | .browser-search { | |
2046 | margin: -25px 0px 5px 0px; |
|
2122 | margin: -25px 0px 5px 0px; | |
2047 | } |
|
2123 | } | |
2048 |
|
2124 | |||
2049 | .node-filter { |
|
2125 | .node-filter { | |
2050 | font-size: @repo-title-fontsize; |
|
2126 | font-size: @repo-title-fontsize; | |
2051 | padding: 4px 0px 0px 0px; |
|
2127 | padding: 4px 0px 0px 0px; | |
2052 |
|
2128 | |||
2053 | .node-filter-path { |
|
2129 | .node-filter-path { | |
2054 | float: left; |
|
2130 | float: left; | |
2055 | color: @grey4; |
|
2131 | color: @grey4; | |
2056 | } |
|
2132 | } | |
2057 | .node-filter-input { |
|
2133 | .node-filter-input { | |
2058 | float: left; |
|
2134 | float: left; | |
2059 | margin: -2px 0px 0px 2px; |
|
2135 | margin: -2px 0px 0px 2px; | |
2060 | input { |
|
2136 | input { | |
2061 | padding: 2px; |
|
2137 | padding: 2px; | |
2062 | border: none; |
|
2138 | border: none; | |
2063 | font-size: @repo-title-fontsize; |
|
2139 | font-size: @repo-title-fontsize; | |
2064 | } |
|
2140 | } | |
2065 | } |
|
2141 | } | |
2066 | } |
|
2142 | } | |
2067 |
|
2143 | |||
2068 |
|
2144 | |||
2069 | .browser-result{ |
|
2145 | .browser-result{ | |
2070 | td a{ |
|
2146 | td a{ | |
2071 | margin-left: 0.5em; |
|
2147 | margin-left: 0.5em; | |
2072 | display: inline-block; |
|
2148 | display: inline-block; | |
2073 |
|
2149 | |||
2074 | em{ |
|
2150 | em{ | |
2075 | font-family: @text-bold; |
|
2151 | font-family: @text-bold; | |
2076 | } |
|
2152 | } | |
2077 | } |
|
2153 | } | |
2078 | } |
|
2154 | } | |
2079 |
|
2155 | |||
2080 | .browser-highlight{ |
|
2156 | .browser-highlight{ | |
2081 | background-color: @grey5-alpha; |
|
2157 | background-color: @grey5-alpha; | |
2082 | } |
|
2158 | } | |
2083 |
|
2159 | |||
2084 |
|
2160 | |||
2085 | // Search |
|
2161 | // Search | |
2086 |
|
2162 | |||
2087 | .search-form{ |
|
2163 | .search-form{ | |
2088 | #q { |
|
2164 | #q { | |
2089 | width: @search-form-width; |
|
2165 | width: @search-form-width; | |
2090 | } |
|
2166 | } | |
2091 | .fields{ |
|
2167 | .fields{ | |
2092 | margin: 0 0 @space; |
|
2168 | margin: 0 0 @space; | |
2093 | } |
|
2169 | } | |
2094 |
|
2170 | |||
2095 | label{ |
|
2171 | label{ | |
2096 | display: inline-block; |
|
2172 | display: inline-block; | |
2097 | margin-right: @textmargin; |
|
2173 | margin-right: @textmargin; | |
2098 | padding-top: 0.25em; |
|
2174 | padding-top: 0.25em; | |
2099 | } |
|
2175 | } | |
2100 |
|
2176 | |||
2101 |
|
2177 | |||
2102 | .results{ |
|
2178 | .results{ | |
2103 | clear: both; |
|
2179 | clear: both; | |
2104 | margin: 0 0 @padding; |
|
2180 | margin: 0 0 @padding; | |
2105 | } |
|
2181 | } | |
2106 | } |
|
2182 | } | |
2107 |
|
2183 | |||
2108 | div.search-feedback-items { |
|
2184 | div.search-feedback-items { | |
2109 | display: inline-block; |
|
2185 | display: inline-block; | |
2110 | padding:0px 0px 0px 96px; |
|
2186 | padding:0px 0px 0px 96px; | |
2111 | } |
|
2187 | } | |
2112 |
|
2188 | |||
2113 | div.search-code-body { |
|
2189 | div.search-code-body { | |
2114 | background-color: #ffffff; padding: 5px 0 5px 10px; |
|
2190 | background-color: #ffffff; padding: 5px 0 5px 10px; | |
2115 | pre { |
|
2191 | pre { | |
2116 | .match { background-color: #faffa6;} |
|
2192 | .match { background-color: #faffa6;} | |
2117 | .break { display: block; width: 100%; background-color: #DDE7EF; color: #747474; } |
|
2193 | .break { display: block; width: 100%; background-color: #DDE7EF; color: #747474; } | |
2118 | } |
|
2194 | } | |
2119 | } |
|
2195 | } | |
2120 |
|
2196 | |||
2121 | .expand_commit.search { |
|
2197 | .expand_commit.search { | |
2122 | .show_more.open { |
|
2198 | .show_more.open { | |
2123 | height: auto; |
|
2199 | height: auto; | |
2124 | max-height: none; |
|
2200 | max-height: none; | |
2125 | } |
|
2201 | } | |
2126 | } |
|
2202 | } | |
2127 |
|
2203 | |||
2128 | .search-results { |
|
2204 | .search-results { | |
2129 |
|
2205 | |||
2130 | h2 { |
|
2206 | h2 { | |
2131 | margin-bottom: 0; |
|
2207 | margin-bottom: 0; | |
2132 | } |
|
2208 | } | |
2133 | .codeblock { |
|
2209 | .codeblock { | |
2134 | border: none; |
|
2210 | border: none; | |
2135 | background: transparent; |
|
2211 | background: transparent; | |
2136 | } |
|
2212 | } | |
2137 |
|
2213 | |||
2138 | .codeblock-header { |
|
2214 | .codeblock-header { | |
2139 | border: none; |
|
2215 | border: none; | |
2140 | background: transparent; |
|
2216 | background: transparent; | |
2141 | } |
|
2217 | } | |
2142 |
|
2218 | |||
2143 | .code-body { |
|
2219 | .code-body { | |
2144 | border: @border-thickness solid @border-default-color; |
|
2220 | border: @border-thickness solid @border-default-color; | |
2145 | .border-radius(@border-radius); |
|
2221 | .border-radius(@border-radius); | |
2146 | } |
|
2222 | } | |
2147 |
|
2223 | |||
2148 | .td-commit { |
|
2224 | .td-commit { | |
2149 | &:extend(pre); |
|
2225 | &:extend(pre); | |
2150 | border-bottom: @border-thickness solid @border-default-color; |
|
2226 | border-bottom: @border-thickness solid @border-default-color; | |
2151 | } |
|
2227 | } | |
2152 |
|
2228 | |||
2153 | .message { |
|
2229 | .message { | |
2154 | height: auto; |
|
2230 | height: auto; | |
2155 | max-width: 350px; |
|
2231 | max-width: 350px; | |
2156 | white-space: normal; |
|
2232 | white-space: normal; | |
2157 | text-overflow: initial; |
|
2233 | text-overflow: initial; | |
2158 | overflow: visible; |
|
2234 | overflow: visible; | |
2159 |
|
2235 | |||
2160 | .match { background-color: #faffa6;} |
|
2236 | .match { background-color: #faffa6;} | |
2161 | .break { background-color: #DDE7EF; width: 100%; color: #747474; display: block; } |
|
2237 | .break { background-color: #DDE7EF; width: 100%; color: #747474; display: block; } | |
2162 | } |
|
2238 | } | |
2163 |
|
2239 | |||
2164 | } |
|
2240 | } | |
2165 |
|
2241 | |||
2166 | table.rctable td.td-search-results div { |
|
2242 | table.rctable td.td-search-results div { | |
2167 | max-width: 100%; |
|
2243 | max-width: 100%; | |
2168 | } |
|
2244 | } | |
2169 |
|
2245 | |||
2170 | #tip-box, .tip-box{ |
|
2246 | #tip-box, .tip-box{ | |
2171 | padding: @menupadding/2; |
|
2247 | padding: @menupadding/2; | |
2172 | display: block; |
|
2248 | display: block; | |
2173 | border: @border-thickness solid @border-highlight-color; |
|
2249 | border: @border-thickness solid @border-highlight-color; | |
2174 | .border-radius(@border-radius); |
|
2250 | .border-radius(@border-radius); | |
2175 | background-color: white; |
|
2251 | background-color: white; | |
2176 | z-index: 99; |
|
2252 | z-index: 99; | |
2177 | white-space: pre-wrap; |
|
2253 | white-space: pre-wrap; | |
2178 | } |
|
2254 | } | |
2179 |
|
2255 | |||
2180 | #linktt { |
|
2256 | #linktt { | |
2181 | width: 79px; |
|
2257 | width: 79px; | |
2182 | } |
|
2258 | } | |
2183 |
|
2259 | |||
2184 | #help_kb .modal-content{ |
|
2260 | #help_kb .modal-content{ | |
2185 | max-width: 750px; |
|
2261 | max-width: 750px; | |
2186 | margin: 10% auto; |
|
2262 | margin: 10% auto; | |
2187 |
|
2263 | |||
2188 | table{ |
|
2264 | table{ | |
2189 | td,th{ |
|
2265 | td,th{ | |
2190 | border-bottom: none; |
|
2266 | border-bottom: none; | |
2191 | line-height: 2.5em; |
|
2267 | line-height: 2.5em; | |
2192 | } |
|
2268 | } | |
2193 | th{ |
|
2269 | th{ | |
2194 | padding-bottom: @textmargin/2; |
|
2270 | padding-bottom: @textmargin/2; | |
2195 | } |
|
2271 | } | |
2196 | td.keys{ |
|
2272 | td.keys{ | |
2197 | text-align: center; |
|
2273 | text-align: center; | |
2198 | } |
|
2274 | } | |
2199 | } |
|
2275 | } | |
2200 |
|
2276 | |||
2201 | .block-left{ |
|
2277 | .block-left{ | |
2202 | width: 45%; |
|
2278 | width: 45%; | |
2203 | margin-right: 5%; |
|
2279 | margin-right: 5%; | |
2204 | } |
|
2280 | } | |
2205 | .modal-footer{ |
|
2281 | .modal-footer{ | |
2206 | clear: both; |
|
2282 | clear: both; | |
2207 | } |
|
2283 | } | |
2208 | .key.tag{ |
|
2284 | .key.tag{ | |
2209 | padding: 0.5em; |
|
2285 | padding: 0.5em; | |
2210 | background-color: @rcblue; |
|
2286 | background-color: @rcblue; | |
2211 | color: white; |
|
2287 | color: white; | |
2212 | border-color: @rcblue; |
|
2288 | border-color: @rcblue; | |
2213 | .box-shadow(none); |
|
2289 | .box-shadow(none); | |
2214 | } |
|
2290 | } | |
2215 | } |
|
2291 | } | |
2216 |
|
2292 | |||
2217 |
|
2293 | |||
2218 |
|
2294 | |||
2219 | //--- IMPORTS FOR REFACTORED STYLES ------------------// |
|
2295 | //--- IMPORTS FOR REFACTORED STYLES ------------------// | |
2220 |
|
2296 | |||
2221 | @import 'statistics-graph'; |
|
2297 | @import 'statistics-graph'; | |
2222 | @import 'tables'; |
|
2298 | @import 'tables'; | |
2223 | @import 'forms'; |
|
2299 | @import 'forms'; | |
2224 | @import 'diff'; |
|
2300 | @import 'diff'; | |
2225 | @import 'summary'; |
|
2301 | @import 'summary'; | |
2226 | @import 'navigation'; |
|
2302 | @import 'navigation'; | |
2227 |
|
2303 | |||
2228 | //--- SHOW/HIDE SECTIONS --// |
|
2304 | //--- SHOW/HIDE SECTIONS --// | |
2229 |
|
2305 | |||
2230 | .btn-collapse { |
|
2306 | .btn-collapse { | |
2231 | float: right; |
|
2307 | float: right; | |
2232 | text-align: right; |
|
2308 | text-align: right; | |
2233 | font-family: @text-light; |
|
2309 | font-family: @text-light; | |
2234 | font-size: @basefontsize; |
|
2310 | font-size: @basefontsize; | |
2235 | cursor: pointer; |
|
2311 | cursor: pointer; | |
2236 | border: none; |
|
2312 | border: none; | |
2237 | color: @rcblue; |
|
2313 | color: @rcblue; | |
2238 | } |
|
2314 | } | |
2239 |
|
2315 | |||
2240 | table.rctable, |
|
2316 | table.rctable, | |
2241 | table.dataTable { |
|
2317 | table.dataTable { | |
2242 | .btn-collapse { |
|
2318 | .btn-collapse { | |
2243 | float: right; |
|
2319 | float: right; | |
2244 | text-align: right; |
|
2320 | text-align: right; | |
2245 | } |
|
2321 | } | |
2246 | } |
|
2322 | } | |
2247 |
|
2323 | |||
2248 |
|
2324 | |||
2249 | // TODO: johbo: Fix for IE10, this avoids that we see a border |
|
2325 | // TODO: johbo: Fix for IE10, this avoids that we see a border | |
2250 | // and padding around checkboxes and radio boxes. Move to the right place, |
|
2326 | // and padding around checkboxes and radio boxes. Move to the right place, | |
2251 | // or better: Remove this once we did the form refactoring. |
|
2327 | // or better: Remove this once we did the form refactoring. | |
2252 | input[type=checkbox], |
|
2328 | input[type=checkbox], | |
2253 | input[type=radio] { |
|
2329 | input[type=radio] { | |
2254 | padding: 0; |
|
2330 | padding: 0; | |
2255 | border: none; |
|
2331 | border: none; | |
2256 | } |
|
2332 | } | |
2257 |
|
2333 | |||
2258 | .toggle-ajax-spinner{ |
|
2334 | .toggle-ajax-spinner{ | |
2259 | height: 16px; |
|
2335 | height: 16px; | |
2260 | width: 16px; |
|
2336 | width: 16px; | |
2261 | } |
|
2337 | } |
@@ -1,418 +1,440 b'' | |||||
1 | ## -*- coding: utf-8 -*- |
|
1 | ## -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | <%inherit file="/base/base.mako"/> |
|
3 | <%inherit file="/base/base.mako"/> | |
4 |
|
4 | |||
5 | <%def name="title()"> |
|
5 | <%def name="title()"> | |
6 | ${_('%s Changelog') % c.repo_name} |
|
6 | ${_('%s Changelog') % c.repo_name} | |
7 | %if c.changelog_for_path: |
|
7 | %if c.changelog_for_path: | |
8 | /${c.changelog_for_path} |
|
8 | /${c.changelog_for_path} | |
9 | %endif |
|
9 | %endif | |
10 | %if c.rhodecode_name: |
|
10 | %if c.rhodecode_name: | |
11 | · ${h.branding(c.rhodecode_name)} |
|
11 | · ${h.branding(c.rhodecode_name)} | |
12 | %endif |
|
12 | %endif | |
13 | </%def> |
|
13 | </%def> | |
14 |
|
14 | |||
15 | <%def name="breadcrumbs_links()"> |
|
15 | <%def name="breadcrumbs_links()"> | |
16 | %if c.changelog_for_path: |
|
16 | %if c.changelog_for_path: | |
17 | /${c.changelog_for_path} |
|
17 | /${c.changelog_for_path} | |
18 | %endif |
|
18 | %endif | |
19 | ${ungettext('showing %d out of %d commit', 'showing %d out of %d commits', c.showing_commits) % (c.showing_commits, c.total_cs)} |
|
19 | ${ungettext('showing %d out of %d commit', 'showing %d out of %d commits', c.showing_commits) % (c.showing_commits, c.total_cs)} | |
20 | </%def> |
|
20 | </%def> | |
21 |
|
21 | |||
22 | <%def name="menu_bar_nav()"> |
|
22 | <%def name="menu_bar_nav()"> | |
23 | ${self.menu_items(active='repositories')} |
|
23 | ${self.menu_items(active='repositories')} | |
24 | </%def> |
|
24 | </%def> | |
25 |
|
25 | |||
26 | <%def name="menu_bar_subnav()"> |
|
26 | <%def name="menu_bar_subnav()"> | |
27 | ${self.repo_menu(active='changelog')} |
|
27 | ${self.repo_menu(active='changelog')} | |
28 | </%def> |
|
28 | </%def> | |
29 |
|
29 | |||
30 | <%def name="main()"> |
|
30 | <%def name="main()"> | |
31 |
|
31 | |||
32 | <div class="box"> |
|
32 | <div class="box"> | |
33 | <div class="title"> |
|
33 | <div class="title"> | |
34 | ${self.repo_page_title(c.rhodecode_db_repo)} |
|
34 | ${self.repo_page_title(c.rhodecode_db_repo)} | |
35 | <ul class="links"> |
|
35 | <ul class="links"> | |
36 | <li> |
|
36 | <li> | |
37 | <a href="#" class="btn btn-small" id="rev_range_container" style="display:none;"></a> |
|
37 | <a href="#" class="btn btn-small" id="rev_range_container" style="display:none;"></a> | |
38 | %if c.rhodecode_db_repo.fork: |
|
38 | %if c.rhodecode_db_repo.fork: | |
39 | <span> |
|
39 | <span> | |
40 | <a id="compare_fork_button" |
|
40 | <a id="compare_fork_button" | |
41 | title="${_('Compare fork with %s' % c.rhodecode_db_repo.fork.repo_name)}" |
|
41 | title="${_('Compare fork with %s' % c.rhodecode_db_repo.fork.repo_name)}" | |
42 | class="btn btn-small" |
|
42 | class="btn btn-small" | |
43 | href="${h.url('compare_url', |
|
43 | href="${h.url('compare_url', | |
44 | repo_name=c.rhodecode_db_repo.fork.repo_name, |
|
44 | repo_name=c.rhodecode_db_repo.fork.repo_name, | |
45 | source_ref_type=c.rhodecode_db_repo.landing_rev[0], |
|
45 | source_ref_type=c.rhodecode_db_repo.landing_rev[0], | |
46 | source_ref=c.rhodecode_db_repo.landing_rev[1], |
|
46 | source_ref=c.rhodecode_db_repo.landing_rev[1], | |
47 | target_repo=c.repo_name, |
|
47 | target_repo=c.repo_name, | |
48 | target_ref_type='branch' if request.GET.get('branch') else c.rhodecode_db_repo.landing_rev[0], |
|
48 | target_ref_type='branch' if request.GET.get('branch') else c.rhodecode_db_repo.landing_rev[0], | |
49 | target_ref=request.GET.get('branch') or c.rhodecode_db_repo.landing_rev[1], |
|
49 | target_ref=request.GET.get('branch') or c.rhodecode_db_repo.landing_rev[1], | |
50 | merge=1)}" |
|
50 | merge=1)}" | |
51 | > |
|
51 | > | |
52 | <i class="icon-loop"></i> |
|
52 | <i class="icon-loop"></i> | |
53 | ${_('Compare fork with Parent (%s)' % c.rhodecode_db_repo.fork.repo_name)} |
|
53 | ${_('Compare fork with Parent (%s)' % c.rhodecode_db_repo.fork.repo_name)} | |
54 | </a> |
|
54 | </a> | |
55 | </span> |
|
55 | </span> | |
56 | %endif |
|
56 | %endif | |
57 |
|
57 | |||
58 | ## pr open link |
|
58 | ## pr open link | |
59 | %if h.is_hg(c.rhodecode_repo) or h.is_git(c.rhodecode_repo): |
|
59 | %if h.is_hg(c.rhodecode_repo) or h.is_git(c.rhodecode_repo): | |
60 | <span> |
|
60 | <span> | |
61 | <a id="open_new_pull_request" class="btn btn-small btn-success" href="${h.url('pullrequest_home',repo_name=c.repo_name)}"> |
|
61 | <a id="open_new_pull_request" class="btn btn-small btn-success" href="${h.url('pullrequest_home',repo_name=c.repo_name)}"> | |
62 | ${_('Open new pull request')} |
|
62 | ${_('Open new pull request')} | |
63 | </a> |
|
63 | </a> | |
64 | </span> |
|
64 | </span> | |
65 | %endif |
|
65 | %endif | |
66 |
|
66 | |||
67 | ## clear selection |
|
67 | ## clear selection | |
68 | <div title="${_('Clear selection')}" class="btn" id="rev_range_clear" style="display:none"> |
|
68 | <div title="${_('Clear selection')}" class="btn" id="rev_range_clear" style="display:none"> | |
69 | ${_('Clear selection')} |
|
69 | ${_('Clear selection')} | |
70 | </div> |
|
70 | </div> | |
71 |
|
71 | |||
72 | </li> |
|
72 | </li> | |
73 | </ul> |
|
73 | </ul> | |
74 | </div> |
|
74 | </div> | |
75 |
|
75 | |||
76 | % if c.pagination: |
|
76 | % if c.pagination: | |
77 |
|
77 | |||
78 | <div class="graph-header"> |
|
78 | <div class="graph-header"> | |
79 | <div id="filter_changelog"> |
|
79 | <div id="filter_changelog"> | |
80 | ${h.hidden('branch_filter')} |
|
80 | ${h.hidden('branch_filter')} | |
81 | %if c.selected_name: |
|
81 | %if c.selected_name: | |
82 | <div class="btn btn-default" id="clear_filter" > |
|
82 | <div class="btn btn-default" id="clear_filter" > | |
83 | ${_('Clear filter')} |
|
83 | ${_('Clear filter')} | |
84 | </div> |
|
84 | </div> | |
85 | %endif |
|
85 | %endif | |
86 | </div> |
|
86 | </div> | |
87 | ${self.breadcrumbs('breadcrumbs_light')} |
|
87 | ${self.breadcrumbs('breadcrumbs_light')} | |
88 | </div> |
|
88 | </div> | |
89 |
|
89 | |||
90 | <div id="graph"> |
|
90 | <div id="graph"> | |
91 | <div class="graph-col-wrapper"> |
|
91 | <div class="graph-col-wrapper"> | |
92 | <div id="graph_nodes"> |
|
92 | <div id="graph_nodes"> | |
93 | <div id="graph_canvas" data-graph='${c.jsdata|n}'></div> |
|
93 | <div id="graph_canvas" data-graph='${c.jsdata|n}'></div> | |
94 | </div> |
|
94 | </div> | |
95 | <div id="graph_content" class="main-content graph_full_width"> |
|
95 | <div id="graph_content" class="main-content graph_full_width"> | |
96 |
|
96 | |||
97 | <div class="table"> |
|
97 | <div class="table"> | |
98 | <table id="changesets" class="rctable"> |
|
98 | <table id="changesets" class="rctable"> | |
99 | <tr> |
|
99 | <tr> | |
100 | ## checkbox |
|
100 | ## checkbox | |
101 | <th></th> |
|
101 | <th></th> | |
102 | <th colspan="2"></th> |
|
102 | <th colspan="2"></th> | |
103 |
|
103 | |||
104 | <th>${_('Commit')}</th> |
|
104 | <th>${_('Commit')}</th> | |
105 | ## commit message expand arrow |
|
105 | ## commit message expand arrow | |
106 | <th></th> |
|
106 | <th></th> | |
107 | <th>${_('Commit Message')}</th> |
|
107 | <th>${_('Commit Message')}</th> | |
108 |
|
108 | |||
109 | <th>${_('Age')}</th> |
|
109 | <th>${_('Age')}</th> | |
110 | <th>${_('Author')}</th> |
|
110 | <th>${_('Author')}</th> | |
111 |
|
111 | |||
112 | <th>${_('Refs')}</th> |
|
112 | <th>${_('Refs')}</th> | |
113 | </tr> |
|
113 | </tr> | |
114 | <tbody> |
|
114 | <tbody> | |
115 | %for cnt,commit in enumerate(c.pagination): |
|
115 | %for cnt,commit in enumerate(c.pagination): | |
116 | <tr id="chg_${cnt+1}" class="container ${'tablerow%s' % (cnt%2)}"> |
|
116 | <tr id="chg_${cnt+1}" class="container ${'tablerow%s' % (cnt%2)}"> | |
117 |
|
117 | |||
118 | <td class="td-checkbox"> |
|
118 | <td class="td-checkbox"> | |
119 | ${h.checkbox(commit.raw_id,class_="commit-range")} |
|
119 | ${h.checkbox(commit.raw_id,class_="commit-range")} | |
120 | </td> |
|
120 | </td> | |
121 | <td class="td-status"> |
|
121 | <td class="td-status"> | |
122 |
|
122 | |||
123 | %if c.statuses.get(commit.raw_id): |
|
123 | %if c.statuses.get(commit.raw_id): | |
124 | <div class="changeset-status-ico"> |
|
124 | <div class="changeset-status-ico"> | |
125 | %if c.statuses.get(commit.raw_id)[2]: |
|
125 | %if c.statuses.get(commit.raw_id)[2]: | |
126 | <a class="tooltip" title="${_('Commit status: %s\nClick to open associated pull request #%s') % (h.commit_status_lbl(c.statuses.get(commit.raw_id)[0]), c.statuses.get(commit.raw_id)[2])}" href="${h.url('pullrequest_show',repo_name=c.statuses.get(commit.raw_id)[3],pull_request_id=c.statuses.get(commit.raw_id)[2])}"> |
|
126 | <a class="tooltip" title="${_('Commit status: %s\nClick to open associated pull request #%s') % (h.commit_status_lbl(c.statuses.get(commit.raw_id)[0]), c.statuses.get(commit.raw_id)[2])}" href="${h.url('pullrequest_show',repo_name=c.statuses.get(commit.raw_id)[3],pull_request_id=c.statuses.get(commit.raw_id)[2])}"> | |
127 | <div class="${'flag_status %s' % c.statuses.get(commit.raw_id)[0]}"></div> |
|
127 | <div class="${'flag_status %s' % c.statuses.get(commit.raw_id)[0]}"></div> | |
128 | </a> |
|
128 | </a> | |
129 | %else: |
|
129 | %else: | |
130 | <a class="tooltip" title="${_('Commit status: %s') % h.commit_status_lbl(c.statuses.get(commit.raw_id)[0])}" href="${h.url('changeset_home',repo_name=c.repo_name,revision=commit.raw_id,anchor='comment-%s' % c.comments[commit.raw_id][0].comment_id)}"> |
|
130 | <a class="tooltip" title="${_('Commit status: %s') % h.commit_status_lbl(c.statuses.get(commit.raw_id)[0])}" href="${h.url('changeset_home',repo_name=c.repo_name,revision=commit.raw_id,anchor='comment-%s' % c.comments[commit.raw_id][0].comment_id)}"> | |
131 | <div class="${'flag_status %s' % c.statuses.get(commit.raw_id)[0]}"></div> |
|
131 | <div class="${'flag_status %s' % c.statuses.get(commit.raw_id)[0]}"></div> | |
132 | </a> |
|
132 | </a> | |
133 | %endif |
|
133 | %endif | |
134 | </div> |
|
134 | </div> | |
135 | %else: |
|
135 | %else: | |
136 | <div class="tooltip flag_status not_reviewed" title="${_('Commit status: Not Reviewed')}"></div> |
|
136 | <div class="tooltip flag_status not_reviewed" title="${_('Commit status: Not Reviewed')}"></div> | |
137 | %endif |
|
137 | %endif | |
138 | </td> |
|
138 | </td> | |
139 | <td class="td-comments comments-col"> |
|
139 | <td class="td-comments comments-col"> | |
140 | %if c.comments.get(commit.raw_id): |
|
140 | %if c.comments.get(commit.raw_id): | |
141 | <a title="${_('Commit has comments')}" href="${h.url('changeset_home',repo_name=c.repo_name,revision=commit.raw_id,anchor='comment-%s' % c.comments[commit.raw_id][0].comment_id)}"> |
|
141 | <a title="${_('Commit has comments')}" href="${h.url('changeset_home',repo_name=c.repo_name,revision=commit.raw_id,anchor='comment-%s' % c.comments[commit.raw_id][0].comment_id)}"> | |
142 | <i class="icon-comment"></i> ${len(c.comments[commit.raw_id])} |
|
142 | <i class="icon-comment"></i> ${len(c.comments[commit.raw_id])} | |
143 | </a> |
|
143 | </a> | |
144 | %endif |
|
144 | %endif | |
145 | </td> |
|
145 | </td> | |
146 | <td class="td-hash"> |
|
146 | <td class="td-hash"> | |
147 | <code> |
|
147 | <code> | |
148 | <a href="${h.url('changeset_home',repo_name=c.repo_name,revision=commit.raw_id)}"> |
|
148 | <a href="${h.url('changeset_home',repo_name=c.repo_name,revision=commit.raw_id)}"> | |
149 | <span class="commit_hash">${h.show_id(commit)}</span> |
|
149 | <span class="commit_hash">${h.show_id(commit)}</span> | |
150 | </a> |
|
150 | </a> | |
151 | </code> |
|
151 | </code> | |
152 | </td> |
|
152 | </td> | |
153 | <td class="td-message expand_commit" data-commit-id="${commit.raw_id}" title="${_('Expand commit message')}"> |
|
153 | <td class="td-message expand_commit" data-commit-id="${commit.raw_id}" title="${_('Expand commit message')}"> | |
154 | <div class="show_more_col"> |
|
154 | <div class="show_more_col"> | |
155 | <i class="show_more"></i> |
|
155 | <i class="show_more"></i> | |
156 | </div> |
|
156 | </div> | |
157 | </td> |
|
157 | </td> | |
158 | <td class="td-description mid"> |
|
158 | <td class="td-description mid"> | |
159 | <div class="log-container truncate-wrap"> |
|
159 | <div class="log-container truncate-wrap"> | |
160 | <div class="message truncate" id="c-${commit.raw_id}">${h.urlify_commit_message(commit.message, c.repo_name)}</div> |
|
160 | <div class="message truncate" id="c-${commit.raw_id}">${h.urlify_commit_message(commit.message, c.repo_name)}</div> | |
161 | </div> |
|
161 | </div> | |
162 | </td> |
|
162 | </td> | |
163 |
|
163 | |||
164 | <td class="td-time"> |
|
164 | <td class="td-time"> | |
165 | ${h.age_component(commit.date)} |
|
165 | ${h.age_component(commit.date)} | |
166 | </td> |
|
166 | </td> | |
167 | <td class="td-user"> |
|
167 | <td class="td-user"> | |
168 | ${self.gravatar_with_user(commit.author)} |
|
168 | ${self.gravatar_with_user(commit.author)} | |
169 | </td> |
|
169 | </td> | |
170 |
|
170 | |||
171 | <td class="td-tags tags-col"> |
|
171 | <td class="td-tags tags-col"> | |
172 | <div id="t-${commit.raw_id}"> |
|
172 | <div id="t-${commit.raw_id}"> | |
173 | ## branch |
|
173 | ## branch | |
174 | %if commit.branch: |
|
174 | %if commit.branch: | |
175 | <span class="branchtag tag" title="${_('Branch %s') % commit.branch}"> |
|
175 | <span class="branchtag tag" title="${_('Branch %s') % commit.branch}"> | |
176 | <a href="${h.url('changelog_home',repo_name=c.repo_name,branch=commit.branch)}"><i class="icon-code-fork"></i>${h.shorter(commit.branch)}</a> |
|
176 | <a href="${h.url('changelog_home',repo_name=c.repo_name,branch=commit.branch)}"><i class="icon-code-fork"></i>${h.shorter(commit.branch)}</a> | |
177 | </span> |
|
177 | </span> | |
178 | %endif |
|
178 | %endif | |
179 |
|
179 | |||
180 | ## bookmarks |
|
180 | ## bookmarks | |
181 | %if h.is_hg(c.rhodecode_repo): |
|
181 | %if h.is_hg(c.rhodecode_repo): | |
182 | %for book in commit.bookmarks: |
|
182 | %for book in commit.bookmarks: | |
183 | <span class="tag booktag" title="${_('Bookmark %s') % book}"> |
|
183 | <span class="tag booktag" title="${_('Bookmark %s') % book}"> | |
184 | <a href="${h.url('files_home',repo_name=c.repo_name,revision=commit.raw_id)}"><i class="icon-bookmark"></i>${h.shorter(book)}</a> |
|
184 | <a href="${h.url('files_home',repo_name=c.repo_name,revision=commit.raw_id)}"><i class="icon-bookmark"></i>${h.shorter(book)}</a> | |
185 | </span> |
|
185 | </span> | |
186 | %endfor |
|
186 | %endfor | |
187 | %endif |
|
187 | %endif | |
188 |
|
188 | |||
189 | ## tags |
|
189 | ## tags | |
190 | %for tag in commit.tags: |
|
190 | %for tag in commit.tags: | |
191 | <span class="tagtag tag" title="${_('Tag %s') % tag}"> |
|
191 | <span class="tagtag tag" title="${_('Tag %s') % tag}"> | |
192 | <a href="${h.url('files_home',repo_name=c.repo_name,revision=commit.raw_id)}"><i class="icon-tag"></i>${h.shorter(tag)}</a> |
|
192 | <a href="${h.url('files_home',repo_name=c.repo_name,revision=commit.raw_id)}"><i class="icon-tag"></i>${h.shorter(tag)}</a> | |
193 | </span> |
|
193 | </span> | |
194 | %endfor |
|
194 | %endfor | |
195 |
|
195 | |||
196 | </div> |
|
196 | </div> | |
197 | </td> |
|
197 | </td> | |
198 | </tr> |
|
198 | </tr> | |
199 | %endfor |
|
199 | %endfor | |
200 | </tbody> |
|
200 | </tbody> | |
201 | </table> |
|
201 | </table> | |
202 | </div> |
|
202 | </div> | |
203 | </div> |
|
203 | </div> | |
204 | </div> |
|
204 | </div> | |
205 | <div class="pagination-wh pagination-left"> |
|
205 | <div class="pagination-wh pagination-left"> | |
206 | ${c.pagination.pager('$link_previous ~2~ $link_next')} |
|
206 | ${c.pagination.pager('$link_previous ~2~ $link_next')} | |
207 | </div> |
|
207 | </div> | |
208 |
|
208 | |||
209 | <script type="text/javascript" src="${h.asset('js/jquery.commits-graph.js')}"></script> |
|
209 | <script type="text/javascript" src="${h.asset('js/jquery.commits-graph.js')}"></script> | |
210 | <script type="text/javascript"> |
|
210 | <script type="text/javascript"> | |
211 | var cache = {}; |
|
211 | var cache = {}; | |
212 | $(function(){ |
|
212 | $(function(){ | |
213 |
|
213 | |||
214 | // Create links to commit ranges when range checkboxes are selected |
|
214 | // Create links to commit ranges when range checkboxes are selected | |
215 | var $commitCheckboxes = $('.commit-range'); |
|
215 | var $commitCheckboxes = $('.commit-range'); | |
216 | // cache elements |
|
216 | // cache elements | |
217 | var $commitRangeContainer = $('#rev_range_container'); |
|
217 | var $commitRangeContainer = $('#rev_range_container'); | |
218 | var $commitRangeClear = $('#rev_range_clear'); |
|
218 | var $commitRangeClear = $('#rev_range_clear'); | |
219 |
|
219 | |||
220 | var checkboxRangeSelector = function(e){ |
|
220 | var checkboxRangeSelector = function(e){ | |
221 | var selectedCheckboxes = []; |
|
221 | var selectedCheckboxes = []; | |
222 | for (pos in $commitCheckboxes){ |
|
222 | for (pos in $commitCheckboxes){ | |
223 | if($commitCheckboxes[pos].checked){ |
|
223 | if($commitCheckboxes[pos].checked){ | |
224 | selectedCheckboxes.push($commitCheckboxes[pos]); |
|
224 | selectedCheckboxes.push($commitCheckboxes[pos]); | |
225 | } |
|
225 | } | |
226 | } |
|
226 | } | |
227 | var open_new_pull_request = $('#open_new_pull_request'); |
|
227 | var open_new_pull_request = $('#open_new_pull_request'); | |
228 | if(open_new_pull_request){ |
|
228 | if(open_new_pull_request){ | |
229 | var selected_changes = selectedCheckboxes.length; |
|
229 | var selected_changes = selectedCheckboxes.length; | |
230 | if (selected_changes > 1 || selected_changes == 1 && templateContext.repo_type != 'hg') { |
|
230 | if (selected_changes > 1 || selected_changes == 1 && templateContext.repo_type != 'hg') { | |
231 | open_new_pull_request.hide(); |
|
231 | open_new_pull_request.hide(); | |
232 | } else { |
|
232 | } else { | |
233 | if (selected_changes == 1) { |
|
233 | if (selected_changes == 1) { | |
234 | open_new_pull_request.html(_gettext('Open new pull request for selected commit')); |
|
234 | open_new_pull_request.html(_gettext('Open new pull request for selected commit')); | |
235 | } else if (selected_changes == 0) { |
|
235 | } else if (selected_changes == 0) { | |
236 | open_new_pull_request.html(_gettext('Open new pull request')); |
|
236 | open_new_pull_request.html(_gettext('Open new pull request')); | |
237 | } |
|
237 | } | |
238 | open_new_pull_request.show(); |
|
238 | open_new_pull_request.show(); | |
239 | } |
|
239 | } | |
240 | } |
|
240 | } | |
241 |
|
241 | |||
242 | if (selectedCheckboxes.length>0){ |
|
242 | if (selectedCheckboxes.length>0){ | |
243 | var revEnd = selectedCheckboxes[0].name; |
|
243 | var revEnd = selectedCheckboxes[0].name; | |
244 | var revStart = selectedCheckboxes[selectedCheckboxes.length-1].name; |
|
244 | var revStart = selectedCheckboxes[selectedCheckboxes.length-1].name; | |
245 | var url = pyroutes.url('changeset_home', |
|
245 | var url = pyroutes.url('changeset_home', | |
246 | {'repo_name': '${c.repo_name}', |
|
246 | {'repo_name': '${c.repo_name}', | |
247 | 'revision': revStart+'...'+revEnd}); |
|
247 | 'revision': revStart+'...'+revEnd}); | |
248 |
|
248 | |||
249 | var link = (revStart == revEnd) |
|
249 | var link = (revStart == revEnd) | |
250 | ? _gettext('Show selected commit __S') |
|
250 | ? _gettext('Show selected commit __S') | |
251 | : _gettext('Show selected commits __S ... __E'); |
|
251 | : _gettext('Show selected commits __S ... __E'); | |
252 |
|
252 | |||
253 | link = link.replace('__S', revStart.substr(0,6)); |
|
253 | link = link.replace('__S', revStart.substr(0,6)); | |
254 | link = link.replace('__E', revEnd.substr(0,6)); |
|
254 | link = link.replace('__E', revEnd.substr(0,6)); | |
255 |
|
255 | |||
256 | $commitRangeContainer |
|
256 | $commitRangeContainer | |
257 | .attr('href',url) |
|
257 | .attr('href',url) | |
258 | .html(link) |
|
258 | .html(link) | |
259 | .show(); |
|
259 | .show(); | |
260 |
|
260 | |||
261 | $commitRangeClear.show(); |
|
261 | $commitRangeClear.show(); | |
262 | var _url = pyroutes.url('pullrequest_home', |
|
262 | var _url = pyroutes.url('pullrequest_home', | |
263 | {'repo_name': '${c.repo_name}', |
|
263 | {'repo_name': '${c.repo_name}', | |
264 | 'commit': revEnd}); |
|
264 | 'commit': revEnd}); | |
265 | open_new_pull_request.attr('href', _url); |
|
265 | open_new_pull_request.attr('href', _url); | |
266 | $('#compare_fork_button').hide(); |
|
266 | $('#compare_fork_button').hide(); | |
267 | } else { |
|
267 | } else { | |
268 | $commitRangeContainer.hide(); |
|
268 | $commitRangeContainer.hide(); | |
269 | $commitRangeClear.hide(); |
|
269 | $commitRangeClear.hide(); | |
270 |
|
270 | |||
271 | %if c.branch_name: |
|
271 | %if c.branch_name: | |
272 | var _url = pyroutes.url('pullrequest_home', |
|
272 | var _url = pyroutes.url('pullrequest_home', | |
273 | {'repo_name': '${c.repo_name}', |
|
273 | {'repo_name': '${c.repo_name}', | |
274 | 'branch':'${c.branch_name}'}); |
|
274 | 'branch':'${c.branch_name}'}); | |
275 | open_new_pull_request.attr('href', _url); |
|
275 | open_new_pull_request.attr('href', _url); | |
276 | %else: |
|
276 | %else: | |
277 | var _url = pyroutes.url('pullrequest_home', |
|
277 | var _url = pyroutes.url('pullrequest_home', | |
278 | {'repo_name': '${c.repo_name}'}); |
|
278 | {'repo_name': '${c.repo_name}'}); | |
279 | open_new_pull_request.attr('href', _url); |
|
279 | open_new_pull_request.attr('href', _url); | |
280 | %endif |
|
280 | %endif | |
281 | $('#compare_fork_button').show(); |
|
281 | $('#compare_fork_button').show(); | |
282 | } |
|
282 | } | |
283 | }; |
|
283 | }; | |
284 |
|
284 | |||
285 | $commitCheckboxes.on('click', checkboxRangeSelector); |
|
285 | $commitCheckboxes.on('click', checkboxRangeSelector); | |
286 |
|
286 | |||
287 | $commitRangeClear.on('click',function(e) { |
|
287 | $commitRangeClear.on('click',function(e) { | |
288 | $commitCheckboxes.attr('checked', false); |
|
288 | $commitCheckboxes.attr('checked', false); | |
289 | checkboxRangeSelector(); |
|
289 | checkboxRangeSelector(); | |
290 | e.preventDefault(); |
|
290 | e.preventDefault(); | |
291 | }); |
|
291 | }); | |
292 |
|
292 | |||
293 | // make sure the buttons are consistent when navigate back and forth |
|
293 | // make sure the buttons are consistent when navigate back and forth | |
294 | checkboxRangeSelector(); |
|
294 | checkboxRangeSelector(); | |
295 |
|
295 | |||
296 |
|
296 | |||
297 | var msgs = $('.message'); |
|
297 | var msgs = $('.message'); | |
298 | // get first element height |
|
298 | // get first element height | |
299 | var el = $('#graph_content .container')[0]; |
|
299 | var el = $('#graph_content .container')[0]; | |
300 | var row_h = el.clientHeight; |
|
300 | var row_h = el.clientHeight; | |
301 | for (var i=0; i < msgs.length; i++) { |
|
301 | for (var i=0; i < msgs.length; i++) { | |
302 | var m = msgs[i]; |
|
302 | var m = msgs[i]; | |
303 |
|
303 | |||
304 | var h = m.clientHeight; |
|
304 | var h = m.clientHeight; | |
305 | var pad = $(m).css('padding'); |
|
305 | var pad = $(m).css('padding'); | |
306 | if (h > row_h) { |
|
306 | if (h > row_h) { | |
307 | var offset = row_h - (h+12); |
|
307 | var offset = row_h - (h+12); | |
308 | $(m.nextElementSibling).css('display','block'); |
|
308 | $(m.nextElementSibling).css('display','block'); | |
309 | $(m.nextElementSibling).css('margin-top',offset+'px'); |
|
309 | $(m.nextElementSibling).css('margin-top',offset+'px'); | |
310 | } |
|
310 | } | |
311 | } |
|
311 | } | |
312 |
|
312 | |||
313 | $('.expand_commit').on('click',function(e){ |
|
313 | $('.expand_commit').on('click', function (e) { | |
314 | var target_expand = $(this); |
|
314 | var target_expand = $(this); | |
315 | var cid = target_expand.data('commitId'); |
|
315 | var cid = target_expand.data('commitId'); | |
316 |
|
316 | |||
317 | if (target_expand.hasClass('open')){ |
|
317 | if (target_expand.hasClass('open')) { | |
318 | $('#c-'+cid).css({'height': '1.5em', 'white-space': 'nowrap', 'text-overflow': 'ellipsis', 'overflow':'hidden'}); |
|
318 | $('#c-' + cid).css({ | |
319 | $('#t-'+cid).css({'height': 'auto', 'line-height': '.9em', 'text-overflow': 'ellipsis', 'overflow':'hidden', 'white-space':'nowrap'}); |
|
319 | 'height': '1.5em', | |
320 | target_expand.removeClass('open'); |
|
320 | 'white-space': 'nowrap', | |
321 | } |
|
321 | 'text-overflow': 'ellipsis', | |
322 | else { |
|
322 | 'overflow': 'hidden' | |
323 | $('#c-'+cid).css({'height': 'auto', 'white-space': 'pre-line', 'text-overflow': 'initial', 'overflow':'visible'}); |
|
323 | }); | |
324 | $('#t-'+cid).css({'height': 'auto', 'max-height': 'none', 'text-overflow': 'initial', 'overflow':'visible', 'white-space':'normal'}); |
|
324 | $('#t-' + cid).css({ | |
325 | target_expand.addClass('open'); |
|
325 | 'height': 'auto', | |
326 | } |
|
326 | 'line-height': '.9em', | |
|
327 | 'text-overflow': 'ellipsis', | |||
|
328 | 'overflow': 'hidden', | |||
|
329 | 'white-space': 'nowrap' | |||
|
330 | }); | |||
|
331 | target_expand.removeClass('open'); | |||
|
332 | } | |||
|
333 | else { | |||
|
334 | $('#c-' + cid).css({ | |||
|
335 | 'height': 'auto', | |||
|
336 | 'white-space': 'pre-line', | |||
|
337 | 'text-overflow': 'initial', | |||
|
338 | 'overflow': 'visible' | |||
|
339 | }); | |||
|
340 | $('#t-' + cid).css({ | |||
|
341 | 'height': 'auto', | |||
|
342 | 'max-height': 'none', | |||
|
343 | 'text-overflow': 'initial', | |||
|
344 | 'overflow': 'visible', | |||
|
345 | 'white-space': 'normal' | |||
|
346 | }); | |||
|
347 | target_expand.addClass('open'); | |||
|
348 | } | |||
327 | // redraw the graph |
|
349 | // redraw the graph | |
328 | graph_options.height = $("#changesets").height(); |
|
350 | graph_options.height = $("#changesets").height(); | |
329 | $("canvas").remove(); |
|
351 | $("canvas").remove(); | |
330 | $("[data-graph]").commits(graph_options); |
|
352 | $("[data-graph]").commits(graph_options); | |
331 | }); |
|
353 | }); | |
332 |
|
354 | |||
333 | $("#clear_filter").on("click", function() { |
|
355 | $("#clear_filter").on("click", function() { | |
334 | var filter = {'repo_name': '${c.repo_name}'}; |
|
356 | var filter = {'repo_name': '${c.repo_name}'}; | |
335 | window.location = pyroutes.url('changelog_home', filter); |
|
357 | window.location = pyroutes.url('changelog_home', filter); | |
336 | }); |
|
358 | }); | |
337 |
|
359 | |||
338 | $("#branch_filter").select2({ |
|
360 | $("#branch_filter").select2({ | |
339 | 'dropdownAutoWidth': true, |
|
361 | 'dropdownAutoWidth': true, | |
340 | 'width': 'resolve', |
|
362 | 'width': 'resolve', | |
341 | 'placeholder': "${c.selected_name or _('Filter changelog')}", |
|
363 | 'placeholder': "${c.selected_name or _('Filter changelog')}", | |
342 | containerCssClass: "drop-menu", |
|
364 | containerCssClass: "drop-menu", | |
343 | dropdownCssClass: "drop-menu-dropdown", |
|
365 | dropdownCssClass: "drop-menu-dropdown", | |
344 | query: function(query){ |
|
366 | query: function(query){ | |
345 | var key = 'cache'; |
|
367 | var key = 'cache'; | |
346 | var cached = cache[key] ; |
|
368 | var cached = cache[key] ; | |
347 | if(cached) { |
|
369 | if(cached) { | |
348 | var data = {results: []}; |
|
370 | var data = {results: []}; | |
349 | //filter results |
|
371 | //filter results | |
350 | $.each(cached.results, function(){ |
|
372 | $.each(cached.results, function(){ | |
351 | var section = this.text; |
|
373 | var section = this.text; | |
352 | var children = []; |
|
374 | var children = []; | |
353 | $.each(this.children, function(){ |
|
375 | $.each(this.children, function(){ | |
354 | if(query.term.length == 0 || this.text.toUpperCase().indexOf(query.term.toUpperCase()) >= 0 ){ |
|
376 | if(query.term.length == 0 || this.text.toUpperCase().indexOf(query.term.toUpperCase()) >= 0 ){ | |
355 | children.push({'id': this.id, 'text': this.text, 'type': this.type}) |
|
377 | children.push({'id': this.id, 'text': this.text, 'type': this.type}) | |
356 | } |
|
378 | } | |
357 | }); |
|
379 | }); | |
358 | data.results.push({'text': section, 'children': children}); |
|
380 | data.results.push({'text': section, 'children': children}); | |
359 | query.callback({results: data.results}); |
|
381 | query.callback({results: data.results}); | |
360 | }); |
|
382 | }); | |
361 | }else{ |
|
383 | }else{ | |
362 | $.ajax({ |
|
384 | $.ajax({ | |
363 | url: pyroutes.url('repo_refs_changelog_data', {'repo_name': '${c.repo_name}'}), |
|
385 | url: pyroutes.url('repo_refs_changelog_data', {'repo_name': '${c.repo_name}'}), | |
364 | data: {}, |
|
386 | data: {}, | |
365 | dataType: 'json', |
|
387 | dataType: 'json', | |
366 | type: 'GET', |
|
388 | type: 'GET', | |
367 | success: function(data) { |
|
389 | success: function(data) { | |
368 | cache[key] = data; |
|
390 | cache[key] = data; | |
369 | query.callback({results: data.results}); |
|
391 | query.callback({results: data.results}); | |
370 | } |
|
392 | } | |
371 | }) |
|
393 | }) | |
372 | } |
|
394 | } | |
373 | } |
|
395 | } | |
374 | }); |
|
396 | }); | |
375 |
|
397 | |||
376 | $('#branch_filter').on('change', function(e){ |
|
398 | $('#branch_filter').on('change', function(e){ | |
377 | var data = $('#branch_filter').select2('data'); |
|
399 | var data = $('#branch_filter').select2('data'); | |
378 | var selected = data.text; |
|
400 | var selected = data.text; | |
379 | var filter = {'repo_name': '${c.repo_name}'}; |
|
401 | var filter = {'repo_name': '${c.repo_name}'}; | |
380 | if(data.type == 'branch' || data.type == 'branch_closed'){ |
|
402 | if(data.type == 'branch' || data.type == 'branch_closed'){ | |
381 | filter["branch"] = selected; |
|
403 | filter["branch"] = selected; | |
382 | } |
|
404 | } | |
383 | else if (data.type == 'book'){ |
|
405 | else if (data.type == 'book'){ | |
384 | filter["bookmark"] = selected; |
|
406 | filter["bookmark"] = selected; | |
385 | } |
|
407 | } | |
386 | window.location = pyroutes.url('changelog_home', filter); |
|
408 | window.location = pyroutes.url('changelog_home', filter); | |
387 | }); |
|
409 | }); | |
388 |
|
410 | |||
389 | // Determine max number of edges per row in graph |
|
411 | // Determine max number of edges per row in graph | |
390 | var jsdata = $.parseJSON($("[data-graph]").attr('data-graph')); |
|
412 | var jsdata = $.parseJSON($("[data-graph]").attr('data-graph')); | |
391 | var edgeCount = 1; |
|
413 | var edgeCount = 1; | |
392 | $.each(jsdata, function(i, item){ |
|
414 | $.each(jsdata, function(i, item){ | |
393 | $.each(item[2], function(key, value) { |
|
415 | $.each(item[2], function(key, value) { | |
394 | if (value[1] > edgeCount){ |
|
416 | if (value[1] > edgeCount){ | |
395 | edgeCount = value[1]; |
|
417 | edgeCount = value[1]; | |
396 | } |
|
418 | } | |
397 | }); |
|
419 | }); | |
398 | }); |
|
420 | }); | |
399 | var x_step = Math.min(18, Math.floor(86 / edgeCount)); |
|
421 | var x_step = Math.min(18, Math.floor(86 / edgeCount)); | |
400 | var graph_options = { |
|
422 | var graph_options = { | |
401 | width: 100, |
|
423 | width: 100, | |
402 | height: $("#changesets").height(), |
|
424 | height: $("#changesets").height(), | |
403 | x_step: x_step, |
|
425 | x_step: x_step, | |
404 | y_step: 42, |
|
426 | y_step: 42, | |
405 | dotRadius: 3.5, |
|
427 | dotRadius: 3.5, | |
406 | lineWidth: 2.5 |
|
428 | lineWidth: 2.5 | |
407 | }; |
|
429 | }; | |
408 | $("[data-graph]").commits(graph_options); |
|
430 | $("[data-graph]").commits(graph_options); | |
409 |
|
431 | |||
410 | }); |
|
432 | }); | |
411 |
|
433 | |||
412 | </script> |
|
434 | </script> | |
413 | %else: |
|
435 | %else: | |
414 | ${_('There are no changes yet')} |
|
436 | ${_('There are no changes yet')} | |
415 | %endif |
|
437 | %endif | |
416 | </div> |
|
438 | </div> | |
417 | </div> |
|
439 | </div> | |
418 | </%def> |
|
440 | </%def> |
@@ -1,668 +1,661 b'' | |||||
1 | <%namespace name="commentblock" file="/changeset/changeset_file_comment.mako"/> |
|
1 | <%namespace name="commentblock" file="/changeset/changeset_file_comment.mako"/> | |
2 |
|
2 | |||
3 | <%def name="diff_line_anchor(filename, line, type)"><% |
|
3 | <%def name="diff_line_anchor(filename, line, type)"><% | |
4 | return '%s_%s_%i' % (h.safeid(filename), type, line) |
|
4 | return '%s_%s_%i' % (h.safeid(filename), type, line) | |
5 | %></%def> |
|
5 | %></%def> | |
6 |
|
6 | |||
7 | <%def name="action_class(action)"> |
|
7 | <%def name="action_class(action)"> | |
8 | <% |
|
8 | <% | |
9 | return { |
|
9 | return { | |
10 | '-': 'cb-deletion', |
|
10 | '-': 'cb-deletion', | |
11 | '+': 'cb-addition', |
|
11 | '+': 'cb-addition', | |
12 | ' ': 'cb-context', |
|
12 | ' ': 'cb-context', | |
13 | }.get(action, 'cb-empty') |
|
13 | }.get(action, 'cb-empty') | |
14 | %> |
|
14 | %> | |
15 | </%def> |
|
15 | </%def> | |
16 |
|
16 | |||
17 | <%def name="op_class(op_id)"> |
|
17 | <%def name="op_class(op_id)"> | |
18 | <% |
|
18 | <% | |
19 | return { |
|
19 | return { | |
20 | DEL_FILENODE: 'deletion', # file deleted |
|
20 | DEL_FILENODE: 'deletion', # file deleted | |
21 | BIN_FILENODE: 'warning' # binary diff hidden |
|
21 | BIN_FILENODE: 'warning' # binary diff hidden | |
22 | }.get(op_id, 'addition') |
|
22 | }.get(op_id, 'addition') | |
23 | %> |
|
23 | %> | |
24 | </%def> |
|
24 | </%def> | |
25 |
|
25 | |||
26 | <%def name="link_for(**kw)"> |
|
26 | <%def name="link_for(**kw)"> | |
27 | <% |
|
27 | <% | |
28 | new_args = request.GET.mixed() |
|
28 | new_args = request.GET.mixed() | |
29 | new_args.update(kw) |
|
29 | new_args.update(kw) | |
30 | return h.url('', **new_args) |
|
30 | return h.url('', **new_args) | |
31 | %> |
|
31 | %> | |
32 | </%def> |
|
32 | </%def> | |
33 |
|
33 | |||
34 | <%def name="render_diffset(diffset, commit=None, |
|
34 | <%def name="render_diffset(diffset, commit=None, | |
35 |
|
35 | |||
36 | # collapse all file diff entries when there are more than this amount of files in the diff |
|
36 | # collapse all file diff entries when there are more than this amount of files in the diff | |
37 | collapse_when_files_over=20, |
|
37 | collapse_when_files_over=20, | |
38 |
|
38 | |||
39 | # collapse lines in the diff when more than this amount of lines changed in the file diff |
|
39 | # collapse lines in the diff when more than this amount of lines changed in the file diff | |
40 | lines_changed_limit=500, |
|
40 | lines_changed_limit=500, | |
41 |
|
41 | |||
42 | # add a ruler at to the output |
|
42 | # add a ruler at to the output | |
43 | ruler_at_chars=0, |
|
43 | ruler_at_chars=0, | |
44 |
|
44 | |||
45 | # show inline comments |
|
45 | # show inline comments | |
46 | use_comments=False, |
|
46 | use_comments=False, | |
47 |
|
47 | |||
48 | # disable new comments |
|
48 | # disable new comments | |
49 | disable_new_comments=False, |
|
49 | disable_new_comments=False, | |
50 |
|
50 | |||
51 | # special file-comments that were deleted in previous versions |
|
51 | # special file-comments that were deleted in previous versions | |
52 | # it's used for showing outdated comments for deleted files in a PR |
|
52 | # it's used for showing outdated comments for deleted files in a PR | |
53 | deleted_files_comments=None |
|
53 | deleted_files_comments=None | |
54 |
|
54 | |||
55 | )"> |
|
55 | )"> | |
56 |
|
56 | |||
57 | %if use_comments: |
|
57 | %if use_comments: | |
58 | <div id="cb-comments-inline-container-template" class="js-template"> |
|
58 | <div id="cb-comments-inline-container-template" class="js-template"> | |
59 | ${inline_comments_container([])} |
|
59 | ${inline_comments_container([])} | |
60 | </div> |
|
60 | </div> | |
61 | <div class="js-template" id="cb-comment-inline-form-template"> |
|
61 | <div class="js-template" id="cb-comment-inline-form-template"> | |
62 | <div class="comment-inline-form ac"> |
|
62 | <div class="comment-inline-form ac"> | |
63 |
|
63 | |||
64 | %if c.rhodecode_user.username != h.DEFAULT_USER: |
|
64 | %if c.rhodecode_user.username != h.DEFAULT_USER: | |
65 | ## render template for inline comments |
|
65 | ## render template for inline comments | |
66 | ${commentblock.comment_form(form_type='inline')} |
|
66 | ${commentblock.comment_form(form_type='inline')} | |
67 | %else: |
|
67 | %else: | |
68 | ${h.form('', class_='inline-form comment-form-login', method='get')} |
|
68 | ${h.form('', class_='inline-form comment-form-login', method='get')} | |
69 | <div class="pull-left"> |
|
69 | <div class="pull-left"> | |
70 | <div class="comment-help pull-right"> |
|
70 | <div class="comment-help pull-right"> | |
71 | ${_('You need to be logged in to leave comments.')} <a href="${h.route_path('login', _query={'came_from': h.url.current()})}">${_('Login now')}</a> |
|
71 | ${_('You need to be logged in to leave comments.')} <a href="${h.route_path('login', _query={'came_from': h.url.current()})}">${_('Login now')}</a> | |
72 | </div> |
|
72 | </div> | |
73 | </div> |
|
73 | </div> | |
74 | <div class="comment-button pull-right"> |
|
74 | <div class="comment-button pull-right"> | |
75 | <button type="button" class="cb-comment-cancel" onclick="return Rhodecode.comments.cancelComment(this);"> |
|
75 | <button type="button" class="cb-comment-cancel" onclick="return Rhodecode.comments.cancelComment(this);"> | |
76 | ${_('Cancel')} |
|
76 | ${_('Cancel')} | |
77 | </button> |
|
77 | </button> | |
78 | </div> |
|
78 | </div> | |
79 | <div class="clearfix"></div> |
|
79 | <div class="clearfix"></div> | |
80 | ${h.end_form()} |
|
80 | ${h.end_form()} | |
81 | %endif |
|
81 | %endif | |
82 | </div> |
|
82 | </div> | |
83 | </div> |
|
83 | </div> | |
84 |
|
84 | |||
85 | %endif |
|
85 | %endif | |
86 | <% |
|
86 | <% | |
87 | collapse_all = len(diffset.files) > collapse_when_files_over |
|
87 | collapse_all = len(diffset.files) > collapse_when_files_over | |
88 | %> |
|
88 | %> | |
89 |
|
89 | |||
90 | %if c.diffmode == 'sideside': |
|
90 | %if c.diffmode == 'sideside': | |
91 | <style> |
|
91 | <style> | |
92 | .wrapper { |
|
92 | .wrapper { | |
93 | max-width: 1600px !important; |
|
93 | max-width: 1600px !important; | |
94 | } |
|
94 | } | |
95 | </style> |
|
95 | </style> | |
96 | %endif |
|
96 | %endif | |
97 |
|
97 | |||
98 | %if ruler_at_chars: |
|
98 | %if ruler_at_chars: | |
99 | <style> |
|
99 | <style> | |
100 | .diff table.cb .cb-content:after { |
|
100 | .diff table.cb .cb-content:after { | |
101 | content: ""; |
|
101 | content: ""; | |
102 | border-left: 1px solid blue; |
|
102 | border-left: 1px solid blue; | |
103 | position: absolute; |
|
103 | position: absolute; | |
104 | top: 0; |
|
104 | top: 0; | |
105 | height: 18px; |
|
105 | height: 18px; | |
106 | opacity: .2; |
|
106 | opacity: .2; | |
107 | z-index: 10; |
|
107 | z-index: 10; | |
108 | //## +5 to account for diff action (+/-) |
|
108 | //## +5 to account for diff action (+/-) | |
109 | left: ${ruler_at_chars + 5}ch; |
|
109 | left: ${ruler_at_chars + 5}ch; | |
110 | </style> |
|
110 | </style> | |
111 | %endif |
|
111 | %endif | |
112 |
|
112 | |||
113 | <div class="diffset ${disable_new_comments and 'diffset-comments-disabled'}"> |
|
113 | <div class="diffset ${disable_new_comments and 'diffset-comments-disabled'}"> | |
114 | <div class="diffset-heading ${diffset.limited_diff and 'diffset-heading-warning' or ''}"> |
|
114 | <div class="diffset-heading ${diffset.limited_diff and 'diffset-heading-warning' or ''}"> | |
115 | %if commit: |
|
115 | %if commit: | |
116 | <div class="pull-right"> |
|
116 | <div class="pull-right"> | |
117 | <a class="btn tooltip" title="${_('Browse Files at revision {}').format(commit.raw_id)}" href="${h.url('files_home',repo_name=diffset.repo_name, revision=commit.raw_id, f_path='')}"> |
|
117 | <a class="btn tooltip" title="${_('Browse Files at revision {}').format(commit.raw_id)}" href="${h.url('files_home',repo_name=diffset.repo_name, revision=commit.raw_id, f_path='')}"> | |
118 | ${_('Browse Files')} |
|
118 | ${_('Browse Files')} | |
119 | </a> |
|
119 | </a> | |
120 | </div> |
|
120 | </div> | |
121 | %endif |
|
121 | %endif | |
122 | <h2 class="clearinner"> |
|
122 | <h2 class="clearinner"> | |
123 | %if commit: |
|
123 | %if commit: | |
124 | <a class="tooltip revision" title="${h.tooltip(commit.message)}" href="${h.url('changeset_home',repo_name=c.repo_name,revision=commit.raw_id)}">${'r%s:%s' % (commit.revision,h.short_id(commit.raw_id))}</a> - |
|
124 | <a class="tooltip revision" title="${h.tooltip(commit.message)}" href="${h.url('changeset_home',repo_name=c.repo_name,revision=commit.raw_id)}">${'r%s:%s' % (commit.revision,h.short_id(commit.raw_id))}</a> - | |
125 | ${h.age_component(commit.date)} - |
|
125 | ${h.age_component(commit.date)} - | |
126 | %endif |
|
126 | %endif | |
127 | %if diffset.limited_diff: |
|
127 | %if diffset.limited_diff: | |
128 | ${_('The requested commit is too big and content was truncated.')} |
|
128 | ${_('The requested commit is too big and content was truncated.')} | |
129 |
|
129 | |||
130 | ${ungettext('%(num)s file changed.', '%(num)s files changed.', diffset.changed_files) % {'num': diffset.changed_files}} |
|
130 | ${ungettext('%(num)s file changed.', '%(num)s files changed.', diffset.changed_files) % {'num': diffset.changed_files}} | |
131 | <a href="${link_for(fulldiff=1)}" onclick="return confirm('${_("Showing a big diff might take some time and resources, continue?")}')">${_('Show full diff')}</a> |
|
131 | <a href="${link_for(fulldiff=1)}" onclick="return confirm('${_("Showing a big diff might take some time and resources, continue?")}')">${_('Show full diff')}</a> | |
132 | %else: |
|
132 | %else: | |
133 | ${ungettext('%(num)s file changed: %(linesadd)s inserted, ''%(linesdel)s deleted', |
|
133 | ${ungettext('%(num)s file changed: %(linesadd)s inserted, ''%(linesdel)s deleted', | |
134 | '%(num)s files changed: %(linesadd)s inserted, %(linesdel)s deleted', diffset.changed_files) % {'num': diffset.changed_files, 'linesadd': diffset.lines_added, 'linesdel': diffset.lines_deleted}} |
|
134 | '%(num)s files changed: %(linesadd)s inserted, %(linesdel)s deleted', diffset.changed_files) % {'num': diffset.changed_files, 'linesadd': diffset.lines_added, 'linesdel': diffset.lines_deleted}} | |
135 | %endif |
|
135 | %endif | |
136 |
|
136 | |||
137 | <% at_ver = getattr(c, 'at_version_pos', None) %> |
|
|||
138 | % if at_ver: |
|
|||
139 | <div class="pull-right"> |
|
|||
140 | ${_('Showing changes at version %d') % at_ver} |
|
|||
141 | </div> |
|
|||
142 | % endif |
|
|||
143 |
|
||||
144 | </h2> |
|
137 | </h2> | |
145 | </div> |
|
138 | </div> | |
146 |
|
139 | |||
147 | %if not diffset.files: |
|
140 | %if not diffset.files: | |
148 | <p class="empty_data">${_('No files')}</p> |
|
141 | <p class="empty_data">${_('No files')}</p> | |
149 | %endif |
|
142 | %endif | |
150 |
|
143 | |||
151 | <div class="filediffs"> |
|
144 | <div class="filediffs"> | |
152 | %for i, filediff in enumerate(diffset.files): |
|
145 | %for i, filediff in enumerate(diffset.files): | |
153 |
|
146 | |||
154 | <% |
|
147 | <% | |
155 | lines_changed = filediff['patch']['stats']['added'] + filediff['patch']['stats']['deleted'] |
|
148 | lines_changed = filediff['patch']['stats']['added'] + filediff['patch']['stats']['deleted'] | |
156 | over_lines_changed_limit = lines_changed > lines_changed_limit |
|
149 | over_lines_changed_limit = lines_changed > lines_changed_limit | |
157 | %> |
|
150 | %> | |
158 | <input ${collapse_all and 'checked' or ''} class="filediff-collapse-state" id="filediff-collapse-${id(filediff)}" type="checkbox"> |
|
151 | <input ${collapse_all and 'checked' or ''} class="filediff-collapse-state" id="filediff-collapse-${id(filediff)}" type="checkbox"> | |
159 | <div |
|
152 | <div | |
160 | class="filediff" |
|
153 | class="filediff" | |
161 | data-f-path="${filediff['patch']['filename']}" |
|
154 | data-f-path="${filediff['patch']['filename']}" | |
162 | id="a_${h.FID('', filediff['patch']['filename'])}"> |
|
155 | id="a_${h.FID('', filediff['patch']['filename'])}"> | |
163 | <label for="filediff-collapse-${id(filediff)}" class="filediff-heading"> |
|
156 | <label for="filediff-collapse-${id(filediff)}" class="filediff-heading"> | |
164 | <div class="filediff-collapse-indicator"></div> |
|
157 | <div class="filediff-collapse-indicator"></div> | |
165 | ${diff_ops(filediff)} |
|
158 | ${diff_ops(filediff)} | |
166 | </label> |
|
159 | </label> | |
167 | ${diff_menu(filediff, use_comments=use_comments)} |
|
160 | ${diff_menu(filediff, use_comments=use_comments)} | |
168 | <table class="cb cb-diff-${c.diffmode} code-highlight ${over_lines_changed_limit and 'cb-collapsed' or ''}"> |
|
161 | <table class="cb cb-diff-${c.diffmode} code-highlight ${over_lines_changed_limit and 'cb-collapsed' or ''}"> | |
169 | %if not filediff.hunks: |
|
162 | %if not filediff.hunks: | |
170 | %for op_id, op_text in filediff['patch']['stats']['ops'].items(): |
|
163 | %for op_id, op_text in filediff['patch']['stats']['ops'].items(): | |
171 | <tr> |
|
164 | <tr> | |
172 | <td class="cb-text cb-${op_class(op_id)}" ${c.diffmode == 'unified' and 'colspan=4' or 'colspan=6'}> |
|
165 | <td class="cb-text cb-${op_class(op_id)}" ${c.diffmode == 'unified' and 'colspan=4' or 'colspan=6'}> | |
173 | %if op_id == DEL_FILENODE: |
|
166 | %if op_id == DEL_FILENODE: | |
174 | ${_('File was deleted')} |
|
167 | ${_('File was deleted')} | |
175 | %elif op_id == BIN_FILENODE: |
|
168 | %elif op_id == BIN_FILENODE: | |
176 | ${_('Binary file hidden')} |
|
169 | ${_('Binary file hidden')} | |
177 | %else: |
|
170 | %else: | |
178 | ${op_text} |
|
171 | ${op_text} | |
179 | %endif |
|
172 | %endif | |
180 | </td> |
|
173 | </td> | |
181 | </tr> |
|
174 | </tr> | |
182 | %endfor |
|
175 | %endfor | |
183 | %endif |
|
176 | %endif | |
184 | %if filediff.patch['is_limited_diff']: |
|
177 | %if filediff.patch['is_limited_diff']: | |
185 | <tr class="cb-warning cb-collapser"> |
|
178 | <tr class="cb-warning cb-collapser"> | |
186 | <td class="cb-text" ${c.diffmode == 'unified' and 'colspan=4' or 'colspan=6'}> |
|
179 | <td class="cb-text" ${c.diffmode == 'unified' and 'colspan=4' or 'colspan=6'}> | |
187 | ${_('The requested commit is too big and content was truncated.')} <a href="${link_for(fulldiff=1)}" onclick="return confirm('${_("Showing a big diff might take some time and resources, continue?")}')">${_('Show full diff')}</a> |
|
180 | ${_('The requested commit is too big and content was truncated.')} <a href="${link_for(fulldiff=1)}" onclick="return confirm('${_("Showing a big diff might take some time and resources, continue?")}')">${_('Show full diff')}</a> | |
188 | </td> |
|
181 | </td> | |
189 | </tr> |
|
182 | </tr> | |
190 | %else: |
|
183 | %else: | |
191 | %if over_lines_changed_limit: |
|
184 | %if over_lines_changed_limit: | |
192 | <tr class="cb-warning cb-collapser"> |
|
185 | <tr class="cb-warning cb-collapser"> | |
193 | <td class="cb-text" ${c.diffmode == 'unified' and 'colspan=4' or 'colspan=6'}> |
|
186 | <td class="cb-text" ${c.diffmode == 'unified' and 'colspan=4' or 'colspan=6'}> | |
194 | ${_('This diff has been collapsed as it changes many lines, (%i lines changed)' % lines_changed)} |
|
187 | ${_('This diff has been collapsed as it changes many lines, (%i lines changed)' % lines_changed)} | |
195 | <a href="#" class="cb-expand" |
|
188 | <a href="#" class="cb-expand" | |
196 | onclick="$(this).closest('table').removeClass('cb-collapsed'); return false;">${_('Show them')} |
|
189 | onclick="$(this).closest('table').removeClass('cb-collapsed'); return false;">${_('Show them')} | |
197 | </a> |
|
190 | </a> | |
198 | <a href="#" class="cb-collapse" |
|
191 | <a href="#" class="cb-collapse" | |
199 | onclick="$(this).closest('table').addClass('cb-collapsed'); return false;">${_('Hide them')} |
|
192 | onclick="$(this).closest('table').addClass('cb-collapsed'); return false;">${_('Hide them')} | |
200 | </a> |
|
193 | </a> | |
201 | </td> |
|
194 | </td> | |
202 | </tr> |
|
195 | </tr> | |
203 | %endif |
|
196 | %endif | |
204 | %endif |
|
197 | %endif | |
205 |
|
198 | |||
206 | %for hunk in filediff.hunks: |
|
199 | %for hunk in filediff.hunks: | |
207 | <tr class="cb-hunk"> |
|
200 | <tr class="cb-hunk"> | |
208 | <td ${c.diffmode == 'unified' and 'colspan=3' or ''}> |
|
201 | <td ${c.diffmode == 'unified' and 'colspan=3' or ''}> | |
209 | ## TODO: dan: add ajax loading of more context here |
|
202 | ## TODO: dan: add ajax loading of more context here | |
210 | ## <a href="#"> |
|
203 | ## <a href="#"> | |
211 | <i class="icon-more"></i> |
|
204 | <i class="icon-more"></i> | |
212 | ## </a> |
|
205 | ## </a> | |
213 | </td> |
|
206 | </td> | |
214 | <td ${c.diffmode == 'sideside' and 'colspan=5' or ''}> |
|
207 | <td ${c.diffmode == 'sideside' and 'colspan=5' or ''}> | |
215 | @@ |
|
208 | @@ | |
216 | -${hunk.source_start},${hunk.source_length} |
|
209 | -${hunk.source_start},${hunk.source_length} | |
217 | +${hunk.target_start},${hunk.target_length} |
|
210 | +${hunk.target_start},${hunk.target_length} | |
218 | ${hunk.section_header} |
|
211 | ${hunk.section_header} | |
219 | </td> |
|
212 | </td> | |
220 | </tr> |
|
213 | </tr> | |
221 | %if c.diffmode == 'unified': |
|
214 | %if c.diffmode == 'unified': | |
222 | ${render_hunk_lines_unified(hunk, use_comments=use_comments)} |
|
215 | ${render_hunk_lines_unified(hunk, use_comments=use_comments)} | |
223 | %elif c.diffmode == 'sideside': |
|
216 | %elif c.diffmode == 'sideside': | |
224 | ${render_hunk_lines_sideside(hunk, use_comments=use_comments)} |
|
217 | ${render_hunk_lines_sideside(hunk, use_comments=use_comments)} | |
225 | %else: |
|
218 | %else: | |
226 | <tr class="cb-line"> |
|
219 | <tr class="cb-line"> | |
227 | <td>unknown diff mode</td> |
|
220 | <td>unknown diff mode</td> | |
228 | </tr> |
|
221 | </tr> | |
229 | %endif |
|
222 | %endif | |
230 | %endfor |
|
223 | %endfor | |
231 |
|
224 | |||
232 | ## outdated comments that do not fit into currently displayed lines |
|
225 | ## outdated comments that do not fit into currently displayed lines | |
233 | % for lineno, comments in filediff.left_comments.items(): |
|
226 | % for lineno, comments in filediff.left_comments.items(): | |
234 |
|
227 | |||
235 | %if c.diffmode == 'unified': |
|
228 | %if c.diffmode == 'unified': | |
236 | <tr class="cb-line"> |
|
229 | <tr class="cb-line"> | |
237 | <td class="cb-data cb-context"></td> |
|
230 | <td class="cb-data cb-context"></td> | |
238 | <td class="cb-lineno cb-context"></td> |
|
231 | <td class="cb-lineno cb-context"></td> | |
239 | <td class="cb-lineno cb-context"></td> |
|
232 | <td class="cb-lineno cb-context"></td> | |
240 | <td class="cb-content cb-context"> |
|
233 | <td class="cb-content cb-context"> | |
241 | ${inline_comments_container(comments)} |
|
234 | ${inline_comments_container(comments)} | |
242 | </td> |
|
235 | </td> | |
243 | </tr> |
|
236 | </tr> | |
244 | %elif c.diffmode == 'sideside': |
|
237 | %elif c.diffmode == 'sideside': | |
245 | <tr class="cb-line"> |
|
238 | <tr class="cb-line"> | |
246 | <td class="cb-data cb-context"></td> |
|
239 | <td class="cb-data cb-context"></td> | |
247 | <td class="cb-lineno cb-context"></td> |
|
240 | <td class="cb-lineno cb-context"></td> | |
248 | <td class="cb-content cb-context"></td> |
|
241 | <td class="cb-content cb-context"></td> | |
249 |
|
242 | |||
250 | <td class="cb-data cb-context"></td> |
|
243 | <td class="cb-data cb-context"></td> | |
251 | <td class="cb-lineno cb-context"></td> |
|
244 | <td class="cb-lineno cb-context"></td> | |
252 | <td class="cb-content cb-context"> |
|
245 | <td class="cb-content cb-context"> | |
253 | ${inline_comments_container(comments)} |
|
246 | ${inline_comments_container(comments)} | |
254 | </td> |
|
247 | </td> | |
255 | </tr> |
|
248 | </tr> | |
256 | %endif |
|
249 | %endif | |
257 |
|
250 | |||
258 | % endfor |
|
251 | % endfor | |
259 |
|
252 | |||
260 | </table> |
|
253 | </table> | |
261 | </div> |
|
254 | </div> | |
262 | %endfor |
|
255 | %endfor | |
263 |
|
256 | |||
264 | ## outdated comments that are made for a file that has been deleted |
|
257 | ## outdated comments that are made for a file that has been deleted | |
265 | % for filename, comments_dict in (deleted_files_comments or {}).items(): |
|
258 | % for filename, comments_dict in (deleted_files_comments or {}).items(): | |
266 |
|
259 | |||
267 | <div class="filediffs filediff-outdated" style="display: none"> |
|
260 | <div class="filediffs filediff-outdated" style="display: none"> | |
268 | <input ${collapse_all and 'checked' or ''} class="filediff-collapse-state" id="filediff-collapse-${id(filename)}" type="checkbox"> |
|
261 | <input ${collapse_all and 'checked' or ''} class="filediff-collapse-state" id="filediff-collapse-${id(filename)}" type="checkbox"> | |
269 | <div class="filediff" data-f-path="${filename}" id="a_${h.FID('', filename)}"> |
|
262 | <div class="filediff" data-f-path="${filename}" id="a_${h.FID('', filename)}"> | |
270 | <label for="filediff-collapse-${id(filename)}" class="filediff-heading"> |
|
263 | <label for="filediff-collapse-${id(filename)}" class="filediff-heading"> | |
271 | <div class="filediff-collapse-indicator"></div> |
|
264 | <div class="filediff-collapse-indicator"></div> | |
272 | <span class="pill"> |
|
265 | <span class="pill"> | |
273 | ## file was deleted |
|
266 | ## file was deleted | |
274 | <strong>${filename}</strong> |
|
267 | <strong>${filename}</strong> | |
275 | </span> |
|
268 | </span> | |
276 | <span class="pill-group" style="float: left"> |
|
269 | <span class="pill-group" style="float: left"> | |
277 | ## file op, doesn't need translation |
|
270 | ## file op, doesn't need translation | |
278 | <span class="pill" op="removed">removed in this version</span> |
|
271 | <span class="pill" op="removed">removed in this version</span> | |
279 | </span> |
|
272 | </span> | |
280 | <a class="pill filediff-anchor" href="#a_${h.FID('', filename)}">ΒΆ</a> |
|
273 | <a class="pill filediff-anchor" href="#a_${h.FID('', filename)}">ΒΆ</a> | |
281 | <span class="pill-group" style="float: right"> |
|
274 | <span class="pill-group" style="float: right"> | |
282 | <span class="pill" op="deleted">-${comments_dict['stats']}</span> |
|
275 | <span class="pill" op="deleted">-${comments_dict['stats']}</span> | |
283 | </span> |
|
276 | </span> | |
284 | </label> |
|
277 | </label> | |
285 |
|
278 | |||
286 | <table class="cb cb-diff-${c.diffmode} code-highlight ${over_lines_changed_limit and 'cb-collapsed' or ''}"> |
|
279 | <table class="cb cb-diff-${c.diffmode} code-highlight ${over_lines_changed_limit and 'cb-collapsed' or ''}"> | |
287 | <tr> |
|
280 | <tr> | |
288 | % if c.diffmode == 'unified': |
|
281 | % if c.diffmode == 'unified': | |
289 | <td></td> |
|
282 | <td></td> | |
290 | %endif |
|
283 | %endif | |
291 |
|
284 | |||
292 | <td></td> |
|
285 | <td></td> | |
293 | <td class="cb-text cb-${op_class(BIN_FILENODE)}" ${c.diffmode == 'unified' and 'colspan=4' or 'colspan=5'}> |
|
286 | <td class="cb-text cb-${op_class(BIN_FILENODE)}" ${c.diffmode == 'unified' and 'colspan=4' or 'colspan=5'}> | |
294 | ${_('File was deleted in this version, and outdated comments were made on it')} |
|
287 | ${_('File was deleted in this version, and outdated comments were made on it')} | |
295 | </td> |
|
288 | </td> | |
296 | </tr> |
|
289 | </tr> | |
297 | %if c.diffmode == 'unified': |
|
290 | %if c.diffmode == 'unified': | |
298 | <tr class="cb-line"> |
|
291 | <tr class="cb-line"> | |
299 | <td class="cb-data cb-context"></td> |
|
292 | <td class="cb-data cb-context"></td> | |
300 | <td class="cb-lineno cb-context"></td> |
|
293 | <td class="cb-lineno cb-context"></td> | |
301 | <td class="cb-lineno cb-context"></td> |
|
294 | <td class="cb-lineno cb-context"></td> | |
302 | <td class="cb-content cb-context"> |
|
295 | <td class="cb-content cb-context"> | |
303 | ${inline_comments_container(comments_dict['comments'])} |
|
296 | ${inline_comments_container(comments_dict['comments'])} | |
304 | </td> |
|
297 | </td> | |
305 | </tr> |
|
298 | </tr> | |
306 | %elif c.diffmode == 'sideside': |
|
299 | %elif c.diffmode == 'sideside': | |
307 | <tr class="cb-line"> |
|
300 | <tr class="cb-line"> | |
308 | <td class="cb-data cb-context"></td> |
|
301 | <td class="cb-data cb-context"></td> | |
309 | <td class="cb-lineno cb-context"></td> |
|
302 | <td class="cb-lineno cb-context"></td> | |
310 | <td class="cb-content cb-context"></td> |
|
303 | <td class="cb-content cb-context"></td> | |
311 |
|
304 | |||
312 | <td class="cb-data cb-context"></td> |
|
305 | <td class="cb-data cb-context"></td> | |
313 | <td class="cb-lineno cb-context"></td> |
|
306 | <td class="cb-lineno cb-context"></td> | |
314 | <td class="cb-content cb-context"> |
|
307 | <td class="cb-content cb-context"> | |
315 | ${inline_comments_container(comments_dict['comments'])} |
|
308 | ${inline_comments_container(comments_dict['comments'])} | |
316 | </td> |
|
309 | </td> | |
317 | </tr> |
|
310 | </tr> | |
318 | %endif |
|
311 | %endif | |
319 | </table> |
|
312 | </table> | |
320 | </div> |
|
313 | </div> | |
321 | </div> |
|
314 | </div> | |
322 | % endfor |
|
315 | % endfor | |
323 |
|
316 | |||
324 | </div> |
|
317 | </div> | |
325 | </div> |
|
318 | </div> | |
326 | </%def> |
|
319 | </%def> | |
327 |
|
320 | |||
328 | <%def name="diff_ops(filediff)"> |
|
321 | <%def name="diff_ops(filediff)"> | |
329 | <% |
|
322 | <% | |
330 | stats = filediff['patch']['stats'] |
|
323 | stats = filediff['patch']['stats'] | |
331 | from rhodecode.lib.diffs import NEW_FILENODE, DEL_FILENODE, \ |
|
324 | from rhodecode.lib.diffs import NEW_FILENODE, DEL_FILENODE, \ | |
332 | MOD_FILENODE, RENAMED_FILENODE, CHMOD_FILENODE, BIN_FILENODE |
|
325 | MOD_FILENODE, RENAMED_FILENODE, CHMOD_FILENODE, BIN_FILENODE | |
333 | %> |
|
326 | %> | |
334 | <span class="pill"> |
|
327 | <span class="pill"> | |
335 | %if filediff.source_file_path and filediff.target_file_path: |
|
328 | %if filediff.source_file_path and filediff.target_file_path: | |
336 | %if filediff.source_file_path != filediff.target_file_path: |
|
329 | %if filediff.source_file_path != filediff.target_file_path: | |
337 | ## file was renamed |
|
330 | ## file was renamed | |
338 | <strong>${filediff.target_file_path}</strong> β¬ <del>${filediff.source_file_path}</del> |
|
331 | <strong>${filediff.target_file_path}</strong> β¬ <del>${filediff.source_file_path}</del> | |
339 | %else: |
|
332 | %else: | |
340 | ## file was modified |
|
333 | ## file was modified | |
341 | <strong>${filediff.source_file_path}</strong> |
|
334 | <strong>${filediff.source_file_path}</strong> | |
342 | %endif |
|
335 | %endif | |
343 | %else: |
|
336 | %else: | |
344 | %if filediff.source_file_path: |
|
337 | %if filediff.source_file_path: | |
345 | ## file was deleted |
|
338 | ## file was deleted | |
346 | <strong>${filediff.source_file_path}</strong> |
|
339 | <strong>${filediff.source_file_path}</strong> | |
347 | %else: |
|
340 | %else: | |
348 | ## file was added |
|
341 | ## file was added | |
349 | <strong>${filediff.target_file_path}</strong> |
|
342 | <strong>${filediff.target_file_path}</strong> | |
350 | %endif |
|
343 | %endif | |
351 | %endif |
|
344 | %endif | |
352 | </span> |
|
345 | </span> | |
353 | <span class="pill-group" style="float: left"> |
|
346 | <span class="pill-group" style="float: left"> | |
354 | %if filediff.patch['is_limited_diff']: |
|
347 | %if filediff.patch['is_limited_diff']: | |
355 | <span class="pill tooltip" op="limited" title="The stats for this diff are not complete">limited diff</span> |
|
348 | <span class="pill tooltip" op="limited" title="The stats for this diff are not complete">limited diff</span> | |
356 | %endif |
|
349 | %endif | |
357 | %if RENAMED_FILENODE in stats['ops']: |
|
350 | %if RENAMED_FILENODE in stats['ops']: | |
358 | <span class="pill" op="renamed">renamed</span> |
|
351 | <span class="pill" op="renamed">renamed</span> | |
359 | %endif |
|
352 | %endif | |
360 |
|
353 | |||
361 | %if NEW_FILENODE in stats['ops']: |
|
354 | %if NEW_FILENODE in stats['ops']: | |
362 | <span class="pill" op="created">created</span> |
|
355 | <span class="pill" op="created">created</span> | |
363 | %if filediff['target_mode'].startswith('120'): |
|
356 | %if filediff['target_mode'].startswith('120'): | |
364 | <span class="pill" op="symlink">symlink</span> |
|
357 | <span class="pill" op="symlink">symlink</span> | |
365 | %else: |
|
358 | %else: | |
366 | <span class="pill" op="mode">${nice_mode(filediff['target_mode'])}</span> |
|
359 | <span class="pill" op="mode">${nice_mode(filediff['target_mode'])}</span> | |
367 | %endif |
|
360 | %endif | |
368 | %endif |
|
361 | %endif | |
369 |
|
362 | |||
370 | %if DEL_FILENODE in stats['ops']: |
|
363 | %if DEL_FILENODE in stats['ops']: | |
371 | <span class="pill" op="removed">removed</span> |
|
364 | <span class="pill" op="removed">removed</span> | |
372 | %endif |
|
365 | %endif | |
373 |
|
366 | |||
374 | %if CHMOD_FILENODE in stats['ops']: |
|
367 | %if CHMOD_FILENODE in stats['ops']: | |
375 | <span class="pill" op="mode"> |
|
368 | <span class="pill" op="mode"> | |
376 | ${nice_mode(filediff['source_mode'])} β‘ ${nice_mode(filediff['target_mode'])} |
|
369 | ${nice_mode(filediff['source_mode'])} β‘ ${nice_mode(filediff['target_mode'])} | |
377 | </span> |
|
370 | </span> | |
378 | %endif |
|
371 | %endif | |
379 | </span> |
|
372 | </span> | |
380 |
|
373 | |||
381 | <a class="pill filediff-anchor" href="#a_${h.FID('', filediff.patch['filename'])}">ΒΆ</a> |
|
374 | <a class="pill filediff-anchor" href="#a_${h.FID('', filediff.patch['filename'])}">ΒΆ</a> | |
382 |
|
375 | |||
383 | <span class="pill-group" style="float: right"> |
|
376 | <span class="pill-group" style="float: right"> | |
384 | %if BIN_FILENODE in stats['ops']: |
|
377 | %if BIN_FILENODE in stats['ops']: | |
385 | <span class="pill" op="binary">binary</span> |
|
378 | <span class="pill" op="binary">binary</span> | |
386 | %if MOD_FILENODE in stats['ops']: |
|
379 | %if MOD_FILENODE in stats['ops']: | |
387 | <span class="pill" op="modified">modified</span> |
|
380 | <span class="pill" op="modified">modified</span> | |
388 | %endif |
|
381 | %endif | |
389 | %endif |
|
382 | %endif | |
390 | %if stats['added']: |
|
383 | %if stats['added']: | |
391 | <span class="pill" op="added">+${stats['added']}</span> |
|
384 | <span class="pill" op="added">+${stats['added']}</span> | |
392 | %endif |
|
385 | %endif | |
393 | %if stats['deleted']: |
|
386 | %if stats['deleted']: | |
394 | <span class="pill" op="deleted">-${stats['deleted']}</span> |
|
387 | <span class="pill" op="deleted">-${stats['deleted']}</span> | |
395 | %endif |
|
388 | %endif | |
396 | </span> |
|
389 | </span> | |
397 |
|
390 | |||
398 | </%def> |
|
391 | </%def> | |
399 |
|
392 | |||
400 | <%def name="nice_mode(filemode)"> |
|
393 | <%def name="nice_mode(filemode)"> | |
401 | ${filemode.startswith('100') and filemode[3:] or filemode} |
|
394 | ${filemode.startswith('100') and filemode[3:] or filemode} | |
402 | </%def> |
|
395 | </%def> | |
403 |
|
396 | |||
404 | <%def name="diff_menu(filediff, use_comments=False)"> |
|
397 | <%def name="diff_menu(filediff, use_comments=False)"> | |
405 | <div class="filediff-menu"> |
|
398 | <div class="filediff-menu"> | |
406 | %if filediff.diffset.source_ref: |
|
399 | %if filediff.diffset.source_ref: | |
407 | %if filediff.patch['operation'] in ['D', 'M']: |
|
400 | %if filediff.patch['operation'] in ['D', 'M']: | |
408 | <a |
|
401 | <a | |
409 | class="tooltip" |
|
402 | class="tooltip" | |
410 | href="${h.url('files_home',repo_name=filediff.diffset.repo_name,f_path=filediff.source_file_path,revision=filediff.diffset.source_ref)}" |
|
403 | href="${h.url('files_home',repo_name=filediff.diffset.repo_name,f_path=filediff.source_file_path,revision=filediff.diffset.source_ref)}" | |
411 | title="${h.tooltip(_('Show file at commit: %(commit_id)s') % {'commit_id': filediff.diffset.source_ref[:12]})}" |
|
404 | title="${h.tooltip(_('Show file at commit: %(commit_id)s') % {'commit_id': filediff.diffset.source_ref[:12]})}" | |
412 | > |
|
405 | > | |
413 | ${_('Show file before')} |
|
406 | ${_('Show file before')} | |
414 | </a> | |
|
407 | </a> | | |
415 | %else: |
|
408 | %else: | |
416 | <span |
|
409 | <span | |
417 | class="tooltip" |
|
410 | class="tooltip" | |
418 | title="${h.tooltip(_('File no longer present at commit: %(commit_id)s') % {'commit_id': filediff.diffset.source_ref[:12]})}" |
|
411 | title="${h.tooltip(_('File no longer present at commit: %(commit_id)s') % {'commit_id': filediff.diffset.source_ref[:12]})}" | |
419 | > |
|
412 | > | |
420 | ${_('Show file before')} |
|
413 | ${_('Show file before')} | |
421 | </span> | |
|
414 | </span> | | |
422 | %endif |
|
415 | %endif | |
423 | %if filediff.patch['operation'] in ['A', 'M']: |
|
416 | %if filediff.patch['operation'] in ['A', 'M']: | |
424 | <a |
|
417 | <a | |
425 | class="tooltip" |
|
418 | class="tooltip" | |
426 | href="${h.url('files_home',repo_name=filediff.diffset.source_repo_name,f_path=filediff.target_file_path,revision=filediff.diffset.target_ref)}" |
|
419 | href="${h.url('files_home',repo_name=filediff.diffset.source_repo_name,f_path=filediff.target_file_path,revision=filediff.diffset.target_ref)}" | |
427 | title="${h.tooltip(_('Show file at commit: %(commit_id)s') % {'commit_id': filediff.diffset.target_ref[:12]})}" |
|
420 | title="${h.tooltip(_('Show file at commit: %(commit_id)s') % {'commit_id': filediff.diffset.target_ref[:12]})}" | |
428 | > |
|
421 | > | |
429 | ${_('Show file after')} |
|
422 | ${_('Show file after')} | |
430 | </a> | |
|
423 | </a> | | |
431 | %else: |
|
424 | %else: | |
432 | <span |
|
425 | <span | |
433 | class="tooltip" |
|
426 | class="tooltip" | |
434 | title="${h.tooltip(_('File no longer present at commit: %(commit_id)s') % {'commit_id': filediff.diffset.target_ref[:12]})}" |
|
427 | title="${h.tooltip(_('File no longer present at commit: %(commit_id)s') % {'commit_id': filediff.diffset.target_ref[:12]})}" | |
435 | > |
|
428 | > | |
436 | ${_('Show file after')} |
|
429 | ${_('Show file after')} | |
437 | </span> | |
|
430 | </span> | | |
438 | %endif |
|
431 | %endif | |
439 | <a |
|
432 | <a | |
440 | class="tooltip" |
|
433 | class="tooltip" | |
441 | title="${h.tooltip(_('Raw diff'))}" |
|
434 | title="${h.tooltip(_('Raw diff'))}" | |
442 | href="${h.url('files_diff_home',repo_name=filediff.diffset.repo_name,f_path=filediff.target_file_path,diff2=filediff.diffset.target_ref,diff1=filediff.diffset.source_ref,diff='raw')}" |
|
435 | href="${h.url('files_diff_home',repo_name=filediff.diffset.repo_name,f_path=filediff.target_file_path,diff2=filediff.diffset.target_ref,diff1=filediff.diffset.source_ref,diff='raw')}" | |
443 | > |
|
436 | > | |
444 | ${_('Raw diff')} |
|
437 | ${_('Raw diff')} | |
445 | </a> | |
|
438 | </a> | | |
446 | <a |
|
439 | <a | |
447 | class="tooltip" |
|
440 | class="tooltip" | |
448 | title="${h.tooltip(_('Download diff'))}" |
|
441 | title="${h.tooltip(_('Download diff'))}" | |
449 | href="${h.url('files_diff_home',repo_name=filediff.diffset.repo_name,f_path=filediff.target_file_path,diff2=filediff.diffset.target_ref,diff1=filediff.diffset.source_ref,diff='download')}" |
|
442 | href="${h.url('files_diff_home',repo_name=filediff.diffset.repo_name,f_path=filediff.target_file_path,diff2=filediff.diffset.target_ref,diff1=filediff.diffset.source_ref,diff='download')}" | |
450 | > |
|
443 | > | |
451 | ${_('Download diff')} |
|
444 | ${_('Download diff')} | |
452 | </a> |
|
445 | </a> | |
453 | % if use_comments: |
|
446 | % if use_comments: | |
454 | | |
|
447 | | | |
455 | % endif |
|
448 | % endif | |
456 |
|
449 | |||
457 | ## TODO: dan: refactor ignorews_url and context_url into the diff renderer same as diffmode=unified/sideside. Also use ajax to load more context (by clicking hunks) |
|
450 | ## TODO: dan: refactor ignorews_url and context_url into the diff renderer same as diffmode=unified/sideside. Also use ajax to load more context (by clicking hunks) | |
458 | %if hasattr(c, 'ignorews_url'): |
|
451 | %if hasattr(c, 'ignorews_url'): | |
459 | ${c.ignorews_url(request.GET, h.FID('', filediff['patch']['filename']))} |
|
452 | ${c.ignorews_url(request.GET, h.FID('', filediff['patch']['filename']))} | |
460 | %endif |
|
453 | %endif | |
461 | %if hasattr(c, 'context_url'): |
|
454 | %if hasattr(c, 'context_url'): | |
462 | ${c.context_url(request.GET, h.FID('', filediff['patch']['filename']))} |
|
455 | ${c.context_url(request.GET, h.FID('', filediff['patch']['filename']))} | |
463 | %endif |
|
456 | %endif | |
464 |
|
457 | |||
465 | %if use_comments: |
|
458 | %if use_comments: | |
466 | <a href="#" onclick="return Rhodecode.comments.toggleComments(this);"> |
|
459 | <a href="#" onclick="return Rhodecode.comments.toggleComments(this);"> | |
467 | <span class="show-comment-button">${_('Show comments')}</span><span class="hide-comment-button">${_('Hide comments')}</span> |
|
460 | <span class="show-comment-button">${_('Show comments')}</span><span class="hide-comment-button">${_('Hide comments')}</span> | |
468 | </a> |
|
461 | </a> | |
469 | %endif |
|
462 | %endif | |
470 | %endif |
|
463 | %endif | |
471 | </div> |
|
464 | </div> | |
472 | </%def> |
|
465 | </%def> | |
473 |
|
466 | |||
474 |
|
467 | |||
475 | <%def name="inline_comments_container(comments)"> |
|
468 | <%def name="inline_comments_container(comments)"> | |
476 | <div class="inline-comments"> |
|
469 | <div class="inline-comments"> | |
477 | %for comment in comments: |
|
470 | %for comment in comments: | |
478 | ${commentblock.comment_block(comment, inline=True)} |
|
471 | ${commentblock.comment_block(comment, inline=True)} | |
479 | %endfor |
|
472 | %endfor | |
480 |
|
473 | |||
481 | % if comments and comments[-1].outdated: |
|
474 | % if comments and comments[-1].outdated: | |
482 | <span class="btn btn-secondary cb-comment-add-button comment-outdated}" |
|
475 | <span class="btn btn-secondary cb-comment-add-button comment-outdated}" | |
483 | style="display: none;}"> |
|
476 | style="display: none;}"> | |
484 | ${_('Add another comment')} |
|
477 | ${_('Add another comment')} | |
485 | </span> |
|
478 | </span> | |
486 | % else: |
|
479 | % else: | |
487 | <span onclick="return Rhodecode.comments.createComment(this)" |
|
480 | <span onclick="return Rhodecode.comments.createComment(this)" | |
488 | class="btn btn-secondary cb-comment-add-button"> |
|
481 | class="btn btn-secondary cb-comment-add-button"> | |
489 | ${_('Add another comment')} |
|
482 | ${_('Add another comment')} | |
490 | </span> |
|
483 | </span> | |
491 | % endif |
|
484 | % endif | |
492 |
|
485 | |||
493 | </div> |
|
486 | </div> | |
494 | </%def> |
|
487 | </%def> | |
495 |
|
488 | |||
496 |
|
489 | |||
497 | <%def name="render_hunk_lines_sideside(hunk, use_comments=False)"> |
|
490 | <%def name="render_hunk_lines_sideside(hunk, use_comments=False)"> | |
498 | %for i, line in enumerate(hunk.sideside): |
|
491 | %for i, line in enumerate(hunk.sideside): | |
499 | <% |
|
492 | <% | |
500 | old_line_anchor, new_line_anchor = None, None |
|
493 | old_line_anchor, new_line_anchor = None, None | |
501 | if line.original.lineno: |
|
494 | if line.original.lineno: | |
502 | old_line_anchor = diff_line_anchor(hunk.filediff.source_file_path, line.original.lineno, 'o') |
|
495 | old_line_anchor = diff_line_anchor(hunk.filediff.source_file_path, line.original.lineno, 'o') | |
503 | if line.modified.lineno: |
|
496 | if line.modified.lineno: | |
504 | new_line_anchor = diff_line_anchor(hunk.filediff.target_file_path, line.modified.lineno, 'n') |
|
497 | new_line_anchor = diff_line_anchor(hunk.filediff.target_file_path, line.modified.lineno, 'n') | |
505 | %> |
|
498 | %> | |
506 |
|
499 | |||
507 | <tr class="cb-line"> |
|
500 | <tr class="cb-line"> | |
508 | <td class="cb-data ${action_class(line.original.action)}" |
|
501 | <td class="cb-data ${action_class(line.original.action)}" | |
509 | data-line-number="${line.original.lineno}" |
|
502 | data-line-number="${line.original.lineno}" | |
510 | > |
|
503 | > | |
511 | <div> |
|
504 | <div> | |
512 | %if line.original.comments: |
|
505 | %if line.original.comments: | |
513 | <i class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i> |
|
506 | <i class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i> | |
514 | %endif |
|
507 | %endif | |
515 | </div> |
|
508 | </div> | |
516 | </td> |
|
509 | </td> | |
517 | <td class="cb-lineno ${action_class(line.original.action)}" |
|
510 | <td class="cb-lineno ${action_class(line.original.action)}" | |
518 | data-line-number="${line.original.lineno}" |
|
511 | data-line-number="${line.original.lineno}" | |
519 | %if old_line_anchor: |
|
512 | %if old_line_anchor: | |
520 | id="${old_line_anchor}" |
|
513 | id="${old_line_anchor}" | |
521 | %endif |
|
514 | %endif | |
522 | > |
|
515 | > | |
523 | %if line.original.lineno: |
|
516 | %if line.original.lineno: | |
524 | <a name="${old_line_anchor}" href="#${old_line_anchor}">${line.original.lineno}</a> |
|
517 | <a name="${old_line_anchor}" href="#${old_line_anchor}">${line.original.lineno}</a> | |
525 | %endif |
|
518 | %endif | |
526 | </td> |
|
519 | </td> | |
527 | <td class="cb-content ${action_class(line.original.action)}" |
|
520 | <td class="cb-content ${action_class(line.original.action)}" | |
528 | data-line-number="o${line.original.lineno}" |
|
521 | data-line-number="o${line.original.lineno}" | |
529 | > |
|
522 | > | |
530 | %if use_comments and line.original.lineno: |
|
523 | %if use_comments and line.original.lineno: | |
531 | ${render_add_comment_button()} |
|
524 | ${render_add_comment_button()} | |
532 | %endif |
|
525 | %endif | |
533 | <span class="cb-code">${line.original.action} ${line.original.content or '' | n}</span> |
|
526 | <span class="cb-code">${line.original.action} ${line.original.content or '' | n}</span> | |
534 | %if use_comments and line.original.lineno and line.original.comments: |
|
527 | %if use_comments and line.original.lineno and line.original.comments: | |
535 | ${inline_comments_container(line.original.comments)} |
|
528 | ${inline_comments_container(line.original.comments)} | |
536 | %endif |
|
529 | %endif | |
537 | </td> |
|
530 | </td> | |
538 | <td class="cb-data ${action_class(line.modified.action)}" |
|
531 | <td class="cb-data ${action_class(line.modified.action)}" | |
539 | data-line-number="${line.modified.lineno}" |
|
532 | data-line-number="${line.modified.lineno}" | |
540 | > |
|
533 | > | |
541 | <div> |
|
534 | <div> | |
542 | %if line.modified.comments: |
|
535 | %if line.modified.comments: | |
543 | <i class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i> |
|
536 | <i class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i> | |
544 | %endif |
|
537 | %endif | |
545 | </div> |
|
538 | </div> | |
546 | </td> |
|
539 | </td> | |
547 | <td class="cb-lineno ${action_class(line.modified.action)}" |
|
540 | <td class="cb-lineno ${action_class(line.modified.action)}" | |
548 | data-line-number="${line.modified.lineno}" |
|
541 | data-line-number="${line.modified.lineno}" | |
549 | %if new_line_anchor: |
|
542 | %if new_line_anchor: | |
550 | id="${new_line_anchor}" |
|
543 | id="${new_line_anchor}" | |
551 | %endif |
|
544 | %endif | |
552 | > |
|
545 | > | |
553 | %if line.modified.lineno: |
|
546 | %if line.modified.lineno: | |
554 | <a name="${new_line_anchor}" href="#${new_line_anchor}">${line.modified.lineno}</a> |
|
547 | <a name="${new_line_anchor}" href="#${new_line_anchor}">${line.modified.lineno}</a> | |
555 | %endif |
|
548 | %endif | |
556 | </td> |
|
549 | </td> | |
557 | <td class="cb-content ${action_class(line.modified.action)}" |
|
550 | <td class="cb-content ${action_class(line.modified.action)}" | |
558 | data-line-number="n${line.modified.lineno}" |
|
551 | data-line-number="n${line.modified.lineno}" | |
559 | > |
|
552 | > | |
560 | %if use_comments and line.modified.lineno: |
|
553 | %if use_comments and line.modified.lineno: | |
561 | ${render_add_comment_button()} |
|
554 | ${render_add_comment_button()} | |
562 | %endif |
|
555 | %endif | |
563 | <span class="cb-code">${line.modified.action} ${line.modified.content or '' | n}</span> |
|
556 | <span class="cb-code">${line.modified.action} ${line.modified.content or '' | n}</span> | |
564 | %if use_comments and line.modified.lineno and line.modified.comments: |
|
557 | %if use_comments and line.modified.lineno and line.modified.comments: | |
565 | ${inline_comments_container(line.modified.comments)} |
|
558 | ${inline_comments_container(line.modified.comments)} | |
566 | %endif |
|
559 | %endif | |
567 | </td> |
|
560 | </td> | |
568 | </tr> |
|
561 | </tr> | |
569 | %endfor |
|
562 | %endfor | |
570 | </%def> |
|
563 | </%def> | |
571 |
|
564 | |||
572 |
|
565 | |||
573 | <%def name="render_hunk_lines_unified(hunk, use_comments=False)"> |
|
566 | <%def name="render_hunk_lines_unified(hunk, use_comments=False)"> | |
574 | %for old_line_no, new_line_no, action, content, comments in hunk.unified: |
|
567 | %for old_line_no, new_line_no, action, content, comments in hunk.unified: | |
575 | <% |
|
568 | <% | |
576 | old_line_anchor, new_line_anchor = None, None |
|
569 | old_line_anchor, new_line_anchor = None, None | |
577 | if old_line_no: |
|
570 | if old_line_no: | |
578 | old_line_anchor = diff_line_anchor(hunk.filediff.source_file_path, old_line_no, 'o') |
|
571 | old_line_anchor = diff_line_anchor(hunk.filediff.source_file_path, old_line_no, 'o') | |
579 | if new_line_no: |
|
572 | if new_line_no: | |
580 | new_line_anchor = diff_line_anchor(hunk.filediff.target_file_path, new_line_no, 'n') |
|
573 | new_line_anchor = diff_line_anchor(hunk.filediff.target_file_path, new_line_no, 'n') | |
581 | %> |
|
574 | %> | |
582 | <tr class="cb-line"> |
|
575 | <tr class="cb-line"> | |
583 | <td class="cb-data ${action_class(action)}"> |
|
576 | <td class="cb-data ${action_class(action)}"> | |
584 | <div> |
|
577 | <div> | |
585 | %if comments: |
|
578 | %if comments: | |
586 | <i class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i> |
|
579 | <i class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i> | |
587 | %endif |
|
580 | %endif | |
588 | </div> |
|
581 | </div> | |
589 | </td> |
|
582 | </td> | |
590 | <td class="cb-lineno ${action_class(action)}" |
|
583 | <td class="cb-lineno ${action_class(action)}" | |
591 | data-line-number="${old_line_no}" |
|
584 | data-line-number="${old_line_no}" | |
592 | %if old_line_anchor: |
|
585 | %if old_line_anchor: | |
593 | id="${old_line_anchor}" |
|
586 | id="${old_line_anchor}" | |
594 | %endif |
|
587 | %endif | |
595 | > |
|
588 | > | |
596 | %if old_line_anchor: |
|
589 | %if old_line_anchor: | |
597 | <a name="${old_line_anchor}" href="#${old_line_anchor}">${old_line_no}</a> |
|
590 | <a name="${old_line_anchor}" href="#${old_line_anchor}">${old_line_no}</a> | |
598 | %endif |
|
591 | %endif | |
599 | </td> |
|
592 | </td> | |
600 | <td class="cb-lineno ${action_class(action)}" |
|
593 | <td class="cb-lineno ${action_class(action)}" | |
601 | data-line-number="${new_line_no}" |
|
594 | data-line-number="${new_line_no}" | |
602 | %if new_line_anchor: |
|
595 | %if new_line_anchor: | |
603 | id="${new_line_anchor}" |
|
596 | id="${new_line_anchor}" | |
604 | %endif |
|
597 | %endif | |
605 | > |
|
598 | > | |
606 | %if new_line_anchor: |
|
599 | %if new_line_anchor: | |
607 | <a name="${new_line_anchor}" href="#${new_line_anchor}">${new_line_no}</a> |
|
600 | <a name="${new_line_anchor}" href="#${new_line_anchor}">${new_line_no}</a> | |
608 | %endif |
|
601 | %endif | |
609 | </td> |
|
602 | </td> | |
610 | <td class="cb-content ${action_class(action)}" |
|
603 | <td class="cb-content ${action_class(action)}" | |
611 | data-line-number="${new_line_no and 'n' or 'o'}${new_line_no or old_line_no}" |
|
604 | data-line-number="${new_line_no and 'n' or 'o'}${new_line_no or old_line_no}" | |
612 | > |
|
605 | > | |
613 | %if use_comments: |
|
606 | %if use_comments: | |
614 | ${render_add_comment_button()} |
|
607 | ${render_add_comment_button()} | |
615 | %endif |
|
608 | %endif | |
616 | <span class="cb-code">${action} ${content or '' | n}</span> |
|
609 | <span class="cb-code">${action} ${content or '' | n}</span> | |
617 | %if use_comments and comments: |
|
610 | %if use_comments and comments: | |
618 | ${inline_comments_container(comments)} |
|
611 | ${inline_comments_container(comments)} | |
619 | %endif |
|
612 | %endif | |
620 | </td> |
|
613 | </td> | |
621 | </tr> |
|
614 | </tr> | |
622 | %endfor |
|
615 | %endfor | |
623 | </%def> |
|
616 | </%def> | |
624 |
|
617 | |||
625 | <%def name="render_add_comment_button()"> |
|
618 | <%def name="render_add_comment_button()"> | |
626 | <button class="btn btn-small btn-primary cb-comment-box-opener" onclick="return Rhodecode.comments.createComment(this)"> |
|
619 | <button class="btn btn-small btn-primary cb-comment-box-opener" onclick="return Rhodecode.comments.createComment(this)"> | |
627 | <span><i class="icon-comment"></i></span> |
|
620 | <span><i class="icon-comment"></i></span> | |
628 | </button> |
|
621 | </button> | |
629 | </%def> |
|
622 | </%def> | |
630 |
|
623 | |||
631 | <%def name="render_diffset_menu()"> |
|
624 | <%def name="render_diffset_menu()"> | |
632 |
|
625 | |||
633 | <div class="diffset-menu clearinner"> |
|
626 | <div class="diffset-menu clearinner"> | |
634 | <div class="pull-right"> |
|
627 | <div class="pull-right"> | |
635 | <div class="btn-group"> |
|
628 | <div class="btn-group"> | |
636 |
|
629 | |||
637 | <a |
|
630 | <a | |
638 | class="btn ${c.diffmode == 'sideside' and 'btn-primary'} tooltip" |
|
631 | class="btn ${c.diffmode == 'sideside' and 'btn-primary'} tooltip" | |
639 | title="${_('View side by side')}" |
|
632 | title="${_('View side by side')}" | |
640 | href="${h.url_replace(diffmode='sideside')}"> |
|
633 | href="${h.url_replace(diffmode='sideside')}"> | |
641 | <span>${_('Side by Side')}</span> |
|
634 | <span>${_('Side by Side')}</span> | |
642 | </a> |
|
635 | </a> | |
643 | <a |
|
636 | <a | |
644 | class="btn ${c.diffmode == 'unified' and 'btn-primary'} tooltip" |
|
637 | class="btn ${c.diffmode == 'unified' and 'btn-primary'} tooltip" | |
645 | title="${_('View unified')}" href="${h.url_replace(diffmode='unified')}"> |
|
638 | title="${_('View unified')}" href="${h.url_replace(diffmode='unified')}"> | |
646 | <span>${_('Unified')}</span> |
|
639 | <span>${_('Unified')}</span> | |
647 | </a> |
|
640 | </a> | |
648 | </div> |
|
641 | </div> | |
649 | </div> |
|
642 | </div> | |
650 |
|
643 | |||
651 | <div class="pull-left"> |
|
644 | <div class="pull-left"> | |
652 | <div class="btn-group"> |
|
645 | <div class="btn-group"> | |
653 | <a |
|
646 | <a | |
654 | class="btn" |
|
647 | class="btn" | |
655 | href="#" |
|
648 | href="#" | |
656 | onclick="$('input[class=filediff-collapse-state]').prop('checked', false); return false">${_('Expand All Files')}</a> |
|
649 | onclick="$('input[class=filediff-collapse-state]').prop('checked', false); return false">${_('Expand All Files')}</a> | |
657 | <a |
|
650 | <a | |
658 | class="btn" |
|
651 | class="btn" | |
659 | href="#" |
|
652 | href="#" | |
660 | onclick="$('input[class=filediff-collapse-state]').prop('checked', true); return false">${_('Collapse All Files')}</a> |
|
653 | onclick="$('input[class=filediff-collapse-state]').prop('checked', true); return false">${_('Collapse All Files')}</a> | |
661 | <a |
|
654 | <a | |
662 | class="btn" |
|
655 | class="btn" | |
663 | href="#" |
|
656 | href="#" | |
664 | onclick="return Rhodecode.comments.toggleWideMode(this)">${_('Wide Mode Diff')}</a> |
|
657 | onclick="return Rhodecode.comments.toggleWideMode(this)">${_('Wide Mode Diff')}</a> | |
665 | </div> |
|
658 | </div> | |
666 | </div> |
|
659 | </div> | |
667 | </div> |
|
660 | </div> | |
668 | </%def> |
|
661 | </%def> |
@@ -1,713 +1,889 b'' | |||||
1 | <%inherit file="/base/base.mako"/> |
|
1 | <%inherit file="/base/base.mako"/> | |
|
2 | <%namespace name="base" file="/base/base.mako"/> | |||
2 |
|
3 | |||
3 | <%def name="title()"> |
|
4 | <%def name="title()"> | |
4 | ${_('%s Pull Request #%s') % (c.repo_name, c.pull_request.pull_request_id)} |
|
5 | ${_('%s Pull Request #%s') % (c.repo_name, c.pull_request.pull_request_id)} | |
5 | %if c.rhodecode_name: |
|
6 | %if c.rhodecode_name: | |
6 | · ${h.branding(c.rhodecode_name)} |
|
7 | · ${h.branding(c.rhodecode_name)} | |
7 | %endif |
|
8 | %endif | |
8 | </%def> |
|
9 | </%def> | |
9 |
|
10 | |||
10 | <%def name="breadcrumbs_links()"> |
|
11 | <%def name="breadcrumbs_links()"> | |
11 | <span id="pr-title"> |
|
12 | <span id="pr-title"> | |
12 | ${c.pull_request.title} |
|
13 | ${c.pull_request.title} | |
13 | %if c.pull_request.is_closed(): |
|
14 | %if c.pull_request.is_closed(): | |
14 | (${_('Closed')}) |
|
15 | (${_('Closed')}) | |
15 | %endif |
|
16 | %endif | |
16 | </span> |
|
17 | </span> | |
17 | <div id="pr-title-edit" class="input" style="display: none;"> |
|
18 | <div id="pr-title-edit" class="input" style="display: none;"> | |
18 | ${h.text('pullrequest_title', id_="pr-title-input", class_="large", value=c.pull_request.title)} |
|
19 | ${h.text('pullrequest_title', id_="pr-title-input", class_="large", value=c.pull_request.title)} | |
19 | </div> |
|
20 | </div> | |
20 | </%def> |
|
21 | </%def> | |
21 |
|
22 | |||
22 | <%def name="menu_bar_nav()"> |
|
23 | <%def name="menu_bar_nav()"> | |
23 | ${self.menu_items(active='repositories')} |
|
24 | ${self.menu_items(active='repositories')} | |
24 | </%def> |
|
25 | </%def> | |
25 |
|
26 | |||
26 | <%def name="menu_bar_subnav()"> |
|
27 | <%def name="menu_bar_subnav()"> | |
27 | ${self.repo_menu(active='showpullrequest')} |
|
28 | ${self.repo_menu(active='showpullrequest')} | |
28 | </%def> |
|
29 | </%def> | |
29 |
|
30 | |||
30 | <%def name="main()"> |
|
31 | <%def name="main()"> | |
31 |
|
32 | |||
32 | <script type="text/javascript"> |
|
33 | <script type="text/javascript"> | |
33 | // TODO: marcink switch this to pyroutes |
|
34 | // TODO: marcink switch this to pyroutes | |
34 | AJAX_COMMENT_DELETE_URL = "${url('pullrequest_comment_delete',repo_name=c.repo_name,comment_id='__COMMENT_ID__')}"; |
|
35 | AJAX_COMMENT_DELETE_URL = "${url('pullrequest_comment_delete',repo_name=c.repo_name,comment_id='__COMMENT_ID__')}"; | |
35 | templateContext.pull_request_data.pull_request_id = ${c.pull_request.pull_request_id}; |
|
36 | templateContext.pull_request_data.pull_request_id = ${c.pull_request.pull_request_id}; | |
36 | </script> |
|
37 | </script> | |
37 | <div class="box"> |
|
38 | <div class="box"> | |
38 |
|
39 | |||
39 | <div class="title"> |
|
40 | <div class="title"> | |
40 | ${self.repo_page_title(c.rhodecode_db_repo)} |
|
41 | ${self.repo_page_title(c.rhodecode_db_repo)} | |
41 | </div> |
|
42 | </div> | |
42 |
|
43 | |||
43 | ${self.breadcrumbs()} |
|
44 | ${self.breadcrumbs()} | |
44 |
|
45 | |||
45 | <div class="box pr-summary"> |
|
46 | <div class="box pr-summary"> | |
46 |
|
47 | |||
47 | <div class="summary-details block-left"> |
|
48 | <div class="summary-details block-left"> | |
48 | <% summary = lambda n:{False:'summary-short'}.get(n) %> |
|
49 | <% summary = lambda n:{False:'summary-short'}.get(n) %> | |
49 | <div class="pr-details-title"> |
|
50 | <div class="pr-details-title"> | |
50 | <a href="${h.url('pull_requests_global', pull_request_id=c.pull_request.pull_request_id)}">${_('Pull request #%s') % c.pull_request.pull_request_id}</a> ${_('From')} ${h.format_date(c.pull_request.created_on)} |
|
51 | <a href="${h.url('pull_requests_global', pull_request_id=c.pull_request.pull_request_id)}">${_('Pull request #%s') % c.pull_request.pull_request_id}</a> ${_('From')} ${h.format_date(c.pull_request.created_on)} | |
51 | %if c.allowed_to_update: |
|
52 | %if c.allowed_to_update: | |
52 | <div id="delete_pullrequest" class="pull-right action_button ${'' if c.allowed_to_delete else 'disabled' }" style="clear:inherit;padding: 0"> |
|
53 | <div id="delete_pullrequest" class="pull-right action_button ${'' if c.allowed_to_delete else 'disabled' }" style="clear:inherit;padding: 0"> | |
53 | % if c.allowed_to_delete: |
|
54 | % if c.allowed_to_delete: | |
54 | ${h.secure_form(url('pullrequest_delete', repo_name=c.pull_request.target_repo.repo_name, pull_request_id=c.pull_request.pull_request_id),method='delete')} |
|
55 | ${h.secure_form(url('pullrequest_delete', repo_name=c.pull_request.target_repo.repo_name, pull_request_id=c.pull_request.pull_request_id),method='delete')} | |
55 | ${h.submit('remove_%s' % c.pull_request.pull_request_id, _('Delete'), |
|
56 | ${h.submit('remove_%s' % c.pull_request.pull_request_id, _('Delete'), | |
56 | class_="btn btn-link btn-danger",onclick="return confirm('"+_('Confirm to delete this pull request')+"');")} |
|
57 | class_="btn btn-link btn-danger",onclick="return confirm('"+_('Confirm to delete this pull request')+"');")} | |
57 | ${h.end_form()} |
|
58 | ${h.end_form()} | |
58 | % else: |
|
59 | % else: | |
59 | ${_('Delete')} |
|
60 | ${_('Delete')} | |
60 | % endif |
|
61 | % endif | |
61 | </div> |
|
62 | </div> | |
62 | <div id="open_edit_pullrequest" class="pull-right action_button">${_('Edit')}</div> |
|
63 | <div id="open_edit_pullrequest" class="pull-right action_button">${_('Edit')}</div> | |
63 | <div id="close_edit_pullrequest" class="pull-right action_button" style="display: none;padding: 0">${_('Cancel')}</div> |
|
64 | <div id="close_edit_pullrequest" class="pull-right action_button" style="display: none;padding: 0">${_('Cancel')}</div> | |
64 | %endif |
|
65 | %endif | |
65 | </div> |
|
66 | </div> | |
66 |
|
67 | |||
67 | <div id="summary" class="fields pr-details-content"> |
|
68 | <div id="summary" class="fields pr-details-content"> | |
68 | <div class="field"> |
|
69 | <div class="field"> | |
69 | <div class="label-summary"> |
|
70 | <div class="label-summary"> | |
70 | <label>${_('Origin')}:</label> |
|
71 | <label>${_('Origin')}:</label> | |
71 | </div> |
|
72 | </div> | |
72 | <div class="input"> |
|
73 | <div class="input"> | |
73 | <div class="pr-origininfo"> |
|
74 | <div class="pr-origininfo"> | |
74 | ## branch link is only valid if it is a branch |
|
75 | ## branch link is only valid if it is a branch | |
75 | <span class="tag"> |
|
76 | <span class="tag"> | |
76 | %if c.pull_request.source_ref_parts.type == 'branch': |
|
77 | %if c.pull_request.source_ref_parts.type == 'branch': | |
77 | <a href="${h.url('changelog_home', repo_name=c.pull_request.source_repo.repo_name, branch=c.pull_request.source_ref_parts.name)}">${c.pull_request.source_ref_parts.type}: ${c.pull_request.source_ref_parts.name}</a> |
|
78 | <a href="${h.url('changelog_home', repo_name=c.pull_request.source_repo.repo_name, branch=c.pull_request.source_ref_parts.name)}">${c.pull_request.source_ref_parts.type}: ${c.pull_request.source_ref_parts.name}</a> | |
78 | %else: |
|
79 | %else: | |
79 | ${c.pull_request.source_ref_parts.type}: ${c.pull_request.source_ref_parts.name} |
|
80 | ${c.pull_request.source_ref_parts.type}: ${c.pull_request.source_ref_parts.name} | |
80 | %endif |
|
81 | %endif | |
81 | </span> |
|
82 | </span> | |
82 | <span class="clone-url"> |
|
83 | <span class="clone-url"> | |
83 | <a href="${h.url('summary_home', repo_name=c.pull_request.source_repo.repo_name)}">${c.pull_request.source_repo.clone_url()}</a> |
|
84 | <a href="${h.url('summary_home', repo_name=c.pull_request.source_repo.repo_name)}">${c.pull_request.source_repo.clone_url()}</a> | |
84 | </span> |
|
85 | </span> | |
85 | </div> |
|
86 | </div> | |
86 | <div class="pr-pullinfo"> |
|
87 | <div class="pr-pullinfo"> | |
87 | %if h.is_hg(c.pull_request.source_repo): |
|
88 | %if h.is_hg(c.pull_request.source_repo): | |
88 | <input type="text" value="hg pull -r ${h.short_id(c.source_ref)} ${c.pull_request.source_repo.clone_url()}" readonly="readonly"> |
|
89 | <input type="text" value="hg pull -r ${h.short_id(c.source_ref)} ${c.pull_request.source_repo.clone_url()}" readonly="readonly"> | |
89 | %elif h.is_git(c.pull_request.source_repo): |
|
90 | %elif h.is_git(c.pull_request.source_repo): | |
90 | <input type="text" value="git pull ${c.pull_request.source_repo.clone_url()} ${c.pull_request.source_ref_parts.name}" readonly="readonly"> |
|
91 | <input type="text" value="git pull ${c.pull_request.source_repo.clone_url()} ${c.pull_request.source_ref_parts.name}" readonly="readonly"> | |
91 | %endif |
|
92 | %endif | |
92 | </div> |
|
93 | </div> | |
93 | </div> |
|
94 | </div> | |
94 | </div> |
|
95 | </div> | |
95 | <div class="field"> |
|
96 | <div class="field"> | |
96 | <div class="label-summary"> |
|
97 | <div class="label-summary"> | |
97 | <label>${_('Target')}:</label> |
|
98 | <label>${_('Target')}:</label> | |
98 | </div> |
|
99 | </div> | |
99 | <div class="input"> |
|
100 | <div class="input"> | |
100 | <div class="pr-targetinfo"> |
|
101 | <div class="pr-targetinfo"> | |
101 | ## branch link is only valid if it is a branch |
|
102 | ## branch link is only valid if it is a branch | |
102 | <span class="tag"> |
|
103 | <span class="tag"> | |
103 | %if c.pull_request.target_ref_parts.type == 'branch': |
|
104 | %if c.pull_request.target_ref_parts.type == 'branch': | |
104 | <a href="${h.url('changelog_home', repo_name=c.pull_request.target_repo.repo_name, branch=c.pull_request.target_ref_parts.name)}">${c.pull_request.target_ref_parts.type}: ${c.pull_request.target_ref_parts.name}</a> |
|
105 | <a href="${h.url('changelog_home', repo_name=c.pull_request.target_repo.repo_name, branch=c.pull_request.target_ref_parts.name)}">${c.pull_request.target_ref_parts.type}: ${c.pull_request.target_ref_parts.name}</a> | |
105 | %else: |
|
106 | %else: | |
106 | ${c.pull_request.target_ref_parts.type}: ${c.pull_request.target_ref_parts.name} |
|
107 | ${c.pull_request.target_ref_parts.type}: ${c.pull_request.target_ref_parts.name} | |
107 | %endif |
|
108 | %endif | |
108 | </span> |
|
109 | </span> | |
109 | <span class="clone-url"> |
|
110 | <span class="clone-url"> | |
110 | <a href="${h.url('summary_home', repo_name=c.pull_request.target_repo.repo_name)}">${c.pull_request.target_repo.clone_url()}</a> |
|
111 | <a href="${h.url('summary_home', repo_name=c.pull_request.target_repo.repo_name)}">${c.pull_request.target_repo.clone_url()}</a> | |
111 | </span> |
|
112 | </span> | |
112 | </div> |
|
113 | </div> | |
113 | </div> |
|
114 | </div> | |
114 | </div> |
|
115 | </div> | |
115 |
|
116 | |||
116 | ## Link to the shadow repository. |
|
117 | ## Link to the shadow repository. | |
117 | <div class="field"> |
|
118 | <div class="field"> | |
118 | <div class="label-summary"> |
|
119 | <div class="label-summary"> | |
119 | <label>${_('Merge')}:</label> |
|
120 | <label>${_('Merge')}:</label> | |
120 | </div> |
|
121 | </div> | |
121 | <div class="input"> |
|
122 | <div class="input"> | |
122 | % if not c.pull_request.is_closed() and c.pull_request.shadow_merge_ref: |
|
123 | % if not c.pull_request.is_closed() and c.pull_request.shadow_merge_ref: | |
123 | <div class="pr-mergeinfo"> |
|
124 | <div class="pr-mergeinfo"> | |
124 | %if h.is_hg(c.pull_request.target_repo): |
|
125 | %if h.is_hg(c.pull_request.target_repo): | |
125 | <input type="text" value="hg clone -u ${c.pull_request.shadow_merge_ref.name} ${c.shadow_clone_url} pull-request-${c.pull_request.pull_request_id}" readonly="readonly"> |
|
126 | <input type="text" value="hg clone -u ${c.pull_request.shadow_merge_ref.name} ${c.shadow_clone_url} pull-request-${c.pull_request.pull_request_id}" readonly="readonly"> | |
126 | %elif h.is_git(c.pull_request.target_repo): |
|
127 | %elif h.is_git(c.pull_request.target_repo): | |
127 | <input type="text" value="git clone --branch ${c.pull_request.shadow_merge_ref.name} ${c.shadow_clone_url} pull-request-${c.pull_request.pull_request_id}" readonly="readonly"> |
|
128 | <input type="text" value="git clone --branch ${c.pull_request.shadow_merge_ref.name} ${c.shadow_clone_url} pull-request-${c.pull_request.pull_request_id}" readonly="readonly"> | |
128 | %endif |
|
129 | %endif | |
129 | </div> |
|
130 | </div> | |
130 | % else: |
|
131 | % else: | |
131 | <div class=""> |
|
132 | <div class=""> | |
132 | ${_('Shadow repository data not available')}. |
|
133 | ${_('Shadow repository data not available')}. | |
133 | </div> |
|
134 | </div> | |
134 | % endif |
|
135 | % endif | |
135 | </div> |
|
136 | </div> | |
136 | </div> |
|
137 | </div> | |
137 |
|
138 | |||
138 | <div class="field"> |
|
139 | <div class="field"> | |
139 | <div class="label-summary"> |
|
140 | <div class="label-summary"> | |
140 | <label>${_('Review')}:</label> |
|
141 | <label>${_('Review')}:</label> | |
141 | </div> |
|
142 | </div> | |
142 | <div class="input"> |
|
143 | <div class="input"> | |
143 | %if c.pull_request_review_status: |
|
144 | %if c.pull_request_review_status: | |
144 | <div class="${'flag_status %s' % c.pull_request_review_status} tooltip pull-left"></div> |
|
145 | <div class="${'flag_status %s' % c.pull_request_review_status} tooltip pull-left"></div> | |
145 | <span class="changeset-status-lbl tooltip"> |
|
146 | <span class="changeset-status-lbl tooltip"> | |
146 | %if c.pull_request.is_closed(): |
|
147 | %if c.pull_request.is_closed(): | |
147 | ${_('Closed')}, |
|
148 | ${_('Closed')}, | |
148 | %endif |
|
149 | %endif | |
149 | ${h.commit_status_lbl(c.pull_request_review_status)} |
|
150 | ${h.commit_status_lbl(c.pull_request_review_status)} | |
150 | </span> |
|
151 | </span> | |
151 | - ${ungettext('calculated based on %s reviewer vote', 'calculated based on %s reviewers votes', len(c.pull_request_reviewers)) % len(c.pull_request_reviewers)} |
|
152 | - ${ungettext('calculated based on %s reviewer vote', 'calculated based on %s reviewers votes', len(c.pull_request_reviewers)) % len(c.pull_request_reviewers)} | |
152 | %endif |
|
153 | %endif | |
153 | </div> |
|
154 | </div> | |
154 | </div> |
|
155 | </div> | |
155 | <div class="field"> |
|
156 | <div class="field"> | |
156 | <div class="pr-description-label label-summary"> |
|
157 | <div class="pr-description-label label-summary"> | |
157 | <label>${_('Description')}:</label> |
|
158 | <label>${_('Description')}:</label> | |
158 | </div> |
|
159 | </div> | |
159 | <div id="pr-desc" class="input"> |
|
160 | <div id="pr-desc" class="input"> | |
160 | <div class="pr-description">${h.urlify_commit_message(c.pull_request.description, c.repo_name)}</div> |
|
161 | <div class="pr-description">${h.urlify_commit_message(c.pull_request.description, c.repo_name)}</div> | |
161 | </div> |
|
162 | </div> | |
162 | <div id="pr-desc-edit" class="input textarea editor" style="display: none;"> |
|
163 | <div id="pr-desc-edit" class="input textarea editor" style="display: none;"> | |
163 | <textarea id="pr-description-input" size="30">${c.pull_request.description}</textarea> |
|
164 | <textarea id="pr-description-input" size="30">${c.pull_request.description}</textarea> | |
164 | </div> |
|
165 | </div> | |
165 | </div> |
|
166 | </div> | |
166 |
|
167 | |||
167 | <div class="field"> |
|
168 | <div class="field"> | |
168 |
|
|
169 | <div class="label-summary"> | |
169 |
|
|
170 | <label>${_('Versions')}:</label> | |
170 |
|
|
171 | </div> | |
|
172 | ||||
|
173 | <% outdated_comm_count_ver = len(c.inline_versions[None]['outdated']) %> | |||
|
174 | <% general_outdated_comm_count_ver = len(c.comment_versions[None]['outdated']) %> | |||
171 |
|
175 | |||
172 | <div class="pr-versions"> |
|
176 | <div class="pr-versions"> | |
173 | % if c.show_version_changes: |
|
177 | % if c.show_version_changes: | |
|
178 | <% outdated_comm_count_ver = len(c.inline_versions[c.at_version_num]['outdated']) %> | |||
|
179 | <% general_outdated_comm_count_ver = len(c.comment_versions[c.at_version_num]['outdated']) %> | |||
|
180 | <div id="show-pr-versions" class="input btn btn-link" onclick="return versionController.toggleVersionView(this)" | |||
|
181 | data-toggle-on="${ungettext('{} version available for this pull request, show it.', '{} versions available for this pull request, show them.', len(c.versions)).format(len(c.versions))}" | |||
|
182 | data-toggle-off="${_('Hide all versions of this pull request')}"> | |||
|
183 | ${ungettext('{} version available for this pull request, show it.', '{} versions available for this pull request, show them.', len(c.versions)).format(len(c.versions))} | |||
|
184 | </div> | |||
174 | <table> |
|
185 | <table> | |
175 | ## CURRENTLY SELECT PR VERSION |
|
|||
176 | <tr class="version-pr" style="display: ${'' if c.at_version_num is None else 'none'}"> |
|
|||
177 | <td> |
|
|||
178 | % if c.at_version_num is None: |
|
|||
179 | <i class="icon-ok link"></i> |
|
|||
180 | % else: |
|
|||
181 | <i class="icon-comment"></i> |
|
|||
182 | <code> |
|
|||
183 | ${len(c.comment_versions[None]['at'])}/${len(c.inline_versions[None]['at'])} |
|
|||
184 | </code> |
|
|||
185 | % endif |
|
|||
186 | </td> |
|
|||
187 | <td> |
|
|||
188 | <code> |
|
|||
189 | % if c.versions: |
|
|||
190 | <a href="${h.url.current(version='latest')}">${_('latest')}</a> |
|
|||
191 | % else: |
|
|||
192 | ${_('initial')} |
|
|||
193 | % endif |
|
|||
194 | </code> |
|
|||
195 | </td> |
|
|||
196 | <td> |
|
|||
197 | <code>${c.pull_request_latest.source_ref_parts.commit_id[:6]}</code> |
|
|||
198 | </td> |
|
|||
199 | <td> |
|
|||
200 | ${_('created')} ${h.age_component(c.pull_request_latest.updated_on)} |
|
|||
201 | </td> |
|
|||
202 | <td align="right"> |
|
|||
203 | % if c.versions and c.at_version_num in [None, 'latest']: |
|
|||
204 | <span id="show-pr-versions" class="btn btn-link" onclick="$('.version-pr').show(); $(this).hide(); return false">${_('Show all versions')}</span> |
|
|||
205 | % endif |
|
|||
206 | </td> |
|
|||
207 | </tr> |
|
|||
208 |
|
||||
209 | ## SHOW ALL VERSIONS OF PR |
|
186 | ## SHOW ALL VERSIONS OF PR | |
210 | <% ver_pr = None %> |
|
187 | <% ver_pr = None %> | |
211 |
|
188 | |||
212 | % for data in reversed(list(enumerate(c.versions, 1))): |
|
189 | % for data in reversed(list(enumerate(c.versions, 1))): | |
213 | <% ver_pos = data[0] %> |
|
190 | <% ver_pos = data[0] %> | |
214 | <% ver = data[1] %> |
|
191 | <% ver = data[1] %> | |
215 | <% ver_pr = ver.pull_request_version_id %> |
|
192 | <% ver_pr = ver.pull_request_version_id %> | |
|
193 | <% display_row = '' if c.at_version and (c.at_version_num == ver_pr or c.from_version_num == ver_pr) else 'none' %> | |||
216 |
|
194 | |||
217 |
<tr class="version-pr" style="display: ${ |
|
195 | <tr class="version-pr" style="display: ${display_row}"> | |
|
196 | <td> | |||
|
197 | <code> | |||
|
198 | <a href="${h.url.current(version=ver_pr or 'latest')}">v${ver_pos}</a> | |||
|
199 | </code> | |||
|
200 | </td> | |||
218 | <td> |
|
201 | <td> | |
219 | % if c.at_version_num == ver_pr: |
|
202 | <input ${'checked="checked"' if c.from_version_num == ver_pr else ''} class="compare-radio-button" type="radio" name="ver_source" value="${ver_pr or 'latest'}" data-ver-pos="${ver_pos}"/> | |
220 | <i class="icon-ok link"></i> |
|
203 | <input ${'checked="checked"' if c.at_version_num == ver_pr else ''} class="compare-radio-button" type="radio" name="ver_target" value="${ver_pr or 'latest'}" data-ver-pos="${ver_pos}"/> | |
221 |
|
|
204 | </td> | |
|
205 | <td> | |||
|
206 | <% review_status = c.review_versions[ver_pr].status if ver_pr in c.review_versions else 'not_reviewed' %> | |||
|
207 | <div class="${'flag_status %s' % review_status} tooltip pull-left" title="${_('Your review status at this version')}"> | |||
|
208 | </div> | |||
|
209 | </td> | |||
|
210 | <td> | |||
|
211 | % if c.at_version_num != ver_pr: | |||
222 | <i class="icon-comment"></i> |
|
212 | <i class="icon-comment"></i> | |
223 | <code class="tooltip" title="${_('Comment from pull request version {0}, general:{1} inline{2}').format(ver_pos, len(c.comment_versions[ver_pr]['at']), len(c.inline_versions[ver_pr]['at']))}"> |
|
213 | <code class="tooltip" title="${_('Comment from pull request version {0}, general:{1} inline:{2}').format(ver_pos, len(c.comment_versions[ver_pr]['at']), len(c.inline_versions[ver_pr]['at']))}"> | |
224 | ${len(c.comment_versions[ver_pr]['at'])}/${len(c.inline_versions[ver_pr]['at'])} |
|
214 | ${len(c.comment_versions[ver_pr]['at'])}/${len(c.inline_versions[ver_pr]['at'])} | |
225 | </code> |
|
215 | </code> | |
226 | % endif |
|
216 | % endif | |
227 | </td> |
|
217 | </td> | |
228 | <td> |
|
218 | <td> | |
229 |
|
|
219 | ##<code>${ver.source_ref_parts.commit_id[:6]}</code> | |
230 | <a href="${h.url.current(version=ver_pr)}">v${ver_pos}</a> |
|
|||
231 | </code> |
|
|||
232 | </td> |
|
220 | </td> | |
233 | <td> |
|
221 | <td> | |
234 | <code>${ver.source_ref_parts.commit_id[:6]}</code> |
|
222 | ${h.age_component(ver.updated_on)} | |
235 | </td> |
|
|||
236 | <td> |
|
|||
237 | ${_('created')} ${h.age_component(ver.updated_on)} |
|
|||
238 | </td> |
|
|||
239 | <td align="right"> |
|
|||
240 | % if c.at_version_num == ver_pr: |
|
|||
241 | <span id="show-pr-versions" class="btn btn-link" onclick="$('.version-pr').show(); $(this).hide(); return false">${_('Show all versions')}</span> |
|
|||
242 | % endif |
|
|||
243 | </td> |
|
223 | </td> | |
244 | </tr> |
|
224 | </tr> | |
245 | % endfor |
|
225 | % endfor | |
246 |
|
|
226 | ||
247 | ## show comment/inline comments summary |
|
|||
248 |
|
|
227 | <tr> | |
249 | <td> |
|
228 | <td colspan="5"> | |
|
229 | <button id="show-version-diff" onclick="return versionController.showVersionDiff()" class="btn btn-sm" style="display: none" data-label-text="${_('show changes between versions')}"> | |||
|
230 | ${_('show changes between versions')} | |||
|
231 | </button> | |||
250 | </td> |
|
232 | </td> | |
|
233 | </tr> | |||
251 |
|
234 | |||
252 | <td colspan="4" style="border-top: 1px dashed #dbd9da"> |
|
235 | ## show comment/inline comments summary | |
253 | <% outdated_comm_count_ver = len(c.inline_versions[c.at_version_num]['outdated']) %> |
|
236 | <%def name="comments_summary()"> | |
254 | <% general_outdated_comm_count_ver = len(c.comment_versions[c.at_version_num]['outdated']) %> |
|
237 | <tr> | |
255 |
|
238 | <td colspan="6" class="comments-summary-td"> | ||
256 |
|
239 | |||
257 | % if c.at_version: |
|
240 | % if c.at_version: | |
258 | <% inline_comm_count_ver = len(c.inline_versions[c.at_version_num]['display']) %> |
|
241 | <% inline_comm_count_ver = len(c.inline_versions[c.at_version_num]['display']) %> | |
259 | <% general_comm_count_ver = len(c.comment_versions[c.at_version_num]['display']) %> |
|
242 | <% general_comm_count_ver = len(c.comment_versions[c.at_version_num]['display']) %> | |
260 | ${_('Comments at this version')}: |
|
243 | ${_('Comments at this version')}: | |
261 | % else: |
|
244 | % else: | |
262 | <% inline_comm_count_ver = len(c.inline_versions[c.at_version_num]['until']) %> |
|
245 | <% inline_comm_count_ver = len(c.inline_versions[c.at_version_num]['until']) %> | |
263 | <% general_comm_count_ver = len(c.comment_versions[c.at_version_num]['until']) %> |
|
246 | <% general_comm_count_ver = len(c.comment_versions[c.at_version_num]['until']) %> | |
264 | ${_('Comments for this pull request')}: |
|
247 | ${_('Comments for this pull request')}: | |
265 | % endif |
|
248 | % endif | |
266 |
|
249 | |||
|
250 | ||||
267 | %if general_comm_count_ver: |
|
251 | %if general_comm_count_ver: | |
268 | <a href="#comments">${_("%d General ") % general_comm_count_ver}</a> |
|
252 | <a href="#comments">${_("%d General ") % general_comm_count_ver}</a> | |
269 | %else: |
|
253 | %else: | |
270 | ${_("%d General ") % general_comm_count_ver} |
|
254 | ${_("%d General ") % general_comm_count_ver} | |
271 | %endif |
|
255 | %endif | |
272 |
|
256 | |||
273 | %if inline_comm_count_ver: |
|
257 | %if inline_comm_count_ver: | |
274 | , <a href="#" onclick="return Rhodecode.comments.nextComment();" id="inline-comments-counter">${_("%d Inline") % inline_comm_count_ver}</a> |
|
258 | , <a href="#" onclick="return Rhodecode.comments.nextComment();" id="inline-comments-counter">${_("%d Inline") % inline_comm_count_ver}</a> | |
275 | %else: |
|
259 | %else: | |
276 | , ${_("%d Inline") % inline_comm_count_ver} |
|
260 | , ${_("%d Inline") % inline_comm_count_ver} | |
277 | %endif |
|
261 | %endif | |
278 |
|
262 | |||
279 | %if outdated_comm_count_ver: |
|
263 | %if outdated_comm_count_ver: | |
280 | , <a href="#" onclick="showOutdated(); Rhodecode.comments.nextOutdatedComment(); return false;">${_("%d Outdated") % outdated_comm_count_ver}</a> |
|
264 | , <a href="#" onclick="showOutdated(); Rhodecode.comments.nextOutdatedComment(); return false;">${_("%d Outdated") % outdated_comm_count_ver}</a> | |
281 | <a href="#" class="showOutdatedComments" onclick="showOutdated(this); return false;"> | ${_('show outdated comments')}</a> |
|
265 | <a href="#" class="showOutdatedComments" onclick="showOutdated(this); return false;"> | ${_('show outdated comments')}</a> | |
282 | <a href="#" class="hideOutdatedComments" style="display: none" onclick="hideOutdated(this); return false;"> | ${_('hide outdated comments')}</a> |
|
266 | <a href="#" class="hideOutdatedComments" style="display: none" onclick="hideOutdated(this); return false;"> | ${_('hide outdated comments')}</a> | |
283 | %else: |
|
267 | %else: | |
284 | , ${_("%d Outdated") % outdated_comm_count_ver} |
|
268 | , ${_("%d Outdated") % outdated_comm_count_ver} | |
285 | %endif |
|
269 | %endif | |
286 | </td> |
|
270 | </td> | |
287 | </tr> |
|
271 | </tr> | |
288 |
|
272 | </%def> | ||
289 |
|
|
273 | ${comments_summary()} | |
290 | <td></td> |
|
|||
291 | <td colspan="4"> |
|
|||
292 | % if c.at_version: |
|
|||
293 | <pre> |
|
|||
294 | Changed commits: |
|
|||
295 | * added: ${len(c.changes.added)} |
|
|||
296 | * removed: ${len(c.changes.removed)} |
|
|||
297 |
|
||||
298 | % if not (c.file_changes.added+c.file_changes.modified+c.file_changes.removed): |
|
|||
299 | No file changes found |
|
|||
300 | % else: |
|
|||
301 | Changed files: |
|
|||
302 | %for file_name in c.file_changes.added: |
|
|||
303 | * A <a href="#${'a_' + h.FID('', file_name)}">${file_name}</a> |
|
|||
304 | %endfor |
|
|||
305 | %for file_name in c.file_changes.modified: |
|
|||
306 | * M <a href="#${'a_' + h.FID('', file_name)}">${file_name}</a> |
|
|||
307 | %endfor |
|
|||
308 | %for file_name in c.file_changes.removed: |
|
|||
309 | * R ${file_name} |
|
|||
310 | %endfor |
|
|||
311 | % endif |
|
|||
312 | </pre> |
|
|||
313 | % endif |
|
|||
314 | </td> |
|
|||
315 | </tr> |
|
|||
316 | </table> |
|
274 | </table> | |
317 | % else: |
|
275 | % else: | |
|
276 | <div class="input"> | |||
318 | ${_('Pull request versions not available')}. |
|
277 | ${_('Pull request versions not available')}. | |
|
278 | </div> | |||
|
279 | <div> | |||
|
280 | <table> | |||
|
281 | ${comments_summary()} | |||
|
282 | </table> | |||
|
283 | </div> | |||
319 | % endif |
|
284 | % endif | |
320 | </div> |
|
285 | </div> | |
321 | </div> |
|
286 | </div> | |
322 |
|
287 | |||
323 | <div id="pr-save" class="field" style="display: none;"> |
|
288 | <div id="pr-save" class="field" style="display: none;"> | |
324 | <div class="label-summary"></div> |
|
289 | <div class="label-summary"></div> | |
325 | <div class="input"> |
|
290 | <div class="input"> | |
326 | <span id="edit_pull_request" class="btn btn-small">${_('Save Changes')}</span> |
|
291 | <span id="edit_pull_request" class="btn btn-small">${_('Save Changes')}</span> | |
327 | </div> |
|
292 | </div> | |
328 | </div> |
|
293 | </div> | |
329 | </div> |
|
294 | </div> | |
330 | </div> |
|
295 | </div> | |
331 | <div> |
|
296 | <div> | |
332 | ## AUTHOR |
|
297 | ## AUTHOR | |
333 | <div class="reviewers-title block-right"> |
|
298 | <div class="reviewers-title block-right"> | |
334 | <div class="pr-details-title"> |
|
299 | <div class="pr-details-title"> | |
335 | ${_('Author')} |
|
300 | ${_('Author')} | |
336 | </div> |
|
301 | </div> | |
337 | </div> |
|
302 | </div> | |
338 | <div class="block-right pr-details-content reviewers"> |
|
303 | <div class="block-right pr-details-content reviewers"> | |
339 | <ul class="group_members"> |
|
304 | <ul class="group_members"> | |
340 | <li> |
|
305 | <li> | |
341 | ${self.gravatar_with_user(c.pull_request.author.email, 16)} |
|
306 | ${self.gravatar_with_user(c.pull_request.author.email, 16)} | |
342 | </li> |
|
307 | </li> | |
343 | </ul> |
|
308 | </ul> | |
344 | </div> |
|
309 | </div> | |
345 | ## REVIEWERS |
|
310 | ## REVIEWERS | |
346 | <div class="reviewers-title block-right"> |
|
311 | <div class="reviewers-title block-right"> | |
347 | <div class="pr-details-title"> |
|
312 | <div class="pr-details-title"> | |
348 | ${_('Pull request reviewers')} |
|
313 | ${_('Pull request reviewers')} | |
349 | %if c.allowed_to_update: |
|
314 | %if c.allowed_to_update: | |
350 | <span id="open_edit_reviewers" class="block-right action_button">${_('Edit')}</span> |
|
315 | <span id="open_edit_reviewers" class="block-right action_button">${_('Edit')}</span> | |
351 | <span id="close_edit_reviewers" class="block-right action_button" style="display: none;">${_('Close')}</span> |
|
316 | <span id="close_edit_reviewers" class="block-right action_button" style="display: none;">${_('Close')}</span> | |
352 | %endif |
|
317 | %endif | |
353 | </div> |
|
318 | </div> | |
354 | </div> |
|
319 | </div> | |
355 | <div id="reviewers" class="block-right pr-details-content reviewers"> |
|
320 | <div id="reviewers" class="block-right pr-details-content reviewers"> | |
356 | ## members goes here ! |
|
321 | ## members goes here ! | |
357 | <input type="hidden" name="__start__" value="review_members:sequence"> |
|
322 | <input type="hidden" name="__start__" value="review_members:sequence"> | |
358 | <ul id="review_members" class="group_members"> |
|
323 | <ul id="review_members" class="group_members"> | |
359 | %for member,reasons,status in c.pull_request_reviewers: |
|
324 | %for member,reasons,status in c.pull_request_reviewers: | |
360 | <li id="reviewer_${member.user_id}"> |
|
325 | <li id="reviewer_${member.user_id}"> | |
361 | <div class="reviewers_member"> |
|
326 | <div class="reviewers_member"> | |
362 | <div class="reviewer_status tooltip" title="${h.tooltip(h.commit_status_lbl(status[0][1].status if status else 'not_reviewed'))}"> |
|
327 | <div class="reviewer_status tooltip" title="${h.tooltip(h.commit_status_lbl(status[0][1].status if status else 'not_reviewed'))}"> | |
363 | <div class="${'flag_status %s' % (status[0][1].status if status else 'not_reviewed')} pull-left reviewer_member_status"></div> |
|
328 | <div class="${'flag_status %s' % (status[0][1].status if status else 'not_reviewed')} pull-left reviewer_member_status"></div> | |
364 | </div> |
|
329 | </div> | |
365 | <div id="reviewer_${member.user_id}_name" class="reviewer_name"> |
|
330 | <div id="reviewer_${member.user_id}_name" class="reviewer_name"> | |
366 | ${self.gravatar_with_user(member.email, 16)} |
|
331 | ${self.gravatar_with_user(member.email, 16)} | |
367 | </div> |
|
332 | </div> | |
368 | <input type="hidden" name="__start__" value="reviewer:mapping"> |
|
333 | <input type="hidden" name="__start__" value="reviewer:mapping"> | |
369 | <input type="hidden" name="__start__" value="reasons:sequence"> |
|
334 | <input type="hidden" name="__start__" value="reasons:sequence"> | |
370 | %for reason in reasons: |
|
335 | %for reason in reasons: | |
371 | <div class="reviewer_reason">- ${reason}</div> |
|
336 | <div class="reviewer_reason">- ${reason}</div> | |
372 | <input type="hidden" name="reason" value="${reason}"> |
|
337 | <input type="hidden" name="reason" value="${reason}"> | |
373 |
|
338 | |||
374 | %endfor |
|
339 | %endfor | |
375 | <input type="hidden" name="__end__" value="reasons:sequence"> |
|
340 | <input type="hidden" name="__end__" value="reasons:sequence"> | |
376 | <input id="reviewer_${member.user_id}_input" type="hidden" value="${member.user_id}" name="user_id" /> |
|
341 | <input id="reviewer_${member.user_id}_input" type="hidden" value="${member.user_id}" name="user_id" /> | |
377 | <input type="hidden" name="__end__" value="reviewer:mapping"> |
|
342 | <input type="hidden" name="__end__" value="reviewer:mapping"> | |
378 | %if c.allowed_to_update: |
|
343 | %if c.allowed_to_update: | |
379 | <div class="reviewer_member_remove action_button" onclick="removeReviewMember(${member.user_id}, true)" style="visibility: hidden;"> |
|
344 | <div class="reviewer_member_remove action_button" onclick="removeReviewMember(${member.user_id}, true)" style="visibility: hidden;"> | |
380 | <i class="icon-remove-sign" ></i> |
|
345 | <i class="icon-remove-sign" ></i> | |
381 | </div> |
|
346 | </div> | |
382 | %endif |
|
347 | %endif | |
383 | </div> |
|
348 | </div> | |
384 | </li> |
|
349 | </li> | |
385 | %endfor |
|
350 | %endfor | |
386 | </ul> |
|
351 | </ul> | |
387 | <input type="hidden" name="__end__" value="review_members:sequence"> |
|
352 | <input type="hidden" name="__end__" value="review_members:sequence"> | |
388 | %if not c.pull_request.is_closed(): |
|
353 | %if not c.pull_request.is_closed(): | |
389 | <div id="add_reviewer_input" class='ac' style="display: none;"> |
|
354 | <div id="add_reviewer_input" class='ac' style="display: none;"> | |
390 | %if c.allowed_to_update: |
|
355 | %if c.allowed_to_update: | |
391 | <div class="reviewer_ac"> |
|
356 | <div class="reviewer_ac"> | |
392 | ${h.text('user', class_='ac-input', placeholder=_('Add reviewer'))} |
|
357 | ${h.text('user', class_='ac-input', placeholder=_('Add reviewer'))} | |
393 | <div id="reviewers_container"></div> |
|
358 | <div id="reviewers_container"></div> | |
394 | </div> |
|
359 | </div> | |
395 | <div> |
|
360 | <div> | |
396 | <span id="update_pull_request" class="btn btn-small">${_('Save Changes')}</span> |
|
361 | <span id="update_pull_request" class="btn btn-small">${_('Save Changes')}</span> | |
397 | </div> |
|
362 | </div> | |
398 | %endif |
|
363 | %endif | |
399 | </div> |
|
364 | </div> | |
400 | %endif |
|
365 | %endif | |
401 | </div> |
|
366 | </div> | |
402 | </div> |
|
367 | </div> | |
403 | </div> |
|
368 | </div> | |
404 | <div class="box"> |
|
369 | <div class="box"> | |
405 | ##DIFF |
|
370 | ##DIFF | |
406 | <div class="table" > |
|
371 | <div class="table" > | |
407 | <div id="changeset_compare_view_content"> |
|
372 | <div id="changeset_compare_view_content"> | |
408 | ##CS |
|
373 | ##CS | |
409 | % if c.missing_requirements: |
|
374 | % if c.missing_requirements: | |
410 | <div class="box"> |
|
375 | <div class="box"> | |
411 | <div class="alert alert-warning"> |
|
376 | <div class="alert alert-warning"> | |
412 | <div> |
|
377 | <div> | |
413 | <strong>${_('Missing requirements:')}</strong> |
|
378 | <strong>${_('Missing requirements:')}</strong> | |
414 | ${_('These commits cannot be displayed, because this repository uses the Mercurial largefiles extension, which was not enabled.')} |
|
379 | ${_('These commits cannot be displayed, because this repository uses the Mercurial largefiles extension, which was not enabled.')} | |
415 | </div> |
|
380 | </div> | |
416 | </div> |
|
381 | </div> | |
417 | </div> |
|
382 | </div> | |
418 | % elif c.missing_commits: |
|
383 | % elif c.missing_commits: | |
419 | <div class="box"> |
|
384 | <div class="box"> | |
420 | <div class="alert alert-warning"> |
|
385 | <div class="alert alert-warning"> | |
421 | <div> |
|
386 | <div> | |
422 | <strong>${_('Missing commits')}:</strong> |
|
387 | <strong>${_('Missing commits')}:</strong> | |
423 | ${_('This pull request cannot be displayed, because one or more commits no longer exist in the source repository.')} |
|
388 | ${_('This pull request cannot be displayed, because one or more commits no longer exist in the source repository.')} | |
424 | ${_('Please update this pull request, push the commits back into the source repository, or consider closing this pull request.')} |
|
389 | ${_('Please update this pull request, push the commits back into the source repository, or consider closing this pull request.')} | |
425 | </div> |
|
390 | </div> | |
426 | </div> |
|
391 | </div> | |
427 | </div> |
|
392 | </div> | |
428 | % endif |
|
393 | % endif | |
429 | <div class="compare_view_commits_title"> |
|
394 | ||
|
395 | <div class="compare_view_commits_title"> | |||
|
396 | % if not c.compare_mode: | |||
|
397 | ||||
|
398 | % if c.at_version_pos: | |||
|
399 | <h4> | |||
|
400 | ${_('Showing changes at v%d, commenting is disabled.') % c.at_version_pos} | |||
|
401 | </h4> | |||
|
402 | % endif | |||
430 |
|
403 | |||
431 | <div class="pull-left"> |
|
404 | <div class="pull-left"> | |
432 | <div class="btn-group"> |
|
405 | <div class="btn-group"> | |
433 | <a |
|
406 | <a | |
434 | class="btn" |
|
407 | class="btn" | |
435 | href="#" |
|
408 | href="#" | |
436 | onclick="$('.compare_select').show();$('.compare_select_hidden').hide(); return false"> |
|
409 | onclick="$('.compare_select').show();$('.compare_select_hidden').hide(); return false"> | |
437 | ${ungettext('Expand %s commit','Expand %s commits', len(c.commit_ranges)) % len(c.commit_ranges)} |
|
410 | ${ungettext('Expand %s commit','Expand %s commits', len(c.commit_ranges)) % len(c.commit_ranges)} | |
438 | </a> |
|
411 | </a> | |
439 | <a |
|
412 | <a | |
440 | class="btn" |
|
413 | class="btn" | |
441 | href="#" |
|
414 | href="#" | |
442 | onclick="$('.compare_select').hide();$('.compare_select_hidden').show(); return false"> |
|
415 | onclick="$('.compare_select').hide();$('.compare_select_hidden').show(); return false"> | |
443 | ${ungettext('Collapse %s commit','Collapse %s commits', len(c.commit_ranges)) % len(c.commit_ranges)} |
|
416 | ${ungettext('Collapse %s commit','Collapse %s commits', len(c.commit_ranges)) % len(c.commit_ranges)} | |
444 | </a> |
|
417 | </a> | |
445 | </div> |
|
418 | </div> | |
446 | </div> |
|
419 | </div> | |
447 |
|
420 | |||
448 | <div class="pull-right"> |
|
421 | <div class="pull-right"> | |
449 | % if c.allowed_to_update and not c.pull_request.is_closed(): |
|
422 | % if c.allowed_to_update and not c.pull_request.is_closed(): | |
450 | <a id="update_commits" class="btn btn-primary pull-right">${_('Update commits')}</a> |
|
423 | <a id="update_commits" class="btn btn-primary pull-right">${_('Update commits')}</a> | |
451 | % else: |
|
424 | % else: | |
452 | <a class="tooltip btn disabled pull-right" disabled="disabled" title="${_('Update is disabled for current view')}">${_('Update commits')}</a> |
|
425 | <a class="tooltip btn disabled pull-right" disabled="disabled" title="${_('Update is disabled for current view')}">${_('Update commits')}</a> | |
453 | % endif |
|
426 | % endif | |
454 |
|
427 | |||
455 | </div> |
|
428 | </div> | |
456 |
|
429 | % endif | ||
457 |
|
|
430 | </div> | |
458 |
|
431 | |||
459 | % if not c.missing_commits: |
|
432 | % if not c.missing_commits: | |
460 | <%include file="/compare/compare_commits.mako" /> |
|
433 | % if c.compare_mode: | |
|
434 | % if c.at_version: | |||
|
435 | <h4> | |||
|
436 | ${_('Commits and changes between v{ver_from} and {ver_to} of this pull request, commenting is disabled').format(ver_from=c.from_version_pos, ver_to=c.at_version_pos if c.at_version_pos else 'latest')}: | |||
|
437 | </h4> | |||
|
438 | ||||
|
439 | <div class="subtitle-compare"> | |||
|
440 | ${_('commits added: {}, removed: {}').format(len(c.commit_changes_summary.added), len(c.commit_changes_summary.removed))} | |||
|
441 | </div> | |||
|
442 | ||||
|
443 | <div class="container"> | |||
|
444 | <table class="rctable compare_view_commits"> | |||
|
445 | <tr> | |||
|
446 | <th></th> | |||
|
447 | <th>${_('Time')}</th> | |||
|
448 | <th>${_('Author')}</th> | |||
|
449 | <th>${_('Commit')}</th> | |||
|
450 | <th></th> | |||
|
451 | <th>${_('Description')}</th> | |||
|
452 | </tr> | |||
|
453 | ||||
|
454 | % for c_type, commit in c.commit_changes: | |||
|
455 | % if c_type in ['a', 'r']: | |||
|
456 | <% | |||
|
457 | if c_type == 'a': | |||
|
458 | cc_title = _('Commit added in displayed changes') | |||
|
459 | elif c_type == 'r': | |||
|
460 | cc_title = _('Commit removed in displayed changes') | |||
|
461 | else: | |||
|
462 | cc_title = '' | |||
|
463 | %> | |||
|
464 | <tr id="row-${commit.raw_id}" commit_id="${commit.raw_id}" class="compare_select"> | |||
|
465 | <td> | |||
|
466 | <div class="commit-change-indicator color-${c_type}-border"> | |||
|
467 | <div class="commit-change-content color-${c_type} tooltip" title="${cc_title}"> | |||
|
468 | ${c_type.upper()} | |||
|
469 | </div> | |||
|
470 | </div> | |||
|
471 | </td> | |||
|
472 | <td class="td-time"> | |||
|
473 | ${h.age_component(commit.date)} | |||
|
474 | </td> | |||
|
475 | <td class="td-user"> | |||
|
476 | ${base.gravatar_with_user(commit.author, 16)} | |||
|
477 | </td> | |||
|
478 | <td class="td-hash"> | |||
|
479 | <code> | |||
|
480 | <a href="${h.url('changeset_home', repo_name=c.target_repo.repo_name, revision=commit.raw_id)}"> | |||
|
481 | r${commit.revision}:${h.short_id(commit.raw_id)} | |||
|
482 | </a> | |||
|
483 | ${h.hidden('revisions', commit.raw_id)} | |||
|
484 | </code> | |||
|
485 | </td> | |||
|
486 | <td class="expand_commit" data-commit-id="${commit.raw_id}" title="${_( 'Expand commit message')}"> | |||
|
487 | <div class="show_more_col"> | |||
|
488 | <i class="show_more"></i> | |||
|
489 | </div> | |||
|
490 | </td> | |||
|
491 | <td class="mid td-description"> | |||
|
492 | <div class="log-container truncate-wrap"> | |||
|
493 | <div class="message truncate" id="c-${commit.raw_id}" data-message-raw="${commit.message}"> | |||
|
494 | ${h.urlify_commit_message(commit.message, c.repo_name)} | |||
|
495 | </div> | |||
|
496 | </div> | |||
|
497 | </td> | |||
|
498 | </tr> | |||
|
499 | % endif | |||
|
500 | % endfor | |||
|
501 | </table> | |||
|
502 | </div> | |||
|
503 | ||||
|
504 | <script> | |||
|
505 | $('.expand_commit').on('click',function(e){ | |||
|
506 | var target_expand = $(this); | |||
|
507 | var cid = target_expand.data('commitId'); | |||
|
508 | ||||
|
509 | if (target_expand.hasClass('open')){ | |||
|
510 | $('#c-'+cid).css({ | |||
|
511 | 'height': '1.5em', | |||
|
512 | 'white-space': 'nowrap', | |||
|
513 | 'text-overflow': 'ellipsis', | |||
|
514 | 'overflow':'hidden' | |||
|
515 | }); | |||
|
516 | target_expand.removeClass('open'); | |||
|
517 | } | |||
|
518 | else { | |||
|
519 | $('#c-'+cid).css({ | |||
|
520 | 'height': 'auto', | |||
|
521 | 'white-space': 'pre-line', | |||
|
522 | 'text-overflow': 'initial', | |||
|
523 | 'overflow':'visible' | |||
|
524 | }); | |||
|
525 | target_expand.addClass('open'); | |||
|
526 | } | |||
|
527 | }); | |||
|
528 | </script> | |||
|
529 | ||||
|
530 | % endif | |||
|
531 | ||||
|
532 | % else: | |||
|
533 | <%include file="/compare/compare_commits.mako" /> | |||
|
534 | % endif | |||
|
535 | ||||
461 | <div class="cs_files"> |
|
536 | <div class="cs_files"> | |
462 | <%namespace name="cbdiffs" file="/codeblocks/diffs.mako"/> |
|
537 | <%namespace name="cbdiffs" file="/codeblocks/diffs.mako"/> | |
463 | ${cbdiffs.render_diffset_menu()} |
|
538 | ${cbdiffs.render_diffset_menu()} | |
464 | ${cbdiffs.render_diffset( |
|
539 | ${cbdiffs.render_diffset( | |
465 | c.diffset, use_comments=True, |
|
540 | c.diffset, use_comments=True, | |
466 | collapse_when_files_over=30, |
|
541 | collapse_when_files_over=30, | |
467 | disable_new_comments=not c.allowed_to_comment, |
|
542 | disable_new_comments=not c.allowed_to_comment, | |
468 | deleted_files_comments=c.deleted_files_comments)} |
|
543 | deleted_files_comments=c.deleted_files_comments)} | |
469 | </div> |
|
544 | </div> | |
470 | % else: |
|
545 | % else: | |
471 | ## skipping commits we need to clear the view for missing commits |
|
546 | ## skipping commits we need to clear the view for missing commits | |
472 | <div style="clear:both;"></div> |
|
547 | <div style="clear:both;"></div> | |
473 | % endif |
|
548 | % endif | |
474 |
|
549 | |||
475 | </div> |
|
550 | </div> | |
476 | </div> |
|
551 | </div> | |
477 |
|
552 | |||
478 | ## template for inline comment form |
|
553 | ## template for inline comment form | |
479 | <%namespace name="comment" file="/changeset/changeset_file_comment.mako"/> |
|
554 | <%namespace name="comment" file="/changeset/changeset_file_comment.mako"/> | |
480 |
|
555 | |||
481 | ## render general comments |
|
556 | ## render general comments | |
482 |
|
557 | |||
483 | <div id="comment-tr-show"> |
|
558 | <div id="comment-tr-show"> | |
484 | <div class="comment"> |
|
559 | <div class="comment"> | |
485 | % if general_outdated_comm_count_ver: |
|
560 | % if general_outdated_comm_count_ver: | |
486 | <div class="meta"> |
|
561 | <div class="meta"> | |
487 | % if general_outdated_comm_count_ver == 1: |
|
562 | % if general_outdated_comm_count_ver == 1: | |
488 | ${_('there is {num} general comment from older versions').format(num=general_outdated_comm_count_ver)}, |
|
563 | ${_('there is {num} general comment from older versions').format(num=general_outdated_comm_count_ver)}, | |
489 | <a href="#" onclick="$('.comment-general.comment-outdated').show(); $(this).parent().hide(); return false;">${_('show it')}</a> |
|
564 | <a href="#" onclick="$('.comment-general.comment-outdated').show(); $(this).parent().hide(); return false;">${_('show it')}</a> | |
490 | % else: |
|
565 | % else: | |
491 | ${_('there are {num} general comments from older versions').format(num=general_outdated_comm_count_ver)}, |
|
566 | ${_('there are {num} general comments from older versions').format(num=general_outdated_comm_count_ver)}, | |
492 | <a href="#" onclick="$('.comment-general.comment-outdated').show(); $(this).parent().hide(); return false;">${_('show them')}</a> |
|
567 | <a href="#" onclick="$('.comment-general.comment-outdated').show(); $(this).parent().hide(); return false;">${_('show them')}</a> | |
493 | % endif |
|
568 | % endif | |
494 | </div> |
|
569 | </div> | |
495 | % endif |
|
570 | % endif | |
496 | </div> |
|
571 | </div> | |
497 | </div> |
|
572 | </div> | |
498 |
|
573 | |||
499 | ${comment.generate_comments(c.comments, include_pull_request=True, is_pull_request=True)} |
|
574 | ${comment.generate_comments(c.comments, include_pull_request=True, is_pull_request=True)} | |
500 |
|
575 | |||
501 | % if not c.pull_request.is_closed(): |
|
576 | % if not c.pull_request.is_closed(): | |
502 | ## merge status, and merge action |
|
577 | ## merge status, and merge action | |
503 | <div class="pull-request-merge"> |
|
578 | <div class="pull-request-merge"> | |
504 | <%include file="/pullrequests/pullrequest_merge_checks.mako"/> |
|
579 | <%include file="/pullrequests/pullrequest_merge_checks.mako"/> | |
505 | </div> |
|
580 | </div> | |
506 |
|
581 | |||
507 | ## main comment form and it status |
|
582 | ## main comment form and it status | |
508 | ${comment.comments(h.url('pullrequest_comment', repo_name=c.repo_name, |
|
583 | ${comment.comments(h.url('pullrequest_comment', repo_name=c.repo_name, | |
509 | pull_request_id=c.pull_request.pull_request_id), |
|
584 | pull_request_id=c.pull_request.pull_request_id), | |
510 | c.pull_request_review_status, |
|
585 | c.pull_request_review_status, | |
511 | is_pull_request=True, change_status=c.allowed_to_change_status)} |
|
586 | is_pull_request=True, change_status=c.allowed_to_change_status)} | |
512 | %endif |
|
587 | %endif | |
513 |
|
588 | |||
514 | <script type="text/javascript"> |
|
589 | <script type="text/javascript"> | |
515 | if (location.hash) { |
|
590 | if (location.hash) { | |
516 | var result = splitDelimitedHash(location.hash); |
|
591 | var result = splitDelimitedHash(location.hash); | |
517 | var line = $('html').find(result.loc); |
|
592 | var line = $('html').find(result.loc); | |
518 | // show hidden comments if we use location.hash |
|
593 | // show hidden comments if we use location.hash | |
519 | if (line.hasClass('comment-general')) { |
|
594 | if (line.hasClass('comment-general')) { | |
520 | $(line).show(); |
|
595 | $(line).show(); | |
521 | } else if (line.hasClass('comment-inline')) { |
|
596 | } else if (line.hasClass('comment-inline')) { | |
522 | $(line).show(); |
|
597 | $(line).show(); | |
523 | var $cb = $(line).closest('.cb'); |
|
598 | var $cb = $(line).closest('.cb'); | |
524 | $cb.removeClass('cb-collapsed') |
|
599 | $cb.removeClass('cb-collapsed') | |
525 | } |
|
600 | } | |
526 | if (line.length > 0){ |
|
601 | if (line.length > 0){ | |
527 | offsetScroll(line, 70); |
|
602 | offsetScroll(line, 70); | |
528 | } |
|
603 | } | |
529 | } |
|
604 | } | |
530 |
|
605 | |||
|
606 | VersionController = function() { | |||
|
607 | var self = this; | |||
|
608 | this.$verSource = $('input[name=ver_source]'); | |||
|
609 | this.$verTarget = $('input[name=ver_target]'); | |||
|
610 | ||||
|
611 | this.adjustRadioSelectors = function (curNode) { | |||
|
612 | var getVal = function(item) { | |||
|
613 | if (item == 'latest'){ | |||
|
614 | return Number.MAX_SAFE_INTEGER | |||
|
615 | } | |||
|
616 | else { | |||
|
617 | return parseInt(item) | |||
|
618 | } | |||
|
619 | }; | |||
|
620 | ||||
|
621 | var curVal = getVal($(curNode).val()); | |||
|
622 | $.each(self.$verSource, function(index, value){ | |||
|
623 | var elVal = getVal($(value).val()); | |||
|
624 | if(elVal > curVal){ | |||
|
625 | $(value).attr('disabled', 'disabled'); | |||
|
626 | $(value).removeAttr('checked'); | |||
|
627 | } | |||
|
628 | else{ | |||
|
629 | $(value).removeAttr('disabled'); | |||
|
630 | } | |||
|
631 | }); | |||
|
632 | ||||
|
633 | self.setLockAction(false, $(curNode).data('verPos')); | |||
|
634 | }; | |||
|
635 | ||||
|
636 | ||||
|
637 | this.attachVersionListener = function () { | |||
|
638 | self.$verTarget.change(function(e){ | |||
|
639 | self.adjustRadioSelectors(this) | |||
|
640 | }); | |||
|
641 | self.$verSource.change(function(e){ | |||
|
642 | self.adjustRadioSelectors(self.$verTarget.filter(':checked')) | |||
|
643 | }); | |||
|
644 | }; | |||
|
645 | ||||
|
646 | this.init = function () { | |||
|
647 | ||||
|
648 | var curNode = self.$verTarget.filter(':checked'); | |||
|
649 | self.adjustRadioSelectors(curNode); | |||
|
650 | self.setLockAction(true); | |||
|
651 | self.attachVersionListener(); | |||
|
652 | ||||
|
653 | }; | |||
|
654 | ||||
|
655 | this.setLockAction = function (state, selectedVersion) { | |||
|
656 | if(state){ | |||
|
657 | $('#show-version-diff').attr('disabled','disabled') | |||
|
658 | $('#show-version-diff').addClass('disabled') | |||
|
659 | $('#show-version-diff').html($('#show-version-diff').data('labelText')); | |||
|
660 | } | |||
|
661 | else{ | |||
|
662 | $('#show-version-diff').removeAttr('disabled'); | |||
|
663 | $('#show-version-diff').removeClass('disabled') | |||
|
664 | //$('#show-version-diff').html(_gettext('show changes for v') + selectedVersion) | |||
|
665 | } | |||
|
666 | ||||
|
667 | }; | |||
|
668 | ||||
|
669 | this.showVersionDiff = function(){ | |||
|
670 | var target = self.$verTarget.filter(':checked'); | |||
|
671 | var source = self.$verSource.filter(':checked'); | |||
|
672 | ||||
|
673 | if (target.val() && source.val()) { | |||
|
674 | var params = { | |||
|
675 | 'pull_request_id': ${c.pull_request.pull_request_id}, | |||
|
676 | 'repo_name': templateContext.repo_name, | |||
|
677 | 'version': target.val(), | |||
|
678 | 'from_version': source.val() | |||
|
679 | }; | |||
|
680 | window.location = pyroutes.url('pullrequest_show', params) | |||
|
681 | } | |||
|
682 | ||||
|
683 | return false; | |||
|
684 | }; | |||
|
685 | ||||
|
686 | this.toggleVersionView = function (elem) { | |||
|
687 | ||||
|
688 | if ($('#show-version-diff').is(':visible')) { | |||
|
689 | $('.version-pr').hide(); | |||
|
690 | $('#show-version-diff').hide(); | |||
|
691 | $(elem).html($(elem).data('toggleOn')) | |||
|
692 | } else { | |||
|
693 | $('.version-pr').show(); | |||
|
694 | $('#show-version-diff').show(); | |||
|
695 | $(elem).html($(elem).data('toggleOff')) | |||
|
696 | } | |||
|
697 | ||||
|
698 | return false | |||
|
699 | } | |||
|
700 | ||||
|
701 | }; | |||
|
702 | ||||
|
703 | versionController = new VersionController(); | |||
|
704 | versionController.init(); | |||
|
705 | ||||
|
706 | ||||
531 | $(function(){ |
|
707 | $(function(){ | |
532 | ReviewerAutoComplete('user'); |
|
708 | ReviewerAutoComplete('user'); | |
533 | // custom code mirror |
|
709 | // custom code mirror | |
534 | var codeMirrorInstance = initPullRequestsCodeMirror('#pr-description-input'); |
|
710 | var codeMirrorInstance = initPullRequestsCodeMirror('#pr-description-input'); | |
535 |
|
711 | |||
536 | var PRDetails = { |
|
712 | var PRDetails = { | |
537 | editButton: $('#open_edit_pullrequest'), |
|
713 | editButton: $('#open_edit_pullrequest'), | |
538 | closeButton: $('#close_edit_pullrequest'), |
|
714 | closeButton: $('#close_edit_pullrequest'), | |
539 | deleteButton: $('#delete_pullrequest'), |
|
715 | deleteButton: $('#delete_pullrequest'), | |
540 | viewFields: $('#pr-desc, #pr-title'), |
|
716 | viewFields: $('#pr-desc, #pr-title'), | |
541 | editFields: $('#pr-desc-edit, #pr-title-edit, #pr-save'), |
|
717 | editFields: $('#pr-desc-edit, #pr-title-edit, #pr-save'), | |
542 |
|
718 | |||
543 | init: function() { |
|
719 | init: function() { | |
544 | var that = this; |
|
720 | var that = this; | |
545 | this.editButton.on('click', function(e) { that.edit(); }); |
|
721 | this.editButton.on('click', function(e) { that.edit(); }); | |
546 | this.closeButton.on('click', function(e) { that.view(); }); |
|
722 | this.closeButton.on('click', function(e) { that.view(); }); | |
547 | }, |
|
723 | }, | |
548 |
|
724 | |||
549 | edit: function(event) { |
|
725 | edit: function(event) { | |
550 | this.viewFields.hide(); |
|
726 | this.viewFields.hide(); | |
551 | this.editButton.hide(); |
|
727 | this.editButton.hide(); | |
552 | this.deleteButton.hide(); |
|
728 | this.deleteButton.hide(); | |
553 | this.closeButton.show(); |
|
729 | this.closeButton.show(); | |
554 | this.editFields.show(); |
|
730 | this.editFields.show(); | |
555 | codeMirrorInstance.refresh(); |
|
731 | codeMirrorInstance.refresh(); | |
556 | }, |
|
732 | }, | |
557 |
|
733 | |||
558 | view: function(event) { |
|
734 | view: function(event) { | |
559 | this.editButton.show(); |
|
735 | this.editButton.show(); | |
560 | this.deleteButton.show(); |
|
736 | this.deleteButton.show(); | |
561 | this.editFields.hide(); |
|
737 | this.editFields.hide(); | |
562 | this.closeButton.hide(); |
|
738 | this.closeButton.hide(); | |
563 | this.viewFields.show(); |
|
739 | this.viewFields.show(); | |
564 | } |
|
740 | } | |
565 | }; |
|
741 | }; | |
566 |
|
742 | |||
567 | var ReviewersPanel = { |
|
743 | var ReviewersPanel = { | |
568 | editButton: $('#open_edit_reviewers'), |
|
744 | editButton: $('#open_edit_reviewers'), | |
569 | closeButton: $('#close_edit_reviewers'), |
|
745 | closeButton: $('#close_edit_reviewers'), | |
570 | addButton: $('#add_reviewer_input'), |
|
746 | addButton: $('#add_reviewer_input'), | |
571 | removeButtons: $('.reviewer_member_remove'), |
|
747 | removeButtons: $('.reviewer_member_remove'), | |
572 |
|
748 | |||
573 | init: function() { |
|
749 | init: function() { | |
574 | var that = this; |
|
750 | var that = this; | |
575 | this.editButton.on('click', function(e) { that.edit(); }); |
|
751 | this.editButton.on('click', function(e) { that.edit(); }); | |
576 | this.closeButton.on('click', function(e) { that.close(); }); |
|
752 | this.closeButton.on('click', function(e) { that.close(); }); | |
577 | }, |
|
753 | }, | |
578 |
|
754 | |||
579 | edit: function(event) { |
|
755 | edit: function(event) { | |
580 | this.editButton.hide(); |
|
756 | this.editButton.hide(); | |
581 | this.closeButton.show(); |
|
757 | this.closeButton.show(); | |
582 | this.addButton.show(); |
|
758 | this.addButton.show(); | |
583 | this.removeButtons.css('visibility', 'visible'); |
|
759 | this.removeButtons.css('visibility', 'visible'); | |
584 | }, |
|
760 | }, | |
585 |
|
761 | |||
586 | close: function(event) { |
|
762 | close: function(event) { | |
587 | this.editButton.show(); |
|
763 | this.editButton.show(); | |
588 | this.closeButton.hide(); |
|
764 | this.closeButton.hide(); | |
589 | this.addButton.hide(); |
|
765 | this.addButton.hide(); | |
590 | this.removeButtons.css('visibility', 'hidden'); |
|
766 | this.removeButtons.css('visibility', 'hidden'); | |
591 | } |
|
767 | } | |
592 | }; |
|
768 | }; | |
593 |
|
769 | |||
594 | PRDetails.init(); |
|
770 | PRDetails.init(); | |
595 | ReviewersPanel.init(); |
|
771 | ReviewersPanel.init(); | |
596 |
|
772 | |||
597 | showOutdated = function(self){ |
|
773 | showOutdated = function(self){ | |
598 | $('.comment-inline.comment-outdated').show(); |
|
774 | $('.comment-inline.comment-outdated').show(); | |
599 | $('.filediff-outdated').show(); |
|
775 | $('.filediff-outdated').show(); | |
600 | $('.showOutdatedComments').hide(); |
|
776 | $('.showOutdatedComments').hide(); | |
601 | $('.hideOutdatedComments').show(); |
|
777 | $('.hideOutdatedComments').show(); | |
602 | }; |
|
778 | }; | |
603 |
|
779 | |||
604 | hideOutdated = function(self){ |
|
780 | hideOutdated = function(self){ | |
605 | $('.comment-inline.comment-outdated').hide(); |
|
781 | $('.comment-inline.comment-outdated').hide(); | |
606 | $('.filediff-outdated').hide(); |
|
782 | $('.filediff-outdated').hide(); | |
607 | $('.hideOutdatedComments').hide(); |
|
783 | $('.hideOutdatedComments').hide(); | |
608 | $('.showOutdatedComments').show(); |
|
784 | $('.showOutdatedComments').show(); | |
609 | }; |
|
785 | }; | |
610 |
|
786 | |||
611 | refreshMergeChecks = function(){ |
|
787 | refreshMergeChecks = function(){ | |
612 | var loadUrl = "${h.url.current(merge_checks=1)}"; |
|
788 | var loadUrl = "${h.url.current(merge_checks=1)}"; | |
613 | $('.pull-request-merge').css('opacity', 0.3); |
|
789 | $('.pull-request-merge').css('opacity', 0.3); | |
614 | $('.pull-request-merge').load( |
|
790 | $('.pull-request-merge').load( | |
615 | loadUrl,function() { |
|
791 | loadUrl,function() { | |
616 | $('.pull-request-merge').css('opacity', 1); |
|
792 | $('.pull-request-merge').css('opacity', 1); | |
617 | } |
|
793 | } | |
618 | ); |
|
794 | ); | |
619 | }; |
|
795 | }; | |
620 |
|
796 | |||
621 | $('#show-outdated-comments').on('click', function(e){ |
|
797 | $('#show-outdated-comments').on('click', function(e){ | |
622 | var button = $(this); |
|
798 | var button = $(this); | |
623 | var outdated = $('.comment-outdated'); |
|
799 | var outdated = $('.comment-outdated'); | |
624 |
|
800 | |||
625 | if (button.html() === "(Show)") { |
|
801 | if (button.html() === "(Show)") { | |
626 | button.html("(Hide)"); |
|
802 | button.html("(Hide)"); | |
627 | outdated.show(); |
|
803 | outdated.show(); | |
628 | } else { |
|
804 | } else { | |
629 | button.html("(Show)"); |
|
805 | button.html("(Show)"); | |
630 | outdated.hide(); |
|
806 | outdated.hide(); | |
631 | } |
|
807 | } | |
632 | }); |
|
808 | }); | |
633 |
|
809 | |||
634 | $('.show-inline-comments').on('change', function(e){ |
|
810 | $('.show-inline-comments').on('change', function(e){ | |
635 | var show = 'none'; |
|
811 | var show = 'none'; | |
636 | var target = e.currentTarget; |
|
812 | var target = e.currentTarget; | |
637 | if(target.checked){ |
|
813 | if(target.checked){ | |
638 | show = '' |
|
814 | show = '' | |
639 | } |
|
815 | } | |
640 | var boxid = $(target).attr('id_for'); |
|
816 | var boxid = $(target).attr('id_for'); | |
641 | var comments = $('#{0} .inline-comments'.format(boxid)); |
|
817 | var comments = $('#{0} .inline-comments'.format(boxid)); | |
642 | var fn_display = function(idx){ |
|
818 | var fn_display = function(idx){ | |
643 | $(this).css('display', show); |
|
819 | $(this).css('display', show); | |
644 | }; |
|
820 | }; | |
645 | $(comments).each(fn_display); |
|
821 | $(comments).each(fn_display); | |
646 | var btns = $('#{0} .inline-comments-button'.format(boxid)); |
|
822 | var btns = $('#{0} .inline-comments-button'.format(boxid)); | |
647 | $(btns).each(fn_display); |
|
823 | $(btns).each(fn_display); | |
648 | }); |
|
824 | }); | |
649 |
|
825 | |||
650 | $('#merge_pull_request_form').submit(function() { |
|
826 | $('#merge_pull_request_form').submit(function() { | |
651 | if (!$('#merge_pull_request').attr('disabled')) { |
|
827 | if (!$('#merge_pull_request').attr('disabled')) { | |
652 | $('#merge_pull_request').attr('disabled', 'disabled'); |
|
828 | $('#merge_pull_request').attr('disabled', 'disabled'); | |
653 | } |
|
829 | } | |
654 | return true; |
|
830 | return true; | |
655 | }); |
|
831 | }); | |
656 |
|
832 | |||
657 | $('#edit_pull_request').on('click', function(e){ |
|
833 | $('#edit_pull_request').on('click', function(e){ | |
658 | var title = $('#pr-title-input').val(); |
|
834 | var title = $('#pr-title-input').val(); | |
659 | var description = codeMirrorInstance.getValue(); |
|
835 | var description = codeMirrorInstance.getValue(); | |
660 | editPullRequest( |
|
836 | editPullRequest( | |
661 | "${c.repo_name}", "${c.pull_request.pull_request_id}", |
|
837 | "${c.repo_name}", "${c.pull_request.pull_request_id}", | |
662 | title, description); |
|
838 | title, description); | |
663 | }); |
|
839 | }); | |
664 |
|
840 | |||
665 | $('#update_pull_request').on('click', function(e){ |
|
841 | $('#update_pull_request').on('click', function(e){ | |
666 | updateReviewers(undefined, "${c.repo_name}", "${c.pull_request.pull_request_id}"); |
|
842 | updateReviewers(undefined, "${c.repo_name}", "${c.pull_request.pull_request_id}"); | |
667 | }); |
|
843 | }); | |
668 |
|
844 | |||
669 | $('#update_commits').on('click', function(e){ |
|
845 | $('#update_commits').on('click', function(e){ | |
670 | var isDisabled = !$(e.currentTarget).attr('disabled'); |
|
846 | var isDisabled = !$(e.currentTarget).attr('disabled'); | |
671 | $(e.currentTarget).text(_gettext('Updating...')); |
|
847 | $(e.currentTarget).text(_gettext('Updating...')); | |
672 | $(e.currentTarget).attr('disabled', 'disabled'); |
|
848 | $(e.currentTarget).attr('disabled', 'disabled'); | |
673 | if(isDisabled){ |
|
849 | if(isDisabled){ | |
674 | updateCommits("${c.repo_name}", "${c.pull_request.pull_request_id}"); |
|
850 | updateCommits("${c.repo_name}", "${c.pull_request.pull_request_id}"); | |
675 | } |
|
851 | } | |
676 |
|
852 | |||
677 | }); |
|
853 | }); | |
678 | // fixing issue with caches on firefox |
|
854 | // fixing issue with caches on firefox | |
679 | $('#update_commits').removeAttr("disabled"); |
|
855 | $('#update_commits').removeAttr("disabled"); | |
680 |
|
856 | |||
681 | $('#close_pull_request').on('click', function(e){ |
|
857 | $('#close_pull_request').on('click', function(e){ | |
682 | closePullRequest("${c.repo_name}", "${c.pull_request.pull_request_id}"); |
|
858 | closePullRequest("${c.repo_name}", "${c.pull_request.pull_request_id}"); | |
683 | }); |
|
859 | }); | |
684 |
|
860 | |||
685 | $('.show-inline-comments').on('click', function(e){ |
|
861 | $('.show-inline-comments').on('click', function(e){ | |
686 | var boxid = $(this).attr('data-comment-id'); |
|
862 | var boxid = $(this).attr('data-comment-id'); | |
687 | var button = $(this); |
|
863 | var button = $(this); | |
688 |
|
864 | |||
689 | if(button.hasClass("comments-visible")) { |
|
865 | if(button.hasClass("comments-visible")) { | |
690 | $('#{0} .inline-comments'.format(boxid)).each(function(index){ |
|
866 | $('#{0} .inline-comments'.format(boxid)).each(function(index){ | |
691 | $(this).hide(); |
|
867 | $(this).hide(); | |
692 | }); |
|
868 | }); | |
693 | button.removeClass("comments-visible"); |
|
869 | button.removeClass("comments-visible"); | |
694 | } else { |
|
870 | } else { | |
695 | $('#{0} .inline-comments'.format(boxid)).each(function(index){ |
|
871 | $('#{0} .inline-comments'.format(boxid)).each(function(index){ | |
696 | $(this).show(); |
|
872 | $(this).show(); | |
697 | }); |
|
873 | }); | |
698 | button.addClass("comments-visible"); |
|
874 | button.addClass("comments-visible"); | |
699 | } |
|
875 | } | |
700 | }); |
|
876 | }); | |
701 |
|
877 | |||
702 | // register submit callback on commentForm form to track TODOs |
|
878 | // register submit callback on commentForm form to track TODOs | |
703 | window.commentFormGlobalSubmitSuccessCallback = function(){ |
|
879 | window.commentFormGlobalSubmitSuccessCallback = function(){ | |
704 | refreshMergeChecks(); |
|
880 | refreshMergeChecks(); | |
705 | }; |
|
881 | }; | |
706 |
|
882 | |||
707 | }) |
|
883 | }) | |
708 | </script> |
|
884 | </script> | |
709 |
|
885 | |||
710 | </div> |
|
886 | </div> | |
711 | </div> |
|
887 | </div> | |
712 |
|
888 | |||
713 | </%def> |
|
889 | </%def> |
General Comments 0
You need to be logged in to leave comments.
Login now