Show More
The requested changes are too big and content was truncated. Show full diff
@@ -1,762 +1,762 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2016-2019 RhodeCode GmbH |
|
3 | # Copyright (C) 2016-2019 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 datetime |
|
22 | import datetime | |
23 | import string |
|
23 | import string | |
24 |
|
24 | |||
25 | import formencode |
|
25 | import formencode | |
26 | import formencode.htmlfill |
|
26 | import formencode.htmlfill | |
27 | import peppercorn |
|
27 | import peppercorn | |
28 | from pyramid.httpexceptions import HTTPFound |
|
28 | from pyramid.httpexceptions import HTTPFound | |
29 | from pyramid.view import view_config |
|
29 | from pyramid.view import view_config | |
30 |
|
30 | |||
31 | from rhodecode.apps._base import BaseAppView, DataGridAppView |
|
31 | from rhodecode.apps._base import BaseAppView, DataGridAppView | |
32 | from rhodecode import forms |
|
32 | from rhodecode import forms | |
33 | from rhodecode.lib import helpers as h |
|
33 | from rhodecode.lib import helpers as h | |
34 | from rhodecode.lib import audit_logger |
|
34 | from rhodecode.lib import audit_logger | |
35 | from rhodecode.lib.ext_json import json |
|
35 | from rhodecode.lib.ext_json import json | |
36 | from rhodecode.lib.auth import LoginRequired, NotAnonymous, CSRFRequired, \ |
|
36 | from rhodecode.lib.auth import LoginRequired, NotAnonymous, CSRFRequired, \ | |
37 | HasRepoPermissionAny, HasRepoGroupPermissionAny |
|
37 | HasRepoPermissionAny, HasRepoGroupPermissionAny | |
38 | from rhodecode.lib.channelstream import ( |
|
38 | from rhodecode.lib.channelstream import ( | |
39 | channelstream_request, ChannelstreamException) |
|
39 | channelstream_request, ChannelstreamException) | |
40 | from rhodecode.lib.utils2 import safe_int, md5, str2bool |
|
40 | from rhodecode.lib.utils2 import safe_int, md5, str2bool | |
41 | from rhodecode.model.auth_token import AuthTokenModel |
|
41 | from rhodecode.model.auth_token import AuthTokenModel | |
42 | from rhodecode.model.comment import CommentsModel |
|
42 | from rhodecode.model.comment import CommentsModel | |
43 | from rhodecode.model.db import ( |
|
43 | from rhodecode.model.db import ( | |
44 | IntegrityError, joinedload, |
|
44 | IntegrityError, joinedload, | |
45 | Repository, UserEmailMap, UserApiKeys, UserFollowing, |
|
45 | Repository, UserEmailMap, UserApiKeys, UserFollowing, | |
46 | PullRequest, UserBookmark, RepoGroup) |
|
46 | PullRequest, UserBookmark, RepoGroup) | |
47 | from rhodecode.model.meta import Session |
|
47 | from rhodecode.model.meta import Session | |
48 | from rhodecode.model.pull_request import PullRequestModel |
|
48 | from rhodecode.model.pull_request import PullRequestModel | |
49 | from rhodecode.model.scm import RepoList |
|
49 | from rhodecode.model.scm import RepoList | |
50 | from rhodecode.model.user import UserModel |
|
50 | from rhodecode.model.user import UserModel | |
51 | from rhodecode.model.repo import RepoModel |
|
51 | from rhodecode.model.repo import RepoModel | |
52 | from rhodecode.model.user_group import UserGroupModel |
|
52 | from rhodecode.model.user_group import UserGroupModel | |
53 | from rhodecode.model.validation_schema.schemas import user_schema |
|
53 | from rhodecode.model.validation_schema.schemas import user_schema | |
54 |
|
54 | |||
55 | log = logging.getLogger(__name__) |
|
55 | log = logging.getLogger(__name__) | |
56 |
|
56 | |||
57 |
|
57 | |||
58 | class MyAccountView(BaseAppView, DataGridAppView): |
|
58 | class MyAccountView(BaseAppView, DataGridAppView): | |
59 | ALLOW_SCOPED_TOKENS = False |
|
59 | ALLOW_SCOPED_TOKENS = False | |
60 | """ |
|
60 | """ | |
61 | This view has alternative version inside EE, if modified please take a look |
|
61 | This view has alternative version inside EE, if modified please take a look | |
62 | in there as well. |
|
62 | in there as well. | |
63 | """ |
|
63 | """ | |
64 |
|
64 | |||
65 | def load_default_context(self): |
|
65 | def load_default_context(self): | |
66 | c = self._get_local_tmpl_context() |
|
66 | c = self._get_local_tmpl_context() | |
67 | c.user = c.auth_user.get_instance() |
|
67 | c.user = c.auth_user.get_instance() | |
68 | c.allow_scoped_tokens = self.ALLOW_SCOPED_TOKENS |
|
68 | c.allow_scoped_tokens = self.ALLOW_SCOPED_TOKENS | |
69 |
|
69 | |||
70 | return c |
|
70 | return c | |
71 |
|
71 | |||
72 | @LoginRequired() |
|
72 | @LoginRequired() | |
73 | @NotAnonymous() |
|
73 | @NotAnonymous() | |
74 | @view_config( |
|
74 | @view_config( | |
75 | route_name='my_account_profile', request_method='GET', |
|
75 | route_name='my_account_profile', request_method='GET', | |
76 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
76 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
77 | def my_account_profile(self): |
|
77 | def my_account_profile(self): | |
78 | c = self.load_default_context() |
|
78 | c = self.load_default_context() | |
79 | c.active = 'profile' |
|
79 | c.active = 'profile' | |
80 | return self._get_template_context(c) |
|
80 | return self._get_template_context(c) | |
81 |
|
81 | |||
82 | @LoginRequired() |
|
82 | @LoginRequired() | |
83 | @NotAnonymous() |
|
83 | @NotAnonymous() | |
84 | @view_config( |
|
84 | @view_config( | |
85 | route_name='my_account_password', request_method='GET', |
|
85 | route_name='my_account_password', request_method='GET', | |
86 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
86 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
87 | def my_account_password(self): |
|
87 | def my_account_password(self): | |
88 | c = self.load_default_context() |
|
88 | c = self.load_default_context() | |
89 | c.active = 'password' |
|
89 | c.active = 'password' | |
90 | c.extern_type = c.user.extern_type |
|
90 | c.extern_type = c.user.extern_type | |
91 |
|
91 | |||
92 | schema = user_schema.ChangePasswordSchema().bind( |
|
92 | schema = user_schema.ChangePasswordSchema().bind( | |
93 | username=c.user.username) |
|
93 | username=c.user.username) | |
94 |
|
94 | |||
95 | form = forms.Form( |
|
95 | form = forms.Form( | |
96 | schema, |
|
96 | schema, | |
97 | action=h.route_path('my_account_password_update'), |
|
97 | action=h.route_path('my_account_password_update'), | |
98 | buttons=(forms.buttons.save, forms.buttons.reset)) |
|
98 | buttons=(forms.buttons.save, forms.buttons.reset)) | |
99 |
|
99 | |||
100 | c.form = form |
|
100 | c.form = form | |
101 | return self._get_template_context(c) |
|
101 | return self._get_template_context(c) | |
102 |
|
102 | |||
103 | @LoginRequired() |
|
103 | @LoginRequired() | |
104 | @NotAnonymous() |
|
104 | @NotAnonymous() | |
105 | @CSRFRequired() |
|
105 | @CSRFRequired() | |
106 | @view_config( |
|
106 | @view_config( | |
107 | route_name='my_account_password_update', request_method='POST', |
|
107 | route_name='my_account_password_update', request_method='POST', | |
108 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
108 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
109 | def my_account_password_update(self): |
|
109 | def my_account_password_update(self): | |
110 | _ = self.request.translate |
|
110 | _ = self.request.translate | |
111 | c = self.load_default_context() |
|
111 | c = self.load_default_context() | |
112 | c.active = 'password' |
|
112 | c.active = 'password' | |
113 | c.extern_type = c.user.extern_type |
|
113 | c.extern_type = c.user.extern_type | |
114 |
|
114 | |||
115 | schema = user_schema.ChangePasswordSchema().bind( |
|
115 | schema = user_schema.ChangePasswordSchema().bind( | |
116 | username=c.user.username) |
|
116 | username=c.user.username) | |
117 |
|
117 | |||
118 | form = forms.Form( |
|
118 | form = forms.Form( | |
119 | schema, buttons=(forms.buttons.save, forms.buttons.reset)) |
|
119 | schema, buttons=(forms.buttons.save, forms.buttons.reset)) | |
120 |
|
120 | |||
121 | if c.extern_type != 'rhodecode': |
|
121 | if c.extern_type != 'rhodecode': | |
122 | raise HTTPFound(self.request.route_path('my_account_password')) |
|
122 | raise HTTPFound(self.request.route_path('my_account_password')) | |
123 |
|
123 | |||
124 | controls = self.request.POST.items() |
|
124 | controls = self.request.POST.items() | |
125 | try: |
|
125 | try: | |
126 | valid_data = form.validate(controls) |
|
126 | valid_data = form.validate(controls) | |
127 | UserModel().update_user(c.user.user_id, **valid_data) |
|
127 | UserModel().update_user(c.user.user_id, **valid_data) | |
128 | c.user.update_userdata(force_password_change=False) |
|
128 | c.user.update_userdata(force_password_change=False) | |
129 | Session().commit() |
|
129 | Session().commit() | |
130 | except forms.ValidationFailure as e: |
|
130 | except forms.ValidationFailure as e: | |
131 | c.form = e |
|
131 | c.form = e | |
132 | return self._get_template_context(c) |
|
132 | return self._get_template_context(c) | |
133 |
|
133 | |||
134 | except Exception: |
|
134 | except Exception: | |
135 | log.exception("Exception updating password") |
|
135 | log.exception("Exception updating password") | |
136 | h.flash(_('Error occurred during update of user password'), |
|
136 | h.flash(_('Error occurred during update of user password'), | |
137 | category='error') |
|
137 | category='error') | |
138 | else: |
|
138 | else: | |
139 | instance = c.auth_user.get_instance() |
|
139 | instance = c.auth_user.get_instance() | |
140 | self.session.setdefault('rhodecode_user', {}).update( |
|
140 | self.session.setdefault('rhodecode_user', {}).update( | |
141 | {'password': md5(instance.password)}) |
|
141 | {'password': md5(instance.password)}) | |
142 | self.session.save() |
|
142 | self.session.save() | |
143 | h.flash(_("Successfully updated password"), category='success') |
|
143 | h.flash(_("Successfully updated password"), category='success') | |
144 |
|
144 | |||
145 | raise HTTPFound(self.request.route_path('my_account_password')) |
|
145 | raise HTTPFound(self.request.route_path('my_account_password')) | |
146 |
|
146 | |||
147 | @LoginRequired() |
|
147 | @LoginRequired() | |
148 | @NotAnonymous() |
|
148 | @NotAnonymous() | |
149 | @view_config( |
|
149 | @view_config( | |
150 | route_name='my_account_auth_tokens', request_method='GET', |
|
150 | route_name='my_account_auth_tokens', request_method='GET', | |
151 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
151 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
152 | def my_account_auth_tokens(self): |
|
152 | def my_account_auth_tokens(self): | |
153 | _ = self.request.translate |
|
153 | _ = self.request.translate | |
154 |
|
154 | |||
155 | c = self.load_default_context() |
|
155 | c = self.load_default_context() | |
156 | c.active = 'auth_tokens' |
|
156 | c.active = 'auth_tokens' | |
157 | c.lifetime_values = AuthTokenModel.get_lifetime_values(translator=_) |
|
157 | c.lifetime_values = AuthTokenModel.get_lifetime_values(translator=_) | |
158 | c.role_values = [ |
|
158 | c.role_values = [ | |
159 | (x, AuthTokenModel.cls._get_role_name(x)) |
|
159 | (x, AuthTokenModel.cls._get_role_name(x)) | |
160 | for x in AuthTokenModel.cls.ROLES] |
|
160 | for x in AuthTokenModel.cls.ROLES] | |
161 | c.role_options = [(c.role_values, _("Role"))] |
|
161 | c.role_options = [(c.role_values, _("Role"))] | |
162 | c.user_auth_tokens = AuthTokenModel().get_auth_tokens( |
|
162 | c.user_auth_tokens = AuthTokenModel().get_auth_tokens( | |
163 | c.user.user_id, show_expired=True) |
|
163 | c.user.user_id, show_expired=True) | |
164 | c.role_vcs = AuthTokenModel.cls.ROLE_VCS |
|
164 | c.role_vcs = AuthTokenModel.cls.ROLE_VCS | |
165 | return self._get_template_context(c) |
|
165 | return self._get_template_context(c) | |
166 |
|
166 | |||
167 | def maybe_attach_token_scope(self, token): |
|
167 | def maybe_attach_token_scope(self, token): | |
168 | # implemented in EE edition |
|
168 | # implemented in EE edition | |
169 | pass |
|
169 | pass | |
170 |
|
170 | |||
171 | @LoginRequired() |
|
171 | @LoginRequired() | |
172 | @NotAnonymous() |
|
172 | @NotAnonymous() | |
173 | @CSRFRequired() |
|
173 | @CSRFRequired() | |
174 | @view_config( |
|
174 | @view_config( | |
175 | route_name='my_account_auth_tokens_add', request_method='POST',) |
|
175 | route_name='my_account_auth_tokens_add', request_method='POST',) | |
176 | def my_account_auth_tokens_add(self): |
|
176 | def my_account_auth_tokens_add(self): | |
177 | _ = self.request.translate |
|
177 | _ = self.request.translate | |
178 | c = self.load_default_context() |
|
178 | c = self.load_default_context() | |
179 |
|
179 | |||
180 | lifetime = safe_int(self.request.POST.get('lifetime'), -1) |
|
180 | lifetime = safe_int(self.request.POST.get('lifetime'), -1) | |
181 | description = self.request.POST.get('description') |
|
181 | description = self.request.POST.get('description') | |
182 | role = self.request.POST.get('role') |
|
182 | role = self.request.POST.get('role') | |
183 |
|
183 | |||
184 | token = UserModel().add_auth_token( |
|
184 | token = UserModel().add_auth_token( | |
185 | user=c.user.user_id, |
|
185 | user=c.user.user_id, | |
186 | lifetime_minutes=lifetime, role=role, description=description, |
|
186 | lifetime_minutes=lifetime, role=role, description=description, | |
187 | scope_callback=self.maybe_attach_token_scope) |
|
187 | scope_callback=self.maybe_attach_token_scope) | |
188 | token_data = token.get_api_data() |
|
188 | token_data = token.get_api_data() | |
189 |
|
189 | |||
190 | audit_logger.store_web( |
|
190 | audit_logger.store_web( | |
191 | 'user.edit.token.add', action_data={ |
|
191 | 'user.edit.token.add', action_data={ | |
192 | 'data': {'token': token_data, 'user': 'self'}}, |
|
192 | 'data': {'token': token_data, 'user': 'self'}}, | |
193 | user=self._rhodecode_user, ) |
|
193 | user=self._rhodecode_user, ) | |
194 | Session().commit() |
|
194 | Session().commit() | |
195 |
|
195 | |||
196 | h.flash(_("Auth token successfully created"), category='success') |
|
196 | h.flash(_("Auth token successfully created"), category='success') | |
197 | return HTTPFound(h.route_path('my_account_auth_tokens')) |
|
197 | return HTTPFound(h.route_path('my_account_auth_tokens')) | |
198 |
|
198 | |||
199 | @LoginRequired() |
|
199 | @LoginRequired() | |
200 | @NotAnonymous() |
|
200 | @NotAnonymous() | |
201 | @CSRFRequired() |
|
201 | @CSRFRequired() | |
202 | @view_config( |
|
202 | @view_config( | |
203 | route_name='my_account_auth_tokens_delete', request_method='POST') |
|
203 | route_name='my_account_auth_tokens_delete', request_method='POST') | |
204 | def my_account_auth_tokens_delete(self): |
|
204 | def my_account_auth_tokens_delete(self): | |
205 | _ = self.request.translate |
|
205 | _ = self.request.translate | |
206 | c = self.load_default_context() |
|
206 | c = self.load_default_context() | |
207 |
|
207 | |||
208 | del_auth_token = self.request.POST.get('del_auth_token') |
|
208 | del_auth_token = self.request.POST.get('del_auth_token') | |
209 |
|
209 | |||
210 | if del_auth_token: |
|
210 | if del_auth_token: | |
211 | token = UserApiKeys.get_or_404(del_auth_token) |
|
211 | token = UserApiKeys.get_or_404(del_auth_token) | |
212 | token_data = token.get_api_data() |
|
212 | token_data = token.get_api_data() | |
213 |
|
213 | |||
214 | AuthTokenModel().delete(del_auth_token, c.user.user_id) |
|
214 | AuthTokenModel().delete(del_auth_token, c.user.user_id) | |
215 | audit_logger.store_web( |
|
215 | audit_logger.store_web( | |
216 | 'user.edit.token.delete', action_data={ |
|
216 | 'user.edit.token.delete', action_data={ | |
217 | 'data': {'token': token_data, 'user': 'self'}}, |
|
217 | 'data': {'token': token_data, 'user': 'self'}}, | |
218 | user=self._rhodecode_user,) |
|
218 | user=self._rhodecode_user,) | |
219 | Session().commit() |
|
219 | Session().commit() | |
220 | h.flash(_("Auth token successfully deleted"), category='success') |
|
220 | h.flash(_("Auth token successfully deleted"), category='success') | |
221 |
|
221 | |||
222 | return HTTPFound(h.route_path('my_account_auth_tokens')) |
|
222 | return HTTPFound(h.route_path('my_account_auth_tokens')) | |
223 |
|
223 | |||
224 | @LoginRequired() |
|
224 | @LoginRequired() | |
225 | @NotAnonymous() |
|
225 | @NotAnonymous() | |
226 | @view_config( |
|
226 | @view_config( | |
227 | route_name='my_account_emails', request_method='GET', |
|
227 | route_name='my_account_emails', request_method='GET', | |
228 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
228 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
229 | def my_account_emails(self): |
|
229 | def my_account_emails(self): | |
230 | _ = self.request.translate |
|
230 | _ = self.request.translate | |
231 |
|
231 | |||
232 | c = self.load_default_context() |
|
232 | c = self.load_default_context() | |
233 | c.active = 'emails' |
|
233 | c.active = 'emails' | |
234 |
|
234 | |||
235 | c.user_email_map = UserEmailMap.query()\ |
|
235 | c.user_email_map = UserEmailMap.query()\ | |
236 | .filter(UserEmailMap.user == c.user).all() |
|
236 | .filter(UserEmailMap.user == c.user).all() | |
237 |
|
237 | |||
238 | schema = user_schema.AddEmailSchema().bind( |
|
238 | schema = user_schema.AddEmailSchema().bind( | |
239 | username=c.user.username, user_emails=c.user.emails) |
|
239 | username=c.user.username, user_emails=c.user.emails) | |
240 |
|
240 | |||
241 | form = forms.RcForm(schema, |
|
241 | form = forms.RcForm(schema, | |
242 | action=h.route_path('my_account_emails_add'), |
|
242 | action=h.route_path('my_account_emails_add'), | |
243 | buttons=(forms.buttons.save, forms.buttons.reset)) |
|
243 | buttons=(forms.buttons.save, forms.buttons.reset)) | |
244 |
|
244 | |||
245 | c.form = form |
|
245 | c.form = form | |
246 | return self._get_template_context(c) |
|
246 | return self._get_template_context(c) | |
247 |
|
247 | |||
248 | @LoginRequired() |
|
248 | @LoginRequired() | |
249 | @NotAnonymous() |
|
249 | @NotAnonymous() | |
250 | @CSRFRequired() |
|
250 | @CSRFRequired() | |
251 | @view_config( |
|
251 | @view_config( | |
252 | route_name='my_account_emails_add', request_method='POST', |
|
252 | route_name='my_account_emails_add', request_method='POST', | |
253 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
253 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
254 | def my_account_emails_add(self): |
|
254 | def my_account_emails_add(self): | |
255 | _ = self.request.translate |
|
255 | _ = self.request.translate | |
256 | c = self.load_default_context() |
|
256 | c = self.load_default_context() | |
257 | c.active = 'emails' |
|
257 | c.active = 'emails' | |
258 |
|
258 | |||
259 | schema = user_schema.AddEmailSchema().bind( |
|
259 | schema = user_schema.AddEmailSchema().bind( | |
260 | username=c.user.username, user_emails=c.user.emails) |
|
260 | username=c.user.username, user_emails=c.user.emails) | |
261 |
|
261 | |||
262 | form = forms.RcForm( |
|
262 | form = forms.RcForm( | |
263 | schema, action=h.route_path('my_account_emails_add'), |
|
263 | schema, action=h.route_path('my_account_emails_add'), | |
264 | buttons=(forms.buttons.save, forms.buttons.reset)) |
|
264 | buttons=(forms.buttons.save, forms.buttons.reset)) | |
265 |
|
265 | |||
266 | controls = self.request.POST.items() |
|
266 | controls = self.request.POST.items() | |
267 | try: |
|
267 | try: | |
268 | valid_data = form.validate(controls) |
|
268 | valid_data = form.validate(controls) | |
269 | UserModel().add_extra_email(c.user.user_id, valid_data['email']) |
|
269 | UserModel().add_extra_email(c.user.user_id, valid_data['email']) | |
270 | audit_logger.store_web( |
|
270 | audit_logger.store_web( | |
271 | 'user.edit.email.add', action_data={ |
|
271 | 'user.edit.email.add', action_data={ | |
272 | 'data': {'email': valid_data['email'], 'user': 'self'}}, |
|
272 | 'data': {'email': valid_data['email'], 'user': 'self'}}, | |
273 | user=self._rhodecode_user,) |
|
273 | user=self._rhodecode_user,) | |
274 | Session().commit() |
|
274 | Session().commit() | |
275 | except formencode.Invalid as error: |
|
275 | except formencode.Invalid as error: | |
276 | h.flash(h.escape(error.error_dict['email']), category='error') |
|
276 | h.flash(h.escape(error.error_dict['email']), category='error') | |
277 | except forms.ValidationFailure as e: |
|
277 | except forms.ValidationFailure as e: | |
278 | c.user_email_map = UserEmailMap.query() \ |
|
278 | c.user_email_map = UserEmailMap.query() \ | |
279 | .filter(UserEmailMap.user == c.user).all() |
|
279 | .filter(UserEmailMap.user == c.user).all() | |
280 | c.form = e |
|
280 | c.form = e | |
281 | return self._get_template_context(c) |
|
281 | return self._get_template_context(c) | |
282 | except Exception: |
|
282 | except Exception: | |
283 | log.exception("Exception adding email") |
|
283 | log.exception("Exception adding email") | |
284 | h.flash(_('Error occurred during adding email'), |
|
284 | h.flash(_('Error occurred during adding email'), | |
285 | category='error') |
|
285 | category='error') | |
286 | else: |
|
286 | else: | |
287 | h.flash(_("Successfully added email"), category='success') |
|
287 | h.flash(_("Successfully added email"), category='success') | |
288 |
|
288 | |||
289 | raise HTTPFound(self.request.route_path('my_account_emails')) |
|
289 | raise HTTPFound(self.request.route_path('my_account_emails')) | |
290 |
|
290 | |||
291 | @LoginRequired() |
|
291 | @LoginRequired() | |
292 | @NotAnonymous() |
|
292 | @NotAnonymous() | |
293 | @CSRFRequired() |
|
293 | @CSRFRequired() | |
294 | @view_config( |
|
294 | @view_config( | |
295 | route_name='my_account_emails_delete', request_method='POST') |
|
295 | route_name='my_account_emails_delete', request_method='POST') | |
296 | def my_account_emails_delete(self): |
|
296 | def my_account_emails_delete(self): | |
297 | _ = self.request.translate |
|
297 | _ = self.request.translate | |
298 | c = self.load_default_context() |
|
298 | c = self.load_default_context() | |
299 |
|
299 | |||
300 | del_email_id = self.request.POST.get('del_email_id') |
|
300 | del_email_id = self.request.POST.get('del_email_id') | |
301 | if del_email_id: |
|
301 | if del_email_id: | |
302 | email = UserEmailMap.get_or_404(del_email_id).email |
|
302 | email = UserEmailMap.get_or_404(del_email_id).email | |
303 | UserModel().delete_extra_email(c.user.user_id, del_email_id) |
|
303 | UserModel().delete_extra_email(c.user.user_id, del_email_id) | |
304 | audit_logger.store_web( |
|
304 | audit_logger.store_web( | |
305 | 'user.edit.email.delete', action_data={ |
|
305 | 'user.edit.email.delete', action_data={ | |
306 | 'data': {'email': email, 'user': 'self'}}, |
|
306 | 'data': {'email': email, 'user': 'self'}}, | |
307 | user=self._rhodecode_user,) |
|
307 | user=self._rhodecode_user,) | |
308 | Session().commit() |
|
308 | Session().commit() | |
309 | h.flash(_("Email successfully deleted"), |
|
309 | h.flash(_("Email successfully deleted"), | |
310 | category='success') |
|
310 | category='success') | |
311 | return HTTPFound(h.route_path('my_account_emails')) |
|
311 | return HTTPFound(h.route_path('my_account_emails')) | |
312 |
|
312 | |||
313 | @LoginRequired() |
|
313 | @LoginRequired() | |
314 | @NotAnonymous() |
|
314 | @NotAnonymous() | |
315 | @CSRFRequired() |
|
315 | @CSRFRequired() | |
316 | @view_config( |
|
316 | @view_config( | |
317 | route_name='my_account_notifications_test_channelstream', |
|
317 | route_name='my_account_notifications_test_channelstream', | |
318 | request_method='POST', renderer='json_ext') |
|
318 | request_method='POST', renderer='json_ext') | |
319 | def my_account_notifications_test_channelstream(self): |
|
319 | def my_account_notifications_test_channelstream(self): | |
320 | message = 'Test message sent via Channelstream by user: {}, on {}'.format( |
|
320 | message = 'Test message sent via Channelstream by user: {}, on {}'.format( | |
321 | self._rhodecode_user.username, datetime.datetime.now()) |
|
321 | self._rhodecode_user.username, datetime.datetime.now()) | |
322 | payload = { |
|
322 | payload = { | |
323 | # 'channel': 'broadcast', |
|
323 | # 'channel': 'broadcast', | |
324 | 'type': 'message', |
|
324 | 'type': 'message', | |
325 | 'timestamp': datetime.datetime.utcnow(), |
|
325 | 'timestamp': datetime.datetime.utcnow(), | |
326 | 'user': 'system', |
|
326 | 'user': 'system', | |
327 | 'pm_users': [self._rhodecode_user.username], |
|
327 | 'pm_users': [self._rhodecode_user.username], | |
328 | 'message': { |
|
328 | 'message': { | |
329 | 'message': message, |
|
329 | 'message': message, | |
330 | 'level': 'info', |
|
330 | 'level': 'info', | |
331 | 'topic': '/notifications' |
|
331 | 'topic': '/notifications' | |
332 | } |
|
332 | } | |
333 | } |
|
333 | } | |
334 |
|
334 | |||
335 | registry = self.request.registry |
|
335 | registry = self.request.registry | |
336 | rhodecode_plugins = getattr(registry, 'rhodecode_plugins', {}) |
|
336 | rhodecode_plugins = getattr(registry, 'rhodecode_plugins', {}) | |
337 | channelstream_config = rhodecode_plugins.get('channelstream', {}) |
|
337 | channelstream_config = rhodecode_plugins.get('channelstream', {}) | |
338 |
|
338 | |||
339 | try: |
|
339 | try: | |
340 | channelstream_request(channelstream_config, [payload], '/message') |
|
340 | channelstream_request(channelstream_config, [payload], '/message') | |
341 | except ChannelstreamException as e: |
|
341 | except ChannelstreamException as e: | |
342 | log.exception('Failed to send channelstream data') |
|
342 | log.exception('Failed to send channelstream data') | |
343 | return {"response": 'ERROR: {}'.format(e.__class__.__name__)} |
|
343 | return {"response": 'ERROR: {}'.format(e.__class__.__name__)} | |
344 | return {"response": 'Channelstream data sent. ' |
|
344 | return {"response": 'Channelstream data sent. ' | |
345 | 'You should see a new live message now.'} |
|
345 | 'You should see a new live message now.'} | |
346 |
|
346 | |||
347 | def _load_my_repos_data(self, watched=False): |
|
347 | def _load_my_repos_data(self, watched=False): | |
348 | if watched: |
|
348 | if watched: | |
349 | admin = False |
|
349 | admin = False | |
350 | follows_repos = Session().query(UserFollowing)\ |
|
350 | follows_repos = Session().query(UserFollowing)\ | |
351 | .filter(UserFollowing.user_id == self._rhodecode_user.user_id)\ |
|
351 | .filter(UserFollowing.user_id == self._rhodecode_user.user_id)\ | |
352 | .options(joinedload(UserFollowing.follows_repository))\ |
|
352 | .options(joinedload(UserFollowing.follows_repository))\ | |
353 | .all() |
|
353 | .all() | |
354 | repo_list = [x.follows_repository for x in follows_repos] |
|
354 | repo_list = [x.follows_repository for x in follows_repos] | |
355 | else: |
|
355 | else: | |
356 | admin = True |
|
356 | admin = True | |
357 | repo_list = Repository.get_all_repos( |
|
357 | repo_list = Repository.get_all_repos( | |
358 | user_id=self._rhodecode_user.user_id) |
|
358 | user_id=self._rhodecode_user.user_id) | |
359 | repo_list = RepoList(repo_list, perm_set=[ |
|
359 | repo_list = RepoList(repo_list, perm_set=[ | |
360 | 'repository.read', 'repository.write', 'repository.admin']) |
|
360 | 'repository.read', 'repository.write', 'repository.admin']) | |
361 |
|
361 | |||
362 | repos_data = RepoModel().get_repos_as_dict( |
|
362 | repos_data = RepoModel().get_repos_as_dict( | |
363 | repo_list=repo_list, admin=admin, short_name=False) |
|
363 | repo_list=repo_list, admin=admin, short_name=False) | |
364 | # json used to render the grid |
|
364 | # json used to render the grid | |
365 | return json.dumps(repos_data) |
|
365 | return json.dumps(repos_data) | |
366 |
|
366 | |||
367 | @LoginRequired() |
|
367 | @LoginRequired() | |
368 | @NotAnonymous() |
|
368 | @NotAnonymous() | |
369 | @view_config( |
|
369 | @view_config( | |
370 | route_name='my_account_repos', request_method='GET', |
|
370 | route_name='my_account_repos', request_method='GET', | |
371 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
371 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
372 | def my_account_repos(self): |
|
372 | def my_account_repos(self): | |
373 | c = self.load_default_context() |
|
373 | c = self.load_default_context() | |
374 | c.active = 'repos' |
|
374 | c.active = 'repos' | |
375 |
|
375 | |||
376 | # json used to render the grid |
|
376 | # json used to render the grid | |
377 | c.data = self._load_my_repos_data() |
|
377 | c.data = self._load_my_repos_data() | |
378 | return self._get_template_context(c) |
|
378 | return self._get_template_context(c) | |
379 |
|
379 | |||
380 | @LoginRequired() |
|
380 | @LoginRequired() | |
381 | @NotAnonymous() |
|
381 | @NotAnonymous() | |
382 | @view_config( |
|
382 | @view_config( | |
383 | route_name='my_account_watched', request_method='GET', |
|
383 | route_name='my_account_watched', request_method='GET', | |
384 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
384 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
385 | def my_account_watched(self): |
|
385 | def my_account_watched(self): | |
386 | c = self.load_default_context() |
|
386 | c = self.load_default_context() | |
387 | c.active = 'watched' |
|
387 | c.active = 'watched' | |
388 |
|
388 | |||
389 | # json used to render the grid |
|
389 | # json used to render the grid | |
390 | c.data = self._load_my_repos_data(watched=True) |
|
390 | c.data = self._load_my_repos_data(watched=True) | |
391 | return self._get_template_context(c) |
|
391 | return self._get_template_context(c) | |
392 |
|
392 | |||
393 | @LoginRequired() |
|
393 | @LoginRequired() | |
394 | @NotAnonymous() |
|
394 | @NotAnonymous() | |
395 | @view_config( |
|
395 | @view_config( | |
396 | route_name='my_account_bookmarks', request_method='GET', |
|
396 | route_name='my_account_bookmarks', request_method='GET', | |
397 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
397 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
398 | def my_account_bookmarks(self): |
|
398 | def my_account_bookmarks(self): | |
399 | c = self.load_default_context() |
|
399 | c = self.load_default_context() | |
400 | c.active = 'bookmarks' |
|
400 | c.active = 'bookmarks' | |
401 | return self._get_template_context(c) |
|
401 | return self._get_template_context(c) | |
402 |
|
402 | |||
403 | def _process_bookmark_entry(self, entry, user_id): |
|
403 | def _process_bookmark_entry(self, entry, user_id): | |
404 | position = safe_int(entry.get('position')) |
|
404 | position = safe_int(entry.get('position')) | |
405 | cur_position = safe_int(entry.get('cur_position')) |
|
405 | cur_position = safe_int(entry.get('cur_position')) | |
406 | if position is None or cur_position is None: |
|
406 | if position is None or cur_position is None: | |
407 | return |
|
407 | return | |
408 |
|
408 | |||
409 | # check if this is an existing entry |
|
409 | # check if this is an existing entry | |
410 | is_new = False |
|
410 | is_new = False | |
411 | db_entry = UserBookmark().get_by_position_for_user(cur_position, user_id) |
|
411 | db_entry = UserBookmark().get_by_position_for_user(cur_position, user_id) | |
412 |
|
412 | |||
413 | if db_entry and str2bool(entry.get('remove')): |
|
413 | if db_entry and str2bool(entry.get('remove')): | |
414 | log.debug('Marked bookmark %s for deletion', db_entry) |
|
414 | log.debug('Marked bookmark %s for deletion', db_entry) | |
415 | Session().delete(db_entry) |
|
415 | Session().delete(db_entry) | |
416 | return |
|
416 | return | |
417 |
|
417 | |||
418 | if not db_entry: |
|
418 | if not db_entry: | |
419 | # new |
|
419 | # new | |
420 | db_entry = UserBookmark() |
|
420 | db_entry = UserBookmark() | |
421 | is_new = True |
|
421 | is_new = True | |
422 |
|
422 | |||
423 | should_save = False |
|
423 | should_save = False | |
424 | default_redirect_url = '' |
|
424 | default_redirect_url = '' | |
425 |
|
425 | |||
426 | # save repo |
|
426 | # save repo | |
427 | if entry.get('bookmark_repo') and safe_int(entry.get('bookmark_repo')): |
|
427 | if entry.get('bookmark_repo') and safe_int(entry.get('bookmark_repo')): | |
428 | repo = Repository.get(entry['bookmark_repo']) |
|
428 | repo = Repository.get(entry['bookmark_repo']) | |
429 | perm_check = HasRepoPermissionAny( |
|
429 | perm_check = HasRepoPermissionAny( | |
430 | 'repository.read', 'repository.write', 'repository.admin') |
|
430 | 'repository.read', 'repository.write', 'repository.admin') | |
431 | if repo and perm_check(repo_name=repo.repo_name): |
|
431 | if repo and perm_check(repo_name=repo.repo_name): | |
432 | db_entry.repository = repo |
|
432 | db_entry.repository = repo | |
433 | should_save = True |
|
433 | should_save = True | |
434 | default_redirect_url = '${repo_url}' |
|
434 | default_redirect_url = '${repo_url}' | |
435 | # save repo group |
|
435 | # save repo group | |
436 | elif entry.get('bookmark_repo_group') and safe_int(entry.get('bookmark_repo_group')): |
|
436 | elif entry.get('bookmark_repo_group') and safe_int(entry.get('bookmark_repo_group')): | |
437 | repo_group = RepoGroup.get(entry['bookmark_repo_group']) |
|
437 | repo_group = RepoGroup.get(entry['bookmark_repo_group']) | |
438 | perm_check = HasRepoGroupPermissionAny( |
|
438 | perm_check = HasRepoGroupPermissionAny( | |
439 | 'group.read', 'group.write', 'group.admin') |
|
439 | 'group.read', 'group.write', 'group.admin') | |
440 |
|
440 | |||
441 | if repo_group and perm_check(group_name=repo_group.group_name): |
|
441 | if repo_group and perm_check(group_name=repo_group.group_name): | |
442 | db_entry.repository_group = repo_group |
|
442 | db_entry.repository_group = repo_group | |
443 | should_save = True |
|
443 | should_save = True | |
444 | default_redirect_url = '${repo_group_url}' |
|
444 | default_redirect_url = '${repo_group_url}' | |
445 | # save generic info |
|
445 | # save generic info | |
446 | elif entry.get('title') and entry.get('redirect_url'): |
|
446 | elif entry.get('title') and entry.get('redirect_url'): | |
447 | should_save = True |
|
447 | should_save = True | |
448 |
|
448 | |||
449 | if should_save: |
|
449 | if should_save: | |
450 | # mark user and position |
|
450 | # mark user and position | |
451 | db_entry.user_id = user_id |
|
451 | db_entry.user_id = user_id | |
452 | db_entry.position = position |
|
452 | db_entry.position = position | |
453 | db_entry.title = entry.get('title') |
|
453 | db_entry.title = entry.get('title') | |
454 | db_entry.redirect_url = entry.get('redirect_url') or default_redirect_url |
|
454 | db_entry.redirect_url = entry.get('redirect_url') or default_redirect_url | |
455 | log.debug('Saving bookmark %s, new:%s', db_entry, is_new) |
|
455 | log.debug('Saving bookmark %s, new:%s', db_entry, is_new) | |
456 |
|
456 | |||
457 | Session().add(db_entry) |
|
457 | Session().add(db_entry) | |
458 |
|
458 | |||
459 | @LoginRequired() |
|
459 | @LoginRequired() | |
460 | @NotAnonymous() |
|
460 | @NotAnonymous() | |
461 | @CSRFRequired() |
|
461 | @CSRFRequired() | |
462 | @view_config( |
|
462 | @view_config( | |
463 | route_name='my_account_bookmarks_update', request_method='POST') |
|
463 | route_name='my_account_bookmarks_update', request_method='POST') | |
464 | def my_account_bookmarks_update(self): |
|
464 | def my_account_bookmarks_update(self): | |
465 | _ = self.request.translate |
|
465 | _ = self.request.translate | |
466 | c = self.load_default_context() |
|
466 | c = self.load_default_context() | |
467 | c.active = 'bookmarks' |
|
467 | c.active = 'bookmarks' | |
468 |
|
468 | |||
469 | controls = peppercorn.parse(self.request.POST.items()) |
|
469 | controls = peppercorn.parse(self.request.POST.items()) | |
470 | user_id = c.user.user_id |
|
470 | user_id = c.user.user_id | |
471 |
|
471 | |||
472 | # validate positions |
|
472 | # validate positions | |
473 | positions = {} |
|
473 | positions = {} | |
474 | for entry in controls.get('bookmarks', []): |
|
474 | for entry in controls.get('bookmarks', []): | |
475 | position = safe_int(entry['position']) |
|
475 | position = safe_int(entry['position']) | |
476 | if position is None: |
|
476 | if position is None: | |
477 | continue |
|
477 | continue | |
478 |
|
478 | |||
479 | if position in positions: |
|
479 | if position in positions: | |
480 | h.flash(_("Position {} is defined twice. " |
|
480 | h.flash(_("Position {} is defined twice. " | |
481 | "Please correct this error.").format(position), category='error') |
|
481 | "Please correct this error.").format(position), category='error') | |
482 | return HTTPFound(h.route_path('my_account_bookmarks')) |
|
482 | return HTTPFound(h.route_path('my_account_bookmarks')) | |
483 |
|
483 | |||
484 | entry['position'] = position |
|
484 | entry['position'] = position | |
485 | entry['cur_position'] = safe_int(entry.get('cur_position')) |
|
485 | entry['cur_position'] = safe_int(entry.get('cur_position')) | |
486 | positions[position] = entry |
|
486 | positions[position] = entry | |
487 |
|
487 | |||
488 | try: |
|
488 | try: | |
489 | for entry in positions.values(): |
|
489 | for entry in positions.values(): | |
490 | self._process_bookmark_entry(entry, user_id) |
|
490 | self._process_bookmark_entry(entry, user_id) | |
491 |
|
491 | |||
492 | Session().commit() |
|
492 | Session().commit() | |
493 | h.flash(_("Update Bookmarks"), category='success') |
|
493 | h.flash(_("Update Bookmarks"), category='success') | |
494 | except IntegrityError: |
|
494 | except IntegrityError: | |
495 | h.flash(_("Failed to update bookmarks. " |
|
495 | h.flash(_("Failed to update bookmarks. " | |
496 | "Make sure an unique position is used."), category='error') |
|
496 | "Make sure an unique position is used."), category='error') | |
497 |
|
497 | |||
498 | return HTTPFound(h.route_path('my_account_bookmarks')) |
|
498 | return HTTPFound(h.route_path('my_account_bookmarks')) | |
499 |
|
499 | |||
500 | @LoginRequired() |
|
500 | @LoginRequired() | |
501 | @NotAnonymous() |
|
501 | @NotAnonymous() | |
502 | @view_config( |
|
502 | @view_config( | |
503 | route_name='my_account_goto_bookmark', request_method='GET', |
|
503 | route_name='my_account_goto_bookmark', request_method='GET', | |
504 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
504 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
505 | def my_account_goto_bookmark(self): |
|
505 | def my_account_goto_bookmark(self): | |
506 |
|
506 | |||
507 | bookmark_id = self.request.matchdict['bookmark_id'] |
|
507 | bookmark_id = self.request.matchdict['bookmark_id'] | |
508 | user_bookmark = UserBookmark().query()\ |
|
508 | user_bookmark = UserBookmark().query()\ | |
509 | .filter(UserBookmark.user_id == self.request.user.user_id) \ |
|
509 | .filter(UserBookmark.user_id == self.request.user.user_id) \ | |
510 | .filter(UserBookmark.position == bookmark_id).scalar() |
|
510 | .filter(UserBookmark.position == bookmark_id).scalar() | |
511 |
|
511 | |||
512 | redirect_url = h.route_path('my_account_bookmarks') |
|
512 | redirect_url = h.route_path('my_account_bookmarks') | |
513 | if not user_bookmark: |
|
513 | if not user_bookmark: | |
514 | raise HTTPFound(redirect_url) |
|
514 | raise HTTPFound(redirect_url) | |
515 |
|
515 | |||
516 | # repository set |
|
516 | # repository set | |
517 | if user_bookmark.repository: |
|
517 | if user_bookmark.repository: | |
518 | repo_name = user_bookmark.repository.repo_name |
|
518 | repo_name = user_bookmark.repository.repo_name | |
519 | base_redirect_url = h.route_path( |
|
519 | base_redirect_url = h.route_path( | |
520 | 'repo_summary', repo_name=repo_name) |
|
520 | 'repo_summary', repo_name=repo_name) | |
521 | if user_bookmark.redirect_url and \ |
|
521 | if user_bookmark.redirect_url and \ | |
522 | '${repo_url}' in user_bookmark.redirect_url: |
|
522 | '${repo_url}' in user_bookmark.redirect_url: | |
523 | redirect_url = string.Template(user_bookmark.redirect_url)\ |
|
523 | redirect_url = string.Template(user_bookmark.redirect_url)\ | |
524 | .safe_substitute({'repo_url': base_redirect_url}) |
|
524 | .safe_substitute({'repo_url': base_redirect_url}) | |
525 | else: |
|
525 | else: | |
526 | redirect_url = base_redirect_url |
|
526 | redirect_url = base_redirect_url | |
527 | # repository group set |
|
527 | # repository group set | |
528 | elif user_bookmark.repository_group: |
|
528 | elif user_bookmark.repository_group: | |
529 | repo_group_name = user_bookmark.repository_group.group_name |
|
529 | repo_group_name = user_bookmark.repository_group.group_name | |
530 | base_redirect_url = h.route_path( |
|
530 | base_redirect_url = h.route_path( | |
531 | 'repo_group_home', repo_group_name=repo_group_name) |
|
531 | 'repo_group_home', repo_group_name=repo_group_name) | |
532 | if user_bookmark.redirect_url and \ |
|
532 | if user_bookmark.redirect_url and \ | |
533 | '${repo_group_url}' in user_bookmark.redirect_url: |
|
533 | '${repo_group_url}' in user_bookmark.redirect_url: | |
534 | redirect_url = string.Template(user_bookmark.redirect_url)\ |
|
534 | redirect_url = string.Template(user_bookmark.redirect_url)\ | |
535 | .safe_substitute({'repo_group_url': base_redirect_url}) |
|
535 | .safe_substitute({'repo_group_url': base_redirect_url}) | |
536 | else: |
|
536 | else: | |
537 | redirect_url = base_redirect_url |
|
537 | redirect_url = base_redirect_url | |
538 | # custom URL set |
|
538 | # custom URL set | |
539 | elif user_bookmark.redirect_url: |
|
539 | elif user_bookmark.redirect_url: | |
540 | server_url = h.route_url('home').rstrip('/') |
|
540 | server_url = h.route_url('home').rstrip('/') | |
541 | redirect_url = string.Template(user_bookmark.redirect_url) \ |
|
541 | redirect_url = string.Template(user_bookmark.redirect_url) \ | |
542 | .safe_substitute({'server_url': server_url}) |
|
542 | .safe_substitute({'server_url': server_url}) | |
543 |
|
543 | |||
544 | log.debug('Redirecting bookmark %s to %s', user_bookmark, redirect_url) |
|
544 | log.debug('Redirecting bookmark %s to %s', user_bookmark, redirect_url) | |
545 | raise HTTPFound(redirect_url) |
|
545 | raise HTTPFound(redirect_url) | |
546 |
|
546 | |||
547 | @LoginRequired() |
|
547 | @LoginRequired() | |
548 | @NotAnonymous() |
|
548 | @NotAnonymous() | |
549 | @view_config( |
|
549 | @view_config( | |
550 | route_name='my_account_perms', request_method='GET', |
|
550 | route_name='my_account_perms', request_method='GET', | |
551 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
551 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
552 | def my_account_perms(self): |
|
552 | def my_account_perms(self): | |
553 | c = self.load_default_context() |
|
553 | c = self.load_default_context() | |
554 | c.active = 'perms' |
|
554 | c.active = 'perms' | |
555 |
|
555 | |||
556 | c.perm_user = c.auth_user |
|
556 | c.perm_user = c.auth_user | |
557 | return self._get_template_context(c) |
|
557 | return self._get_template_context(c) | |
558 |
|
558 | |||
559 | @LoginRequired() |
|
559 | @LoginRequired() | |
560 | @NotAnonymous() |
|
560 | @NotAnonymous() | |
561 | @view_config( |
|
561 | @view_config( | |
562 | route_name='my_account_notifications', request_method='GET', |
|
562 | route_name='my_account_notifications', request_method='GET', | |
563 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
563 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
564 | def my_notifications(self): |
|
564 | def my_notifications(self): | |
565 | c = self.load_default_context() |
|
565 | c = self.load_default_context() | |
566 | c.active = 'notifications' |
|
566 | c.active = 'notifications' | |
567 |
|
567 | |||
568 | return self._get_template_context(c) |
|
568 | return self._get_template_context(c) | |
569 |
|
569 | |||
570 | @LoginRequired() |
|
570 | @LoginRequired() | |
571 | @NotAnonymous() |
|
571 | @NotAnonymous() | |
572 | @CSRFRequired() |
|
572 | @CSRFRequired() | |
573 | @view_config( |
|
573 | @view_config( | |
574 | route_name='my_account_notifications_toggle_visibility', |
|
574 | route_name='my_account_notifications_toggle_visibility', | |
575 | request_method='POST', renderer='json_ext') |
|
575 | request_method='POST', renderer='json_ext') | |
576 | def my_notifications_toggle_visibility(self): |
|
576 | def my_notifications_toggle_visibility(self): | |
577 | user = self._rhodecode_db_user |
|
577 | user = self._rhodecode_db_user | |
578 | new_status = not user.user_data.get('notification_status', True) |
|
578 | new_status = not user.user_data.get('notification_status', True) | |
579 | user.update_userdata(notification_status=new_status) |
|
579 | user.update_userdata(notification_status=new_status) | |
580 | Session().commit() |
|
580 | Session().commit() | |
581 | return user.user_data['notification_status'] |
|
581 | return user.user_data['notification_status'] | |
582 |
|
582 | |||
583 | @LoginRequired() |
|
583 | @LoginRequired() | |
584 | @NotAnonymous() |
|
584 | @NotAnonymous() | |
585 | @view_config( |
|
585 | @view_config( | |
586 | route_name='my_account_edit', |
|
586 | route_name='my_account_edit', | |
587 | request_method='GET', |
|
587 | request_method='GET', | |
588 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
588 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
589 | def my_account_edit(self): |
|
589 | def my_account_edit(self): | |
590 | c = self.load_default_context() |
|
590 | c = self.load_default_context() | |
591 | c.active = 'profile_edit' |
|
591 | c.active = 'profile_edit' | |
592 | c.extern_type = c.user.extern_type |
|
592 | c.extern_type = c.user.extern_type | |
593 | c.extern_name = c.user.extern_name |
|
593 | c.extern_name = c.user.extern_name | |
594 |
|
594 | |||
595 | schema = user_schema.UserProfileSchema().bind( |
|
595 | schema = user_schema.UserProfileSchema().bind( | |
596 | username=c.user.username, user_emails=c.user.emails) |
|
596 | username=c.user.username, user_emails=c.user.emails) | |
597 | appstruct = { |
|
597 | appstruct = { | |
598 | 'username': c.user.username, |
|
598 | 'username': c.user.username, | |
599 | 'email': c.user.email, |
|
599 | 'email': c.user.email, | |
600 | 'firstname': c.user.firstname, |
|
600 | 'firstname': c.user.firstname, | |
601 | 'lastname': c.user.lastname, |
|
601 | 'lastname': c.user.lastname, | |
602 | 'description': c.user.description, |
|
602 | 'description': c.user.description, | |
603 | } |
|
603 | } | |
604 | c.form = forms.RcForm( |
|
604 | c.form = forms.RcForm( | |
605 | schema, appstruct=appstruct, |
|
605 | schema, appstruct=appstruct, | |
606 | action=h.route_path('my_account_update'), |
|
606 | action=h.route_path('my_account_update'), | |
607 | buttons=(forms.buttons.save, forms.buttons.reset)) |
|
607 | buttons=(forms.buttons.save, forms.buttons.reset)) | |
608 |
|
608 | |||
609 | return self._get_template_context(c) |
|
609 | return self._get_template_context(c) | |
610 |
|
610 | |||
611 | @LoginRequired() |
|
611 | @LoginRequired() | |
612 | @NotAnonymous() |
|
612 | @NotAnonymous() | |
613 | @CSRFRequired() |
|
613 | @CSRFRequired() | |
614 | @view_config( |
|
614 | @view_config( | |
615 | route_name='my_account_update', |
|
615 | route_name='my_account_update', | |
616 | request_method='POST', |
|
616 | request_method='POST', | |
617 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
617 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
618 | def my_account_update(self): |
|
618 | def my_account_update(self): | |
619 | _ = self.request.translate |
|
619 | _ = self.request.translate | |
620 | c = self.load_default_context() |
|
620 | c = self.load_default_context() | |
621 | c.active = 'profile_edit' |
|
621 | c.active = 'profile_edit' | |
622 | c.perm_user = c.auth_user |
|
622 | c.perm_user = c.auth_user | |
623 | c.extern_type = c.user.extern_type |
|
623 | c.extern_type = c.user.extern_type | |
624 | c.extern_name = c.user.extern_name |
|
624 | c.extern_name = c.user.extern_name | |
625 |
|
625 | |||
626 | schema = user_schema.UserProfileSchema().bind( |
|
626 | schema = user_schema.UserProfileSchema().bind( | |
627 | username=c.user.username, user_emails=c.user.emails) |
|
627 | username=c.user.username, user_emails=c.user.emails) | |
628 | form = forms.RcForm( |
|
628 | form = forms.RcForm( | |
629 | schema, buttons=(forms.buttons.save, forms.buttons.reset)) |
|
629 | schema, buttons=(forms.buttons.save, forms.buttons.reset)) | |
630 |
|
630 | |||
631 | controls = self.request.POST.items() |
|
631 | controls = self.request.POST.items() | |
632 | try: |
|
632 | try: | |
633 | valid_data = form.validate(controls) |
|
633 | valid_data = form.validate(controls) | |
634 | skip_attrs = ['admin', 'active', 'extern_type', 'extern_name', |
|
634 | skip_attrs = ['admin', 'active', 'extern_type', 'extern_name', | |
635 | 'new_password', 'password_confirmation'] |
|
635 | 'new_password', 'password_confirmation'] | |
636 | if c.extern_type != "rhodecode": |
|
636 | if c.extern_type != "rhodecode": | |
637 | # forbid updating username for external accounts |
|
637 | # forbid updating username for external accounts | |
638 | skip_attrs.append('username') |
|
638 | skip_attrs.append('username') | |
639 | old_email = c.user.email |
|
639 | old_email = c.user.email | |
640 | UserModel().update_user( |
|
640 | UserModel().update_user( | |
641 | self._rhodecode_user.user_id, skip_attrs=skip_attrs, |
|
641 | self._rhodecode_user.user_id, skip_attrs=skip_attrs, | |
642 | **valid_data) |
|
642 | **valid_data) | |
643 | if old_email != valid_data['email']: |
|
643 | if old_email != valid_data['email']: | |
644 | old = UserEmailMap.query() \ |
|
644 | old = UserEmailMap.query() \ | |
645 | .filter(UserEmailMap.user == c.user).filter(UserEmailMap.email == valid_data['email']).first() |
|
645 | .filter(UserEmailMap.user == c.user).filter(UserEmailMap.email == valid_data['email']).first() | |
646 | old.email = old_email |
|
646 | old.email = old_email | |
647 | h.flash(_('Your account was updated successfully'), category='success') |
|
647 | h.flash(_('Your account was updated successfully'), category='success') | |
648 | Session().commit() |
|
648 | Session().commit() | |
649 | except forms.ValidationFailure as e: |
|
649 | except forms.ValidationFailure as e: | |
650 | c.form = e |
|
650 | c.form = e | |
651 | return self._get_template_context(c) |
|
651 | return self._get_template_context(c) | |
652 | except Exception: |
|
652 | except Exception: | |
653 | log.exception("Exception updating user") |
|
653 | log.exception("Exception updating user") | |
654 | h.flash(_('Error occurred during update of user'), |
|
654 | h.flash(_('Error occurred during update of user'), | |
655 | category='error') |
|
655 | category='error') | |
656 | raise HTTPFound(h.route_path('my_account_profile')) |
|
656 | raise HTTPFound(h.route_path('my_account_profile')) | |
657 |
|
657 | |||
658 | def _get_pull_requests_list(self, statuses): |
|
658 | def _get_pull_requests_list(self, statuses): | |
659 | draw, start, limit = self._extract_chunk(self.request) |
|
659 | draw, start, limit = self._extract_chunk(self.request) | |
660 | search_q, order_by, order_dir = self._extract_ordering(self.request) |
|
660 | search_q, order_by, order_dir = self._extract_ordering(self.request) | |
661 | _render = self.request.get_partial_renderer( |
|
661 | _render = self.request.get_partial_renderer( | |
662 | 'rhodecode:templates/data_table/_dt_elements.mako') |
|
662 | 'rhodecode:templates/data_table/_dt_elements.mako') | |
663 |
|
663 | |||
664 | pull_requests = PullRequestModel().get_im_participating_in( |
|
664 | pull_requests = PullRequestModel().get_im_participating_in( | |
665 | user_id=self._rhodecode_user.user_id, |
|
665 | user_id=self._rhodecode_user.user_id, | |
666 | statuses=statuses, |
|
666 | statuses=statuses, | |
667 | offset=start, length=limit, order_by=order_by, |
|
667 | offset=start, length=limit, order_by=order_by, | |
668 | order_dir=order_dir) |
|
668 | order_dir=order_dir) | |
669 |
|
669 | |||
670 | pull_requests_total_count = PullRequestModel().count_im_participating_in( |
|
670 | pull_requests_total_count = PullRequestModel().count_im_participating_in( | |
671 | user_id=self._rhodecode_user.user_id, statuses=statuses) |
|
671 | user_id=self._rhodecode_user.user_id, statuses=statuses) | |
672 |
|
672 | |||
673 | data = [] |
|
673 | data = [] | |
674 | comments_model = CommentsModel() |
|
674 | comments_model = CommentsModel() | |
675 | for pr in pull_requests: |
|
675 | for pr in pull_requests: | |
676 | repo_id = pr.target_repo_id |
|
676 | repo_id = pr.target_repo_id | |
677 | comments = comments_model.get_all_comments( |
|
677 | comments = comments_model.get_all_comments( | |
678 | repo_id, pull_request=pr) |
|
678 | repo_id, pull_request=pr) | |
679 | owned = pr.user_id == self._rhodecode_user.user_id |
|
679 | owned = pr.user_id == self._rhodecode_user.user_id | |
680 |
|
680 | |||
681 | data.append({ |
|
681 | data.append({ | |
682 | 'target_repo': _render('pullrequest_target_repo', |
|
682 | 'target_repo': _render('pullrequest_target_repo', | |
683 | pr.target_repo.repo_name), |
|
683 | pr.target_repo.repo_name), | |
684 | 'name': _render('pullrequest_name', |
|
684 | 'name': _render('pullrequest_name', | |
685 |
pr.pull_request_id, pr. |
|
685 | pr.pull_request_id, pr.pull_request_state, | |
686 | pr.target_repo.repo_name, |
|
686 | pr.work_in_progress, pr.target_repo.repo_name, | |
687 | short=True), |
|
687 | short=True), | |
688 | 'name_raw': pr.pull_request_id, |
|
688 | 'name_raw': pr.pull_request_id, | |
689 | 'status': _render('pullrequest_status', |
|
689 | 'status': _render('pullrequest_status', | |
690 | pr.calculated_review_status()), |
|
690 | pr.calculated_review_status()), | |
691 | 'title': _render('pullrequest_title', pr.title, pr.description), |
|
691 | 'title': _render('pullrequest_title', pr.title, pr.description), | |
692 | 'description': h.escape(pr.description), |
|
692 | 'description': h.escape(pr.description), | |
693 | 'updated_on': _render('pullrequest_updated_on', |
|
693 | 'updated_on': _render('pullrequest_updated_on', | |
694 | h.datetime_to_time(pr.updated_on)), |
|
694 | h.datetime_to_time(pr.updated_on)), | |
695 | 'updated_on_raw': h.datetime_to_time(pr.updated_on), |
|
695 | 'updated_on_raw': h.datetime_to_time(pr.updated_on), | |
696 | 'created_on': _render('pullrequest_updated_on', |
|
696 | 'created_on': _render('pullrequest_updated_on', | |
697 | h.datetime_to_time(pr.created_on)), |
|
697 | h.datetime_to_time(pr.created_on)), | |
698 | 'created_on_raw': h.datetime_to_time(pr.created_on), |
|
698 | 'created_on_raw': h.datetime_to_time(pr.created_on), | |
699 | 'state': pr.pull_request_state, |
|
699 | 'state': pr.pull_request_state, | |
700 | 'author': _render('pullrequest_author', |
|
700 | 'author': _render('pullrequest_author', | |
701 | pr.author.full_contact, ), |
|
701 | pr.author.full_contact, ), | |
702 | 'author_raw': pr.author.full_name, |
|
702 | 'author_raw': pr.author.full_name, | |
703 | 'comments': _render('pullrequest_comments', len(comments)), |
|
703 | 'comments': _render('pullrequest_comments', len(comments)), | |
704 | 'comments_raw': len(comments), |
|
704 | 'comments_raw': len(comments), | |
705 | 'closed': pr.is_closed(), |
|
705 | 'closed': pr.is_closed(), | |
706 | 'owned': owned |
|
706 | 'owned': owned | |
707 | }) |
|
707 | }) | |
708 |
|
708 | |||
709 | # json used to render the grid |
|
709 | # json used to render the grid | |
710 | data = ({ |
|
710 | data = ({ | |
711 | 'draw': draw, |
|
711 | 'draw': draw, | |
712 | 'data': data, |
|
712 | 'data': data, | |
713 | 'recordsTotal': pull_requests_total_count, |
|
713 | 'recordsTotal': pull_requests_total_count, | |
714 | 'recordsFiltered': pull_requests_total_count, |
|
714 | 'recordsFiltered': pull_requests_total_count, | |
715 | }) |
|
715 | }) | |
716 | return data |
|
716 | return data | |
717 |
|
717 | |||
718 | @LoginRequired() |
|
718 | @LoginRequired() | |
719 | @NotAnonymous() |
|
719 | @NotAnonymous() | |
720 | @view_config( |
|
720 | @view_config( | |
721 | route_name='my_account_pullrequests', |
|
721 | route_name='my_account_pullrequests', | |
722 | request_method='GET', |
|
722 | request_method='GET', | |
723 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
723 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
724 | def my_account_pullrequests(self): |
|
724 | def my_account_pullrequests(self): | |
725 | c = self.load_default_context() |
|
725 | c = self.load_default_context() | |
726 | c.active = 'pullrequests' |
|
726 | c.active = 'pullrequests' | |
727 | req_get = self.request.GET |
|
727 | req_get = self.request.GET | |
728 |
|
728 | |||
729 | c.closed = str2bool(req_get.get('pr_show_closed')) |
|
729 | c.closed = str2bool(req_get.get('pr_show_closed')) | |
730 |
|
730 | |||
731 | return self._get_template_context(c) |
|
731 | return self._get_template_context(c) | |
732 |
|
732 | |||
733 | @LoginRequired() |
|
733 | @LoginRequired() | |
734 | @NotAnonymous() |
|
734 | @NotAnonymous() | |
735 | @view_config( |
|
735 | @view_config( | |
736 | route_name='my_account_pullrequests_data', |
|
736 | route_name='my_account_pullrequests_data', | |
737 | request_method='GET', renderer='json_ext') |
|
737 | request_method='GET', renderer='json_ext') | |
738 | def my_account_pullrequests_data(self): |
|
738 | def my_account_pullrequests_data(self): | |
739 | self.load_default_context() |
|
739 | self.load_default_context() | |
740 | req_get = self.request.GET |
|
740 | req_get = self.request.GET | |
741 | closed = str2bool(req_get.get('closed')) |
|
741 | closed = str2bool(req_get.get('closed')) | |
742 |
|
742 | |||
743 | statuses = [PullRequest.STATUS_NEW, PullRequest.STATUS_OPEN] |
|
743 | statuses = [PullRequest.STATUS_NEW, PullRequest.STATUS_OPEN] | |
744 | if closed: |
|
744 | if closed: | |
745 | statuses += [PullRequest.STATUS_CLOSED] |
|
745 | statuses += [PullRequest.STATUS_CLOSED] | |
746 |
|
746 | |||
747 | data = self._get_pull_requests_list(statuses=statuses) |
|
747 | data = self._get_pull_requests_list(statuses=statuses) | |
748 | return data |
|
748 | return data | |
749 |
|
749 | |||
750 | @LoginRequired() |
|
750 | @LoginRequired() | |
751 | @NotAnonymous() |
|
751 | @NotAnonymous() | |
752 | @view_config( |
|
752 | @view_config( | |
753 | route_name='my_account_user_group_membership', |
|
753 | route_name='my_account_user_group_membership', | |
754 | request_method='GET', |
|
754 | request_method='GET', | |
755 | renderer='rhodecode:templates/admin/my_account/my_account.mako') |
|
755 | renderer='rhodecode:templates/admin/my_account/my_account.mako') | |
756 | def my_account_user_group_membership(self): |
|
756 | def my_account_user_group_membership(self): | |
757 | c = self.load_default_context() |
|
757 | c = self.load_default_context() | |
758 | c.active = 'user_group_membership' |
|
758 | c.active = 'user_group_membership' | |
759 | groups = [UserGroupModel.get_user_groups_as_dict(group.users_group) |
|
759 | groups = [UserGroupModel.get_user_groups_as_dict(group.users_group) | |
760 | for group in self._rhodecode_db_user.group_member] |
|
760 | for group in self._rhodecode_db_user.group_member] | |
761 | c.user_groups = json.dumps(groups) |
|
761 | c.user_groups = json.dumps(groups) | |
762 | return self._get_template_context(c) |
|
762 | return self._get_template_context(c) |
@@ -1,1482 +1,1476 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2011-2019 RhodeCode GmbH |
|
3 | # Copyright (C) 2011-2019 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 collections |
|
22 | import collections | |
23 |
|
23 | |||
24 | import formencode |
|
24 | import formencode | |
25 | import formencode.htmlfill |
|
25 | import formencode.htmlfill | |
26 | import peppercorn |
|
26 | import peppercorn | |
27 | from pyramid.httpexceptions import ( |
|
27 | from pyramid.httpexceptions import ( | |
28 | HTTPFound, HTTPNotFound, HTTPForbidden, HTTPBadRequest) |
|
28 | HTTPFound, HTTPNotFound, HTTPForbidden, HTTPBadRequest) | |
29 | from pyramid.view import view_config |
|
29 | from pyramid.view import view_config | |
30 | from pyramid.renderers import render |
|
30 | from pyramid.renderers import render | |
31 |
|
31 | |||
32 | from rhodecode.apps._base import RepoAppView, DataGridAppView |
|
32 | from rhodecode.apps._base import RepoAppView, DataGridAppView | |
33 |
|
33 | |||
34 | from rhodecode.lib import helpers as h, diffs, codeblocks, channelstream |
|
34 | from rhodecode.lib import helpers as h, diffs, codeblocks, channelstream | |
35 | from rhodecode.lib.base import vcs_operation_context |
|
35 | from rhodecode.lib.base import vcs_operation_context | |
36 | from rhodecode.lib.diffs import load_cached_diff, cache_diff, diff_cache_exist |
|
36 | from rhodecode.lib.diffs import load_cached_diff, cache_diff, diff_cache_exist | |
37 | from rhodecode.lib.ext_json import json |
|
37 | from rhodecode.lib.ext_json import json | |
38 | from rhodecode.lib.auth import ( |
|
38 | from rhodecode.lib.auth import ( | |
39 | LoginRequired, HasRepoPermissionAny, HasRepoPermissionAnyDecorator, |
|
39 | LoginRequired, HasRepoPermissionAny, HasRepoPermissionAnyDecorator, | |
40 | NotAnonymous, CSRFRequired) |
|
40 | NotAnonymous, CSRFRequired) | |
41 | from rhodecode.lib.utils2 import str2bool, safe_str, safe_unicode |
|
41 | from rhodecode.lib.utils2 import str2bool, safe_str, safe_unicode | |
42 | from rhodecode.lib.vcs.backends.base import EmptyCommit, UpdateFailureReason |
|
42 | from rhodecode.lib.vcs.backends.base import EmptyCommit, UpdateFailureReason | |
43 | from rhodecode.lib.vcs.exceptions import (CommitDoesNotExistError, |
|
43 | from rhodecode.lib.vcs.exceptions import (CommitDoesNotExistError, | |
44 | RepositoryRequirementError, EmptyRepositoryError) |
|
44 | RepositoryRequirementError, EmptyRepositoryError) | |
45 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
45 | from rhodecode.model.changeset_status import ChangesetStatusModel | |
46 | from rhodecode.model.comment import CommentsModel |
|
46 | from rhodecode.model.comment import CommentsModel | |
47 | from rhodecode.model.db import (func, or_, PullRequest, PullRequestVersion, |
|
47 | from rhodecode.model.db import (func, or_, PullRequest, PullRequestVersion, | |
48 | ChangesetComment, ChangesetStatus, Repository) |
|
48 | ChangesetComment, ChangesetStatus, Repository) | |
49 | from rhodecode.model.forms import PullRequestForm |
|
49 | from rhodecode.model.forms import PullRequestForm | |
50 | from rhodecode.model.meta import Session |
|
50 | from rhodecode.model.meta import Session | |
51 | from rhodecode.model.pull_request import PullRequestModel, MergeCheck |
|
51 | from rhodecode.model.pull_request import PullRequestModel, MergeCheck | |
52 | from rhodecode.model.scm import ScmModel |
|
52 | from rhodecode.model.scm import ScmModel | |
53 |
|
53 | |||
54 | log = logging.getLogger(__name__) |
|
54 | log = logging.getLogger(__name__) | |
55 |
|
55 | |||
56 |
|
56 | |||
57 | class RepoPullRequestsView(RepoAppView, DataGridAppView): |
|
57 | class RepoPullRequestsView(RepoAppView, DataGridAppView): | |
58 |
|
58 | |||
59 | def load_default_context(self): |
|
59 | def load_default_context(self): | |
60 | c = self._get_local_tmpl_context(include_app_defaults=True) |
|
60 | c = self._get_local_tmpl_context(include_app_defaults=True) | |
61 | c.REVIEW_STATUS_APPROVED = ChangesetStatus.STATUS_APPROVED |
|
61 | c.REVIEW_STATUS_APPROVED = ChangesetStatus.STATUS_APPROVED | |
62 | c.REVIEW_STATUS_REJECTED = ChangesetStatus.STATUS_REJECTED |
|
62 | c.REVIEW_STATUS_REJECTED = ChangesetStatus.STATUS_REJECTED | |
63 | # backward compat., we use for OLD PRs a plain renderer |
|
63 | # backward compat., we use for OLD PRs a plain renderer | |
64 | c.renderer = 'plain' |
|
64 | c.renderer = 'plain' | |
65 | return c |
|
65 | return c | |
66 |
|
66 | |||
67 | def _get_pull_requests_list( |
|
67 | def _get_pull_requests_list( | |
68 | self, repo_name, source, filter_type, opened_by, statuses): |
|
68 | self, repo_name, source, filter_type, opened_by, statuses): | |
69 |
|
69 | |||
70 | draw, start, limit = self._extract_chunk(self.request) |
|
70 | draw, start, limit = self._extract_chunk(self.request) | |
71 | search_q, order_by, order_dir = self._extract_ordering(self.request) |
|
71 | search_q, order_by, order_dir = self._extract_ordering(self.request) | |
72 | _render = self.request.get_partial_renderer( |
|
72 | _render = self.request.get_partial_renderer( | |
73 | 'rhodecode:templates/data_table/_dt_elements.mako') |
|
73 | 'rhodecode:templates/data_table/_dt_elements.mako') | |
74 |
|
74 | |||
75 | # pagination |
|
75 | # pagination | |
76 |
|
76 | |||
77 | if filter_type == 'awaiting_review': |
|
77 | if filter_type == 'awaiting_review': | |
78 | pull_requests = PullRequestModel().get_awaiting_review( |
|
78 | pull_requests = PullRequestModel().get_awaiting_review( | |
79 | repo_name, search_q=search_q, source=source, opened_by=opened_by, |
|
79 | repo_name, search_q=search_q, source=source, opened_by=opened_by, | |
80 | statuses=statuses, offset=start, length=limit, |
|
80 | statuses=statuses, offset=start, length=limit, | |
81 | order_by=order_by, order_dir=order_dir) |
|
81 | order_by=order_by, order_dir=order_dir) | |
82 | pull_requests_total_count = PullRequestModel().count_awaiting_review( |
|
82 | pull_requests_total_count = PullRequestModel().count_awaiting_review( | |
83 | repo_name, search_q=search_q, source=source, statuses=statuses, |
|
83 | repo_name, search_q=search_q, source=source, statuses=statuses, | |
84 | opened_by=opened_by) |
|
84 | opened_by=opened_by) | |
85 | elif filter_type == 'awaiting_my_review': |
|
85 | elif filter_type == 'awaiting_my_review': | |
86 | pull_requests = PullRequestModel().get_awaiting_my_review( |
|
86 | pull_requests = PullRequestModel().get_awaiting_my_review( | |
87 | repo_name, search_q=search_q, source=source, opened_by=opened_by, |
|
87 | repo_name, search_q=search_q, source=source, opened_by=opened_by, | |
88 | user_id=self._rhodecode_user.user_id, statuses=statuses, |
|
88 | user_id=self._rhodecode_user.user_id, statuses=statuses, | |
89 | offset=start, length=limit, order_by=order_by, |
|
89 | offset=start, length=limit, order_by=order_by, | |
90 | order_dir=order_dir) |
|
90 | order_dir=order_dir) | |
91 | pull_requests_total_count = PullRequestModel().count_awaiting_my_review( |
|
91 | pull_requests_total_count = PullRequestModel().count_awaiting_my_review( | |
92 | repo_name, search_q=search_q, source=source, user_id=self._rhodecode_user.user_id, |
|
92 | repo_name, search_q=search_q, source=source, user_id=self._rhodecode_user.user_id, | |
93 | statuses=statuses, opened_by=opened_by) |
|
93 | statuses=statuses, opened_by=opened_by) | |
94 | else: |
|
94 | else: | |
95 | pull_requests = PullRequestModel().get_all( |
|
95 | pull_requests = PullRequestModel().get_all( | |
96 | repo_name, search_q=search_q, source=source, opened_by=opened_by, |
|
96 | repo_name, search_q=search_q, source=source, opened_by=opened_by, | |
97 | statuses=statuses, offset=start, length=limit, |
|
97 | statuses=statuses, offset=start, length=limit, | |
98 | order_by=order_by, order_dir=order_dir) |
|
98 | order_by=order_by, order_dir=order_dir) | |
99 | pull_requests_total_count = PullRequestModel().count_all( |
|
99 | pull_requests_total_count = PullRequestModel().count_all( | |
100 | repo_name, search_q=search_q, source=source, statuses=statuses, |
|
100 | repo_name, search_q=search_q, source=source, statuses=statuses, | |
101 | opened_by=opened_by) |
|
101 | opened_by=opened_by) | |
102 |
|
102 | |||
103 | data = [] |
|
103 | data = [] | |
104 | comments_model = CommentsModel() |
|
104 | comments_model = CommentsModel() | |
105 | for pr in pull_requests: |
|
105 | for pr in pull_requests: | |
106 | comments = comments_model.get_all_comments( |
|
106 | comments = comments_model.get_all_comments( | |
107 | self.db_repo.repo_id, pull_request=pr) |
|
107 | self.db_repo.repo_id, pull_request=pr) | |
108 |
|
108 | |||
109 | data.append({ |
|
109 | data.append({ | |
110 | 'name': _render('pullrequest_name', |
|
110 | 'name': _render('pullrequest_name', | |
111 |
pr.pull_request_id, pr. |
|
111 | pr.pull_request_id, pr.pull_request_state, | |
112 | pr.target_repo.repo_name), |
|
112 | pr.work_in_progress, pr.target_repo.repo_name), | |
113 | 'name_raw': pr.pull_request_id, |
|
113 | 'name_raw': pr.pull_request_id, | |
114 | 'status': _render('pullrequest_status', |
|
114 | 'status': _render('pullrequest_status', | |
115 | pr.calculated_review_status()), |
|
115 | pr.calculated_review_status()), | |
116 | 'title': _render('pullrequest_title', pr.title, pr.description), |
|
116 | 'title': _render('pullrequest_title', pr.title, pr.description), | |
117 | 'description': h.escape(pr.description), |
|
117 | 'description': h.escape(pr.description), | |
118 | 'updated_on': _render('pullrequest_updated_on', |
|
118 | 'updated_on': _render('pullrequest_updated_on', | |
119 | h.datetime_to_time(pr.updated_on)), |
|
119 | h.datetime_to_time(pr.updated_on)), | |
120 | 'updated_on_raw': h.datetime_to_time(pr.updated_on), |
|
120 | 'updated_on_raw': h.datetime_to_time(pr.updated_on), | |
121 | 'created_on': _render('pullrequest_updated_on', |
|
121 | 'created_on': _render('pullrequest_updated_on', | |
122 | h.datetime_to_time(pr.created_on)), |
|
122 | h.datetime_to_time(pr.created_on)), | |
123 | 'created_on_raw': h.datetime_to_time(pr.created_on), |
|
123 | 'created_on_raw': h.datetime_to_time(pr.created_on), | |
124 | 'state': pr.pull_request_state, |
|
124 | 'state': pr.pull_request_state, | |
125 | 'author': _render('pullrequest_author', |
|
125 | 'author': _render('pullrequest_author', | |
126 | pr.author.full_contact, ), |
|
126 | pr.author.full_contact, ), | |
127 | 'author_raw': pr.author.full_name, |
|
127 | 'author_raw': pr.author.full_name, | |
128 | 'comments': _render('pullrequest_comments', len(comments)), |
|
128 | 'comments': _render('pullrequest_comments', len(comments)), | |
129 | 'comments_raw': len(comments), |
|
129 | 'comments_raw': len(comments), | |
130 | 'closed': pr.is_closed(), |
|
130 | 'closed': pr.is_closed(), | |
131 | }) |
|
131 | }) | |
132 |
|
132 | |||
133 | data = ({ |
|
133 | data = ({ | |
134 | 'draw': draw, |
|
134 | 'draw': draw, | |
135 | 'data': data, |
|
135 | 'data': data, | |
136 | 'recordsTotal': pull_requests_total_count, |
|
136 | 'recordsTotal': pull_requests_total_count, | |
137 | 'recordsFiltered': pull_requests_total_count, |
|
137 | 'recordsFiltered': pull_requests_total_count, | |
138 | }) |
|
138 | }) | |
139 | return data |
|
139 | return data | |
140 |
|
140 | |||
141 | @LoginRequired() |
|
141 | @LoginRequired() | |
142 | @HasRepoPermissionAnyDecorator( |
|
142 | @HasRepoPermissionAnyDecorator( | |
143 | 'repository.read', 'repository.write', 'repository.admin') |
|
143 | 'repository.read', 'repository.write', 'repository.admin') | |
144 | @view_config( |
|
144 | @view_config( | |
145 | route_name='pullrequest_show_all', request_method='GET', |
|
145 | route_name='pullrequest_show_all', request_method='GET', | |
146 | renderer='rhodecode:templates/pullrequests/pullrequests.mako') |
|
146 | renderer='rhodecode:templates/pullrequests/pullrequests.mako') | |
147 | def pull_request_list(self): |
|
147 | def pull_request_list(self): | |
148 | c = self.load_default_context() |
|
148 | c = self.load_default_context() | |
149 |
|
149 | |||
150 | req_get = self.request.GET |
|
150 | req_get = self.request.GET | |
151 | c.source = str2bool(req_get.get('source')) |
|
151 | c.source = str2bool(req_get.get('source')) | |
152 | c.closed = str2bool(req_get.get('closed')) |
|
152 | c.closed = str2bool(req_get.get('closed')) | |
153 | c.my = str2bool(req_get.get('my')) |
|
153 | c.my = str2bool(req_get.get('my')) | |
154 | c.awaiting_review = str2bool(req_get.get('awaiting_review')) |
|
154 | c.awaiting_review = str2bool(req_get.get('awaiting_review')) | |
155 | c.awaiting_my_review = str2bool(req_get.get('awaiting_my_review')) |
|
155 | c.awaiting_my_review = str2bool(req_get.get('awaiting_my_review')) | |
156 |
|
156 | |||
157 | c.active = 'open' |
|
157 | c.active = 'open' | |
158 | if c.my: |
|
158 | if c.my: | |
159 | c.active = 'my' |
|
159 | c.active = 'my' | |
160 | if c.closed: |
|
160 | if c.closed: | |
161 | c.active = 'closed' |
|
161 | c.active = 'closed' | |
162 | if c.awaiting_review and not c.source: |
|
162 | if c.awaiting_review and not c.source: | |
163 | c.active = 'awaiting' |
|
163 | c.active = 'awaiting' | |
164 | if c.source and not c.awaiting_review: |
|
164 | if c.source and not c.awaiting_review: | |
165 | c.active = 'source' |
|
165 | c.active = 'source' | |
166 | if c.awaiting_my_review: |
|
166 | if c.awaiting_my_review: | |
167 | c.active = 'awaiting_my' |
|
167 | c.active = 'awaiting_my' | |
168 |
|
168 | |||
169 | return self._get_template_context(c) |
|
169 | return self._get_template_context(c) | |
170 |
|
170 | |||
171 | @LoginRequired() |
|
171 | @LoginRequired() | |
172 | @HasRepoPermissionAnyDecorator( |
|
172 | @HasRepoPermissionAnyDecorator( | |
173 | 'repository.read', 'repository.write', 'repository.admin') |
|
173 | 'repository.read', 'repository.write', 'repository.admin') | |
174 | @view_config( |
|
174 | @view_config( | |
175 | route_name='pullrequest_show_all_data', request_method='GET', |
|
175 | route_name='pullrequest_show_all_data', request_method='GET', | |
176 | renderer='json_ext', xhr=True) |
|
176 | renderer='json_ext', xhr=True) | |
177 | def pull_request_list_data(self): |
|
177 | def pull_request_list_data(self): | |
178 | self.load_default_context() |
|
178 | self.load_default_context() | |
179 |
|
179 | |||
180 | # additional filters |
|
180 | # additional filters | |
181 | req_get = self.request.GET |
|
181 | req_get = self.request.GET | |
182 | source = str2bool(req_get.get('source')) |
|
182 | source = str2bool(req_get.get('source')) | |
183 | closed = str2bool(req_get.get('closed')) |
|
183 | closed = str2bool(req_get.get('closed')) | |
184 | my = str2bool(req_get.get('my')) |
|
184 | my = str2bool(req_get.get('my')) | |
185 | awaiting_review = str2bool(req_get.get('awaiting_review')) |
|
185 | awaiting_review = str2bool(req_get.get('awaiting_review')) | |
186 | awaiting_my_review = str2bool(req_get.get('awaiting_my_review')) |
|
186 | awaiting_my_review = str2bool(req_get.get('awaiting_my_review')) | |
187 |
|
187 | |||
188 | filter_type = 'awaiting_review' if awaiting_review \ |
|
188 | filter_type = 'awaiting_review' if awaiting_review \ | |
189 | else 'awaiting_my_review' if awaiting_my_review \ |
|
189 | else 'awaiting_my_review' if awaiting_my_review \ | |
190 | else None |
|
190 | else None | |
191 |
|
191 | |||
192 | opened_by = None |
|
192 | opened_by = None | |
193 | if my: |
|
193 | if my: | |
194 | opened_by = [self._rhodecode_user.user_id] |
|
194 | opened_by = [self._rhodecode_user.user_id] | |
195 |
|
195 | |||
196 | statuses = [PullRequest.STATUS_NEW, PullRequest.STATUS_OPEN] |
|
196 | statuses = [PullRequest.STATUS_NEW, PullRequest.STATUS_OPEN] | |
197 | if closed: |
|
197 | if closed: | |
198 | statuses = [PullRequest.STATUS_CLOSED] |
|
198 | statuses = [PullRequest.STATUS_CLOSED] | |
199 |
|
199 | |||
200 | data = self._get_pull_requests_list( |
|
200 | data = self._get_pull_requests_list( | |
201 | repo_name=self.db_repo_name, source=source, |
|
201 | repo_name=self.db_repo_name, source=source, | |
202 | filter_type=filter_type, opened_by=opened_by, statuses=statuses) |
|
202 | filter_type=filter_type, opened_by=opened_by, statuses=statuses) | |
203 |
|
203 | |||
204 | return data |
|
204 | return data | |
205 |
|
205 | |||
206 | def _is_diff_cache_enabled(self, target_repo): |
|
206 | def _is_diff_cache_enabled(self, target_repo): | |
207 | caching_enabled = self._get_general_setting( |
|
207 | caching_enabled = self._get_general_setting( | |
208 | target_repo, 'rhodecode_diff_cache') |
|
208 | target_repo, 'rhodecode_diff_cache') | |
209 | log.debug('Diff caching enabled: %s', caching_enabled) |
|
209 | log.debug('Diff caching enabled: %s', caching_enabled) | |
210 | return caching_enabled |
|
210 | return caching_enabled | |
211 |
|
211 | |||
212 | def _get_diffset(self, source_repo_name, source_repo, |
|
212 | def _get_diffset(self, source_repo_name, source_repo, | |
213 | source_ref_id, target_ref_id, |
|
213 | source_ref_id, target_ref_id, | |
214 | target_commit, source_commit, diff_limit, file_limit, |
|
214 | target_commit, source_commit, diff_limit, file_limit, | |
215 | fulldiff, hide_whitespace_changes, diff_context): |
|
215 | fulldiff, hide_whitespace_changes, diff_context): | |
216 |
|
216 | |||
217 | vcs_diff = PullRequestModel().get_diff( |
|
217 | vcs_diff = PullRequestModel().get_diff( | |
218 | source_repo, source_ref_id, target_ref_id, |
|
218 | source_repo, source_ref_id, target_ref_id, | |
219 | hide_whitespace_changes, diff_context) |
|
219 | hide_whitespace_changes, diff_context) | |
220 |
|
220 | |||
221 | diff_processor = diffs.DiffProcessor( |
|
221 | diff_processor = diffs.DiffProcessor( | |
222 | vcs_diff, format='newdiff', diff_limit=diff_limit, |
|
222 | vcs_diff, format='newdiff', diff_limit=diff_limit, | |
223 | file_limit=file_limit, show_full_diff=fulldiff) |
|
223 | file_limit=file_limit, show_full_diff=fulldiff) | |
224 |
|
224 | |||
225 | _parsed = diff_processor.prepare() |
|
225 | _parsed = diff_processor.prepare() | |
226 |
|
226 | |||
227 | diffset = codeblocks.DiffSet( |
|
227 | diffset = codeblocks.DiffSet( | |
228 | repo_name=self.db_repo_name, |
|
228 | repo_name=self.db_repo_name, | |
229 | source_repo_name=source_repo_name, |
|
229 | source_repo_name=source_repo_name, | |
230 | source_node_getter=codeblocks.diffset_node_getter(target_commit), |
|
230 | source_node_getter=codeblocks.diffset_node_getter(target_commit), | |
231 | target_node_getter=codeblocks.diffset_node_getter(source_commit), |
|
231 | target_node_getter=codeblocks.diffset_node_getter(source_commit), | |
232 | ) |
|
232 | ) | |
233 | diffset = self.path_filter.render_patchset_filtered( |
|
233 | diffset = self.path_filter.render_patchset_filtered( | |
234 | diffset, _parsed, target_commit.raw_id, source_commit.raw_id) |
|
234 | diffset, _parsed, target_commit.raw_id, source_commit.raw_id) | |
235 |
|
235 | |||
236 | return diffset |
|
236 | return diffset | |
237 |
|
237 | |||
238 | def _get_range_diffset(self, source_scm, source_repo, |
|
238 | def _get_range_diffset(self, source_scm, source_repo, | |
239 | commit1, commit2, diff_limit, file_limit, |
|
239 | commit1, commit2, diff_limit, file_limit, | |
240 | fulldiff, hide_whitespace_changes, diff_context): |
|
240 | fulldiff, hide_whitespace_changes, diff_context): | |
241 | vcs_diff = source_scm.get_diff( |
|
241 | vcs_diff = source_scm.get_diff( | |
242 | commit1, commit2, |
|
242 | commit1, commit2, | |
243 | ignore_whitespace=hide_whitespace_changes, |
|
243 | ignore_whitespace=hide_whitespace_changes, | |
244 | context=diff_context) |
|
244 | context=diff_context) | |
245 |
|
245 | |||
246 | diff_processor = diffs.DiffProcessor( |
|
246 | diff_processor = diffs.DiffProcessor( | |
247 | vcs_diff, format='newdiff', diff_limit=diff_limit, |
|
247 | vcs_diff, format='newdiff', diff_limit=diff_limit, | |
248 | file_limit=file_limit, show_full_diff=fulldiff) |
|
248 | file_limit=file_limit, show_full_diff=fulldiff) | |
249 |
|
249 | |||
250 | _parsed = diff_processor.prepare() |
|
250 | _parsed = diff_processor.prepare() | |
251 |
|
251 | |||
252 | diffset = codeblocks.DiffSet( |
|
252 | diffset = codeblocks.DiffSet( | |
253 | repo_name=source_repo.repo_name, |
|
253 | repo_name=source_repo.repo_name, | |
254 | source_node_getter=codeblocks.diffset_node_getter(commit1), |
|
254 | source_node_getter=codeblocks.diffset_node_getter(commit1), | |
255 | target_node_getter=codeblocks.diffset_node_getter(commit2)) |
|
255 | target_node_getter=codeblocks.diffset_node_getter(commit2)) | |
256 |
|
256 | |||
257 | diffset = self.path_filter.render_patchset_filtered( |
|
257 | diffset = self.path_filter.render_patchset_filtered( | |
258 | diffset, _parsed, commit1.raw_id, commit2.raw_id) |
|
258 | diffset, _parsed, commit1.raw_id, commit2.raw_id) | |
259 |
|
259 | |||
260 | return diffset |
|
260 | return diffset | |
261 |
|
261 | |||
262 | @LoginRequired() |
|
262 | @LoginRequired() | |
263 | @HasRepoPermissionAnyDecorator( |
|
263 | @HasRepoPermissionAnyDecorator( | |
264 | 'repository.read', 'repository.write', 'repository.admin') |
|
264 | 'repository.read', 'repository.write', 'repository.admin') | |
265 | @view_config( |
|
265 | @view_config( | |
266 | route_name='pullrequest_show', request_method='GET', |
|
266 | route_name='pullrequest_show', request_method='GET', | |
267 | renderer='rhodecode:templates/pullrequests/pullrequest_show.mako') |
|
267 | renderer='rhodecode:templates/pullrequests/pullrequest_show.mako') | |
268 | def pull_request_show(self): |
|
268 | def pull_request_show(self): | |
269 | _ = self.request.translate |
|
269 | _ = self.request.translate | |
270 | c = self.load_default_context() |
|
270 | c = self.load_default_context() | |
271 |
|
271 | |||
272 | pull_request = PullRequest.get_or_404( |
|
272 | pull_request = PullRequest.get_or_404( | |
273 | self.request.matchdict['pull_request_id']) |
|
273 | self.request.matchdict['pull_request_id']) | |
274 | pull_request_id = pull_request.pull_request_id |
|
274 | pull_request_id = pull_request.pull_request_id | |
275 |
|
275 | |||
276 | if pull_request.pull_request_state != PullRequest.STATE_CREATED: |
|
276 | c.state_progressing = pull_request.is_state_changing() | |
277 | log.debug('show: forbidden because pull request is in state %s', |
|
|||
278 | pull_request.pull_request_state) |
|
|||
279 | msg = _(u'Cannot show pull requests in state other than `{}`. ' |
|
|||
280 | u'Current state is: `{}`').format(PullRequest.STATE_CREATED, |
|
|||
281 | pull_request.pull_request_state) |
|
|||
282 | h.flash(msg, category='error') |
|
|||
283 | raise HTTPFound(h.route_path('pullrequest_show_all', |
|
|||
284 | repo_name=self.db_repo_name)) |
|
|||
285 |
|
277 | |||
286 | version = self.request.GET.get('version') |
|
278 | version = self.request.GET.get('version') | |
287 | from_version = self.request.GET.get('from_version') or version |
|
279 | from_version = self.request.GET.get('from_version') or version | |
288 | merge_checks = self.request.GET.get('merge_checks') |
|
280 | merge_checks = self.request.GET.get('merge_checks') | |
289 | c.fulldiff = str2bool(self.request.GET.get('fulldiff')) |
|
281 | c.fulldiff = str2bool(self.request.GET.get('fulldiff')) | |
290 |
|
282 | |||
291 | # fetch global flags of ignore ws or context lines |
|
283 | # fetch global flags of ignore ws or context lines | |
292 | diff_context = diffs.get_diff_context(self.request) |
|
284 | diff_context = diffs.get_diff_context(self.request) | |
293 | hide_whitespace_changes = diffs.get_diff_whitespace_flag(self.request) |
|
285 | hide_whitespace_changes = diffs.get_diff_whitespace_flag(self.request) | |
294 |
|
286 | |||
295 | force_refresh = str2bool(self.request.GET.get('force_refresh')) |
|
287 | force_refresh = str2bool(self.request.GET.get('force_refresh')) | |
296 |
|
288 | |||
297 | (pull_request_latest, |
|
289 | (pull_request_latest, | |
298 | pull_request_at_ver, |
|
290 | pull_request_at_ver, | |
299 | pull_request_display_obj, |
|
291 | pull_request_display_obj, | |
300 | at_version) = PullRequestModel().get_pr_version( |
|
292 | at_version) = PullRequestModel().get_pr_version( | |
301 | pull_request_id, version=version) |
|
293 | pull_request_id, version=version) | |
302 | pr_closed = pull_request_latest.is_closed() |
|
294 | pr_closed = pull_request_latest.is_closed() | |
303 |
|
295 | |||
304 | if pr_closed and (version or from_version): |
|
296 | if pr_closed and (version or from_version): | |
305 | # not allow to browse versions |
|
297 | # not allow to browse versions | |
306 | raise HTTPFound(h.route_path( |
|
298 | raise HTTPFound(h.route_path( | |
307 | 'pullrequest_show', repo_name=self.db_repo_name, |
|
299 | 'pullrequest_show', repo_name=self.db_repo_name, | |
308 | pull_request_id=pull_request_id)) |
|
300 | pull_request_id=pull_request_id)) | |
309 |
|
301 | |||
310 | versions = pull_request_display_obj.versions() |
|
302 | versions = pull_request_display_obj.versions() | |
311 | # used to store per-commit range diffs |
|
303 | # used to store per-commit range diffs | |
312 | c.changes = collections.OrderedDict() |
|
304 | c.changes = collections.OrderedDict() | |
313 | c.range_diff_on = self.request.GET.get('range-diff') == "1" |
|
305 | c.range_diff_on = self.request.GET.get('range-diff') == "1" | |
314 |
|
306 | |||
315 | c.at_version = at_version |
|
307 | c.at_version = at_version | |
316 | c.at_version_num = (at_version |
|
308 | c.at_version_num = (at_version | |
317 | if at_version and at_version != 'latest' |
|
309 | if at_version and at_version != 'latest' | |
318 | else None) |
|
310 | else None) | |
319 | c.at_version_pos = ChangesetComment.get_index_from_version( |
|
311 | c.at_version_pos = ChangesetComment.get_index_from_version( | |
320 | c.at_version_num, versions) |
|
312 | c.at_version_num, versions) | |
321 |
|
313 | |||
322 | (prev_pull_request_latest, |
|
314 | (prev_pull_request_latest, | |
323 | prev_pull_request_at_ver, |
|
315 | prev_pull_request_at_ver, | |
324 | prev_pull_request_display_obj, |
|
316 | prev_pull_request_display_obj, | |
325 | prev_at_version) = PullRequestModel().get_pr_version( |
|
317 | prev_at_version) = PullRequestModel().get_pr_version( | |
326 | pull_request_id, version=from_version) |
|
318 | pull_request_id, version=from_version) | |
327 |
|
319 | |||
328 | c.from_version = prev_at_version |
|
320 | c.from_version = prev_at_version | |
329 | c.from_version_num = (prev_at_version |
|
321 | c.from_version_num = (prev_at_version | |
330 | if prev_at_version and prev_at_version != 'latest' |
|
322 | if prev_at_version and prev_at_version != 'latest' | |
331 | else None) |
|
323 | else None) | |
332 | c.from_version_pos = ChangesetComment.get_index_from_version( |
|
324 | c.from_version_pos = ChangesetComment.get_index_from_version( | |
333 | c.from_version_num, versions) |
|
325 | c.from_version_num, versions) | |
334 |
|
326 | |||
335 | # define if we're in COMPARE mode or VIEW at version mode |
|
327 | # define if we're in COMPARE mode or VIEW at version mode | |
336 | compare = at_version != prev_at_version |
|
328 | compare = at_version != prev_at_version | |
337 |
|
329 | |||
338 | # pull_requests repo_name we opened it against |
|
330 | # pull_requests repo_name we opened it against | |
339 | # ie. target_repo must match |
|
331 | # ie. target_repo must match | |
340 | if self.db_repo_name != pull_request_at_ver.target_repo.repo_name: |
|
332 | if self.db_repo_name != pull_request_at_ver.target_repo.repo_name: | |
341 | raise HTTPNotFound() |
|
333 | raise HTTPNotFound() | |
342 |
|
334 | |||
343 | c.shadow_clone_url = PullRequestModel().get_shadow_clone_url( |
|
335 | c.shadow_clone_url = PullRequestModel().get_shadow_clone_url( | |
344 | pull_request_at_ver) |
|
336 | pull_request_at_ver) | |
345 |
|
337 | |||
346 | c.pull_request = pull_request_display_obj |
|
338 | c.pull_request = pull_request_display_obj | |
347 | c.renderer = pull_request_at_ver.description_renderer or c.renderer |
|
339 | c.renderer = pull_request_at_ver.description_renderer or c.renderer | |
348 | c.pull_request_latest = pull_request_latest |
|
340 | c.pull_request_latest = pull_request_latest | |
349 |
|
341 | |||
350 | if compare or (at_version and not at_version == 'latest'): |
|
342 | if compare or (at_version and not at_version == 'latest'): | |
351 | c.allowed_to_change_status = False |
|
343 | c.allowed_to_change_status = False | |
352 | c.allowed_to_update = False |
|
344 | c.allowed_to_update = False | |
353 | c.allowed_to_merge = False |
|
345 | c.allowed_to_merge = False | |
354 | c.allowed_to_delete = False |
|
346 | c.allowed_to_delete = False | |
355 | c.allowed_to_comment = False |
|
347 | c.allowed_to_comment = False | |
356 | c.allowed_to_close = False |
|
348 | c.allowed_to_close = False | |
357 | else: |
|
349 | else: | |
358 | can_change_status = PullRequestModel().check_user_change_status( |
|
350 | can_change_status = PullRequestModel().check_user_change_status( | |
359 | pull_request_at_ver, self._rhodecode_user) |
|
351 | pull_request_at_ver, self._rhodecode_user) | |
360 | c.allowed_to_change_status = can_change_status and not pr_closed |
|
352 | c.allowed_to_change_status = can_change_status and not pr_closed | |
361 |
|
353 | |||
362 | c.allowed_to_update = PullRequestModel().check_user_update( |
|
354 | c.allowed_to_update = PullRequestModel().check_user_update( | |
363 | pull_request_latest, self._rhodecode_user) and not pr_closed |
|
355 | pull_request_latest, self._rhodecode_user) and not pr_closed | |
364 | c.allowed_to_merge = PullRequestModel().check_user_merge( |
|
356 | c.allowed_to_merge = PullRequestModel().check_user_merge( | |
365 | pull_request_latest, self._rhodecode_user) and not pr_closed |
|
357 | pull_request_latest, self._rhodecode_user) and not pr_closed | |
366 | c.allowed_to_delete = PullRequestModel().check_user_delete( |
|
358 | c.allowed_to_delete = PullRequestModel().check_user_delete( | |
367 | pull_request_latest, self._rhodecode_user) and not pr_closed |
|
359 | pull_request_latest, self._rhodecode_user) and not pr_closed | |
368 | c.allowed_to_comment = not pr_closed |
|
360 | c.allowed_to_comment = not pr_closed | |
369 | c.allowed_to_close = c.allowed_to_merge and not pr_closed |
|
361 | c.allowed_to_close = c.allowed_to_merge and not pr_closed | |
370 |
|
362 | |||
371 | c.forbid_adding_reviewers = False |
|
363 | c.forbid_adding_reviewers = False | |
372 | c.forbid_author_to_review = False |
|
364 | c.forbid_author_to_review = False | |
373 | c.forbid_commit_author_to_review = False |
|
365 | c.forbid_commit_author_to_review = False | |
374 |
|
366 | |||
375 | if pull_request_latest.reviewer_data and \ |
|
367 | if pull_request_latest.reviewer_data and \ | |
376 | 'rules' in pull_request_latest.reviewer_data: |
|
368 | 'rules' in pull_request_latest.reviewer_data: | |
377 | rules = pull_request_latest.reviewer_data['rules'] or {} |
|
369 | rules = pull_request_latest.reviewer_data['rules'] or {} | |
378 | try: |
|
370 | try: | |
379 | c.forbid_adding_reviewers = rules.get( |
|
371 | c.forbid_adding_reviewers = rules.get( | |
380 | 'forbid_adding_reviewers') |
|
372 | 'forbid_adding_reviewers') | |
381 | c.forbid_author_to_review = rules.get( |
|
373 | c.forbid_author_to_review = rules.get( | |
382 | 'forbid_author_to_review') |
|
374 | 'forbid_author_to_review') | |
383 | c.forbid_commit_author_to_review = rules.get( |
|
375 | c.forbid_commit_author_to_review = rules.get( | |
384 | 'forbid_commit_author_to_review') |
|
376 | 'forbid_commit_author_to_review') | |
385 | except Exception: |
|
377 | except Exception: | |
386 | pass |
|
378 | pass | |
387 |
|
379 | |||
388 | # check merge capabilities |
|
380 | # check merge capabilities | |
389 | _merge_check = MergeCheck.validate( |
|
381 | _merge_check = MergeCheck.validate( | |
390 | pull_request_latest, auth_user=self._rhodecode_user, |
|
382 | pull_request_latest, auth_user=self._rhodecode_user, | |
391 | translator=self.request.translate, |
|
383 | translator=self.request.translate, | |
392 | force_shadow_repo_refresh=force_refresh) |
|
384 | force_shadow_repo_refresh=force_refresh) | |
393 | c.pr_merge_errors = _merge_check.error_details |
|
385 | c.pr_merge_errors = _merge_check.error_details | |
394 | c.pr_merge_possible = not _merge_check.failed |
|
386 | c.pr_merge_possible = not _merge_check.failed | |
395 | c.pr_merge_message = _merge_check.merge_msg |
|
387 | c.pr_merge_message = _merge_check.merge_msg | |
396 |
|
388 | |||
397 | c.pr_merge_info = MergeCheck.get_merge_conditions( |
|
389 | c.pr_merge_info = MergeCheck.get_merge_conditions( | |
398 | pull_request_latest, translator=self.request.translate) |
|
390 | pull_request_latest, translator=self.request.translate) | |
399 |
|
391 | |||
400 | c.pull_request_review_status = _merge_check.review_status |
|
392 | c.pull_request_review_status = _merge_check.review_status | |
401 | if merge_checks: |
|
393 | if merge_checks: | |
402 | self.request.override_renderer = \ |
|
394 | self.request.override_renderer = \ | |
403 | 'rhodecode:templates/pullrequests/pullrequest_merge_checks.mako' |
|
395 | 'rhodecode:templates/pullrequests/pullrequest_merge_checks.mako' | |
404 | return self._get_template_context(c) |
|
396 | return self._get_template_context(c) | |
405 |
|
397 | |||
406 | comments_model = CommentsModel() |
|
398 | comments_model = CommentsModel() | |
407 |
|
399 | |||
408 | # reviewers and statuses |
|
400 | # reviewers and statuses | |
409 | c.pull_request_reviewers = pull_request_at_ver.reviewers_statuses() |
|
401 | c.pull_request_reviewers = pull_request_at_ver.reviewers_statuses() | |
410 | allowed_reviewers = [x[0].user_id for x in c.pull_request_reviewers] |
|
402 | allowed_reviewers = [x[0].user_id for x in c.pull_request_reviewers] | |
411 |
|
403 | |||
412 | # GENERAL COMMENTS with versions # |
|
404 | # GENERAL COMMENTS with versions # | |
413 | q = comments_model._all_general_comments_of_pull_request(pull_request_latest) |
|
405 | q = comments_model._all_general_comments_of_pull_request(pull_request_latest) | |
414 | q = q.order_by(ChangesetComment.comment_id.asc()) |
|
406 | q = q.order_by(ChangesetComment.comment_id.asc()) | |
415 | general_comments = q |
|
407 | general_comments = q | |
416 |
|
408 | |||
417 | # pick comments we want to render at current version |
|
409 | # pick comments we want to render at current version | |
418 | c.comment_versions = comments_model.aggregate_comments( |
|
410 | c.comment_versions = comments_model.aggregate_comments( | |
419 | general_comments, versions, c.at_version_num) |
|
411 | general_comments, versions, c.at_version_num) | |
420 | c.comments = c.comment_versions[c.at_version_num]['until'] |
|
412 | c.comments = c.comment_versions[c.at_version_num]['until'] | |
421 |
|
413 | |||
422 | # INLINE COMMENTS with versions # |
|
414 | # INLINE COMMENTS with versions # | |
423 | q = comments_model._all_inline_comments_of_pull_request(pull_request_latest) |
|
415 | q = comments_model._all_inline_comments_of_pull_request(pull_request_latest) | |
424 | q = q.order_by(ChangesetComment.comment_id.asc()) |
|
416 | q = q.order_by(ChangesetComment.comment_id.asc()) | |
425 | inline_comments = q |
|
417 | inline_comments = q | |
426 |
|
418 | |||
427 | c.inline_versions = comments_model.aggregate_comments( |
|
419 | c.inline_versions = comments_model.aggregate_comments( | |
428 | inline_comments, versions, c.at_version_num, inline=True) |
|
420 | inline_comments, versions, c.at_version_num, inline=True) | |
429 |
|
421 | |||
430 | # TODOs |
|
422 | # TODOs | |
431 | c.unresolved_comments = CommentsModel() \ |
|
423 | c.unresolved_comments = CommentsModel() \ | |
432 | .get_pull_request_unresolved_todos(pull_request) |
|
424 | .get_pull_request_unresolved_todos(pull_request) | |
433 | c.resolved_comments = CommentsModel() \ |
|
425 | c.resolved_comments = CommentsModel() \ | |
434 | .get_pull_request_resolved_todos(pull_request) |
|
426 | .get_pull_request_resolved_todos(pull_request) | |
435 |
|
427 | |||
436 | # inject latest version |
|
428 | # inject latest version | |
437 | latest_ver = PullRequest.get_pr_display_object( |
|
429 | latest_ver = PullRequest.get_pr_display_object( | |
438 | pull_request_latest, pull_request_latest) |
|
430 | pull_request_latest, pull_request_latest) | |
439 |
|
431 | |||
440 | c.versions = versions + [latest_ver] |
|
432 | c.versions = versions + [latest_ver] | |
441 |
|
433 | |||
442 | # if we use version, then do not show later comments |
|
434 | # if we use version, then do not show later comments | |
443 | # than current version |
|
435 | # than current version | |
444 | display_inline_comments = collections.defaultdict( |
|
436 | display_inline_comments = collections.defaultdict( | |
445 | lambda: collections.defaultdict(list)) |
|
437 | lambda: collections.defaultdict(list)) | |
446 | for co in inline_comments: |
|
438 | for co in inline_comments: | |
447 | if c.at_version_num: |
|
439 | if c.at_version_num: | |
448 | # pick comments that are at least UPTO given version, so we |
|
440 | # pick comments that are at least UPTO given version, so we | |
449 | # don't render comments for higher version |
|
441 | # don't render comments for higher version | |
450 | should_render = co.pull_request_version_id and \ |
|
442 | should_render = co.pull_request_version_id and \ | |
451 | co.pull_request_version_id <= c.at_version_num |
|
443 | co.pull_request_version_id <= c.at_version_num | |
452 | else: |
|
444 | else: | |
453 | # showing all, for 'latest' |
|
445 | # showing all, for 'latest' | |
454 | should_render = True |
|
446 | should_render = True | |
455 |
|
447 | |||
456 | if should_render: |
|
448 | if should_render: | |
457 | display_inline_comments[co.f_path][co.line_no].append(co) |
|
449 | display_inline_comments[co.f_path][co.line_no].append(co) | |
458 |
|
450 | |||
459 | # load diff data into template context, if we use compare mode then |
|
451 | # load diff data into template context, if we use compare mode then | |
460 | # diff is calculated based on changes between versions of PR |
|
452 | # diff is calculated based on changes between versions of PR | |
461 |
|
453 | |||
462 | source_repo = pull_request_at_ver.source_repo |
|
454 | source_repo = pull_request_at_ver.source_repo | |
463 | source_ref_id = pull_request_at_ver.source_ref_parts.commit_id |
|
455 | source_ref_id = pull_request_at_ver.source_ref_parts.commit_id | |
464 |
|
456 | |||
465 | target_repo = pull_request_at_ver.target_repo |
|
457 | target_repo = pull_request_at_ver.target_repo | |
466 | target_ref_id = pull_request_at_ver.target_ref_parts.commit_id |
|
458 | target_ref_id = pull_request_at_ver.target_ref_parts.commit_id | |
467 |
|
459 | |||
468 | if compare: |
|
460 | if compare: | |
469 | # in compare switch the diff base to latest commit from prev version |
|
461 | # in compare switch the diff base to latest commit from prev version | |
470 | target_ref_id = prev_pull_request_display_obj.revisions[0] |
|
462 | target_ref_id = prev_pull_request_display_obj.revisions[0] | |
471 |
|
463 | |||
472 | # despite opening commits for bookmarks/branches/tags, we always |
|
464 | # despite opening commits for bookmarks/branches/tags, we always | |
473 | # convert this to rev to prevent changes after bookmark or branch change |
|
465 | # convert this to rev to prevent changes after bookmark or branch change | |
474 | c.source_ref_type = 'rev' |
|
466 | c.source_ref_type = 'rev' | |
475 | c.source_ref = source_ref_id |
|
467 | c.source_ref = source_ref_id | |
476 |
|
468 | |||
477 | c.target_ref_type = 'rev' |
|
469 | c.target_ref_type = 'rev' | |
478 | c.target_ref = target_ref_id |
|
470 | c.target_ref = target_ref_id | |
479 |
|
471 | |||
480 | c.source_repo = source_repo |
|
472 | c.source_repo = source_repo | |
481 | c.target_repo = target_repo |
|
473 | c.target_repo = target_repo | |
482 |
|
474 | |||
483 | c.commit_ranges = [] |
|
475 | c.commit_ranges = [] | |
484 | source_commit = EmptyCommit() |
|
476 | source_commit = EmptyCommit() | |
485 | target_commit = EmptyCommit() |
|
477 | target_commit = EmptyCommit() | |
486 | c.missing_requirements = False |
|
478 | c.missing_requirements = False | |
487 |
|
479 | |||
488 | source_scm = source_repo.scm_instance() |
|
480 | source_scm = source_repo.scm_instance() | |
489 | target_scm = target_repo.scm_instance() |
|
481 | target_scm = target_repo.scm_instance() | |
490 |
|
482 | |||
491 | shadow_scm = None |
|
483 | shadow_scm = None | |
492 | try: |
|
484 | try: | |
493 | shadow_scm = pull_request_latest.get_shadow_repo() |
|
485 | shadow_scm = pull_request_latest.get_shadow_repo() | |
494 | except Exception: |
|
486 | except Exception: | |
495 | log.debug('Failed to get shadow repo', exc_info=True) |
|
487 | log.debug('Failed to get shadow repo', exc_info=True) | |
496 | # try first the existing source_repo, and then shadow |
|
488 | # try first the existing source_repo, and then shadow | |
497 | # repo if we can obtain one |
|
489 | # repo if we can obtain one | |
498 | commits_source_repo = source_scm or shadow_scm |
|
490 | commits_source_repo = source_scm or shadow_scm | |
499 |
|
491 | |||
500 | c.commits_source_repo = commits_source_repo |
|
492 | c.commits_source_repo = commits_source_repo | |
501 | c.ancestor = None # set it to None, to hide it from PR view |
|
493 | c.ancestor = None # set it to None, to hide it from PR view | |
502 |
|
494 | |||
503 | # empty version means latest, so we keep this to prevent |
|
495 | # empty version means latest, so we keep this to prevent | |
504 | # double caching |
|
496 | # double caching | |
505 | version_normalized = version or 'latest' |
|
497 | version_normalized = version or 'latest' | |
506 | from_version_normalized = from_version or 'latest' |
|
498 | from_version_normalized = from_version or 'latest' | |
507 |
|
499 | |||
508 | cache_path = self.rhodecode_vcs_repo.get_create_shadow_cache_pr_path(target_repo) |
|
500 | cache_path = self.rhodecode_vcs_repo.get_create_shadow_cache_pr_path(target_repo) | |
509 | cache_file_path = diff_cache_exist( |
|
501 | cache_file_path = diff_cache_exist( | |
510 | cache_path, 'pull_request', pull_request_id, version_normalized, |
|
502 | cache_path, 'pull_request', pull_request_id, version_normalized, | |
511 | from_version_normalized, source_ref_id, target_ref_id, |
|
503 | from_version_normalized, source_ref_id, target_ref_id, | |
512 | hide_whitespace_changes, diff_context, c.fulldiff) |
|
504 | hide_whitespace_changes, diff_context, c.fulldiff) | |
513 |
|
505 | |||
514 | caching_enabled = self._is_diff_cache_enabled(c.target_repo) |
|
506 | caching_enabled = self._is_diff_cache_enabled(c.target_repo) | |
515 | force_recache = self.get_recache_flag() |
|
507 | force_recache = self.get_recache_flag() | |
516 |
|
508 | |||
517 | cached_diff = None |
|
509 | cached_diff = None | |
518 | if caching_enabled: |
|
510 | if caching_enabled: | |
519 | cached_diff = load_cached_diff(cache_file_path) |
|
511 | cached_diff = load_cached_diff(cache_file_path) | |
520 |
|
512 | |||
521 | has_proper_commit_cache = ( |
|
513 | has_proper_commit_cache = ( | |
522 | cached_diff and cached_diff.get('commits') |
|
514 | cached_diff and cached_diff.get('commits') | |
523 | and len(cached_diff.get('commits', [])) == 5 |
|
515 | and len(cached_diff.get('commits', [])) == 5 | |
524 | and cached_diff.get('commits')[0] |
|
516 | and cached_diff.get('commits')[0] | |
525 | and cached_diff.get('commits')[3]) |
|
517 | and cached_diff.get('commits')[3]) | |
526 |
|
518 | |||
527 | if not force_recache and not c.range_diff_on and has_proper_commit_cache: |
|
519 | if not force_recache and not c.range_diff_on and has_proper_commit_cache: | |
528 | diff_commit_cache = \ |
|
520 | diff_commit_cache = \ | |
529 | (ancestor_commit, commit_cache, missing_requirements, |
|
521 | (ancestor_commit, commit_cache, missing_requirements, | |
530 | source_commit, target_commit) = cached_diff['commits'] |
|
522 | source_commit, target_commit) = cached_diff['commits'] | |
531 | else: |
|
523 | else: | |
532 | diff_commit_cache = \ |
|
524 | diff_commit_cache = \ | |
533 | (ancestor_commit, commit_cache, missing_requirements, |
|
525 | (ancestor_commit, commit_cache, missing_requirements, | |
534 | source_commit, target_commit) = self.get_commits( |
|
526 | source_commit, target_commit) = self.get_commits( | |
535 | commits_source_repo, |
|
527 | commits_source_repo, | |
536 | pull_request_at_ver, |
|
528 | pull_request_at_ver, | |
537 | source_commit, |
|
529 | source_commit, | |
538 | source_ref_id, |
|
530 | source_ref_id, | |
539 | source_scm, |
|
531 | source_scm, | |
540 | target_commit, |
|
532 | target_commit, | |
541 | target_ref_id, |
|
533 | target_ref_id, | |
542 | target_scm) |
|
534 | target_scm) | |
543 |
|
535 | |||
544 | # register our commit range |
|
536 | # register our commit range | |
545 | for comm in commit_cache.values(): |
|
537 | for comm in commit_cache.values(): | |
546 | c.commit_ranges.append(comm) |
|
538 | c.commit_ranges.append(comm) | |
547 |
|
539 | |||
548 | c.missing_requirements = missing_requirements |
|
540 | c.missing_requirements = missing_requirements | |
549 | c.ancestor_commit = ancestor_commit |
|
541 | c.ancestor_commit = ancestor_commit | |
550 | c.statuses = source_repo.statuses( |
|
542 | c.statuses = source_repo.statuses( | |
551 | [x.raw_id for x in c.commit_ranges]) |
|
543 | [x.raw_id for x in c.commit_ranges]) | |
552 |
|
544 | |||
553 | # auto collapse if we have more than limit |
|
545 | # auto collapse if we have more than limit | |
554 | collapse_limit = diffs.DiffProcessor._collapse_commits_over |
|
546 | collapse_limit = diffs.DiffProcessor._collapse_commits_over | |
555 | c.collapse_all_commits = len(c.commit_ranges) > collapse_limit |
|
547 | c.collapse_all_commits = len(c.commit_ranges) > collapse_limit | |
556 | c.compare_mode = compare |
|
548 | c.compare_mode = compare | |
557 |
|
549 | |||
558 | # diff_limit is the old behavior, will cut off the whole diff |
|
550 | # diff_limit is the old behavior, will cut off the whole diff | |
559 | # if the limit is applied otherwise will just hide the |
|
551 | # if the limit is applied otherwise will just hide the | |
560 | # big files from the front-end |
|
552 | # big files from the front-end | |
561 | diff_limit = c.visual.cut_off_limit_diff |
|
553 | diff_limit = c.visual.cut_off_limit_diff | |
562 | file_limit = c.visual.cut_off_limit_file |
|
554 | file_limit = c.visual.cut_off_limit_file | |
563 |
|
555 | |||
564 | c.missing_commits = False |
|
556 | c.missing_commits = False | |
565 | if (c.missing_requirements |
|
557 | if (c.missing_requirements | |
566 | or isinstance(source_commit, EmptyCommit) |
|
558 | or isinstance(source_commit, EmptyCommit) | |
567 | or source_commit == target_commit): |
|
559 | or source_commit == target_commit): | |
568 |
|
560 | |||
569 | c.missing_commits = True |
|
561 | c.missing_commits = True | |
570 | else: |
|
562 | else: | |
571 | c.inline_comments = display_inline_comments |
|
563 | c.inline_comments = display_inline_comments | |
572 |
|
564 | |||
573 | has_proper_diff_cache = cached_diff and cached_diff.get('commits') |
|
565 | has_proper_diff_cache = cached_diff and cached_diff.get('commits') | |
574 | if not force_recache and has_proper_diff_cache: |
|
566 | if not force_recache and has_proper_diff_cache: | |
575 | c.diffset = cached_diff['diff'] |
|
567 | c.diffset = cached_diff['diff'] | |
576 | (ancestor_commit, commit_cache, missing_requirements, |
|
568 | (ancestor_commit, commit_cache, missing_requirements, | |
577 | source_commit, target_commit) = cached_diff['commits'] |
|
569 | source_commit, target_commit) = cached_diff['commits'] | |
578 | else: |
|
570 | else: | |
579 | c.diffset = self._get_diffset( |
|
571 | c.diffset = self._get_diffset( | |
580 | c.source_repo.repo_name, commits_source_repo, |
|
572 | c.source_repo.repo_name, commits_source_repo, | |
581 | source_ref_id, target_ref_id, |
|
573 | source_ref_id, target_ref_id, | |
582 | target_commit, source_commit, |
|
574 | target_commit, source_commit, | |
583 | diff_limit, file_limit, c.fulldiff, |
|
575 | diff_limit, file_limit, c.fulldiff, | |
584 | hide_whitespace_changes, diff_context) |
|
576 | hide_whitespace_changes, diff_context) | |
585 |
|
577 | |||
586 | # save cached diff |
|
578 | # save cached diff | |
587 | if caching_enabled: |
|
579 | if caching_enabled: | |
588 | cache_diff(cache_file_path, c.diffset, diff_commit_cache) |
|
580 | cache_diff(cache_file_path, c.diffset, diff_commit_cache) | |
589 |
|
581 | |||
590 | c.limited_diff = c.diffset.limited_diff |
|
582 | c.limited_diff = c.diffset.limited_diff | |
591 |
|
583 | |||
592 | # calculate removed files that are bound to comments |
|
584 | # calculate removed files that are bound to comments | |
593 | comment_deleted_files = [ |
|
585 | comment_deleted_files = [ | |
594 | fname for fname in display_inline_comments |
|
586 | fname for fname in display_inline_comments | |
595 | if fname not in c.diffset.file_stats] |
|
587 | if fname not in c.diffset.file_stats] | |
596 |
|
588 | |||
597 | c.deleted_files_comments = collections.defaultdict(dict) |
|
589 | c.deleted_files_comments = collections.defaultdict(dict) | |
598 | for fname, per_line_comments in display_inline_comments.items(): |
|
590 | for fname, per_line_comments in display_inline_comments.items(): | |
599 | if fname in comment_deleted_files: |
|
591 | if fname in comment_deleted_files: | |
600 | c.deleted_files_comments[fname]['stats'] = 0 |
|
592 | c.deleted_files_comments[fname]['stats'] = 0 | |
601 | c.deleted_files_comments[fname]['comments'] = list() |
|
593 | c.deleted_files_comments[fname]['comments'] = list() | |
602 | for lno, comments in per_line_comments.items(): |
|
594 | for lno, comments in per_line_comments.items(): | |
603 | c.deleted_files_comments[fname]['comments'].extend(comments) |
|
595 | c.deleted_files_comments[fname]['comments'].extend(comments) | |
604 |
|
596 | |||
605 | # maybe calculate the range diff |
|
597 | # maybe calculate the range diff | |
606 | if c.range_diff_on: |
|
598 | if c.range_diff_on: | |
607 | # TODO(marcink): set whitespace/context |
|
599 | # TODO(marcink): set whitespace/context | |
608 | context_lcl = 3 |
|
600 | context_lcl = 3 | |
609 | ign_whitespace_lcl = False |
|
601 | ign_whitespace_lcl = False | |
610 |
|
602 | |||
611 | for commit in c.commit_ranges: |
|
603 | for commit in c.commit_ranges: | |
612 | commit2 = commit |
|
604 | commit2 = commit | |
613 | commit1 = commit.first_parent |
|
605 | commit1 = commit.first_parent | |
614 |
|
606 | |||
615 | range_diff_cache_file_path = diff_cache_exist( |
|
607 | range_diff_cache_file_path = diff_cache_exist( | |
616 | cache_path, 'diff', commit.raw_id, |
|
608 | cache_path, 'diff', commit.raw_id, | |
617 | ign_whitespace_lcl, context_lcl, c.fulldiff) |
|
609 | ign_whitespace_lcl, context_lcl, c.fulldiff) | |
618 |
|
610 | |||
619 | cached_diff = None |
|
611 | cached_diff = None | |
620 | if caching_enabled: |
|
612 | if caching_enabled: | |
621 | cached_diff = load_cached_diff(range_diff_cache_file_path) |
|
613 | cached_diff = load_cached_diff(range_diff_cache_file_path) | |
622 |
|
614 | |||
623 | has_proper_diff_cache = cached_diff and cached_diff.get('diff') |
|
615 | has_proper_diff_cache = cached_diff and cached_diff.get('diff') | |
624 | if not force_recache and has_proper_diff_cache: |
|
616 | if not force_recache and has_proper_diff_cache: | |
625 | diffset = cached_diff['diff'] |
|
617 | diffset = cached_diff['diff'] | |
626 | else: |
|
618 | else: | |
627 | diffset = self._get_range_diffset( |
|
619 | diffset = self._get_range_diffset( | |
628 | source_scm, source_repo, |
|
620 | source_scm, source_repo, | |
629 | commit1, commit2, diff_limit, file_limit, |
|
621 | commit1, commit2, diff_limit, file_limit, | |
630 | c.fulldiff, ign_whitespace_lcl, context_lcl |
|
622 | c.fulldiff, ign_whitespace_lcl, context_lcl | |
631 | ) |
|
623 | ) | |
632 |
|
624 | |||
633 | # save cached diff |
|
625 | # save cached diff | |
634 | if caching_enabled: |
|
626 | if caching_enabled: | |
635 | cache_diff(range_diff_cache_file_path, diffset, None) |
|
627 | cache_diff(range_diff_cache_file_path, diffset, None) | |
636 |
|
628 | |||
637 | c.changes[commit.raw_id] = diffset |
|
629 | c.changes[commit.raw_id] = diffset | |
638 |
|
630 | |||
639 | # this is a hack to properly display links, when creating PR, the |
|
631 | # this is a hack to properly display links, when creating PR, the | |
640 | # compare view and others uses different notation, and |
|
632 | # compare view and others uses different notation, and | |
641 | # compare_commits.mako renders links based on the target_repo. |
|
633 | # compare_commits.mako renders links based on the target_repo. | |
642 | # We need to swap that here to generate it properly on the html side |
|
634 | # We need to swap that here to generate it properly on the html side | |
643 | c.target_repo = c.source_repo |
|
635 | c.target_repo = c.source_repo | |
644 |
|
636 | |||
645 | c.commit_statuses = ChangesetStatus.STATUSES |
|
637 | c.commit_statuses = ChangesetStatus.STATUSES | |
646 |
|
638 | |||
647 | c.show_version_changes = not pr_closed |
|
639 | c.show_version_changes = not pr_closed | |
648 | if c.show_version_changes: |
|
640 | if c.show_version_changes: | |
649 | cur_obj = pull_request_at_ver |
|
641 | cur_obj = pull_request_at_ver | |
650 | prev_obj = prev_pull_request_at_ver |
|
642 | prev_obj = prev_pull_request_at_ver | |
651 |
|
643 | |||
652 | old_commit_ids = prev_obj.revisions |
|
644 | old_commit_ids = prev_obj.revisions | |
653 | new_commit_ids = cur_obj.revisions |
|
645 | new_commit_ids = cur_obj.revisions | |
654 | commit_changes = PullRequestModel()._calculate_commit_id_changes( |
|
646 | commit_changes = PullRequestModel()._calculate_commit_id_changes( | |
655 | old_commit_ids, new_commit_ids) |
|
647 | old_commit_ids, new_commit_ids) | |
656 | c.commit_changes_summary = commit_changes |
|
648 | c.commit_changes_summary = commit_changes | |
657 |
|
649 | |||
658 | # calculate the diff for commits between versions |
|
650 | # calculate the diff for commits between versions | |
659 | c.commit_changes = [] |
|
651 | c.commit_changes = [] | |
660 | mark = lambda cs, fw: list( |
|
652 | mark = lambda cs, fw: list( | |
661 | h.itertools.izip_longest([], cs, fillvalue=fw)) |
|
653 | h.itertools.izip_longest([], cs, fillvalue=fw)) | |
662 | for c_type, raw_id in mark(commit_changes.added, 'a') \ |
|
654 | for c_type, raw_id in mark(commit_changes.added, 'a') \ | |
663 | + mark(commit_changes.removed, 'r') \ |
|
655 | + mark(commit_changes.removed, 'r') \ | |
664 | + mark(commit_changes.common, 'c'): |
|
656 | + mark(commit_changes.common, 'c'): | |
665 |
|
657 | |||
666 | if raw_id in commit_cache: |
|
658 | if raw_id in commit_cache: | |
667 | commit = commit_cache[raw_id] |
|
659 | commit = commit_cache[raw_id] | |
668 | else: |
|
660 | else: | |
669 | try: |
|
661 | try: | |
670 | commit = commits_source_repo.get_commit(raw_id) |
|
662 | commit = commits_source_repo.get_commit(raw_id) | |
671 | except CommitDoesNotExistError: |
|
663 | except CommitDoesNotExistError: | |
672 | # in case we fail extracting still use "dummy" commit |
|
664 | # in case we fail extracting still use "dummy" commit | |
673 | # for display in commit diff |
|
665 | # for display in commit diff | |
674 | commit = h.AttributeDict( |
|
666 | commit = h.AttributeDict( | |
675 | {'raw_id': raw_id, |
|
667 | {'raw_id': raw_id, | |
676 | 'message': 'EMPTY or MISSING COMMIT'}) |
|
668 | 'message': 'EMPTY or MISSING COMMIT'}) | |
677 | c.commit_changes.append([c_type, commit]) |
|
669 | c.commit_changes.append([c_type, commit]) | |
678 |
|
670 | |||
679 | # current user review statuses for each version |
|
671 | # current user review statuses for each version | |
680 | c.review_versions = {} |
|
672 | c.review_versions = {} | |
681 | if self._rhodecode_user.user_id in allowed_reviewers: |
|
673 | if self._rhodecode_user.user_id in allowed_reviewers: | |
682 | for co in general_comments: |
|
674 | for co in general_comments: | |
683 | if co.author.user_id == self._rhodecode_user.user_id: |
|
675 | if co.author.user_id == self._rhodecode_user.user_id: | |
684 | status = co.status_change |
|
676 | status = co.status_change | |
685 | if status: |
|
677 | if status: | |
686 | _ver_pr = status[0].comment.pull_request_version_id |
|
678 | _ver_pr = status[0].comment.pull_request_version_id | |
687 | c.review_versions[_ver_pr] = status[0] |
|
679 | c.review_versions[_ver_pr] = status[0] | |
688 |
|
680 | |||
689 | return self._get_template_context(c) |
|
681 | return self._get_template_context(c) | |
690 |
|
682 | |||
691 | def get_commits( |
|
683 | def get_commits( | |
692 | self, commits_source_repo, pull_request_at_ver, source_commit, |
|
684 | self, commits_source_repo, pull_request_at_ver, source_commit, | |
693 | source_ref_id, source_scm, target_commit, target_ref_id, target_scm): |
|
685 | source_ref_id, source_scm, target_commit, target_ref_id, target_scm): | |
694 | commit_cache = collections.OrderedDict() |
|
686 | commit_cache = collections.OrderedDict() | |
695 | missing_requirements = False |
|
687 | missing_requirements = False | |
696 | try: |
|
688 | try: | |
697 | pre_load = ["author", "date", "message", "branch", "parents"] |
|
689 | pre_load = ["author", "date", "message", "branch", "parents"] | |
698 | show_revs = pull_request_at_ver.revisions |
|
690 | show_revs = pull_request_at_ver.revisions | |
699 | for rev in show_revs: |
|
691 | for rev in show_revs: | |
700 | comm = commits_source_repo.get_commit( |
|
692 | comm = commits_source_repo.get_commit( | |
701 | commit_id=rev, pre_load=pre_load) |
|
693 | commit_id=rev, pre_load=pre_load) | |
702 | commit_cache[comm.raw_id] = comm |
|
694 | commit_cache[comm.raw_id] = comm | |
703 |
|
695 | |||
704 | # Order here matters, we first need to get target, and then |
|
696 | # Order here matters, we first need to get target, and then | |
705 | # the source |
|
697 | # the source | |
706 | target_commit = commits_source_repo.get_commit( |
|
698 | target_commit = commits_source_repo.get_commit( | |
707 | commit_id=safe_str(target_ref_id)) |
|
699 | commit_id=safe_str(target_ref_id)) | |
708 |
|
700 | |||
709 | source_commit = commits_source_repo.get_commit( |
|
701 | source_commit = commits_source_repo.get_commit( | |
710 | commit_id=safe_str(source_ref_id)) |
|
702 | commit_id=safe_str(source_ref_id)) | |
711 | except CommitDoesNotExistError: |
|
703 | except CommitDoesNotExistError: | |
712 | log.warning( |
|
704 | log.warning( | |
713 | 'Failed to get commit from `{}` repo'.format( |
|
705 | 'Failed to get commit from `{}` repo'.format( | |
714 | commits_source_repo), exc_info=True) |
|
706 | commits_source_repo), exc_info=True) | |
715 | except RepositoryRequirementError: |
|
707 | except RepositoryRequirementError: | |
716 | log.warning( |
|
708 | log.warning( | |
717 | 'Failed to get all required data from repo', exc_info=True) |
|
709 | 'Failed to get all required data from repo', exc_info=True) | |
718 | missing_requirements = True |
|
710 | missing_requirements = True | |
719 | ancestor_commit = None |
|
711 | ancestor_commit = None | |
720 | try: |
|
712 | try: | |
721 | ancestor_id = source_scm.get_common_ancestor( |
|
713 | ancestor_id = source_scm.get_common_ancestor( | |
722 | source_commit.raw_id, target_commit.raw_id, target_scm) |
|
714 | source_commit.raw_id, target_commit.raw_id, target_scm) | |
723 | ancestor_commit = source_scm.get_commit(ancestor_id) |
|
715 | ancestor_commit = source_scm.get_commit(ancestor_id) | |
724 | except Exception: |
|
716 | except Exception: | |
725 | ancestor_commit = None |
|
717 | ancestor_commit = None | |
726 | return ancestor_commit, commit_cache, missing_requirements, source_commit, target_commit |
|
718 | return ancestor_commit, commit_cache, missing_requirements, source_commit, target_commit | |
727 |
|
719 | |||
728 | def assure_not_empty_repo(self): |
|
720 | def assure_not_empty_repo(self): | |
729 | _ = self.request.translate |
|
721 | _ = self.request.translate | |
730 |
|
722 | |||
731 | try: |
|
723 | try: | |
732 | self.db_repo.scm_instance().get_commit() |
|
724 | self.db_repo.scm_instance().get_commit() | |
733 | except EmptyRepositoryError: |
|
725 | except EmptyRepositoryError: | |
734 | h.flash(h.literal(_('There are no commits yet')), |
|
726 | h.flash(h.literal(_('There are no commits yet')), | |
735 | category='warning') |
|
727 | category='warning') | |
736 | raise HTTPFound( |
|
728 | raise HTTPFound( | |
737 | h.route_path('repo_summary', repo_name=self.db_repo.repo_name)) |
|
729 | h.route_path('repo_summary', repo_name=self.db_repo.repo_name)) | |
738 |
|
730 | |||
739 | @LoginRequired() |
|
731 | @LoginRequired() | |
740 | @NotAnonymous() |
|
732 | @NotAnonymous() | |
741 | @HasRepoPermissionAnyDecorator( |
|
733 | @HasRepoPermissionAnyDecorator( | |
742 | 'repository.read', 'repository.write', 'repository.admin') |
|
734 | 'repository.read', 'repository.write', 'repository.admin') | |
743 | @view_config( |
|
735 | @view_config( | |
744 | route_name='pullrequest_new', request_method='GET', |
|
736 | route_name='pullrequest_new', request_method='GET', | |
745 | renderer='rhodecode:templates/pullrequests/pullrequest.mako') |
|
737 | renderer='rhodecode:templates/pullrequests/pullrequest.mako') | |
746 | def pull_request_new(self): |
|
738 | def pull_request_new(self): | |
747 | _ = self.request.translate |
|
739 | _ = self.request.translate | |
748 | c = self.load_default_context() |
|
740 | c = self.load_default_context() | |
749 |
|
741 | |||
750 | self.assure_not_empty_repo() |
|
742 | self.assure_not_empty_repo() | |
751 | source_repo = self.db_repo |
|
743 | source_repo = self.db_repo | |
752 |
|
744 | |||
753 | commit_id = self.request.GET.get('commit') |
|
745 | commit_id = self.request.GET.get('commit') | |
754 | branch_ref = self.request.GET.get('branch') |
|
746 | branch_ref = self.request.GET.get('branch') | |
755 | bookmark_ref = self.request.GET.get('bookmark') |
|
747 | bookmark_ref = self.request.GET.get('bookmark') | |
756 |
|
748 | |||
757 | try: |
|
749 | try: | |
758 | source_repo_data = PullRequestModel().generate_repo_data( |
|
750 | source_repo_data = PullRequestModel().generate_repo_data( | |
759 | source_repo, commit_id=commit_id, |
|
751 | source_repo, commit_id=commit_id, | |
760 | branch=branch_ref, bookmark=bookmark_ref, |
|
752 | branch=branch_ref, bookmark=bookmark_ref, | |
761 | translator=self.request.translate) |
|
753 | translator=self.request.translate) | |
762 | except CommitDoesNotExistError as e: |
|
754 | except CommitDoesNotExistError as e: | |
763 | log.exception(e) |
|
755 | log.exception(e) | |
764 | h.flash(_('Commit does not exist'), 'error') |
|
756 | h.flash(_('Commit does not exist'), 'error') | |
765 | raise HTTPFound( |
|
757 | raise HTTPFound( | |
766 | h.route_path('pullrequest_new', repo_name=source_repo.repo_name)) |
|
758 | h.route_path('pullrequest_new', repo_name=source_repo.repo_name)) | |
767 |
|
759 | |||
768 | default_target_repo = source_repo |
|
760 | default_target_repo = source_repo | |
769 |
|
761 | |||
770 | if source_repo.parent and c.has_origin_repo_read_perm: |
|
762 | if source_repo.parent and c.has_origin_repo_read_perm: | |
771 | parent_vcs_obj = source_repo.parent.scm_instance() |
|
763 | parent_vcs_obj = source_repo.parent.scm_instance() | |
772 | if parent_vcs_obj and not parent_vcs_obj.is_empty(): |
|
764 | if parent_vcs_obj and not parent_vcs_obj.is_empty(): | |
773 | # change default if we have a parent repo |
|
765 | # change default if we have a parent repo | |
774 | default_target_repo = source_repo.parent |
|
766 | default_target_repo = source_repo.parent | |
775 |
|
767 | |||
776 | target_repo_data = PullRequestModel().generate_repo_data( |
|
768 | target_repo_data = PullRequestModel().generate_repo_data( | |
777 | default_target_repo, translator=self.request.translate) |
|
769 | default_target_repo, translator=self.request.translate) | |
778 |
|
770 | |||
779 | selected_source_ref = source_repo_data['refs']['selected_ref'] |
|
771 | selected_source_ref = source_repo_data['refs']['selected_ref'] | |
780 | title_source_ref = '' |
|
772 | title_source_ref = '' | |
781 | if selected_source_ref: |
|
773 | if selected_source_ref: | |
782 | title_source_ref = selected_source_ref.split(':', 2)[1] |
|
774 | title_source_ref = selected_source_ref.split(':', 2)[1] | |
783 | c.default_title = PullRequestModel().generate_pullrequest_title( |
|
775 | c.default_title = PullRequestModel().generate_pullrequest_title( | |
784 | source=source_repo.repo_name, |
|
776 | source=source_repo.repo_name, | |
785 | source_ref=title_source_ref, |
|
777 | source_ref=title_source_ref, | |
786 | target=default_target_repo.repo_name |
|
778 | target=default_target_repo.repo_name | |
787 | ) |
|
779 | ) | |
788 |
|
780 | |||
789 | c.default_repo_data = { |
|
781 | c.default_repo_data = { | |
790 | 'source_repo_name': source_repo.repo_name, |
|
782 | 'source_repo_name': source_repo.repo_name, | |
791 | 'source_refs_json': json.dumps(source_repo_data), |
|
783 | 'source_refs_json': json.dumps(source_repo_data), | |
792 | 'target_repo_name': default_target_repo.repo_name, |
|
784 | 'target_repo_name': default_target_repo.repo_name, | |
793 | 'target_refs_json': json.dumps(target_repo_data), |
|
785 | 'target_refs_json': json.dumps(target_repo_data), | |
794 | } |
|
786 | } | |
795 | c.default_source_ref = selected_source_ref |
|
787 | c.default_source_ref = selected_source_ref | |
796 |
|
788 | |||
797 | return self._get_template_context(c) |
|
789 | return self._get_template_context(c) | |
798 |
|
790 | |||
799 | @LoginRequired() |
|
791 | @LoginRequired() | |
800 | @NotAnonymous() |
|
792 | @NotAnonymous() | |
801 | @HasRepoPermissionAnyDecorator( |
|
793 | @HasRepoPermissionAnyDecorator( | |
802 | 'repository.read', 'repository.write', 'repository.admin') |
|
794 | 'repository.read', 'repository.write', 'repository.admin') | |
803 | @view_config( |
|
795 | @view_config( | |
804 | route_name='pullrequest_repo_refs', request_method='GET', |
|
796 | route_name='pullrequest_repo_refs', request_method='GET', | |
805 | renderer='json_ext', xhr=True) |
|
797 | renderer='json_ext', xhr=True) | |
806 | def pull_request_repo_refs(self): |
|
798 | def pull_request_repo_refs(self): | |
807 | self.load_default_context() |
|
799 | self.load_default_context() | |
808 | target_repo_name = self.request.matchdict['target_repo_name'] |
|
800 | target_repo_name = self.request.matchdict['target_repo_name'] | |
809 | repo = Repository.get_by_repo_name(target_repo_name) |
|
801 | repo = Repository.get_by_repo_name(target_repo_name) | |
810 | if not repo: |
|
802 | if not repo: | |
811 | raise HTTPNotFound() |
|
803 | raise HTTPNotFound() | |
812 |
|
804 | |||
813 | target_perm = HasRepoPermissionAny( |
|
805 | target_perm = HasRepoPermissionAny( | |
814 | 'repository.read', 'repository.write', 'repository.admin')( |
|
806 | 'repository.read', 'repository.write', 'repository.admin')( | |
815 | target_repo_name) |
|
807 | target_repo_name) | |
816 | if not target_perm: |
|
808 | if not target_perm: | |
817 | raise HTTPNotFound() |
|
809 | raise HTTPNotFound() | |
818 |
|
810 | |||
819 | return PullRequestModel().generate_repo_data( |
|
811 | return PullRequestModel().generate_repo_data( | |
820 | repo, translator=self.request.translate) |
|
812 | repo, translator=self.request.translate) | |
821 |
|
813 | |||
822 | @LoginRequired() |
|
814 | @LoginRequired() | |
823 | @NotAnonymous() |
|
815 | @NotAnonymous() | |
824 | @HasRepoPermissionAnyDecorator( |
|
816 | @HasRepoPermissionAnyDecorator( | |
825 | 'repository.read', 'repository.write', 'repository.admin') |
|
817 | 'repository.read', 'repository.write', 'repository.admin') | |
826 | @view_config( |
|
818 | @view_config( | |
827 | route_name='pullrequest_repo_targets', request_method='GET', |
|
819 | route_name='pullrequest_repo_targets', request_method='GET', | |
828 | renderer='json_ext', xhr=True) |
|
820 | renderer='json_ext', xhr=True) | |
829 | def pullrequest_repo_targets(self): |
|
821 | def pullrequest_repo_targets(self): | |
830 | _ = self.request.translate |
|
822 | _ = self.request.translate | |
831 | filter_query = self.request.GET.get('query') |
|
823 | filter_query = self.request.GET.get('query') | |
832 |
|
824 | |||
833 | # get the parents |
|
825 | # get the parents | |
834 | parent_target_repos = [] |
|
826 | parent_target_repos = [] | |
835 | if self.db_repo.parent: |
|
827 | if self.db_repo.parent: | |
836 | parents_query = Repository.query() \ |
|
828 | parents_query = Repository.query() \ | |
837 | .order_by(func.length(Repository.repo_name)) \ |
|
829 | .order_by(func.length(Repository.repo_name)) \ | |
838 | .filter(Repository.fork_id == self.db_repo.parent.repo_id) |
|
830 | .filter(Repository.fork_id == self.db_repo.parent.repo_id) | |
839 |
|
831 | |||
840 | if filter_query: |
|
832 | if filter_query: | |
841 | ilike_expression = u'%{}%'.format(safe_unicode(filter_query)) |
|
833 | ilike_expression = u'%{}%'.format(safe_unicode(filter_query)) | |
842 | parents_query = parents_query.filter( |
|
834 | parents_query = parents_query.filter( | |
843 | Repository.repo_name.ilike(ilike_expression)) |
|
835 | Repository.repo_name.ilike(ilike_expression)) | |
844 | parents = parents_query.limit(20).all() |
|
836 | parents = parents_query.limit(20).all() | |
845 |
|
837 | |||
846 | for parent in parents: |
|
838 | for parent in parents: | |
847 | parent_vcs_obj = parent.scm_instance() |
|
839 | parent_vcs_obj = parent.scm_instance() | |
848 | if parent_vcs_obj and not parent_vcs_obj.is_empty(): |
|
840 | if parent_vcs_obj and not parent_vcs_obj.is_empty(): | |
849 | parent_target_repos.append(parent) |
|
841 | parent_target_repos.append(parent) | |
850 |
|
842 | |||
851 | # get other forks, and repo itself |
|
843 | # get other forks, and repo itself | |
852 | query = Repository.query() \ |
|
844 | query = Repository.query() \ | |
853 | .order_by(func.length(Repository.repo_name)) \ |
|
845 | .order_by(func.length(Repository.repo_name)) \ | |
854 | .filter( |
|
846 | .filter( | |
855 | or_(Repository.repo_id == self.db_repo.repo_id, # repo itself |
|
847 | or_(Repository.repo_id == self.db_repo.repo_id, # repo itself | |
856 | Repository.fork_id == self.db_repo.repo_id) # forks of this repo |
|
848 | Repository.fork_id == self.db_repo.repo_id) # forks of this repo | |
857 | ) \ |
|
849 | ) \ | |
858 | .filter(~Repository.repo_id.in_([x.repo_id for x in parent_target_repos])) |
|
850 | .filter(~Repository.repo_id.in_([x.repo_id for x in parent_target_repos])) | |
859 |
|
851 | |||
860 | if filter_query: |
|
852 | if filter_query: | |
861 | ilike_expression = u'%{}%'.format(safe_unicode(filter_query)) |
|
853 | ilike_expression = u'%{}%'.format(safe_unicode(filter_query)) | |
862 | query = query.filter(Repository.repo_name.ilike(ilike_expression)) |
|
854 | query = query.filter(Repository.repo_name.ilike(ilike_expression)) | |
863 |
|
855 | |||
864 | limit = max(20 - len(parent_target_repos), 5) # not less then 5 |
|
856 | limit = max(20 - len(parent_target_repos), 5) # not less then 5 | |
865 | target_repos = query.limit(limit).all() |
|
857 | target_repos = query.limit(limit).all() | |
866 |
|
858 | |||
867 | all_target_repos = target_repos + parent_target_repos |
|
859 | all_target_repos = target_repos + parent_target_repos | |
868 |
|
860 | |||
869 | repos = [] |
|
861 | repos = [] | |
870 | # This checks permissions to the repositories |
|
862 | # This checks permissions to the repositories | |
871 | for obj in ScmModel().get_repos(all_target_repos): |
|
863 | for obj in ScmModel().get_repos(all_target_repos): | |
872 | repos.append({ |
|
864 | repos.append({ | |
873 | 'id': obj['name'], |
|
865 | 'id': obj['name'], | |
874 | 'text': obj['name'], |
|
866 | 'text': obj['name'], | |
875 | 'type': 'repo', |
|
867 | 'type': 'repo', | |
876 | 'repo_id': obj['dbrepo']['repo_id'], |
|
868 | 'repo_id': obj['dbrepo']['repo_id'], | |
877 | 'repo_type': obj['dbrepo']['repo_type'], |
|
869 | 'repo_type': obj['dbrepo']['repo_type'], | |
878 | 'private': obj['dbrepo']['private'], |
|
870 | 'private': obj['dbrepo']['private'], | |
879 |
|
871 | |||
880 | }) |
|
872 | }) | |
881 |
|
873 | |||
882 | data = { |
|
874 | data = { | |
883 | 'more': False, |
|
875 | 'more': False, | |
884 | 'results': [{ |
|
876 | 'results': [{ | |
885 | 'text': _('Repositories'), |
|
877 | 'text': _('Repositories'), | |
886 | 'children': repos |
|
878 | 'children': repos | |
887 | }] if repos else [] |
|
879 | }] if repos else [] | |
888 | } |
|
880 | } | |
889 | return data |
|
881 | return data | |
890 |
|
882 | |||
891 | @LoginRequired() |
|
883 | @LoginRequired() | |
892 | @NotAnonymous() |
|
884 | @NotAnonymous() | |
893 | @HasRepoPermissionAnyDecorator( |
|
885 | @HasRepoPermissionAnyDecorator( | |
894 | 'repository.read', 'repository.write', 'repository.admin') |
|
886 | 'repository.read', 'repository.write', 'repository.admin') | |
895 | @CSRFRequired() |
|
887 | @CSRFRequired() | |
896 | @view_config( |
|
888 | @view_config( | |
897 | route_name='pullrequest_create', request_method='POST', |
|
889 | route_name='pullrequest_create', request_method='POST', | |
898 | renderer=None) |
|
890 | renderer=None) | |
899 | def pull_request_create(self): |
|
891 | def pull_request_create(self): | |
900 | _ = self.request.translate |
|
892 | _ = self.request.translate | |
901 | self.assure_not_empty_repo() |
|
893 | self.assure_not_empty_repo() | |
902 | self.load_default_context() |
|
894 | self.load_default_context() | |
903 |
|
895 | |||
904 | controls = peppercorn.parse(self.request.POST.items()) |
|
896 | controls = peppercorn.parse(self.request.POST.items()) | |
905 |
|
897 | |||
906 | try: |
|
898 | try: | |
907 | form = PullRequestForm( |
|
899 | form = PullRequestForm( | |
908 | self.request.translate, self.db_repo.repo_id)() |
|
900 | self.request.translate, self.db_repo.repo_id)() | |
909 | _form = form.to_python(controls) |
|
901 | _form = form.to_python(controls) | |
910 | except formencode.Invalid as errors: |
|
902 | except formencode.Invalid as errors: | |
911 | if errors.error_dict.get('revisions'): |
|
903 | if errors.error_dict.get('revisions'): | |
912 | msg = 'Revisions: %s' % errors.error_dict['revisions'] |
|
904 | msg = 'Revisions: %s' % errors.error_dict['revisions'] | |
913 | elif errors.error_dict.get('pullrequest_title'): |
|
905 | elif errors.error_dict.get('pullrequest_title'): | |
914 | msg = errors.error_dict.get('pullrequest_title') |
|
906 | msg = errors.error_dict.get('pullrequest_title') | |
915 | else: |
|
907 | else: | |
916 | msg = _('Error creating pull request: {}').format(errors) |
|
908 | msg = _('Error creating pull request: {}').format(errors) | |
917 | log.exception(msg) |
|
909 | log.exception(msg) | |
918 | h.flash(msg, 'error') |
|
910 | h.flash(msg, 'error') | |
919 |
|
911 | |||
920 | # would rather just go back to form ... |
|
912 | # would rather just go back to form ... | |
921 | raise HTTPFound( |
|
913 | raise HTTPFound( | |
922 | h.route_path('pullrequest_new', repo_name=self.db_repo_name)) |
|
914 | h.route_path('pullrequest_new', repo_name=self.db_repo_name)) | |
923 |
|
915 | |||
924 | source_repo = _form['source_repo'] |
|
916 | source_repo = _form['source_repo'] | |
925 | source_ref = _form['source_ref'] |
|
917 | source_ref = _form['source_ref'] | |
926 | target_repo = _form['target_repo'] |
|
918 | target_repo = _form['target_repo'] | |
927 | target_ref = _form['target_ref'] |
|
919 | target_ref = _form['target_ref'] | |
928 | commit_ids = _form['revisions'][::-1] |
|
920 | commit_ids = _form['revisions'][::-1] | |
929 |
|
921 | |||
930 | # find the ancestor for this pr |
|
922 | # find the ancestor for this pr | |
931 | source_db_repo = Repository.get_by_repo_name(_form['source_repo']) |
|
923 | source_db_repo = Repository.get_by_repo_name(_form['source_repo']) | |
932 | target_db_repo = Repository.get_by_repo_name(_form['target_repo']) |
|
924 | target_db_repo = Repository.get_by_repo_name(_form['target_repo']) | |
933 |
|
925 | |||
934 | if not (source_db_repo or target_db_repo): |
|
926 | if not (source_db_repo or target_db_repo): | |
935 | h.flash(_('source_repo or target repo not found'), category='error') |
|
927 | h.flash(_('source_repo or target repo not found'), category='error') | |
936 | raise HTTPFound( |
|
928 | raise HTTPFound( | |
937 | h.route_path('pullrequest_new', repo_name=self.db_repo_name)) |
|
929 | h.route_path('pullrequest_new', repo_name=self.db_repo_name)) | |
938 |
|
930 | |||
939 | # re-check permissions again here |
|
931 | # re-check permissions again here | |
940 | # source_repo we must have read permissions |
|
932 | # source_repo we must have read permissions | |
941 |
|
933 | |||
942 | source_perm = HasRepoPermissionAny( |
|
934 | source_perm = HasRepoPermissionAny( | |
943 | 'repository.read', 'repository.write', 'repository.admin')( |
|
935 | 'repository.read', 'repository.write', 'repository.admin')( | |
944 | source_db_repo.repo_name) |
|
936 | source_db_repo.repo_name) | |
945 | if not source_perm: |
|
937 | if not source_perm: | |
946 | msg = _('Not Enough permissions to source repo `{}`.'.format( |
|
938 | msg = _('Not Enough permissions to source repo `{}`.'.format( | |
947 | source_db_repo.repo_name)) |
|
939 | source_db_repo.repo_name)) | |
948 | h.flash(msg, category='error') |
|
940 | h.flash(msg, category='error') | |
949 | # copy the args back to redirect |
|
941 | # copy the args back to redirect | |
950 | org_query = self.request.GET.mixed() |
|
942 | org_query = self.request.GET.mixed() | |
951 | raise HTTPFound( |
|
943 | raise HTTPFound( | |
952 | h.route_path('pullrequest_new', repo_name=self.db_repo_name, |
|
944 | h.route_path('pullrequest_new', repo_name=self.db_repo_name, | |
953 | _query=org_query)) |
|
945 | _query=org_query)) | |
954 |
|
946 | |||
955 | # target repo we must have read permissions, and also later on |
|
947 | # target repo we must have read permissions, and also later on | |
956 | # we want to check branch permissions here |
|
948 | # we want to check branch permissions here | |
957 | target_perm = HasRepoPermissionAny( |
|
949 | target_perm = HasRepoPermissionAny( | |
958 | 'repository.read', 'repository.write', 'repository.admin')( |
|
950 | 'repository.read', 'repository.write', 'repository.admin')( | |
959 | target_db_repo.repo_name) |
|
951 | target_db_repo.repo_name) | |
960 | if not target_perm: |
|
952 | if not target_perm: | |
961 | msg = _('Not Enough permissions to target repo `{}`.'.format( |
|
953 | msg = _('Not Enough permissions to target repo `{}`.'.format( | |
962 | target_db_repo.repo_name)) |
|
954 | target_db_repo.repo_name)) | |
963 | h.flash(msg, category='error') |
|
955 | h.flash(msg, category='error') | |
964 | # copy the args back to redirect |
|
956 | # copy the args back to redirect | |
965 | org_query = self.request.GET.mixed() |
|
957 | org_query = self.request.GET.mixed() | |
966 | raise HTTPFound( |
|
958 | raise HTTPFound( | |
967 | h.route_path('pullrequest_new', repo_name=self.db_repo_name, |
|
959 | h.route_path('pullrequest_new', repo_name=self.db_repo_name, | |
968 | _query=org_query)) |
|
960 | _query=org_query)) | |
969 |
|
961 | |||
970 | source_scm = source_db_repo.scm_instance() |
|
962 | source_scm = source_db_repo.scm_instance() | |
971 | target_scm = target_db_repo.scm_instance() |
|
963 | target_scm = target_db_repo.scm_instance() | |
972 |
|
964 | |||
973 | source_commit = source_scm.get_commit(source_ref.split(':')[-1]) |
|
965 | source_commit = source_scm.get_commit(source_ref.split(':')[-1]) | |
974 | target_commit = target_scm.get_commit(target_ref.split(':')[-1]) |
|
966 | target_commit = target_scm.get_commit(target_ref.split(':')[-1]) | |
975 |
|
967 | |||
976 | ancestor = source_scm.get_common_ancestor( |
|
968 | ancestor = source_scm.get_common_ancestor( | |
977 | source_commit.raw_id, target_commit.raw_id, target_scm) |
|
969 | source_commit.raw_id, target_commit.raw_id, target_scm) | |
978 |
|
970 | |||
979 | # recalculate target ref based on ancestor |
|
971 | # recalculate target ref based on ancestor | |
980 | target_ref_type, target_ref_name, __ = _form['target_ref'].split(':') |
|
972 | target_ref_type, target_ref_name, __ = _form['target_ref'].split(':') | |
981 | target_ref = ':'.join((target_ref_type, target_ref_name, ancestor)) |
|
973 | target_ref = ':'.join((target_ref_type, target_ref_name, ancestor)) | |
982 |
|
974 | |||
983 | get_default_reviewers_data, validate_default_reviewers = \ |
|
975 | get_default_reviewers_data, validate_default_reviewers = \ | |
984 | PullRequestModel().get_reviewer_functions() |
|
976 | PullRequestModel().get_reviewer_functions() | |
985 |
|
977 | |||
986 | # recalculate reviewers logic, to make sure we can validate this |
|
978 | # recalculate reviewers logic, to make sure we can validate this | |
987 | reviewer_rules = get_default_reviewers_data( |
|
979 | reviewer_rules = get_default_reviewers_data( | |
988 | self._rhodecode_db_user, source_db_repo, |
|
980 | self._rhodecode_db_user, source_db_repo, | |
989 | source_commit, target_db_repo, target_commit) |
|
981 | source_commit, target_db_repo, target_commit) | |
990 |
|
982 | |||
991 | given_reviewers = _form['review_members'] |
|
983 | given_reviewers = _form['review_members'] | |
992 | reviewers = validate_default_reviewers( |
|
984 | reviewers = validate_default_reviewers( | |
993 | given_reviewers, reviewer_rules) |
|
985 | given_reviewers, reviewer_rules) | |
994 |
|
986 | |||
995 | pullrequest_title = _form['pullrequest_title'] |
|
987 | pullrequest_title = _form['pullrequest_title'] | |
996 | title_source_ref = source_ref.split(':', 2)[1] |
|
988 | title_source_ref = source_ref.split(':', 2)[1] | |
997 | if not pullrequest_title: |
|
989 | if not pullrequest_title: | |
998 | pullrequest_title = PullRequestModel().generate_pullrequest_title( |
|
990 | pullrequest_title = PullRequestModel().generate_pullrequest_title( | |
999 | source=source_repo, |
|
991 | source=source_repo, | |
1000 | source_ref=title_source_ref, |
|
992 | source_ref=title_source_ref, | |
1001 | target=target_repo |
|
993 | target=target_repo | |
1002 | ) |
|
994 | ) | |
1003 |
|
995 | |||
1004 | description = _form['pullrequest_desc'] |
|
996 | description = _form['pullrequest_desc'] | |
1005 | description_renderer = _form['description_renderer'] |
|
997 | description_renderer = _form['description_renderer'] | |
1006 |
|
998 | |||
1007 | try: |
|
999 | try: | |
1008 | pull_request = PullRequestModel().create( |
|
1000 | pull_request = PullRequestModel().create( | |
1009 | created_by=self._rhodecode_user.user_id, |
|
1001 | created_by=self._rhodecode_user.user_id, | |
1010 | source_repo=source_repo, |
|
1002 | source_repo=source_repo, | |
1011 | source_ref=source_ref, |
|
1003 | source_ref=source_ref, | |
1012 | target_repo=target_repo, |
|
1004 | target_repo=target_repo, | |
1013 | target_ref=target_ref, |
|
1005 | target_ref=target_ref, | |
1014 | revisions=commit_ids, |
|
1006 | revisions=commit_ids, | |
1015 | reviewers=reviewers, |
|
1007 | reviewers=reviewers, | |
1016 | title=pullrequest_title, |
|
1008 | title=pullrequest_title, | |
1017 | description=description, |
|
1009 | description=description, | |
1018 | description_renderer=description_renderer, |
|
1010 | description_renderer=description_renderer, | |
1019 | reviewer_data=reviewer_rules, |
|
1011 | reviewer_data=reviewer_rules, | |
1020 | auth_user=self._rhodecode_user |
|
1012 | auth_user=self._rhodecode_user | |
1021 | ) |
|
1013 | ) | |
1022 | Session().commit() |
|
1014 | Session().commit() | |
1023 |
|
1015 | |||
1024 | h.flash(_('Successfully opened new pull request'), |
|
1016 | h.flash(_('Successfully opened new pull request'), | |
1025 | category='success') |
|
1017 | category='success') | |
1026 | except Exception: |
|
1018 | except Exception: | |
1027 | msg = _('Error occurred during creation of this pull request.') |
|
1019 | msg = _('Error occurred during creation of this pull request.') | |
1028 | log.exception(msg) |
|
1020 | log.exception(msg) | |
1029 | h.flash(msg, category='error') |
|
1021 | h.flash(msg, category='error') | |
1030 |
|
1022 | |||
1031 | # copy the args back to redirect |
|
1023 | # copy the args back to redirect | |
1032 | org_query = self.request.GET.mixed() |
|
1024 | org_query = self.request.GET.mixed() | |
1033 | raise HTTPFound( |
|
1025 | raise HTTPFound( | |
1034 | h.route_path('pullrequest_new', repo_name=self.db_repo_name, |
|
1026 | h.route_path('pullrequest_new', repo_name=self.db_repo_name, | |
1035 | _query=org_query)) |
|
1027 | _query=org_query)) | |
1036 |
|
1028 | |||
1037 | raise HTTPFound( |
|
1029 | raise HTTPFound( | |
1038 | h.route_path('pullrequest_show', repo_name=target_repo, |
|
1030 | h.route_path('pullrequest_show', repo_name=target_repo, | |
1039 | pull_request_id=pull_request.pull_request_id)) |
|
1031 | pull_request_id=pull_request.pull_request_id)) | |
1040 |
|
1032 | |||
1041 | @LoginRequired() |
|
1033 | @LoginRequired() | |
1042 | @NotAnonymous() |
|
1034 | @NotAnonymous() | |
1043 | @HasRepoPermissionAnyDecorator( |
|
1035 | @HasRepoPermissionAnyDecorator( | |
1044 | 'repository.read', 'repository.write', 'repository.admin') |
|
1036 | 'repository.read', 'repository.write', 'repository.admin') | |
1045 | @CSRFRequired() |
|
1037 | @CSRFRequired() | |
1046 | @view_config( |
|
1038 | @view_config( | |
1047 | route_name='pullrequest_update', request_method='POST', |
|
1039 | route_name='pullrequest_update', request_method='POST', | |
1048 | renderer='json_ext') |
|
1040 | renderer='json_ext') | |
1049 | def pull_request_update(self): |
|
1041 | def pull_request_update(self): | |
1050 | pull_request = PullRequest.get_or_404( |
|
1042 | pull_request = PullRequest.get_or_404( | |
1051 | self.request.matchdict['pull_request_id']) |
|
1043 | self.request.matchdict['pull_request_id']) | |
1052 | _ = self.request.translate |
|
1044 | _ = self.request.translate | |
1053 |
|
1045 | |||
1054 | self.load_default_context() |
|
1046 | self.load_default_context() | |
1055 | redirect_url = None |
|
1047 | redirect_url = None | |
1056 |
|
1048 | |||
1057 | if pull_request.is_closed(): |
|
1049 | if pull_request.is_closed(): | |
1058 | log.debug('update: forbidden because pull request is closed') |
|
1050 | log.debug('update: forbidden because pull request is closed') | |
1059 | msg = _(u'Cannot update closed pull requests.') |
|
1051 | msg = _(u'Cannot update closed pull requests.') | |
1060 | h.flash(msg, category='error') |
|
1052 | h.flash(msg, category='error') | |
1061 | return {'response': True, |
|
1053 | return {'response': True, | |
1062 | 'redirect_url': redirect_url} |
|
1054 | 'redirect_url': redirect_url} | |
1063 |
|
1055 | |||
1064 | if pull_request.pull_request_state != PullRequest.STATE_CREATED: |
|
1056 | is_state_changing = pull_request.is_state_changing() | |
1065 | log.debug('update: forbidden because pull request is in state %s', |
|
|||
1066 | pull_request.pull_request_state) |
|
|||
1067 | msg = _(u'Cannot update pull requests in state other than `{}`. ' |
|
|||
1068 | u'Current state is: `{}`').format(PullRequest.STATE_CREATED, |
|
|||
1069 | pull_request.pull_request_state) |
|
|||
1070 | h.flash(msg, category='error') |
|
|||
1071 | return {'response': True, |
|
|||
1072 | 'redirect_url': redirect_url} |
|
|||
1073 |
|
1057 | |||
1074 | # only owner or admin can update it |
|
1058 | # only owner or admin can update it | |
1075 | allowed_to_update = PullRequestModel().check_user_update( |
|
1059 | allowed_to_update = PullRequestModel().check_user_update( | |
1076 | pull_request, self._rhodecode_user) |
|
1060 | pull_request, self._rhodecode_user) | |
1077 | if allowed_to_update: |
|
1061 | if allowed_to_update: | |
1078 | controls = peppercorn.parse(self.request.POST.items()) |
|
1062 | controls = peppercorn.parse(self.request.POST.items()) | |
1079 | force_refresh = str2bool(self.request.POST.get('force_refresh')) |
|
1063 | force_refresh = str2bool(self.request.POST.get('force_refresh')) | |
1080 |
|
1064 | |||
1081 | if 'review_members' in controls: |
|
1065 | if 'review_members' in controls: | |
1082 | self._update_reviewers( |
|
1066 | self._update_reviewers( | |
1083 | pull_request, controls['review_members'], |
|
1067 | pull_request, controls['review_members'], | |
1084 | pull_request.reviewer_data) |
|
1068 | pull_request.reviewer_data) | |
1085 | elif str2bool(self.request.POST.get('update_commits', 'false')): |
|
1069 | elif str2bool(self.request.POST.get('update_commits', 'false')): | |
|
1070 | if is_state_changing: | |||
|
1071 | log.debug('commits update: forbidden because pull request is in state %s', | |||
|
1072 | pull_request.pull_request_state) | |||
|
1073 | msg = _(u'Cannot update pull requests commits in state other than `{}`. ' | |||
|
1074 | u'Current state is: `{}`').format( | |||
|
1075 | PullRequest.STATE_CREATED, pull_request.pull_request_state) | |||
|
1076 | h.flash(msg, category='error') | |||
|
1077 | return {'response': True, | |||
|
1078 | 'redirect_url': redirect_url} | |||
|
1079 | ||||
1086 | self._update_commits(pull_request) |
|
1080 | self._update_commits(pull_request) | |
1087 | if force_refresh: |
|
1081 | if force_refresh: | |
1088 | redirect_url = h.route_path( |
|
1082 | redirect_url = h.route_path( | |
1089 | 'pullrequest_show', repo_name=self.db_repo_name, |
|
1083 | 'pullrequest_show', repo_name=self.db_repo_name, | |
1090 | pull_request_id=pull_request.pull_request_id, |
|
1084 | pull_request_id=pull_request.pull_request_id, | |
1091 | _query={"force_refresh": 1}) |
|
1085 | _query={"force_refresh": 1}) | |
1092 | elif str2bool(self.request.POST.get('edit_pull_request', 'false')): |
|
1086 | elif str2bool(self.request.POST.get('edit_pull_request', 'false')): | |
1093 | self._edit_pull_request(pull_request) |
|
1087 | self._edit_pull_request(pull_request) | |
1094 | else: |
|
1088 | else: | |
1095 | raise HTTPBadRequest() |
|
1089 | raise HTTPBadRequest() | |
1096 |
|
1090 | |||
1097 | return {'response': True, |
|
1091 | return {'response': True, | |
1098 | 'redirect_url': redirect_url} |
|
1092 | 'redirect_url': redirect_url} | |
1099 | raise HTTPForbidden() |
|
1093 | raise HTTPForbidden() | |
1100 |
|
1094 | |||
1101 | def _edit_pull_request(self, pull_request): |
|
1095 | def _edit_pull_request(self, pull_request): | |
1102 | _ = self.request.translate |
|
1096 | _ = self.request.translate | |
1103 |
|
1097 | |||
1104 | try: |
|
1098 | try: | |
1105 | PullRequestModel().edit( |
|
1099 | PullRequestModel().edit( | |
1106 | pull_request, |
|
1100 | pull_request, | |
1107 | self.request.POST.get('title'), |
|
1101 | self.request.POST.get('title'), | |
1108 | self.request.POST.get('description'), |
|
1102 | self.request.POST.get('description'), | |
1109 | self.request.POST.get('description_renderer'), |
|
1103 | self.request.POST.get('description_renderer'), | |
1110 | self._rhodecode_user) |
|
1104 | self._rhodecode_user) | |
1111 | except ValueError: |
|
1105 | except ValueError: | |
1112 | msg = _(u'Cannot update closed pull requests.') |
|
1106 | msg = _(u'Cannot update closed pull requests.') | |
1113 | h.flash(msg, category='error') |
|
1107 | h.flash(msg, category='error') | |
1114 | return |
|
1108 | return | |
1115 | else: |
|
1109 | else: | |
1116 | Session().commit() |
|
1110 | Session().commit() | |
1117 |
|
1111 | |||
1118 | msg = _(u'Pull request title & description updated.') |
|
1112 | msg = _(u'Pull request title & description updated.') | |
1119 | h.flash(msg, category='success') |
|
1113 | h.flash(msg, category='success') | |
1120 | return |
|
1114 | return | |
1121 |
|
1115 | |||
1122 | def _update_commits(self, pull_request): |
|
1116 | def _update_commits(self, pull_request): | |
1123 | _ = self.request.translate |
|
1117 | _ = self.request.translate | |
1124 |
|
1118 | |||
1125 | with pull_request.set_state(PullRequest.STATE_UPDATING): |
|
1119 | with pull_request.set_state(PullRequest.STATE_UPDATING): | |
1126 | resp = PullRequestModel().update_commits(pull_request) |
|
1120 | resp = PullRequestModel().update_commits(pull_request) | |
1127 |
|
1121 | |||
1128 | if resp.executed: |
|
1122 | if resp.executed: | |
1129 |
|
1123 | |||
1130 | if resp.target_changed and resp.source_changed: |
|
1124 | if resp.target_changed and resp.source_changed: | |
1131 | changed = 'target and source repositories' |
|
1125 | changed = 'target and source repositories' | |
1132 | elif resp.target_changed and not resp.source_changed: |
|
1126 | elif resp.target_changed and not resp.source_changed: | |
1133 | changed = 'target repository' |
|
1127 | changed = 'target repository' | |
1134 | elif not resp.target_changed and resp.source_changed: |
|
1128 | elif not resp.target_changed and resp.source_changed: | |
1135 | changed = 'source repository' |
|
1129 | changed = 'source repository' | |
1136 | else: |
|
1130 | else: | |
1137 | changed = 'nothing' |
|
1131 | changed = 'nothing' | |
1138 |
|
1132 | |||
1139 | msg = _(u'Pull request updated to "{source_commit_id}" with ' |
|
1133 | msg = _(u'Pull request updated to "{source_commit_id}" with ' | |
1140 | u'{count_added} added, {count_removed} removed commits. ' |
|
1134 | u'{count_added} added, {count_removed} removed commits. ' | |
1141 | u'Source of changes: {change_source}') |
|
1135 | u'Source of changes: {change_source}') | |
1142 | msg = msg.format( |
|
1136 | msg = msg.format( | |
1143 | source_commit_id=pull_request.source_ref_parts.commit_id, |
|
1137 | source_commit_id=pull_request.source_ref_parts.commit_id, | |
1144 | count_added=len(resp.changes.added), |
|
1138 | count_added=len(resp.changes.added), | |
1145 | count_removed=len(resp.changes.removed), |
|
1139 | count_removed=len(resp.changes.removed), | |
1146 | change_source=changed) |
|
1140 | change_source=changed) | |
1147 | h.flash(msg, category='success') |
|
1141 | h.flash(msg, category='success') | |
1148 |
|
1142 | |||
1149 | channel = '/repo${}$/pr/{}'.format( |
|
1143 | channel = '/repo${}$/pr/{}'.format( | |
1150 | pull_request.target_repo.repo_name, pull_request.pull_request_id) |
|
1144 | pull_request.target_repo.repo_name, pull_request.pull_request_id) | |
1151 | message = msg + ( |
|
1145 | message = msg + ( | |
1152 | ' - <a onclick="window.location.reload()">' |
|
1146 | ' - <a onclick="window.location.reload()">' | |
1153 | '<strong>{}</strong></a>'.format(_('Reload page'))) |
|
1147 | '<strong>{}</strong></a>'.format(_('Reload page'))) | |
1154 | channelstream.post_message( |
|
1148 | channelstream.post_message( | |
1155 | channel, message, self._rhodecode_user.username, |
|
1149 | channel, message, self._rhodecode_user.username, | |
1156 | registry=self.request.registry) |
|
1150 | registry=self.request.registry) | |
1157 | else: |
|
1151 | else: | |
1158 | msg = PullRequestModel.UPDATE_STATUS_MESSAGES[resp.reason] |
|
1152 | msg = PullRequestModel.UPDATE_STATUS_MESSAGES[resp.reason] | |
1159 | warning_reasons = [ |
|
1153 | warning_reasons = [ | |
1160 | UpdateFailureReason.NO_CHANGE, |
|
1154 | UpdateFailureReason.NO_CHANGE, | |
1161 | UpdateFailureReason.WRONG_REF_TYPE, |
|
1155 | UpdateFailureReason.WRONG_REF_TYPE, | |
1162 | ] |
|
1156 | ] | |
1163 | category = 'warning' if resp.reason in warning_reasons else 'error' |
|
1157 | category = 'warning' if resp.reason in warning_reasons else 'error' | |
1164 | h.flash(msg, category=category) |
|
1158 | h.flash(msg, category=category) | |
1165 |
|
1159 | |||
1166 | @LoginRequired() |
|
1160 | @LoginRequired() | |
1167 | @NotAnonymous() |
|
1161 | @NotAnonymous() | |
1168 | @HasRepoPermissionAnyDecorator( |
|
1162 | @HasRepoPermissionAnyDecorator( | |
1169 | 'repository.read', 'repository.write', 'repository.admin') |
|
1163 | 'repository.read', 'repository.write', 'repository.admin') | |
1170 | @CSRFRequired() |
|
1164 | @CSRFRequired() | |
1171 | @view_config( |
|
1165 | @view_config( | |
1172 | route_name='pullrequest_merge', request_method='POST', |
|
1166 | route_name='pullrequest_merge', request_method='POST', | |
1173 | renderer='json_ext') |
|
1167 | renderer='json_ext') | |
1174 | def pull_request_merge(self): |
|
1168 | def pull_request_merge(self): | |
1175 | """ |
|
1169 | """ | |
1176 | Merge will perform a server-side merge of the specified |
|
1170 | Merge will perform a server-side merge of the specified | |
1177 | pull request, if the pull request is approved and mergeable. |
|
1171 | pull request, if the pull request is approved and mergeable. | |
1178 | After successful merging, the pull request is automatically |
|
1172 | After successful merging, the pull request is automatically | |
1179 | closed, with a relevant comment. |
|
1173 | closed, with a relevant comment. | |
1180 | """ |
|
1174 | """ | |
1181 | pull_request = PullRequest.get_or_404( |
|
1175 | pull_request = PullRequest.get_or_404( | |
1182 | self.request.matchdict['pull_request_id']) |
|
1176 | self.request.matchdict['pull_request_id']) | |
1183 | _ = self.request.translate |
|
1177 | _ = self.request.translate | |
1184 |
|
1178 | |||
1185 | if pull_request.pull_request_state != PullRequest.STATE_CREATED: |
|
1179 | if pull_request.is_state_changing(): | |
1186 | log.debug('show: forbidden because pull request is in state %s', |
|
1180 | log.debug('show: forbidden because pull request is in state %s', | |
1187 | pull_request.pull_request_state) |
|
1181 | pull_request.pull_request_state) | |
1188 | msg = _(u'Cannot merge pull requests in state other than `{}`. ' |
|
1182 | msg = _(u'Cannot merge pull requests in state other than `{}`. ' | |
1189 | u'Current state is: `{}`').format(PullRequest.STATE_CREATED, |
|
1183 | u'Current state is: `{}`').format(PullRequest.STATE_CREATED, | |
1190 | pull_request.pull_request_state) |
|
1184 | pull_request.pull_request_state) | |
1191 | h.flash(msg, category='error') |
|
1185 | h.flash(msg, category='error') | |
1192 | raise HTTPFound( |
|
1186 | raise HTTPFound( | |
1193 | h.route_path('pullrequest_show', |
|
1187 | h.route_path('pullrequest_show', | |
1194 | repo_name=pull_request.target_repo.repo_name, |
|
1188 | repo_name=pull_request.target_repo.repo_name, | |
1195 | pull_request_id=pull_request.pull_request_id)) |
|
1189 | pull_request_id=pull_request.pull_request_id)) | |
1196 |
|
1190 | |||
1197 | self.load_default_context() |
|
1191 | self.load_default_context() | |
1198 |
|
1192 | |||
1199 | with pull_request.set_state(PullRequest.STATE_UPDATING): |
|
1193 | with pull_request.set_state(PullRequest.STATE_UPDATING): | |
1200 | check = MergeCheck.validate( |
|
1194 | check = MergeCheck.validate( | |
1201 | pull_request, auth_user=self._rhodecode_user, |
|
1195 | pull_request, auth_user=self._rhodecode_user, | |
1202 | translator=self.request.translate) |
|
1196 | translator=self.request.translate) | |
1203 | merge_possible = not check.failed |
|
1197 | merge_possible = not check.failed | |
1204 |
|
1198 | |||
1205 | for err_type, error_msg in check.errors: |
|
1199 | for err_type, error_msg in check.errors: | |
1206 | h.flash(error_msg, category=err_type) |
|
1200 | h.flash(error_msg, category=err_type) | |
1207 |
|
1201 | |||
1208 | if merge_possible: |
|
1202 | if merge_possible: | |
1209 | log.debug("Pre-conditions checked, trying to merge.") |
|
1203 | log.debug("Pre-conditions checked, trying to merge.") | |
1210 | extras = vcs_operation_context( |
|
1204 | extras = vcs_operation_context( | |
1211 | self.request.environ, repo_name=pull_request.target_repo.repo_name, |
|
1205 | self.request.environ, repo_name=pull_request.target_repo.repo_name, | |
1212 | username=self._rhodecode_db_user.username, action='push', |
|
1206 | username=self._rhodecode_db_user.username, action='push', | |
1213 | scm=pull_request.target_repo.repo_type) |
|
1207 | scm=pull_request.target_repo.repo_type) | |
1214 | with pull_request.set_state(PullRequest.STATE_UPDATING): |
|
1208 | with pull_request.set_state(PullRequest.STATE_UPDATING): | |
1215 | self._merge_pull_request( |
|
1209 | self._merge_pull_request( | |
1216 | pull_request, self._rhodecode_db_user, extras) |
|
1210 | pull_request, self._rhodecode_db_user, extras) | |
1217 | else: |
|
1211 | else: | |
1218 | log.debug("Pre-conditions failed, NOT merging.") |
|
1212 | log.debug("Pre-conditions failed, NOT merging.") | |
1219 |
|
1213 | |||
1220 | raise HTTPFound( |
|
1214 | raise HTTPFound( | |
1221 | h.route_path('pullrequest_show', |
|
1215 | h.route_path('pullrequest_show', | |
1222 | repo_name=pull_request.target_repo.repo_name, |
|
1216 | repo_name=pull_request.target_repo.repo_name, | |
1223 | pull_request_id=pull_request.pull_request_id)) |
|
1217 | pull_request_id=pull_request.pull_request_id)) | |
1224 |
|
1218 | |||
1225 | def _merge_pull_request(self, pull_request, user, extras): |
|
1219 | def _merge_pull_request(self, pull_request, user, extras): | |
1226 | _ = self.request.translate |
|
1220 | _ = self.request.translate | |
1227 | merge_resp = PullRequestModel().merge_repo(pull_request, user, extras=extras) |
|
1221 | merge_resp = PullRequestModel().merge_repo(pull_request, user, extras=extras) | |
1228 |
|
1222 | |||
1229 | if merge_resp.executed: |
|
1223 | if merge_resp.executed: | |
1230 | log.debug("The merge was successful, closing the pull request.") |
|
1224 | log.debug("The merge was successful, closing the pull request.") | |
1231 | PullRequestModel().close_pull_request( |
|
1225 | PullRequestModel().close_pull_request( | |
1232 | pull_request.pull_request_id, user) |
|
1226 | pull_request.pull_request_id, user) | |
1233 | Session().commit() |
|
1227 | Session().commit() | |
1234 | msg = _('Pull request was successfully merged and closed.') |
|
1228 | msg = _('Pull request was successfully merged and closed.') | |
1235 | h.flash(msg, category='success') |
|
1229 | h.flash(msg, category='success') | |
1236 | else: |
|
1230 | else: | |
1237 | log.debug( |
|
1231 | log.debug( | |
1238 | "The merge was not successful. Merge response: %s", merge_resp) |
|
1232 | "The merge was not successful. Merge response: %s", merge_resp) | |
1239 | msg = merge_resp.merge_status_message |
|
1233 | msg = merge_resp.merge_status_message | |
1240 | h.flash(msg, category='error') |
|
1234 | h.flash(msg, category='error') | |
1241 |
|
1235 | |||
1242 | def _update_reviewers(self, pull_request, review_members, reviewer_rules): |
|
1236 | def _update_reviewers(self, pull_request, review_members, reviewer_rules): | |
1243 | _ = self.request.translate |
|
1237 | _ = self.request.translate | |
1244 |
|
1238 | |||
1245 | get_default_reviewers_data, validate_default_reviewers = \ |
|
1239 | get_default_reviewers_data, validate_default_reviewers = \ | |
1246 | PullRequestModel().get_reviewer_functions() |
|
1240 | PullRequestModel().get_reviewer_functions() | |
1247 |
|
1241 | |||
1248 | try: |
|
1242 | try: | |
1249 | reviewers = validate_default_reviewers(review_members, reviewer_rules) |
|
1243 | reviewers = validate_default_reviewers(review_members, reviewer_rules) | |
1250 | except ValueError as e: |
|
1244 | except ValueError as e: | |
1251 | log.error('Reviewers Validation: {}'.format(e)) |
|
1245 | log.error('Reviewers Validation: {}'.format(e)) | |
1252 | h.flash(e, category='error') |
|
1246 | h.flash(e, category='error') | |
1253 | return |
|
1247 | return | |
1254 |
|
1248 | |||
1255 | old_calculated_status = pull_request.calculated_review_status() |
|
1249 | old_calculated_status = pull_request.calculated_review_status() | |
1256 | PullRequestModel().update_reviewers( |
|
1250 | PullRequestModel().update_reviewers( | |
1257 | pull_request, reviewers, self._rhodecode_user) |
|
1251 | pull_request, reviewers, self._rhodecode_user) | |
1258 | h.flash(_('Pull request reviewers updated.'), category='success') |
|
1252 | h.flash(_('Pull request reviewers updated.'), category='success') | |
1259 | Session().commit() |
|
1253 | Session().commit() | |
1260 |
|
1254 | |||
1261 | # trigger status changed if change in reviewers changes the status |
|
1255 | # trigger status changed if change in reviewers changes the status | |
1262 | calculated_status = pull_request.calculated_review_status() |
|
1256 | calculated_status = pull_request.calculated_review_status() | |
1263 | if old_calculated_status != calculated_status: |
|
1257 | if old_calculated_status != calculated_status: | |
1264 | PullRequestModel().trigger_pull_request_hook( |
|
1258 | PullRequestModel().trigger_pull_request_hook( | |
1265 | pull_request, self._rhodecode_user, 'review_status_change', |
|
1259 | pull_request, self._rhodecode_user, 'review_status_change', | |
1266 | data={'status': calculated_status}) |
|
1260 | data={'status': calculated_status}) | |
1267 |
|
1261 | |||
1268 | @LoginRequired() |
|
1262 | @LoginRequired() | |
1269 | @NotAnonymous() |
|
1263 | @NotAnonymous() | |
1270 | @HasRepoPermissionAnyDecorator( |
|
1264 | @HasRepoPermissionAnyDecorator( | |
1271 | 'repository.read', 'repository.write', 'repository.admin') |
|
1265 | 'repository.read', 'repository.write', 'repository.admin') | |
1272 | @CSRFRequired() |
|
1266 | @CSRFRequired() | |
1273 | @view_config( |
|
1267 | @view_config( | |
1274 | route_name='pullrequest_delete', request_method='POST', |
|
1268 | route_name='pullrequest_delete', request_method='POST', | |
1275 | renderer='json_ext') |
|
1269 | renderer='json_ext') | |
1276 | def pull_request_delete(self): |
|
1270 | def pull_request_delete(self): | |
1277 | _ = self.request.translate |
|
1271 | _ = self.request.translate | |
1278 |
|
1272 | |||
1279 | pull_request = PullRequest.get_or_404( |
|
1273 | pull_request = PullRequest.get_or_404( | |
1280 | self.request.matchdict['pull_request_id']) |
|
1274 | self.request.matchdict['pull_request_id']) | |
1281 | self.load_default_context() |
|
1275 | self.load_default_context() | |
1282 |
|
1276 | |||
1283 | pr_closed = pull_request.is_closed() |
|
1277 | pr_closed = pull_request.is_closed() | |
1284 | allowed_to_delete = PullRequestModel().check_user_delete( |
|
1278 | allowed_to_delete = PullRequestModel().check_user_delete( | |
1285 | pull_request, self._rhodecode_user) and not pr_closed |
|
1279 | pull_request, self._rhodecode_user) and not pr_closed | |
1286 |
|
1280 | |||
1287 | # only owner can delete it ! |
|
1281 | # only owner can delete it ! | |
1288 | if allowed_to_delete: |
|
1282 | if allowed_to_delete: | |
1289 | PullRequestModel().delete(pull_request, self._rhodecode_user) |
|
1283 | PullRequestModel().delete(pull_request, self._rhodecode_user) | |
1290 | Session().commit() |
|
1284 | Session().commit() | |
1291 | h.flash(_('Successfully deleted pull request'), |
|
1285 | h.flash(_('Successfully deleted pull request'), | |
1292 | category='success') |
|
1286 | category='success') | |
1293 | raise HTTPFound(h.route_path('pullrequest_show_all', |
|
1287 | raise HTTPFound(h.route_path('pullrequest_show_all', | |
1294 | repo_name=self.db_repo_name)) |
|
1288 | repo_name=self.db_repo_name)) | |
1295 |
|
1289 | |||
1296 | log.warning('user %s tried to delete pull request without access', |
|
1290 | log.warning('user %s tried to delete pull request without access', | |
1297 | self._rhodecode_user) |
|
1291 | self._rhodecode_user) | |
1298 | raise HTTPNotFound() |
|
1292 | raise HTTPNotFound() | |
1299 |
|
1293 | |||
1300 | @LoginRequired() |
|
1294 | @LoginRequired() | |
1301 | @NotAnonymous() |
|
1295 | @NotAnonymous() | |
1302 | @HasRepoPermissionAnyDecorator( |
|
1296 | @HasRepoPermissionAnyDecorator( | |
1303 | 'repository.read', 'repository.write', 'repository.admin') |
|
1297 | 'repository.read', 'repository.write', 'repository.admin') | |
1304 | @CSRFRequired() |
|
1298 | @CSRFRequired() | |
1305 | @view_config( |
|
1299 | @view_config( | |
1306 | route_name='pullrequest_comment_create', request_method='POST', |
|
1300 | route_name='pullrequest_comment_create', request_method='POST', | |
1307 | renderer='json_ext') |
|
1301 | renderer='json_ext') | |
1308 | def pull_request_comment_create(self): |
|
1302 | def pull_request_comment_create(self): | |
1309 | _ = self.request.translate |
|
1303 | _ = self.request.translate | |
1310 |
|
1304 | |||
1311 | pull_request = PullRequest.get_or_404( |
|
1305 | pull_request = PullRequest.get_or_404( | |
1312 | self.request.matchdict['pull_request_id']) |
|
1306 | self.request.matchdict['pull_request_id']) | |
1313 | pull_request_id = pull_request.pull_request_id |
|
1307 | pull_request_id = pull_request.pull_request_id | |
1314 |
|
1308 | |||
1315 | if pull_request.is_closed(): |
|
1309 | if pull_request.is_closed(): | |
1316 | log.debug('comment: forbidden because pull request is closed') |
|
1310 | log.debug('comment: forbidden because pull request is closed') | |
1317 | raise HTTPForbidden() |
|
1311 | raise HTTPForbidden() | |
1318 |
|
1312 | |||
1319 | allowed_to_comment = PullRequestModel().check_user_comment( |
|
1313 | allowed_to_comment = PullRequestModel().check_user_comment( | |
1320 | pull_request, self._rhodecode_user) |
|
1314 | pull_request, self._rhodecode_user) | |
1321 | if not allowed_to_comment: |
|
1315 | if not allowed_to_comment: | |
1322 | log.debug( |
|
1316 | log.debug( | |
1323 | 'comment: forbidden because pull request is from forbidden repo') |
|
1317 | 'comment: forbidden because pull request is from forbidden repo') | |
1324 | raise HTTPForbidden() |
|
1318 | raise HTTPForbidden() | |
1325 |
|
1319 | |||
1326 | c = self.load_default_context() |
|
1320 | c = self.load_default_context() | |
1327 |
|
1321 | |||
1328 | status = self.request.POST.get('changeset_status', None) |
|
1322 | status = self.request.POST.get('changeset_status', None) | |
1329 | text = self.request.POST.get('text') |
|
1323 | text = self.request.POST.get('text') | |
1330 | comment_type = self.request.POST.get('comment_type') |
|
1324 | comment_type = self.request.POST.get('comment_type') | |
1331 | resolves_comment_id = self.request.POST.get('resolves_comment_id', None) |
|
1325 | resolves_comment_id = self.request.POST.get('resolves_comment_id', None) | |
1332 | close_pull_request = self.request.POST.get('close_pull_request') |
|
1326 | close_pull_request = self.request.POST.get('close_pull_request') | |
1333 |
|
1327 | |||
1334 | # the logic here should work like following, if we submit close |
|
1328 | # the logic here should work like following, if we submit close | |
1335 | # pr comment, use `close_pull_request_with_comment` function |
|
1329 | # pr comment, use `close_pull_request_with_comment` function | |
1336 | # else handle regular comment logic |
|
1330 | # else handle regular comment logic | |
1337 |
|
1331 | |||
1338 | if close_pull_request: |
|
1332 | if close_pull_request: | |
1339 | # only owner or admin or person with write permissions |
|
1333 | # only owner or admin or person with write permissions | |
1340 | allowed_to_close = PullRequestModel().check_user_update( |
|
1334 | allowed_to_close = PullRequestModel().check_user_update( | |
1341 | pull_request, self._rhodecode_user) |
|
1335 | pull_request, self._rhodecode_user) | |
1342 | if not allowed_to_close: |
|
1336 | if not allowed_to_close: | |
1343 | log.debug('comment: forbidden because not allowed to close ' |
|
1337 | log.debug('comment: forbidden because not allowed to close ' | |
1344 | 'pull request %s', pull_request_id) |
|
1338 | 'pull request %s', pull_request_id) | |
1345 | raise HTTPForbidden() |
|
1339 | raise HTTPForbidden() | |
1346 |
|
1340 | |||
1347 | # This also triggers `review_status_change` |
|
1341 | # This also triggers `review_status_change` | |
1348 | comment, status = PullRequestModel().close_pull_request_with_comment( |
|
1342 | comment, status = PullRequestModel().close_pull_request_with_comment( | |
1349 | pull_request, self._rhodecode_user, self.db_repo, message=text, |
|
1343 | pull_request, self._rhodecode_user, self.db_repo, message=text, | |
1350 | auth_user=self._rhodecode_user) |
|
1344 | auth_user=self._rhodecode_user) | |
1351 | Session().flush() |
|
1345 | Session().flush() | |
1352 |
|
1346 | |||
1353 | PullRequestModel().trigger_pull_request_hook( |
|
1347 | PullRequestModel().trigger_pull_request_hook( | |
1354 | pull_request, self._rhodecode_user, 'comment', |
|
1348 | pull_request, self._rhodecode_user, 'comment', | |
1355 | data={'comment': comment}) |
|
1349 | data={'comment': comment}) | |
1356 |
|
1350 | |||
1357 | else: |
|
1351 | else: | |
1358 | # regular comment case, could be inline, or one with status. |
|
1352 | # regular comment case, could be inline, or one with status. | |
1359 | # for that one we check also permissions |
|
1353 | # for that one we check also permissions | |
1360 |
|
1354 | |||
1361 | allowed_to_change_status = PullRequestModel().check_user_change_status( |
|
1355 | allowed_to_change_status = PullRequestModel().check_user_change_status( | |
1362 | pull_request, self._rhodecode_user) |
|
1356 | pull_request, self._rhodecode_user) | |
1363 |
|
1357 | |||
1364 | if status and allowed_to_change_status: |
|
1358 | if status and allowed_to_change_status: | |
1365 | message = (_('Status change %(transition_icon)s %(status)s') |
|
1359 | message = (_('Status change %(transition_icon)s %(status)s') | |
1366 | % {'transition_icon': '>', |
|
1360 | % {'transition_icon': '>', | |
1367 | 'status': ChangesetStatus.get_status_lbl(status)}) |
|
1361 | 'status': ChangesetStatus.get_status_lbl(status)}) | |
1368 | text = text or message |
|
1362 | text = text or message | |
1369 |
|
1363 | |||
1370 | comment = CommentsModel().create( |
|
1364 | comment = CommentsModel().create( | |
1371 | text=text, |
|
1365 | text=text, | |
1372 | repo=self.db_repo.repo_id, |
|
1366 | repo=self.db_repo.repo_id, | |
1373 | user=self._rhodecode_user.user_id, |
|
1367 | user=self._rhodecode_user.user_id, | |
1374 | pull_request=pull_request, |
|
1368 | pull_request=pull_request, | |
1375 | f_path=self.request.POST.get('f_path'), |
|
1369 | f_path=self.request.POST.get('f_path'), | |
1376 | line_no=self.request.POST.get('line'), |
|
1370 | line_no=self.request.POST.get('line'), | |
1377 | status_change=(ChangesetStatus.get_status_lbl(status) |
|
1371 | status_change=(ChangesetStatus.get_status_lbl(status) | |
1378 | if status and allowed_to_change_status else None), |
|
1372 | if status and allowed_to_change_status else None), | |
1379 | status_change_type=(status |
|
1373 | status_change_type=(status | |
1380 | if status and allowed_to_change_status else None), |
|
1374 | if status and allowed_to_change_status else None), | |
1381 | comment_type=comment_type, |
|
1375 | comment_type=comment_type, | |
1382 | resolves_comment_id=resolves_comment_id, |
|
1376 | resolves_comment_id=resolves_comment_id, | |
1383 | auth_user=self._rhodecode_user |
|
1377 | auth_user=self._rhodecode_user | |
1384 | ) |
|
1378 | ) | |
1385 |
|
1379 | |||
1386 | if allowed_to_change_status: |
|
1380 | if allowed_to_change_status: | |
1387 | # calculate old status before we change it |
|
1381 | # calculate old status before we change it | |
1388 | old_calculated_status = pull_request.calculated_review_status() |
|
1382 | old_calculated_status = pull_request.calculated_review_status() | |
1389 |
|
1383 | |||
1390 | # get status if set ! |
|
1384 | # get status if set ! | |
1391 | if status: |
|
1385 | if status: | |
1392 | ChangesetStatusModel().set_status( |
|
1386 | ChangesetStatusModel().set_status( | |
1393 | self.db_repo.repo_id, |
|
1387 | self.db_repo.repo_id, | |
1394 | status, |
|
1388 | status, | |
1395 | self._rhodecode_user.user_id, |
|
1389 | self._rhodecode_user.user_id, | |
1396 | comment, |
|
1390 | comment, | |
1397 | pull_request=pull_request |
|
1391 | pull_request=pull_request | |
1398 | ) |
|
1392 | ) | |
1399 |
|
1393 | |||
1400 | Session().flush() |
|
1394 | Session().flush() | |
1401 | # this is somehow required to get access to some relationship |
|
1395 | # this is somehow required to get access to some relationship | |
1402 | # loaded on comment |
|
1396 | # loaded on comment | |
1403 | Session().refresh(comment) |
|
1397 | Session().refresh(comment) | |
1404 |
|
1398 | |||
1405 | PullRequestModel().trigger_pull_request_hook( |
|
1399 | PullRequestModel().trigger_pull_request_hook( | |
1406 | pull_request, self._rhodecode_user, 'comment', |
|
1400 | pull_request, self._rhodecode_user, 'comment', | |
1407 | data={'comment': comment}) |
|
1401 | data={'comment': comment}) | |
1408 |
|
1402 | |||
1409 | # we now calculate the status of pull request, and based on that |
|
1403 | # we now calculate the status of pull request, and based on that | |
1410 | # calculation we set the commits status |
|
1404 | # calculation we set the commits status | |
1411 | calculated_status = pull_request.calculated_review_status() |
|
1405 | calculated_status = pull_request.calculated_review_status() | |
1412 | if old_calculated_status != calculated_status: |
|
1406 | if old_calculated_status != calculated_status: | |
1413 | PullRequestModel().trigger_pull_request_hook( |
|
1407 | PullRequestModel().trigger_pull_request_hook( | |
1414 | pull_request, self._rhodecode_user, 'review_status_change', |
|
1408 | pull_request, self._rhodecode_user, 'review_status_change', | |
1415 | data={'status': calculated_status}) |
|
1409 | data={'status': calculated_status}) | |
1416 |
|
1410 | |||
1417 | Session().commit() |
|
1411 | Session().commit() | |
1418 |
|
1412 | |||
1419 | data = { |
|
1413 | data = { | |
1420 | 'target_id': h.safeid(h.safe_unicode( |
|
1414 | 'target_id': h.safeid(h.safe_unicode( | |
1421 | self.request.POST.get('f_path'))), |
|
1415 | self.request.POST.get('f_path'))), | |
1422 | } |
|
1416 | } | |
1423 | if comment: |
|
1417 | if comment: | |
1424 | c.co = comment |
|
1418 | c.co = comment | |
1425 | rendered_comment = render( |
|
1419 | rendered_comment = render( | |
1426 | 'rhodecode:templates/changeset/changeset_comment_block.mako', |
|
1420 | 'rhodecode:templates/changeset/changeset_comment_block.mako', | |
1427 | self._get_template_context(c), self.request) |
|
1421 | self._get_template_context(c), self.request) | |
1428 |
|
1422 | |||
1429 | data.update(comment.get_dict()) |
|
1423 | data.update(comment.get_dict()) | |
1430 | data.update({'rendered_text': rendered_comment}) |
|
1424 | data.update({'rendered_text': rendered_comment}) | |
1431 |
|
1425 | |||
1432 | return data |
|
1426 | return data | |
1433 |
|
1427 | |||
1434 | @LoginRequired() |
|
1428 | @LoginRequired() | |
1435 | @NotAnonymous() |
|
1429 | @NotAnonymous() | |
1436 | @HasRepoPermissionAnyDecorator( |
|
1430 | @HasRepoPermissionAnyDecorator( | |
1437 | 'repository.read', 'repository.write', 'repository.admin') |
|
1431 | 'repository.read', 'repository.write', 'repository.admin') | |
1438 | @CSRFRequired() |
|
1432 | @CSRFRequired() | |
1439 | @view_config( |
|
1433 | @view_config( | |
1440 | route_name='pullrequest_comment_delete', request_method='POST', |
|
1434 | route_name='pullrequest_comment_delete', request_method='POST', | |
1441 | renderer='json_ext') |
|
1435 | renderer='json_ext') | |
1442 | def pull_request_comment_delete(self): |
|
1436 | def pull_request_comment_delete(self): | |
1443 | pull_request = PullRequest.get_or_404( |
|
1437 | pull_request = PullRequest.get_or_404( | |
1444 | self.request.matchdict['pull_request_id']) |
|
1438 | self.request.matchdict['pull_request_id']) | |
1445 |
|
1439 | |||
1446 | comment = ChangesetComment.get_or_404( |
|
1440 | comment = ChangesetComment.get_or_404( | |
1447 | self.request.matchdict['comment_id']) |
|
1441 | self.request.matchdict['comment_id']) | |
1448 | comment_id = comment.comment_id |
|
1442 | comment_id = comment.comment_id | |
1449 |
|
1443 | |||
1450 | if pull_request.is_closed(): |
|
1444 | if pull_request.is_closed(): | |
1451 | log.debug('comment: forbidden because pull request is closed') |
|
1445 | log.debug('comment: forbidden because pull request is closed') | |
1452 | raise HTTPForbidden() |
|
1446 | raise HTTPForbidden() | |
1453 |
|
1447 | |||
1454 | if not comment: |
|
1448 | if not comment: | |
1455 | log.debug('Comment with id:%s not found, skipping', comment_id) |
|
1449 | log.debug('Comment with id:%s not found, skipping', comment_id) | |
1456 | # comment already deleted in another call probably |
|
1450 | # comment already deleted in another call probably | |
1457 | return True |
|
1451 | return True | |
1458 |
|
1452 | |||
1459 | if comment.pull_request.is_closed(): |
|
1453 | if comment.pull_request.is_closed(): | |
1460 | # don't allow deleting comments on closed pull request |
|
1454 | # don't allow deleting comments on closed pull request | |
1461 | raise HTTPForbidden() |
|
1455 | raise HTTPForbidden() | |
1462 |
|
1456 | |||
1463 | is_repo_admin = h.HasRepoPermissionAny('repository.admin')(self.db_repo_name) |
|
1457 | is_repo_admin = h.HasRepoPermissionAny('repository.admin')(self.db_repo_name) | |
1464 | super_admin = h.HasPermissionAny('hg.admin')() |
|
1458 | super_admin = h.HasPermissionAny('hg.admin')() | |
1465 | comment_owner = comment.author.user_id == self._rhodecode_user.user_id |
|
1459 | comment_owner = comment.author.user_id == self._rhodecode_user.user_id | |
1466 | is_repo_comment = comment.repo.repo_name == self.db_repo_name |
|
1460 | is_repo_comment = comment.repo.repo_name == self.db_repo_name | |
1467 | comment_repo_admin = is_repo_admin and is_repo_comment |
|
1461 | comment_repo_admin = is_repo_admin and is_repo_comment | |
1468 |
|
1462 | |||
1469 | if super_admin or comment_owner or comment_repo_admin: |
|
1463 | if super_admin or comment_owner or comment_repo_admin: | |
1470 | old_calculated_status = comment.pull_request.calculated_review_status() |
|
1464 | old_calculated_status = comment.pull_request.calculated_review_status() | |
1471 | CommentsModel().delete(comment=comment, auth_user=self._rhodecode_user) |
|
1465 | CommentsModel().delete(comment=comment, auth_user=self._rhodecode_user) | |
1472 | Session().commit() |
|
1466 | Session().commit() | |
1473 | calculated_status = comment.pull_request.calculated_review_status() |
|
1467 | calculated_status = comment.pull_request.calculated_review_status() | |
1474 | if old_calculated_status != calculated_status: |
|
1468 | if old_calculated_status != calculated_status: | |
1475 | PullRequestModel().trigger_pull_request_hook( |
|
1469 | PullRequestModel().trigger_pull_request_hook( | |
1476 | comment.pull_request, self._rhodecode_user, 'review_status_change', |
|
1470 | comment.pull_request, self._rhodecode_user, 'review_status_change', | |
1477 | data={'status': calculated_status}) |
|
1471 | data={'status': calculated_status}) | |
1478 | return True |
|
1472 | return True | |
1479 | else: |
|
1473 | else: | |
1480 | log.warning('No permissions for user %s to delete comment_id: %s', |
|
1474 | log.warning('No permissions for user %s to delete comment_id: %s', | |
1481 | self._rhodecode_db_user, comment_id) |
|
1475 | self._rhodecode_db_user, comment_id) | |
1482 | raise HTTPNotFound() |
|
1476 | raise HTTPNotFound() |
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,2925 +1,2937 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 'variables'; |
|
8 | @import 'variables'; | |
9 | @import 'bootstrap-variables'; |
|
9 | @import 'bootstrap-variables'; | |
10 | @import 'form-bootstrap'; |
|
10 | @import 'form-bootstrap'; | |
11 | @import 'codemirror'; |
|
11 | @import 'codemirror'; | |
12 | @import 'legacy_code_styles'; |
|
12 | @import 'legacy_code_styles'; | |
13 | @import 'readme-box'; |
|
13 | @import 'readme-box'; | |
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 | @import 'tooltips'; |
|
29 | @import 'tooltips'; | |
30 |
|
30 | |||
31 | //--- BASE ------------------// |
|
31 | //--- BASE ------------------// | |
32 | .noscript-error { |
|
32 | .noscript-error { | |
33 | top: 0; |
|
33 | top: 0; | |
34 | left: 0; |
|
34 | left: 0; | |
35 | width: 100%; |
|
35 | width: 100%; | |
36 | z-index: 101; |
|
36 | z-index: 101; | |
37 | text-align: center; |
|
37 | text-align: center; | |
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 | font-weight: @text-semibold-weight; |
|
42 | font-weight: @text-semibold-weight; | |
43 | font-family: @text-semibold; |
|
43 | font-family: @text-semibold; | |
44 | } |
|
44 | } | |
45 |
|
45 | |||
46 | html { |
|
46 | html { | |
47 | display: table; |
|
47 | display: table; | |
48 | height: 100%; |
|
48 | height: 100%; | |
49 | width: 100%; |
|
49 | width: 100%; | |
50 | } |
|
50 | } | |
51 |
|
51 | |||
52 | body { |
|
52 | body { | |
53 | display: table-cell; |
|
53 | display: table-cell; | |
54 | width: 100%; |
|
54 | width: 100%; | |
55 | } |
|
55 | } | |
56 |
|
56 | |||
57 | //--- LAYOUT ------------------// |
|
57 | //--- LAYOUT ------------------// | |
58 |
|
58 | |||
59 | .hidden{ |
|
59 | .hidden{ | |
60 | display: none !important; |
|
60 | display: none !important; | |
61 | } |
|
61 | } | |
62 |
|
62 | |||
63 | .box{ |
|
63 | .box{ | |
64 | float: left; |
|
64 | float: left; | |
65 | width: 100%; |
|
65 | width: 100%; | |
66 | } |
|
66 | } | |
67 |
|
67 | |||
68 | .browser-header { |
|
68 | .browser-header { | |
69 | clear: both; |
|
69 | clear: both; | |
70 | } |
|
70 | } | |
71 | .main { |
|
71 | .main { | |
72 | clear: both; |
|
72 | clear: both; | |
73 | padding:0 0 @pagepadding; |
|
73 | padding:0 0 @pagepadding; | |
74 | height: auto; |
|
74 | height: auto; | |
75 |
|
75 | |||
76 | &:after { //clearfix |
|
76 | &:after { //clearfix | |
77 | content:""; |
|
77 | content:""; | |
78 | clear:both; |
|
78 | clear:both; | |
79 | width:100%; |
|
79 | width:100%; | |
80 | display:block; |
|
80 | display:block; | |
81 | } |
|
81 | } | |
82 | } |
|
82 | } | |
83 |
|
83 | |||
84 | .action-link{ |
|
84 | .action-link{ | |
85 | margin-left: @padding; |
|
85 | margin-left: @padding; | |
86 | padding-left: @padding; |
|
86 | padding-left: @padding; | |
87 | border-left: @border-thickness solid @border-default-color; |
|
87 | border-left: @border-thickness solid @border-default-color; | |
88 | } |
|
88 | } | |
89 |
|
89 | |||
90 | input + .action-link, .action-link.first{ |
|
90 | input + .action-link, .action-link.first{ | |
91 | border-left: none; |
|
91 | border-left: none; | |
92 | } |
|
92 | } | |
93 |
|
93 | |||
94 | .action-link.last{ |
|
94 | .action-link.last{ | |
95 | margin-right: @padding; |
|
95 | margin-right: @padding; | |
96 | padding-right: @padding; |
|
96 | padding-right: @padding; | |
97 | } |
|
97 | } | |
98 |
|
98 | |||
99 | .action-link.active, |
|
99 | .action-link.active, | |
100 | .action-link.active a{ |
|
100 | .action-link.active a{ | |
101 | color: @grey4; |
|
101 | color: @grey4; | |
102 | } |
|
102 | } | |
103 |
|
103 | |||
104 | .action-link.disabled { |
|
104 | .action-link.disabled { | |
105 | color: @grey4; |
|
105 | color: @grey4; | |
106 | cursor: inherit; |
|
106 | cursor: inherit; | |
107 | } |
|
107 | } | |
108 |
|
108 | |||
109 |
|
109 | |||
110 | .clipboard-action { |
|
110 | .clipboard-action { | |
111 | cursor: pointer; |
|
111 | cursor: pointer; | |
112 | margin-left: 5px; |
|
112 | margin-left: 5px; | |
113 |
|
113 | |||
114 | &:not(.no-grey) { |
|
114 | &:not(.no-grey) { | |
115 |
|
115 | |||
116 | &:hover { |
|
116 | &:hover { | |
117 | color: @grey2; |
|
117 | color: @grey2; | |
118 | } |
|
118 | } | |
119 | color: @grey4; |
|
119 | color: @grey4; | |
120 | } |
|
120 | } | |
121 | } |
|
121 | } | |
122 |
|
122 | |||
123 | ul.simple-list{ |
|
123 | ul.simple-list{ | |
124 | list-style: none; |
|
124 | list-style: none; | |
125 | margin: 0; |
|
125 | margin: 0; | |
126 | padding: 0; |
|
126 | padding: 0; | |
127 | } |
|
127 | } | |
128 |
|
128 | |||
129 | .main-content { |
|
129 | .main-content { | |
130 | padding-bottom: @pagepadding; |
|
130 | padding-bottom: @pagepadding; | |
131 | } |
|
131 | } | |
132 |
|
132 | |||
133 | .wide-mode-wrapper { |
|
133 | .wide-mode-wrapper { | |
134 | max-width:4000px !important; |
|
134 | max-width:4000px !important; | |
135 | } |
|
135 | } | |
136 |
|
136 | |||
137 | .wrapper { |
|
137 | .wrapper { | |
138 | position: relative; |
|
138 | position: relative; | |
139 | max-width: @wrapper-maxwidth; |
|
139 | max-width: @wrapper-maxwidth; | |
140 | margin: 0 auto; |
|
140 | margin: 0 auto; | |
141 | } |
|
141 | } | |
142 |
|
142 | |||
143 | #content { |
|
143 | #content { | |
144 | clear: both; |
|
144 | clear: both; | |
145 | padding: 0 @contentpadding; |
|
145 | padding: 0 @contentpadding; | |
146 | } |
|
146 | } | |
147 |
|
147 | |||
148 | .advanced-settings-fields{ |
|
148 | .advanced-settings-fields{ | |
149 | input{ |
|
149 | input{ | |
150 | margin-left: @textmargin; |
|
150 | margin-left: @textmargin; | |
151 | margin-right: @padding/2; |
|
151 | margin-right: @padding/2; | |
152 | } |
|
152 | } | |
153 | } |
|
153 | } | |
154 |
|
154 | |||
155 | .cs_files_title { |
|
155 | .cs_files_title { | |
156 | margin: @pagepadding 0 0; |
|
156 | margin: @pagepadding 0 0; | |
157 | } |
|
157 | } | |
158 |
|
158 | |||
159 | input.inline[type="file"] { |
|
159 | input.inline[type="file"] { | |
160 | display: inline; |
|
160 | display: inline; | |
161 | } |
|
161 | } | |
162 |
|
162 | |||
163 | .error_page { |
|
163 | .error_page { | |
164 | margin: 10% auto; |
|
164 | margin: 10% auto; | |
165 |
|
165 | |||
166 | h1 { |
|
166 | h1 { | |
167 | color: @grey2; |
|
167 | color: @grey2; | |
168 | } |
|
168 | } | |
169 |
|
169 | |||
170 | .alert { |
|
170 | .alert { | |
171 | margin: @padding 0; |
|
171 | margin: @padding 0; | |
172 | } |
|
172 | } | |
173 |
|
173 | |||
174 | .error-branding { |
|
174 | .error-branding { | |
175 | color: @grey4; |
|
175 | color: @grey4; | |
176 | font-weight: @text-semibold-weight; |
|
176 | font-weight: @text-semibold-weight; | |
177 | font-family: @text-semibold; |
|
177 | font-family: @text-semibold; | |
178 | } |
|
178 | } | |
179 |
|
179 | |||
180 | .error_message { |
|
180 | .error_message { | |
181 | font-family: @text-regular; |
|
181 | font-family: @text-regular; | |
182 | } |
|
182 | } | |
183 |
|
183 | |||
184 | .sidebar { |
|
184 | .sidebar { | |
185 | min-height: 275px; |
|
185 | min-height: 275px; | |
186 | margin: 0; |
|
186 | margin: 0; | |
187 | padding: 0 0 @sidebarpadding @sidebarpadding; |
|
187 | padding: 0 0 @sidebarpadding @sidebarpadding; | |
188 | border: none; |
|
188 | border: none; | |
189 | } |
|
189 | } | |
190 |
|
190 | |||
191 | .main-content { |
|
191 | .main-content { | |
192 | position: relative; |
|
192 | position: relative; | |
193 | margin: 0 @sidebarpadding @sidebarpadding; |
|
193 | margin: 0 @sidebarpadding @sidebarpadding; | |
194 | padding: 0 0 0 @sidebarpadding; |
|
194 | padding: 0 0 0 @sidebarpadding; | |
195 | border-left: @border-thickness solid @grey5; |
|
195 | border-left: @border-thickness solid @grey5; | |
196 |
|
196 | |||
197 | @media (max-width:767px) { |
|
197 | @media (max-width:767px) { | |
198 | clear: both; |
|
198 | clear: both; | |
199 | width: 100%; |
|
199 | width: 100%; | |
200 | margin: 0; |
|
200 | margin: 0; | |
201 | border: none; |
|
201 | border: none; | |
202 | } |
|
202 | } | |
203 | } |
|
203 | } | |
204 |
|
204 | |||
205 | .inner-column { |
|
205 | .inner-column { | |
206 | float: left; |
|
206 | float: left; | |
207 | width: 29.75%; |
|
207 | width: 29.75%; | |
208 | min-height: 150px; |
|
208 | min-height: 150px; | |
209 | margin: @sidebarpadding 2% 0 0; |
|
209 | margin: @sidebarpadding 2% 0 0; | |
210 | padding: 0 2% 0 0; |
|
210 | padding: 0 2% 0 0; | |
211 | border-right: @border-thickness solid @grey5; |
|
211 | border-right: @border-thickness solid @grey5; | |
212 |
|
212 | |||
213 | @media (max-width:767px) { |
|
213 | @media (max-width:767px) { | |
214 | clear: both; |
|
214 | clear: both; | |
215 | width: 100%; |
|
215 | width: 100%; | |
216 | border: none; |
|
216 | border: none; | |
217 | } |
|
217 | } | |
218 |
|
218 | |||
219 | ul { |
|
219 | ul { | |
220 | padding-left: 1.25em; |
|
220 | padding-left: 1.25em; | |
221 | } |
|
221 | } | |
222 |
|
222 | |||
223 | &:last-child { |
|
223 | &:last-child { | |
224 | margin: @sidebarpadding 0 0; |
|
224 | margin: @sidebarpadding 0 0; | |
225 | border: none; |
|
225 | border: none; | |
226 | } |
|
226 | } | |
227 |
|
227 | |||
228 | h4 { |
|
228 | h4 { | |
229 | margin: 0 0 @padding; |
|
229 | margin: 0 0 @padding; | |
230 | font-weight: @text-semibold-weight; |
|
230 | font-weight: @text-semibold-weight; | |
231 | font-family: @text-semibold; |
|
231 | font-family: @text-semibold; | |
232 | } |
|
232 | } | |
233 | } |
|
233 | } | |
234 | } |
|
234 | } | |
235 | .error-page-logo { |
|
235 | .error-page-logo { | |
236 | width: 130px; |
|
236 | width: 130px; | |
237 | height: 160px; |
|
237 | height: 160px; | |
238 | } |
|
238 | } | |
239 |
|
239 | |||
240 | // HEADER |
|
240 | // HEADER | |
241 | .header { |
|
241 | .header { | |
242 |
|
242 | |||
243 | // TODO: johbo: Fix login pages, so that they work without a min-height |
|
243 | // TODO: johbo: Fix login pages, so that they work without a min-height | |
244 | // for the header and then remove the min-height. I chose a smaller value |
|
244 | // for the header and then remove the min-height. I chose a smaller value | |
245 | // intentionally here to avoid rendering issues in the main navigation. |
|
245 | // intentionally here to avoid rendering issues in the main navigation. | |
246 | min-height: 49px; |
|
246 | min-height: 49px; | |
247 | min-width: 1024px; |
|
247 | min-width: 1024px; | |
248 |
|
248 | |||
249 | position: relative; |
|
249 | position: relative; | |
250 | vertical-align: bottom; |
|
250 | vertical-align: bottom; | |
251 | padding: 0 @header-padding; |
|
251 | padding: 0 @header-padding; | |
252 | background-color: @grey1; |
|
252 | background-color: @grey1; | |
253 | color: @grey5; |
|
253 | color: @grey5; | |
254 |
|
254 | |||
255 | .title { |
|
255 | .title { | |
256 | overflow: visible; |
|
256 | overflow: visible; | |
257 | } |
|
257 | } | |
258 |
|
258 | |||
259 | &:before, |
|
259 | &:before, | |
260 | &:after { |
|
260 | &:after { | |
261 | content: ""; |
|
261 | content: ""; | |
262 | clear: both; |
|
262 | clear: both; | |
263 | width: 100%; |
|
263 | width: 100%; | |
264 | } |
|
264 | } | |
265 |
|
265 | |||
266 | // TODO: johbo: Avoids breaking "Repositories" chooser |
|
266 | // TODO: johbo: Avoids breaking "Repositories" chooser | |
267 | .select2-container .select2-choice .select2-arrow { |
|
267 | .select2-container .select2-choice .select2-arrow { | |
268 | display: none; |
|
268 | display: none; | |
269 | } |
|
269 | } | |
270 | } |
|
270 | } | |
271 |
|
271 | |||
272 | #header-inner { |
|
272 | #header-inner { | |
273 | &.title { |
|
273 | &.title { | |
274 | margin: 0; |
|
274 | margin: 0; | |
275 | } |
|
275 | } | |
276 | &:before, |
|
276 | &:before, | |
277 | &:after { |
|
277 | &:after { | |
278 | content: ""; |
|
278 | content: ""; | |
279 | clear: both; |
|
279 | clear: both; | |
280 | } |
|
280 | } | |
281 | } |
|
281 | } | |
282 |
|
282 | |||
283 | // Gists |
|
283 | // Gists | |
284 | #files_data { |
|
284 | #files_data { | |
285 | clear: both; //for firefox |
|
285 | clear: both; //for firefox | |
286 | padding-top: 10px; |
|
286 | padding-top: 10px; | |
287 | } |
|
287 | } | |
288 |
|
288 | |||
289 | #gistid { |
|
289 | #gistid { | |
290 | margin-right: @padding; |
|
290 | margin-right: @padding; | |
291 | } |
|
291 | } | |
292 |
|
292 | |||
293 | // Global Settings Editor |
|
293 | // Global Settings Editor | |
294 | .textarea.editor { |
|
294 | .textarea.editor { | |
295 | float: left; |
|
295 | float: left; | |
296 | position: relative; |
|
296 | position: relative; | |
297 | max-width: @texteditor-width; |
|
297 | max-width: @texteditor-width; | |
298 |
|
298 | |||
299 | select { |
|
299 | select { | |
300 | position: absolute; |
|
300 | position: absolute; | |
301 | top:10px; |
|
301 | top:10px; | |
302 | right:0; |
|
302 | right:0; | |
303 | } |
|
303 | } | |
304 |
|
304 | |||
305 | .CodeMirror { |
|
305 | .CodeMirror { | |
306 | margin: 0; |
|
306 | margin: 0; | |
307 | } |
|
307 | } | |
308 |
|
308 | |||
309 | .help-block { |
|
309 | .help-block { | |
310 | margin: 0 0 @padding; |
|
310 | margin: 0 0 @padding; | |
311 | padding:.5em; |
|
311 | padding:.5em; | |
312 | background-color: @grey6; |
|
312 | background-color: @grey6; | |
313 | &.pre-formatting { |
|
313 | &.pre-formatting { | |
314 | white-space: pre; |
|
314 | white-space: pre; | |
315 | } |
|
315 | } | |
316 | } |
|
316 | } | |
317 | } |
|
317 | } | |
318 |
|
318 | |||
319 | ul.auth_plugins { |
|
319 | ul.auth_plugins { | |
320 | margin: @padding 0 @padding @legend-width; |
|
320 | margin: @padding 0 @padding @legend-width; | |
321 | padding: 0; |
|
321 | padding: 0; | |
322 |
|
322 | |||
323 | li { |
|
323 | li { | |
324 | margin-bottom: @padding; |
|
324 | margin-bottom: @padding; | |
325 | line-height: 1em; |
|
325 | line-height: 1em; | |
326 | list-style-type: none; |
|
326 | list-style-type: none; | |
327 |
|
327 | |||
328 | .auth_buttons .btn { |
|
328 | .auth_buttons .btn { | |
329 | margin-right: @padding; |
|
329 | margin-right: @padding; | |
330 | } |
|
330 | } | |
331 |
|
331 | |||
332 | } |
|
332 | } | |
333 | } |
|
333 | } | |
334 |
|
334 | |||
335 |
|
335 | |||
336 | // My Account PR list |
|
336 | // My Account PR list | |
337 |
|
337 | |||
338 | #show_closed { |
|
338 | #show_closed { | |
339 | margin: 0 1em 0 0; |
|
339 | margin: 0 1em 0 0; | |
340 | } |
|
340 | } | |
341 |
|
341 | |||
342 | #pull_request_list_table { |
|
342 | #pull_request_list_table { | |
343 | .closed { |
|
343 | .closed { | |
344 | background-color: @grey6; |
|
344 | background-color: @grey6; | |
345 | } |
|
345 | } | |
346 |
|
346 | |||
347 | .state-creating, |
|
347 | .state-creating, | |
348 | .state-updating, |
|
348 | .state-updating, | |
349 | .state-merging |
|
349 | .state-merging | |
350 | { |
|
350 | { | |
351 | background-color: @grey6; |
|
351 | background-color: @grey6; | |
352 | } |
|
352 | } | |
353 |
|
353 | |||
354 | .td-status { |
|
354 | .td-status { | |
355 | padding-left: .5em; |
|
355 | padding-left: .5em; | |
356 | } |
|
356 | } | |
357 | .log-container .truncate { |
|
357 | .log-container .truncate { | |
358 | height: 2.75em; |
|
358 | height: 2.75em; | |
359 | white-space: pre-line; |
|
359 | white-space: pre-line; | |
360 | } |
|
360 | } | |
361 | table.rctable .user { |
|
361 | table.rctable .user { | |
362 | padding-left: 0; |
|
362 | padding-left: 0; | |
363 | } |
|
363 | } | |
364 | table.rctable { |
|
364 | table.rctable { | |
365 | td.td-description, |
|
365 | td.td-description, | |
366 | .rc-user { |
|
366 | .rc-user { | |
367 | min-width: auto; |
|
367 | min-width: auto; | |
368 | } |
|
368 | } | |
369 | } |
|
369 | } | |
370 | } |
|
370 | } | |
371 |
|
371 | |||
372 | // Pull Requests |
|
372 | // Pull Requests | |
373 |
|
373 | |||
374 | .pullrequests_section_head { |
|
374 | .pullrequests_section_head { | |
375 | display: block; |
|
375 | display: block; | |
376 | clear: both; |
|
376 | clear: both; | |
377 | margin: @padding 0; |
|
377 | margin: @padding 0; | |
378 | font-weight: @text-bold-weight; |
|
378 | font-weight: @text-bold-weight; | |
379 | font-family: @text-bold; |
|
379 | font-family: @text-bold; | |
380 | } |
|
380 | } | |
381 |
|
381 | |||
382 | .pr-origininfo, .pr-targetinfo { |
|
382 | .pr-origininfo, .pr-targetinfo { | |
383 | position: relative; |
|
383 | position: relative; | |
384 |
|
384 | |||
385 | .tag { |
|
385 | .tag { | |
386 | display: inline-block; |
|
386 | display: inline-block; | |
387 | margin: 0 1em .5em 0; |
|
387 | margin: 0 1em .5em 0; | |
388 | } |
|
388 | } | |
389 |
|
389 | |||
390 | .clone-url { |
|
390 | .clone-url { | |
391 | display: inline-block; |
|
391 | display: inline-block; | |
392 | margin: 0 0 .5em 0; |
|
392 | margin: 0 0 .5em 0; | |
393 | padding: 0; |
|
393 | padding: 0; | |
394 | line-height: 1.2em; |
|
394 | line-height: 1.2em; | |
395 | } |
|
395 | } | |
396 | } |
|
396 | } | |
397 |
|
397 | |||
398 | .pr-mergeinfo { |
|
398 | .pr-mergeinfo { | |
399 | min-width: 95% !important; |
|
399 | min-width: 95% !important; | |
400 | padding: 0 !important; |
|
400 | padding: 0 !important; | |
401 | border: 0; |
|
401 | border: 0; | |
402 | } |
|
402 | } | |
403 | .pr-mergeinfo-copy { |
|
403 | .pr-mergeinfo-copy { | |
404 | padding: 0 0; |
|
404 | padding: 0 0; | |
405 | } |
|
405 | } | |
406 |
|
406 | |||
407 | .pr-pullinfo { |
|
407 | .pr-pullinfo { | |
408 | min-width: 95% !important; |
|
408 | min-width: 95% !important; | |
409 | padding: 0 !important; |
|
409 | padding: 0 !important; | |
410 | border: 0; |
|
410 | border: 0; | |
411 | } |
|
411 | } | |
412 | .pr-pullinfo-copy { |
|
412 | .pr-pullinfo-copy { | |
413 | padding: 0 0; |
|
413 | padding: 0 0; | |
414 | } |
|
414 | } | |
415 |
|
415 | |||
416 |
|
416 | |||
417 |
|
|
417 | .pr-title-input { | |
418 |
width: |
|
418 | width: 80%; | |
419 | font-size: 1em; |
|
419 | font-size: 1em; | |
420 | margin: 0; |
|
420 | margin: 0 0 4px 0; | |
421 |
padding: 0 |
|
421 | padding: 0; | |
422 | line-height: 1.7em; |
|
422 | line-height: 1.7em; | |
423 | color: @text-color; |
|
423 | color: @text-color; | |
424 | letter-spacing: .02em; |
|
424 | letter-spacing: .02em; | |
425 | font-weight: @text-bold-weight; |
|
425 | font-weight: @text-bold-weight; | |
426 | font-family: @text-bold; |
|
426 | font-family: @text-bold; | |
|
427 | ||||
|
428 | &:hover { | |||
|
429 | box-shadow: none; | |||
|
430 | } | |||
|
431 | } | |||
|
432 | ||||
|
433 | #pr-title { | |||
|
434 | input { | |||
|
435 | border: 1px transparent; | |||
|
436 | color: black; | |||
|
437 | opacity: 1 | |||
|
438 | } | |||
427 | } |
|
439 | } | |
428 |
|
440 | |||
429 | #pullrequest_title { |
|
441 | #pullrequest_title { | |
430 | width: 100%; |
|
442 | width: 100%; | |
431 | box-sizing: border-box; |
|
443 | box-sizing: border-box; | |
432 | } |
|
444 | } | |
433 |
|
445 | |||
434 | #pr_open_message { |
|
446 | #pr_open_message { | |
435 | border: @border-thickness solid #fff; |
|
447 | border: @border-thickness solid #fff; | |
436 | border-radius: @border-radius; |
|
448 | border-radius: @border-radius; | |
437 | padding: @padding-large-vertical @padding-large-vertical @padding-large-vertical 0; |
|
449 | padding: @padding-large-vertical @padding-large-vertical @padding-large-vertical 0; | |
438 | text-align: left; |
|
450 | text-align: left; | |
439 | overflow: hidden; |
|
451 | overflow: hidden; | |
440 | } |
|
452 | } | |
441 |
|
453 | |||
442 | .pr-submit-button { |
|
454 | .pr-submit-button { | |
443 | float: right; |
|
455 | float: right; | |
444 | margin: 0 0 0 5px; |
|
456 | margin: 0 0 0 5px; | |
445 | } |
|
457 | } | |
446 |
|
458 | |||
447 | .pr-spacing-container { |
|
459 | .pr-spacing-container { | |
448 | padding: 20px; |
|
460 | padding: 20px; | |
449 | clear: both |
|
461 | clear: both | |
450 | } |
|
462 | } | |
451 |
|
463 | |||
452 | #pr-description-input { |
|
464 | #pr-description-input { | |
453 | margin-bottom: 0; |
|
465 | margin-bottom: 0; | |
454 | } |
|
466 | } | |
455 |
|
467 | |||
456 | .pr-description-label { |
|
468 | .pr-description-label { | |
457 | vertical-align: top; |
|
469 | vertical-align: top; | |
458 | } |
|
470 | } | |
459 |
|
471 | |||
460 | .perms_section_head { |
|
472 | .perms_section_head { | |
461 | min-width: 625px; |
|
473 | min-width: 625px; | |
462 |
|
474 | |||
463 | h2 { |
|
475 | h2 { | |
464 | margin-bottom: 0; |
|
476 | margin-bottom: 0; | |
465 | } |
|
477 | } | |
466 |
|
478 | |||
467 | .label-checkbox { |
|
479 | .label-checkbox { | |
468 | float: left; |
|
480 | float: left; | |
469 | } |
|
481 | } | |
470 |
|
482 | |||
471 | &.field { |
|
483 | &.field { | |
472 | margin: @space 0 @padding; |
|
484 | margin: @space 0 @padding; | |
473 | } |
|
485 | } | |
474 |
|
486 | |||
475 | &:first-child.field { |
|
487 | &:first-child.field { | |
476 | margin-top: 0; |
|
488 | margin-top: 0; | |
477 |
|
489 | |||
478 | .label { |
|
490 | .label { | |
479 | margin-top: 0; |
|
491 | margin-top: 0; | |
480 | padding-top: 0; |
|
492 | padding-top: 0; | |
481 | } |
|
493 | } | |
482 |
|
494 | |||
483 | .radios { |
|
495 | .radios { | |
484 | padding-top: 0; |
|
496 | padding-top: 0; | |
485 | } |
|
497 | } | |
486 | } |
|
498 | } | |
487 |
|
499 | |||
488 | .radios { |
|
500 | .radios { | |
489 | position: relative; |
|
501 | position: relative; | |
490 | width: 505px; |
|
502 | width: 505px; | |
491 | } |
|
503 | } | |
492 | } |
|
504 | } | |
493 |
|
505 | |||
494 | //--- MODULES ------------------// |
|
506 | //--- MODULES ------------------// | |
495 |
|
507 | |||
496 |
|
508 | |||
497 | // Server Announcement |
|
509 | // Server Announcement | |
498 | #server-announcement { |
|
510 | #server-announcement { | |
499 | width: 95%; |
|
511 | width: 95%; | |
500 | margin: @padding auto; |
|
512 | margin: @padding auto; | |
501 | padding: @padding; |
|
513 | padding: @padding; | |
502 | border-width: 2px; |
|
514 | border-width: 2px; | |
503 | border-style: solid; |
|
515 | border-style: solid; | |
504 | .border-radius(2px); |
|
516 | .border-radius(2px); | |
505 | font-weight: @text-bold-weight; |
|
517 | font-weight: @text-bold-weight; | |
506 | font-family: @text-bold; |
|
518 | font-family: @text-bold; | |
507 |
|
519 | |||
508 | &.info { border-color: @alert4; background-color: @alert4-inner; } |
|
520 | &.info { border-color: @alert4; background-color: @alert4-inner; } | |
509 | &.warning { border-color: @alert3; background-color: @alert3-inner; } |
|
521 | &.warning { border-color: @alert3; background-color: @alert3-inner; } | |
510 | &.error { border-color: @alert2; background-color: @alert2-inner; } |
|
522 | &.error { border-color: @alert2; background-color: @alert2-inner; } | |
511 | &.success { border-color: @alert1; background-color: @alert1-inner; } |
|
523 | &.success { border-color: @alert1; background-color: @alert1-inner; } | |
512 | &.neutral { border-color: @grey3; background-color: @grey6; } |
|
524 | &.neutral { border-color: @grey3; background-color: @grey6; } | |
513 | } |
|
525 | } | |
514 |
|
526 | |||
515 | // Fixed Sidebar Column |
|
527 | // Fixed Sidebar Column | |
516 | .sidebar-col-wrapper { |
|
528 | .sidebar-col-wrapper { | |
517 | padding-left: @sidebar-all-width; |
|
529 | padding-left: @sidebar-all-width; | |
518 |
|
530 | |||
519 | .sidebar { |
|
531 | .sidebar { | |
520 | width: @sidebar-width; |
|
532 | width: @sidebar-width; | |
521 | margin-left: -@sidebar-all-width; |
|
533 | margin-left: -@sidebar-all-width; | |
522 | } |
|
534 | } | |
523 | } |
|
535 | } | |
524 |
|
536 | |||
525 | .sidebar-col-wrapper.scw-small { |
|
537 | .sidebar-col-wrapper.scw-small { | |
526 | padding-left: @sidebar-small-all-width; |
|
538 | padding-left: @sidebar-small-all-width; | |
527 |
|
539 | |||
528 | .sidebar { |
|
540 | .sidebar { | |
529 | width: @sidebar-small-width; |
|
541 | width: @sidebar-small-width; | |
530 | margin-left: -@sidebar-small-all-width; |
|
542 | margin-left: -@sidebar-small-all-width; | |
531 | } |
|
543 | } | |
532 | } |
|
544 | } | |
533 |
|
545 | |||
534 |
|
546 | |||
535 | // FOOTER |
|
547 | // FOOTER | |
536 | #footer { |
|
548 | #footer { | |
537 | padding: 0; |
|
549 | padding: 0; | |
538 | text-align: center; |
|
550 | text-align: center; | |
539 | vertical-align: middle; |
|
551 | vertical-align: middle; | |
540 | color: @grey2; |
|
552 | color: @grey2; | |
541 | font-size: 11px; |
|
553 | font-size: 11px; | |
542 |
|
554 | |||
543 | p { |
|
555 | p { | |
544 | margin: 0; |
|
556 | margin: 0; | |
545 | padding: 1em; |
|
557 | padding: 1em; | |
546 | line-height: 1em; |
|
558 | line-height: 1em; | |
547 | } |
|
559 | } | |
548 |
|
560 | |||
549 | .server-instance { //server instance |
|
561 | .server-instance { //server instance | |
550 | display: none; |
|
562 | display: none; | |
551 | } |
|
563 | } | |
552 |
|
564 | |||
553 | .title { |
|
565 | .title { | |
554 | float: none; |
|
566 | float: none; | |
555 | margin: 0 auto; |
|
567 | margin: 0 auto; | |
556 | } |
|
568 | } | |
557 | } |
|
569 | } | |
558 |
|
570 | |||
559 | button.close { |
|
571 | button.close { | |
560 | padding: 0; |
|
572 | padding: 0; | |
561 | cursor: pointer; |
|
573 | cursor: pointer; | |
562 | background: transparent; |
|
574 | background: transparent; | |
563 | border: 0; |
|
575 | border: 0; | |
564 | .box-shadow(none); |
|
576 | .box-shadow(none); | |
565 | -webkit-appearance: none; |
|
577 | -webkit-appearance: none; | |
566 | } |
|
578 | } | |
567 |
|
579 | |||
568 | .close { |
|
580 | .close { | |
569 | float: right; |
|
581 | float: right; | |
570 | font-size: 21px; |
|
582 | font-size: 21px; | |
571 | font-family: @text-bootstrap; |
|
583 | font-family: @text-bootstrap; | |
572 | line-height: 1em; |
|
584 | line-height: 1em; | |
573 | font-weight: bold; |
|
585 | font-weight: bold; | |
574 | color: @grey2; |
|
586 | color: @grey2; | |
575 |
|
587 | |||
576 | &:hover, |
|
588 | &:hover, | |
577 | &:focus { |
|
589 | &:focus { | |
578 | color: @grey1; |
|
590 | color: @grey1; | |
579 | text-decoration: none; |
|
591 | text-decoration: none; | |
580 | cursor: pointer; |
|
592 | cursor: pointer; | |
581 | } |
|
593 | } | |
582 | } |
|
594 | } | |
583 |
|
595 | |||
584 | // GRID |
|
596 | // GRID | |
585 | .sorting, |
|
597 | .sorting, | |
586 | .sorting_desc, |
|
598 | .sorting_desc, | |
587 | .sorting_asc { |
|
599 | .sorting_asc { | |
588 | cursor: pointer; |
|
600 | cursor: pointer; | |
589 | } |
|
601 | } | |
590 | .sorting_desc:after { |
|
602 | .sorting_desc:after { | |
591 | content: "\00A0\25B2"; |
|
603 | content: "\00A0\25B2"; | |
592 | font-size: .75em; |
|
604 | font-size: .75em; | |
593 | } |
|
605 | } | |
594 | .sorting_asc:after { |
|
606 | .sorting_asc:after { | |
595 | content: "\00A0\25BC"; |
|
607 | content: "\00A0\25BC"; | |
596 | font-size: .68em; |
|
608 | font-size: .68em; | |
597 | } |
|
609 | } | |
598 |
|
610 | |||
599 |
|
611 | |||
600 | .user_auth_tokens { |
|
612 | .user_auth_tokens { | |
601 |
|
613 | |||
602 | &.truncate { |
|
614 | &.truncate { | |
603 | white-space: nowrap; |
|
615 | white-space: nowrap; | |
604 | overflow: hidden; |
|
616 | overflow: hidden; | |
605 | text-overflow: ellipsis; |
|
617 | text-overflow: ellipsis; | |
606 | } |
|
618 | } | |
607 |
|
619 | |||
608 | .fields .field .input { |
|
620 | .fields .field .input { | |
609 | margin: 0; |
|
621 | margin: 0; | |
610 | } |
|
622 | } | |
611 |
|
623 | |||
612 | input#description { |
|
624 | input#description { | |
613 | width: 100px; |
|
625 | width: 100px; | |
614 | margin: 0; |
|
626 | margin: 0; | |
615 | } |
|
627 | } | |
616 |
|
628 | |||
617 | .drop-menu { |
|
629 | .drop-menu { | |
618 | // TODO: johbo: Remove this, should work out of the box when |
|
630 | // TODO: johbo: Remove this, should work out of the box when | |
619 | // having multiple inputs inline |
|
631 | // having multiple inputs inline | |
620 | margin: 0 0 0 5px; |
|
632 | margin: 0 0 0 5px; | |
621 | } |
|
633 | } | |
622 | } |
|
634 | } | |
623 | #user_list_table { |
|
635 | #user_list_table { | |
624 | .closed { |
|
636 | .closed { | |
625 | background-color: @grey6; |
|
637 | background-color: @grey6; | |
626 | } |
|
638 | } | |
627 | } |
|
639 | } | |
628 |
|
640 | |||
629 |
|
641 | |||
630 | input, textarea { |
|
642 | input, textarea { | |
631 | &.disabled { |
|
643 | &.disabled { | |
632 | opacity: .5; |
|
644 | opacity: .5; | |
633 | } |
|
645 | } | |
634 |
|
646 | |||
635 | &:hover { |
|
647 | &:hover { | |
636 | border-color: @grey3; |
|
648 | border-color: @grey3; | |
637 | box-shadow: @button-shadow; |
|
649 | box-shadow: @button-shadow; | |
638 | } |
|
650 | } | |
639 |
|
651 | |||
640 | &:focus { |
|
652 | &:focus { | |
641 | border-color: @rcblue; |
|
653 | border-color: @rcblue; | |
642 | box-shadow: @button-shadow; |
|
654 | box-shadow: @button-shadow; | |
643 | } |
|
655 | } | |
644 | } |
|
656 | } | |
645 |
|
657 | |||
646 | // remove extra padding in firefox |
|
658 | // remove extra padding in firefox | |
647 | input::-moz-focus-inner { border:0; padding:0 } |
|
659 | input::-moz-focus-inner { border:0; padding:0 } | |
648 |
|
660 | |||
649 | .adjacent input { |
|
661 | .adjacent input { | |
650 | margin-bottom: @padding; |
|
662 | margin-bottom: @padding; | |
651 | } |
|
663 | } | |
652 |
|
664 | |||
653 | .permissions_boxes { |
|
665 | .permissions_boxes { | |
654 | display: block; |
|
666 | display: block; | |
655 | } |
|
667 | } | |
656 |
|
668 | |||
657 | //FORMS |
|
669 | //FORMS | |
658 |
|
670 | |||
659 | .medium-inline, |
|
671 | .medium-inline, | |
660 | input#description.medium-inline { |
|
672 | input#description.medium-inline { | |
661 | display: inline; |
|
673 | display: inline; | |
662 | width: @medium-inline-input-width; |
|
674 | width: @medium-inline-input-width; | |
663 | min-width: 100px; |
|
675 | min-width: 100px; | |
664 | } |
|
676 | } | |
665 |
|
677 | |||
666 | select { |
|
678 | select { | |
667 | //reset |
|
679 | //reset | |
668 | -webkit-appearance: none; |
|
680 | -webkit-appearance: none; | |
669 | -moz-appearance: none; |
|
681 | -moz-appearance: none; | |
670 |
|
682 | |||
671 | display: inline-block; |
|
683 | display: inline-block; | |
672 | height: 28px; |
|
684 | height: 28px; | |
673 | width: auto; |
|
685 | width: auto; | |
674 | margin: 0 @padding @padding 0; |
|
686 | margin: 0 @padding @padding 0; | |
675 | padding: 0 18px 0 8px; |
|
687 | padding: 0 18px 0 8px; | |
676 | line-height:1em; |
|
688 | line-height:1em; | |
677 | font-size: @basefontsize; |
|
689 | font-size: @basefontsize; | |
678 | border: @border-thickness solid @grey5; |
|
690 | border: @border-thickness solid @grey5; | |
679 | border-radius: @border-radius; |
|
691 | border-radius: @border-radius; | |
680 | background:white url("../images/dt-arrow-dn.png") no-repeat 100% 50%; |
|
692 | background:white url("../images/dt-arrow-dn.png") no-repeat 100% 50%; | |
681 | color: @grey4; |
|
693 | color: @grey4; | |
682 | box-shadow: @button-shadow; |
|
694 | box-shadow: @button-shadow; | |
683 |
|
695 | |||
684 | &:after { |
|
696 | &:after { | |
685 | content: "\00A0\25BE"; |
|
697 | content: "\00A0\25BE"; | |
686 | } |
|
698 | } | |
687 |
|
699 | |||
688 | &:focus, &:hover { |
|
700 | &:focus, &:hover { | |
689 | outline: none; |
|
701 | outline: none; | |
690 | border-color: @grey4; |
|
702 | border-color: @grey4; | |
691 | color: @rcdarkblue; |
|
703 | color: @rcdarkblue; | |
692 | } |
|
704 | } | |
693 | } |
|
705 | } | |
694 |
|
706 | |||
695 | option { |
|
707 | option { | |
696 | &:focus { |
|
708 | &:focus { | |
697 | outline: none; |
|
709 | outline: none; | |
698 | } |
|
710 | } | |
699 | } |
|
711 | } | |
700 |
|
712 | |||
701 | input, |
|
713 | input, | |
702 | textarea { |
|
714 | textarea { | |
703 | padding: @input-padding; |
|
715 | padding: @input-padding; | |
704 | border: @input-border-thickness solid @border-highlight-color; |
|
716 | border: @input-border-thickness solid @border-highlight-color; | |
705 | .border-radius (@border-radius); |
|
717 | .border-radius (@border-radius); | |
706 | font-family: @text-light; |
|
718 | font-family: @text-light; | |
707 | font-size: @basefontsize; |
|
719 | font-size: @basefontsize; | |
708 |
|
720 | |||
709 | &.input-sm { |
|
721 | &.input-sm { | |
710 | padding: 5px; |
|
722 | padding: 5px; | |
711 | } |
|
723 | } | |
712 |
|
724 | |||
713 | &#description { |
|
725 | &#description { | |
714 | min-width: @input-description-minwidth; |
|
726 | min-width: @input-description-minwidth; | |
715 | min-height: 1em; |
|
727 | min-height: 1em; | |
716 | padding: 10px; |
|
728 | padding: 10px; | |
717 | } |
|
729 | } | |
718 | } |
|
730 | } | |
719 |
|
731 | |||
720 | .field-sm { |
|
732 | .field-sm { | |
721 | input, |
|
733 | input, | |
722 | textarea { |
|
734 | textarea { | |
723 | padding: 5px; |
|
735 | padding: 5px; | |
724 | } |
|
736 | } | |
725 | } |
|
737 | } | |
726 |
|
738 | |||
727 | textarea { |
|
739 | textarea { | |
728 | display: block; |
|
740 | display: block; | |
729 | clear: both; |
|
741 | clear: both; | |
730 | width: 100%; |
|
742 | width: 100%; | |
731 | min-height: 100px; |
|
743 | min-height: 100px; | |
732 | margin-bottom: @padding; |
|
744 | margin-bottom: @padding; | |
733 | .box-sizing(border-box); |
|
745 | .box-sizing(border-box); | |
734 | overflow: auto; |
|
746 | overflow: auto; | |
735 | } |
|
747 | } | |
736 |
|
748 | |||
737 | label { |
|
749 | label { | |
738 | font-family: @text-light; |
|
750 | font-family: @text-light; | |
739 | } |
|
751 | } | |
740 |
|
752 | |||
741 | // GRAVATARS |
|
753 | // GRAVATARS | |
742 | // centers gravatar on username to the right |
|
754 | // centers gravatar on username to the right | |
743 |
|
755 | |||
744 | .gravatar { |
|
756 | .gravatar { | |
745 | display: inline; |
|
757 | display: inline; | |
746 | min-width: 16px; |
|
758 | min-width: 16px; | |
747 | min-height: 16px; |
|
759 | min-height: 16px; | |
748 | margin: -5px 0; |
|
760 | margin: -5px 0; | |
749 | padding: 0; |
|
761 | padding: 0; | |
750 | line-height: 1em; |
|
762 | line-height: 1em; | |
751 | box-sizing: content-box; |
|
763 | box-sizing: content-box; | |
752 | border-radius: 50%; |
|
764 | border-radius: 50%; | |
753 |
|
765 | |||
754 | &.gravatar-large { |
|
766 | &.gravatar-large { | |
755 | margin: -0.5em .25em -0.5em 0; |
|
767 | margin: -0.5em .25em -0.5em 0; | |
756 | } |
|
768 | } | |
757 |
|
769 | |||
758 | & + .user { |
|
770 | & + .user { | |
759 | display: inline; |
|
771 | display: inline; | |
760 | margin: 0; |
|
772 | margin: 0; | |
761 | padding: 0 0 0 .17em; |
|
773 | padding: 0 0 0 .17em; | |
762 | line-height: 1em; |
|
774 | line-height: 1em; | |
763 | } |
|
775 | } | |
764 | } |
|
776 | } | |
765 |
|
777 | |||
766 | .user-inline-data { |
|
778 | .user-inline-data { | |
767 | display: inline-block; |
|
779 | display: inline-block; | |
768 | float: left; |
|
780 | float: left; | |
769 | padding-left: .5em; |
|
781 | padding-left: .5em; | |
770 | line-height: 1.3em; |
|
782 | line-height: 1.3em; | |
771 | } |
|
783 | } | |
772 |
|
784 | |||
773 | .rc-user { // gravatar + user wrapper |
|
785 | .rc-user { // gravatar + user wrapper | |
774 | float: left; |
|
786 | float: left; | |
775 | position: relative; |
|
787 | position: relative; | |
776 | min-width: 100px; |
|
788 | min-width: 100px; | |
777 | max-width: 200px; |
|
789 | max-width: 200px; | |
778 | min-height: (@gravatar-size + @border-thickness * 2); // account for border |
|
790 | min-height: (@gravatar-size + @border-thickness * 2); // account for border | |
779 | display: block; |
|
791 | display: block; | |
780 | padding: 0 0 0 (@gravatar-size + @basefontsize/2 + @border-thickness * 2); |
|
792 | padding: 0 0 0 (@gravatar-size + @basefontsize/2 + @border-thickness * 2); | |
781 |
|
793 | |||
782 |
|
794 | |||
783 | .gravatar { |
|
795 | .gravatar { | |
784 | display: block; |
|
796 | display: block; | |
785 | position: absolute; |
|
797 | position: absolute; | |
786 | top: 0; |
|
798 | top: 0; | |
787 | left: 0; |
|
799 | left: 0; | |
788 | min-width: @gravatar-size; |
|
800 | min-width: @gravatar-size; | |
789 | min-height: @gravatar-size; |
|
801 | min-height: @gravatar-size; | |
790 | margin: 0; |
|
802 | margin: 0; | |
791 | } |
|
803 | } | |
792 |
|
804 | |||
793 | .user { |
|
805 | .user { | |
794 | display: block; |
|
806 | display: block; | |
795 | max-width: 175px; |
|
807 | max-width: 175px; | |
796 | padding-top: 2px; |
|
808 | padding-top: 2px; | |
797 | overflow: hidden; |
|
809 | overflow: hidden; | |
798 | text-overflow: ellipsis; |
|
810 | text-overflow: ellipsis; | |
799 | } |
|
811 | } | |
800 | } |
|
812 | } | |
801 |
|
813 | |||
802 | .gist-gravatar, |
|
814 | .gist-gravatar, | |
803 | .journal_container { |
|
815 | .journal_container { | |
804 | .gravatar-large { |
|
816 | .gravatar-large { | |
805 | margin: 0 .5em -10px 0; |
|
817 | margin: 0 .5em -10px 0; | |
806 | } |
|
818 | } | |
807 | } |
|
819 | } | |
808 |
|
820 | |||
809 | .gist-type-fields { |
|
821 | .gist-type-fields { | |
810 | line-height: 30px; |
|
822 | line-height: 30px; | |
811 | height: 30px; |
|
823 | height: 30px; | |
812 |
|
824 | |||
813 | .gist-type-fields-wrapper { |
|
825 | .gist-type-fields-wrapper { | |
814 | vertical-align: middle; |
|
826 | vertical-align: middle; | |
815 | display: inline-block; |
|
827 | display: inline-block; | |
816 | line-height: 25px; |
|
828 | line-height: 25px; | |
817 | } |
|
829 | } | |
818 | } |
|
830 | } | |
819 |
|
831 | |||
820 | // ADMIN SETTINGS |
|
832 | // ADMIN SETTINGS | |
821 |
|
833 | |||
822 | // Tag Patterns |
|
834 | // Tag Patterns | |
823 | .tag_patterns { |
|
835 | .tag_patterns { | |
824 | .tag_input { |
|
836 | .tag_input { | |
825 | margin-bottom: @padding; |
|
837 | margin-bottom: @padding; | |
826 | } |
|
838 | } | |
827 | } |
|
839 | } | |
828 |
|
840 | |||
829 | .locked_input { |
|
841 | .locked_input { | |
830 | position: relative; |
|
842 | position: relative; | |
831 |
|
843 | |||
832 | input { |
|
844 | input { | |
833 | display: inline; |
|
845 | display: inline; | |
834 | margin: 3px 5px 0px 0px; |
|
846 | margin: 3px 5px 0px 0px; | |
835 | } |
|
847 | } | |
836 |
|
848 | |||
837 | br { |
|
849 | br { | |
838 | display: none; |
|
850 | display: none; | |
839 | } |
|
851 | } | |
840 |
|
852 | |||
841 | .error-message { |
|
853 | .error-message { | |
842 | float: left; |
|
854 | float: left; | |
843 | width: 100%; |
|
855 | width: 100%; | |
844 | } |
|
856 | } | |
845 |
|
857 | |||
846 | .lock_input_button { |
|
858 | .lock_input_button { | |
847 | display: inline; |
|
859 | display: inline; | |
848 | } |
|
860 | } | |
849 |
|
861 | |||
850 | .help-block { |
|
862 | .help-block { | |
851 | clear: both; |
|
863 | clear: both; | |
852 | } |
|
864 | } | |
853 | } |
|
865 | } | |
854 |
|
866 | |||
855 | // Notifications |
|
867 | // Notifications | |
856 |
|
868 | |||
857 | .notifications_buttons { |
|
869 | .notifications_buttons { | |
858 | margin: 0 0 @space 0; |
|
870 | margin: 0 0 @space 0; | |
859 | padding: 0; |
|
871 | padding: 0; | |
860 |
|
872 | |||
861 | .btn { |
|
873 | .btn { | |
862 | display: inline-block; |
|
874 | display: inline-block; | |
863 | } |
|
875 | } | |
864 | } |
|
876 | } | |
865 |
|
877 | |||
866 | .notification-list { |
|
878 | .notification-list { | |
867 |
|
879 | |||
868 | div { |
|
880 | div { | |
869 | vertical-align: middle; |
|
881 | vertical-align: middle; | |
870 | } |
|
882 | } | |
871 |
|
883 | |||
872 | .container { |
|
884 | .container { | |
873 | display: block; |
|
885 | display: block; | |
874 | margin: 0 0 @padding 0; |
|
886 | margin: 0 0 @padding 0; | |
875 | } |
|
887 | } | |
876 |
|
888 | |||
877 | .delete-notifications { |
|
889 | .delete-notifications { | |
878 | margin-left: @padding; |
|
890 | margin-left: @padding; | |
879 | text-align: right; |
|
891 | text-align: right; | |
880 | cursor: pointer; |
|
892 | cursor: pointer; | |
881 | } |
|
893 | } | |
882 |
|
894 | |||
883 | .read-notifications { |
|
895 | .read-notifications { | |
884 | margin-left: @padding/2; |
|
896 | margin-left: @padding/2; | |
885 | text-align: right; |
|
897 | text-align: right; | |
886 | width: 35px; |
|
898 | width: 35px; | |
887 | cursor: pointer; |
|
899 | cursor: pointer; | |
888 | } |
|
900 | } | |
889 |
|
901 | |||
890 | .icon-minus-sign { |
|
902 | .icon-minus-sign { | |
891 | color: @alert2; |
|
903 | color: @alert2; | |
892 | } |
|
904 | } | |
893 |
|
905 | |||
894 | .icon-ok-sign { |
|
906 | .icon-ok-sign { | |
895 | color: @alert1; |
|
907 | color: @alert1; | |
896 | } |
|
908 | } | |
897 | } |
|
909 | } | |
898 |
|
910 | |||
899 | .user_settings { |
|
911 | .user_settings { | |
900 | float: left; |
|
912 | float: left; | |
901 | clear: both; |
|
913 | clear: both; | |
902 | display: block; |
|
914 | display: block; | |
903 | width: 100%; |
|
915 | width: 100%; | |
904 |
|
916 | |||
905 | .gravatar_box { |
|
917 | .gravatar_box { | |
906 | margin-bottom: @padding; |
|
918 | margin-bottom: @padding; | |
907 |
|
919 | |||
908 | &:after { |
|
920 | &:after { | |
909 | content: " "; |
|
921 | content: " "; | |
910 | clear: both; |
|
922 | clear: both; | |
911 | width: 100%; |
|
923 | width: 100%; | |
912 | } |
|
924 | } | |
913 | } |
|
925 | } | |
914 |
|
926 | |||
915 | .fields .field { |
|
927 | .fields .field { | |
916 | clear: both; |
|
928 | clear: both; | |
917 | } |
|
929 | } | |
918 | } |
|
930 | } | |
919 |
|
931 | |||
920 | .advanced_settings { |
|
932 | .advanced_settings { | |
921 | margin-bottom: @space; |
|
933 | margin-bottom: @space; | |
922 |
|
934 | |||
923 | .help-block { |
|
935 | .help-block { | |
924 | margin-left: 0; |
|
936 | margin-left: 0; | |
925 | } |
|
937 | } | |
926 |
|
938 | |||
927 | button + .help-block { |
|
939 | button + .help-block { | |
928 | margin-top: @padding; |
|
940 | margin-top: @padding; | |
929 | } |
|
941 | } | |
930 | } |
|
942 | } | |
931 |
|
943 | |||
932 | // admin settings radio buttons and labels |
|
944 | // admin settings radio buttons and labels | |
933 | .label-2 { |
|
945 | .label-2 { | |
934 | float: left; |
|
946 | float: left; | |
935 | width: @label2-width; |
|
947 | width: @label2-width; | |
936 |
|
948 | |||
937 | label { |
|
949 | label { | |
938 | color: @grey1; |
|
950 | color: @grey1; | |
939 | } |
|
951 | } | |
940 | } |
|
952 | } | |
941 | .checkboxes { |
|
953 | .checkboxes { | |
942 | float: left; |
|
954 | float: left; | |
943 | width: @checkboxes-width; |
|
955 | width: @checkboxes-width; | |
944 | margin-bottom: @padding; |
|
956 | margin-bottom: @padding; | |
945 |
|
957 | |||
946 | .checkbox { |
|
958 | .checkbox { | |
947 | width: 100%; |
|
959 | width: 100%; | |
948 |
|
960 | |||
949 | label { |
|
961 | label { | |
950 | margin: 0; |
|
962 | margin: 0; | |
951 | padding: 0; |
|
963 | padding: 0; | |
952 | } |
|
964 | } | |
953 | } |
|
965 | } | |
954 |
|
966 | |||
955 | .checkbox + .checkbox { |
|
967 | .checkbox + .checkbox { | |
956 | display: inline-block; |
|
968 | display: inline-block; | |
957 | } |
|
969 | } | |
958 |
|
970 | |||
959 | label { |
|
971 | label { | |
960 | margin-right: 1em; |
|
972 | margin-right: 1em; | |
961 | } |
|
973 | } | |
962 | } |
|
974 | } | |
963 |
|
975 | |||
964 | // CHANGELOG |
|
976 | // CHANGELOG | |
965 | .container_header { |
|
977 | .container_header { | |
966 | float: left; |
|
978 | float: left; | |
967 | display: block; |
|
979 | display: block; | |
968 | width: 100%; |
|
980 | width: 100%; | |
969 | margin: @padding 0 @padding; |
|
981 | margin: @padding 0 @padding; | |
970 |
|
982 | |||
971 | #filter_changelog { |
|
983 | #filter_changelog { | |
972 | float: left; |
|
984 | float: left; | |
973 | margin-right: @padding; |
|
985 | margin-right: @padding; | |
974 | } |
|
986 | } | |
975 |
|
987 | |||
976 | .breadcrumbs_light { |
|
988 | .breadcrumbs_light { | |
977 | display: inline-block; |
|
989 | display: inline-block; | |
978 | } |
|
990 | } | |
979 | } |
|
991 | } | |
980 |
|
992 | |||
981 | .info_box { |
|
993 | .info_box { | |
982 | float: right; |
|
994 | float: right; | |
983 | } |
|
995 | } | |
984 |
|
996 | |||
985 |
|
997 | |||
986 |
|
998 | |||
987 | #graph_content{ |
|
999 | #graph_content{ | |
988 |
|
1000 | |||
989 | // adjust for table headers so that graph renders properly |
|
1001 | // adjust for table headers so that graph renders properly | |
990 | // #graph_nodes padding - table cell padding |
|
1002 | // #graph_nodes padding - table cell padding | |
991 | padding-top: (@space - (@basefontsize * 2.4)); |
|
1003 | padding-top: (@space - (@basefontsize * 2.4)); | |
992 |
|
1004 | |||
993 | &.graph_full_width { |
|
1005 | &.graph_full_width { | |
994 | width: 100%; |
|
1006 | width: 100%; | |
995 | max-width: 100%; |
|
1007 | max-width: 100%; | |
996 | } |
|
1008 | } | |
997 | } |
|
1009 | } | |
998 |
|
1010 | |||
999 | #graph { |
|
1011 | #graph { | |
1000 |
|
1012 | |||
1001 | .pagination-left { |
|
1013 | .pagination-left { | |
1002 | float: left; |
|
1014 | float: left; | |
1003 | clear: both; |
|
1015 | clear: both; | |
1004 | } |
|
1016 | } | |
1005 |
|
1017 | |||
1006 | .log-container { |
|
1018 | .log-container { | |
1007 | max-width: 345px; |
|
1019 | max-width: 345px; | |
1008 |
|
1020 | |||
1009 | .message{ |
|
1021 | .message{ | |
1010 | max-width: 340px; |
|
1022 | max-width: 340px; | |
1011 | } |
|
1023 | } | |
1012 | } |
|
1024 | } | |
1013 |
|
1025 | |||
1014 | .graph-col-wrapper { |
|
1026 | .graph-col-wrapper { | |
1015 |
|
1027 | |||
1016 | #graph_nodes { |
|
1028 | #graph_nodes { | |
1017 | width: 100px; |
|
1029 | width: 100px; | |
1018 | position: absolute; |
|
1030 | position: absolute; | |
1019 | left: 70px; |
|
1031 | left: 70px; | |
1020 | z-index: -1; |
|
1032 | z-index: -1; | |
1021 | } |
|
1033 | } | |
1022 | } |
|
1034 | } | |
1023 |
|
1035 | |||
1024 | .load-more-commits { |
|
1036 | .load-more-commits { | |
1025 | text-align: center; |
|
1037 | text-align: center; | |
1026 | } |
|
1038 | } | |
1027 | .load-more-commits:hover { |
|
1039 | .load-more-commits:hover { | |
1028 | background-color: @grey7; |
|
1040 | background-color: @grey7; | |
1029 | } |
|
1041 | } | |
1030 | .load-more-commits { |
|
1042 | .load-more-commits { | |
1031 | a { |
|
1043 | a { | |
1032 | display: block; |
|
1044 | display: block; | |
1033 | } |
|
1045 | } | |
1034 | } |
|
1046 | } | |
1035 | } |
|
1047 | } | |
1036 |
|
1048 | |||
1037 | .obsolete-toggle { |
|
1049 | .obsolete-toggle { | |
1038 | line-height: 30px; |
|
1050 | line-height: 30px; | |
1039 | margin-left: -15px; |
|
1051 | margin-left: -15px; | |
1040 | } |
|
1052 | } | |
1041 |
|
1053 | |||
1042 | #rev_range_container, #rev_range_clear, #rev_range_more { |
|
1054 | #rev_range_container, #rev_range_clear, #rev_range_more { | |
1043 | margin-top: -5px; |
|
1055 | margin-top: -5px; | |
1044 | margin-bottom: -5px; |
|
1056 | margin-bottom: -5px; | |
1045 | } |
|
1057 | } | |
1046 |
|
1058 | |||
1047 | #filter_changelog { |
|
1059 | #filter_changelog { | |
1048 | float: left; |
|
1060 | float: left; | |
1049 | } |
|
1061 | } | |
1050 |
|
1062 | |||
1051 |
|
1063 | |||
1052 | //--- THEME ------------------// |
|
1064 | //--- THEME ------------------// | |
1053 |
|
1065 | |||
1054 | #logo { |
|
1066 | #logo { | |
1055 | float: left; |
|
1067 | float: left; | |
1056 | margin: 9px 0 0 0; |
|
1068 | margin: 9px 0 0 0; | |
1057 |
|
1069 | |||
1058 | .header { |
|
1070 | .header { | |
1059 | background-color: transparent; |
|
1071 | background-color: transparent; | |
1060 | } |
|
1072 | } | |
1061 |
|
1073 | |||
1062 | a { |
|
1074 | a { | |
1063 | display: inline-block; |
|
1075 | display: inline-block; | |
1064 | } |
|
1076 | } | |
1065 |
|
1077 | |||
1066 | img { |
|
1078 | img { | |
1067 | height:30px; |
|
1079 | height:30px; | |
1068 | } |
|
1080 | } | |
1069 | } |
|
1081 | } | |
1070 |
|
1082 | |||
1071 | .logo-wrapper { |
|
1083 | .logo-wrapper { | |
1072 | float:left; |
|
1084 | float:left; | |
1073 | } |
|
1085 | } | |
1074 |
|
1086 | |||
1075 | .branding { |
|
1087 | .branding { | |
1076 | float: left; |
|
1088 | float: left; | |
1077 | padding: 9px 2px; |
|
1089 | padding: 9px 2px; | |
1078 | line-height: 1em; |
|
1090 | line-height: 1em; | |
1079 | font-size: @navigation-fontsize; |
|
1091 | font-size: @navigation-fontsize; | |
1080 |
|
1092 | |||
1081 | a { |
|
1093 | a { | |
1082 | color: @grey5 |
|
1094 | color: @grey5 | |
1083 | } |
|
1095 | } | |
1084 | @media screen and (max-width: 1200px) { |
|
1096 | @media screen and (max-width: 1200px) { | |
1085 | display: none; |
|
1097 | display: none; | |
1086 | } |
|
1098 | } | |
1087 | } |
|
1099 | } | |
1088 |
|
1100 | |||
1089 | img { |
|
1101 | img { | |
1090 | border: none; |
|
1102 | border: none; | |
1091 | outline: none; |
|
1103 | outline: none; | |
1092 | } |
|
1104 | } | |
1093 | user-profile-header |
|
1105 | user-profile-header | |
1094 | label { |
|
1106 | label { | |
1095 |
|
1107 | |||
1096 | input[type="checkbox"] { |
|
1108 | input[type="checkbox"] { | |
1097 | margin-right: 1em; |
|
1109 | margin-right: 1em; | |
1098 | } |
|
1110 | } | |
1099 | input[type="radio"] { |
|
1111 | input[type="radio"] { | |
1100 | margin-right: 1em; |
|
1112 | margin-right: 1em; | |
1101 | } |
|
1113 | } | |
1102 | } |
|
1114 | } | |
1103 |
|
1115 | |||
1104 | .review-status { |
|
1116 | .review-status { | |
1105 | &.under_review { |
|
1117 | &.under_review { | |
1106 | color: @alert3; |
|
1118 | color: @alert3; | |
1107 | } |
|
1119 | } | |
1108 | &.approved { |
|
1120 | &.approved { | |
1109 | color: @alert1; |
|
1121 | color: @alert1; | |
1110 | } |
|
1122 | } | |
1111 | &.rejected, |
|
1123 | &.rejected, | |
1112 | &.forced_closed{ |
|
1124 | &.forced_closed{ | |
1113 | color: @alert2; |
|
1125 | color: @alert2; | |
1114 | } |
|
1126 | } | |
1115 | &.not_reviewed { |
|
1127 | &.not_reviewed { | |
1116 | color: @grey5; |
|
1128 | color: @grey5; | |
1117 | } |
|
1129 | } | |
1118 | } |
|
1130 | } | |
1119 |
|
1131 | |||
1120 | .review-status-under_review { |
|
1132 | .review-status-under_review { | |
1121 | color: @alert3; |
|
1133 | color: @alert3; | |
1122 | } |
|
1134 | } | |
1123 | .status-tag-under_review { |
|
1135 | .status-tag-under_review { | |
1124 | border-color: @alert3; |
|
1136 | border-color: @alert3; | |
1125 | } |
|
1137 | } | |
1126 |
|
1138 | |||
1127 | .review-status-approved { |
|
1139 | .review-status-approved { | |
1128 | color: @alert1; |
|
1140 | color: @alert1; | |
1129 | } |
|
1141 | } | |
1130 | .status-tag-approved { |
|
1142 | .status-tag-approved { | |
1131 | border-color: @alert1; |
|
1143 | border-color: @alert1; | |
1132 | } |
|
1144 | } | |
1133 |
|
1145 | |||
1134 | .review-status-rejected, |
|
1146 | .review-status-rejected, | |
1135 | .review-status-forced_closed { |
|
1147 | .review-status-forced_closed { | |
1136 | color: @alert2; |
|
1148 | color: @alert2; | |
1137 | } |
|
1149 | } | |
1138 | .status-tag-rejected, |
|
1150 | .status-tag-rejected, | |
1139 | .status-tag-forced_closed { |
|
1151 | .status-tag-forced_closed { | |
1140 | border-color: @alert2; |
|
1152 | border-color: @alert2; | |
1141 | } |
|
1153 | } | |
1142 |
|
1154 | |||
1143 | .review-status-not_reviewed { |
|
1155 | .review-status-not_reviewed { | |
1144 | color: @grey5; |
|
1156 | color: @grey5; | |
1145 | } |
|
1157 | } | |
1146 | .status-tag-not_reviewed { |
|
1158 | .status-tag-not_reviewed { | |
1147 | border-color: @grey5; |
|
1159 | border-color: @grey5; | |
1148 | } |
|
1160 | } | |
1149 |
|
1161 | |||
1150 | .test_pattern_preview { |
|
1162 | .test_pattern_preview { | |
1151 | margin: @space 0; |
|
1163 | margin: @space 0; | |
1152 |
|
1164 | |||
1153 | p { |
|
1165 | p { | |
1154 | margin-bottom: 0; |
|
1166 | margin-bottom: 0; | |
1155 | border-bottom: @border-thickness solid @border-default-color; |
|
1167 | border-bottom: @border-thickness solid @border-default-color; | |
1156 | color: @grey3; |
|
1168 | color: @grey3; | |
1157 | } |
|
1169 | } | |
1158 |
|
1170 | |||
1159 | .btn { |
|
1171 | .btn { | |
1160 | margin-bottom: @padding; |
|
1172 | margin-bottom: @padding; | |
1161 | } |
|
1173 | } | |
1162 | } |
|
1174 | } | |
1163 | #test_pattern_result { |
|
1175 | #test_pattern_result { | |
1164 | display: none; |
|
1176 | display: none; | |
1165 | &:extend(pre); |
|
1177 | &:extend(pre); | |
1166 | padding: .9em; |
|
1178 | padding: .9em; | |
1167 | color: @grey3; |
|
1179 | color: @grey3; | |
1168 | background-color: @grey7; |
|
1180 | background-color: @grey7; | |
1169 | border-right: @border-thickness solid @border-default-color; |
|
1181 | border-right: @border-thickness solid @border-default-color; | |
1170 | border-bottom: @border-thickness solid @border-default-color; |
|
1182 | border-bottom: @border-thickness solid @border-default-color; | |
1171 | border-left: @border-thickness solid @border-default-color; |
|
1183 | border-left: @border-thickness solid @border-default-color; | |
1172 | } |
|
1184 | } | |
1173 |
|
1185 | |||
1174 | #repo_vcs_settings { |
|
1186 | #repo_vcs_settings { | |
1175 | #inherit_overlay_vcs_default { |
|
1187 | #inherit_overlay_vcs_default { | |
1176 | display: none; |
|
1188 | display: none; | |
1177 | } |
|
1189 | } | |
1178 | #inherit_overlay_vcs_custom { |
|
1190 | #inherit_overlay_vcs_custom { | |
1179 | display: custom; |
|
1191 | display: custom; | |
1180 | } |
|
1192 | } | |
1181 | &.inherited { |
|
1193 | &.inherited { | |
1182 | #inherit_overlay_vcs_default { |
|
1194 | #inherit_overlay_vcs_default { | |
1183 | display: block; |
|
1195 | display: block; | |
1184 | } |
|
1196 | } | |
1185 | #inherit_overlay_vcs_custom { |
|
1197 | #inherit_overlay_vcs_custom { | |
1186 | display: none; |
|
1198 | display: none; | |
1187 | } |
|
1199 | } | |
1188 | } |
|
1200 | } | |
1189 | } |
|
1201 | } | |
1190 |
|
1202 | |||
1191 | .issue-tracker-link { |
|
1203 | .issue-tracker-link { | |
1192 | color: @rcblue; |
|
1204 | color: @rcblue; | |
1193 | } |
|
1205 | } | |
1194 |
|
1206 | |||
1195 | // Issue Tracker Table Show/Hide |
|
1207 | // Issue Tracker Table Show/Hide | |
1196 | #repo_issue_tracker { |
|
1208 | #repo_issue_tracker { | |
1197 | #inherit_overlay { |
|
1209 | #inherit_overlay { | |
1198 | display: none; |
|
1210 | display: none; | |
1199 | } |
|
1211 | } | |
1200 | #custom_overlay { |
|
1212 | #custom_overlay { | |
1201 | display: custom; |
|
1213 | display: custom; | |
1202 | } |
|
1214 | } | |
1203 | &.inherited { |
|
1215 | &.inherited { | |
1204 | #inherit_overlay { |
|
1216 | #inherit_overlay { | |
1205 | display: block; |
|
1217 | display: block; | |
1206 | } |
|
1218 | } | |
1207 | #custom_overlay { |
|
1219 | #custom_overlay { | |
1208 | display: none; |
|
1220 | display: none; | |
1209 | } |
|
1221 | } | |
1210 | } |
|
1222 | } | |
1211 | } |
|
1223 | } | |
1212 | table.issuetracker { |
|
1224 | table.issuetracker { | |
1213 | &.readonly { |
|
1225 | &.readonly { | |
1214 | tr, td { |
|
1226 | tr, td { | |
1215 | color: @grey3; |
|
1227 | color: @grey3; | |
1216 | } |
|
1228 | } | |
1217 | } |
|
1229 | } | |
1218 | .edit { |
|
1230 | .edit { | |
1219 | display: none; |
|
1231 | display: none; | |
1220 | } |
|
1232 | } | |
1221 | .editopen { |
|
1233 | .editopen { | |
1222 | .edit { |
|
1234 | .edit { | |
1223 | display: inline; |
|
1235 | display: inline; | |
1224 | } |
|
1236 | } | |
1225 | .entry { |
|
1237 | .entry { | |
1226 | display: none; |
|
1238 | display: none; | |
1227 | } |
|
1239 | } | |
1228 | } |
|
1240 | } | |
1229 | tr td.td-action { |
|
1241 | tr td.td-action { | |
1230 | min-width: 117px; |
|
1242 | min-width: 117px; | |
1231 | } |
|
1243 | } | |
1232 | td input { |
|
1244 | td input { | |
1233 | max-width: none; |
|
1245 | max-width: none; | |
1234 | min-width: 30px; |
|
1246 | min-width: 30px; | |
1235 | width: 80%; |
|
1247 | width: 80%; | |
1236 | } |
|
1248 | } | |
1237 | .issuetracker_pref input { |
|
1249 | .issuetracker_pref input { | |
1238 | width: 40%; |
|
1250 | width: 40%; | |
1239 | } |
|
1251 | } | |
1240 | input.edit_issuetracker_update { |
|
1252 | input.edit_issuetracker_update { | |
1241 | margin-right: 0; |
|
1253 | margin-right: 0; | |
1242 | width: auto; |
|
1254 | width: auto; | |
1243 | } |
|
1255 | } | |
1244 | } |
|
1256 | } | |
1245 |
|
1257 | |||
1246 | table.integrations { |
|
1258 | table.integrations { | |
1247 | .td-icon { |
|
1259 | .td-icon { | |
1248 | width: 20px; |
|
1260 | width: 20px; | |
1249 | .integration-icon { |
|
1261 | .integration-icon { | |
1250 | height: 20px; |
|
1262 | height: 20px; | |
1251 | width: 20px; |
|
1263 | width: 20px; | |
1252 | } |
|
1264 | } | |
1253 | } |
|
1265 | } | |
1254 | } |
|
1266 | } | |
1255 |
|
1267 | |||
1256 | .integrations { |
|
1268 | .integrations { | |
1257 | a.integration-box { |
|
1269 | a.integration-box { | |
1258 | color: @text-color; |
|
1270 | color: @text-color; | |
1259 | &:hover { |
|
1271 | &:hover { | |
1260 | .panel { |
|
1272 | .panel { | |
1261 | background: #fbfbfb; |
|
1273 | background: #fbfbfb; | |
1262 | } |
|
1274 | } | |
1263 | } |
|
1275 | } | |
1264 | .integration-icon { |
|
1276 | .integration-icon { | |
1265 | width: 30px; |
|
1277 | width: 30px; | |
1266 | height: 30px; |
|
1278 | height: 30px; | |
1267 | margin-right: 20px; |
|
1279 | margin-right: 20px; | |
1268 | float: left; |
|
1280 | float: left; | |
1269 | } |
|
1281 | } | |
1270 |
|
1282 | |||
1271 | .panel-body { |
|
1283 | .panel-body { | |
1272 | padding: 10px; |
|
1284 | padding: 10px; | |
1273 | } |
|
1285 | } | |
1274 | .panel { |
|
1286 | .panel { | |
1275 | margin-bottom: 10px; |
|
1287 | margin-bottom: 10px; | |
1276 | } |
|
1288 | } | |
1277 | h2 { |
|
1289 | h2 { | |
1278 | display: inline-block; |
|
1290 | display: inline-block; | |
1279 | margin: 0; |
|
1291 | margin: 0; | |
1280 | min-width: 140px; |
|
1292 | min-width: 140px; | |
1281 | } |
|
1293 | } | |
1282 | } |
|
1294 | } | |
1283 | a.integration-box.dummy-integration { |
|
1295 | a.integration-box.dummy-integration { | |
1284 | color: @grey4 |
|
1296 | color: @grey4 | |
1285 | } |
|
1297 | } | |
1286 | } |
|
1298 | } | |
1287 |
|
1299 | |||
1288 | //Permissions Settings |
|
1300 | //Permissions Settings | |
1289 | #add_perm { |
|
1301 | #add_perm { | |
1290 | margin: 0 0 @padding; |
|
1302 | margin: 0 0 @padding; | |
1291 | cursor: pointer; |
|
1303 | cursor: pointer; | |
1292 | } |
|
1304 | } | |
1293 |
|
1305 | |||
1294 | .perm_ac { |
|
1306 | .perm_ac { | |
1295 | input { |
|
1307 | input { | |
1296 | width: 95%; |
|
1308 | width: 95%; | |
1297 | } |
|
1309 | } | |
1298 | } |
|
1310 | } | |
1299 |
|
1311 | |||
1300 | .autocomplete-suggestions { |
|
1312 | .autocomplete-suggestions { | |
1301 | width: auto !important; // overrides autocomplete.js |
|
1313 | width: auto !important; // overrides autocomplete.js | |
1302 | min-width: 278px; |
|
1314 | min-width: 278px; | |
1303 | margin: 0; |
|
1315 | margin: 0; | |
1304 | border: @border-thickness solid @grey5; |
|
1316 | border: @border-thickness solid @grey5; | |
1305 | border-radius: @border-radius; |
|
1317 | border-radius: @border-radius; | |
1306 | color: @grey2; |
|
1318 | color: @grey2; | |
1307 | background-color: white; |
|
1319 | background-color: white; | |
1308 | } |
|
1320 | } | |
1309 |
|
1321 | |||
1310 | .autocomplete-qfilter-suggestions { |
|
1322 | .autocomplete-qfilter-suggestions { | |
1311 | width: auto !important; // overrides autocomplete.js |
|
1323 | width: auto !important; // overrides autocomplete.js | |
1312 | max-height: 100% !important; |
|
1324 | max-height: 100% !important; | |
1313 | min-width: 376px; |
|
1325 | min-width: 376px; | |
1314 | margin: 0; |
|
1326 | margin: 0; | |
1315 | border: @border-thickness solid @grey5; |
|
1327 | border: @border-thickness solid @grey5; | |
1316 | color: @grey2; |
|
1328 | color: @grey2; | |
1317 | background-color: white; |
|
1329 | background-color: white; | |
1318 | } |
|
1330 | } | |
1319 |
|
1331 | |||
1320 | .autocomplete-selected { |
|
1332 | .autocomplete-selected { | |
1321 | background: #F0F0F0; |
|
1333 | background: #F0F0F0; | |
1322 | } |
|
1334 | } | |
1323 |
|
1335 | |||
1324 | .ac-container-wrap { |
|
1336 | .ac-container-wrap { | |
1325 | margin: 0; |
|
1337 | margin: 0; | |
1326 | padding: 8px; |
|
1338 | padding: 8px; | |
1327 | border-bottom: @border-thickness solid @grey5; |
|
1339 | border-bottom: @border-thickness solid @grey5; | |
1328 | list-style-type: none; |
|
1340 | list-style-type: none; | |
1329 | cursor: pointer; |
|
1341 | cursor: pointer; | |
1330 |
|
1342 | |||
1331 | &:hover { |
|
1343 | &:hover { | |
1332 | background-color: @grey7; |
|
1344 | background-color: @grey7; | |
1333 | } |
|
1345 | } | |
1334 |
|
1346 | |||
1335 | img { |
|
1347 | img { | |
1336 | height: @gravatar-size; |
|
1348 | height: @gravatar-size; | |
1337 | width: @gravatar-size; |
|
1349 | width: @gravatar-size; | |
1338 | margin-right: 1em; |
|
1350 | margin-right: 1em; | |
1339 | } |
|
1351 | } | |
1340 |
|
1352 | |||
1341 | strong { |
|
1353 | strong { | |
1342 | font-weight: normal; |
|
1354 | font-weight: normal; | |
1343 | } |
|
1355 | } | |
1344 | } |
|
1356 | } | |
1345 |
|
1357 | |||
1346 | // Settings Dropdown |
|
1358 | // Settings Dropdown | |
1347 | .user-menu .container { |
|
1359 | .user-menu .container { | |
1348 | padding: 0 4px; |
|
1360 | padding: 0 4px; | |
1349 | margin: 0; |
|
1361 | margin: 0; | |
1350 | } |
|
1362 | } | |
1351 |
|
1363 | |||
1352 | .user-menu .gravatar { |
|
1364 | .user-menu .gravatar { | |
1353 | cursor: pointer; |
|
1365 | cursor: pointer; | |
1354 | } |
|
1366 | } | |
1355 |
|
1367 | |||
1356 | .codeblock { |
|
1368 | .codeblock { | |
1357 | margin-bottom: @padding; |
|
1369 | margin-bottom: @padding; | |
1358 | clear: both; |
|
1370 | clear: both; | |
1359 |
|
1371 | |||
1360 | .stats { |
|
1372 | .stats { | |
1361 | overflow: hidden; |
|
1373 | overflow: hidden; | |
1362 | } |
|
1374 | } | |
1363 |
|
1375 | |||
1364 | .message{ |
|
1376 | .message{ | |
1365 | textarea{ |
|
1377 | textarea{ | |
1366 | margin: 0; |
|
1378 | margin: 0; | |
1367 | } |
|
1379 | } | |
1368 | } |
|
1380 | } | |
1369 |
|
1381 | |||
1370 | .code-header { |
|
1382 | .code-header { | |
1371 | .stats { |
|
1383 | .stats { | |
1372 | line-height: 2em; |
|
1384 | line-height: 2em; | |
1373 |
|
1385 | |||
1374 | .revision_id { |
|
1386 | .revision_id { | |
1375 | margin-left: 0; |
|
1387 | margin-left: 0; | |
1376 | } |
|
1388 | } | |
1377 | .buttons { |
|
1389 | .buttons { | |
1378 | padding-right: 0; |
|
1390 | padding-right: 0; | |
1379 | } |
|
1391 | } | |
1380 | } |
|
1392 | } | |
1381 |
|
1393 | |||
1382 | .item{ |
|
1394 | .item{ | |
1383 | margin-right: 0.5em; |
|
1395 | margin-right: 0.5em; | |
1384 | } |
|
1396 | } | |
1385 | } |
|
1397 | } | |
1386 |
|
1398 | |||
1387 | #editor_container { |
|
1399 | #editor_container { | |
1388 | position: relative; |
|
1400 | position: relative; | |
1389 | margin: @padding 10px; |
|
1401 | margin: @padding 10px; | |
1390 | } |
|
1402 | } | |
1391 | } |
|
1403 | } | |
1392 |
|
1404 | |||
1393 | #file_history_container { |
|
1405 | #file_history_container { | |
1394 | display: none; |
|
1406 | display: none; | |
1395 | } |
|
1407 | } | |
1396 |
|
1408 | |||
1397 | .file-history-inner { |
|
1409 | .file-history-inner { | |
1398 | margin-bottom: 10px; |
|
1410 | margin-bottom: 10px; | |
1399 | } |
|
1411 | } | |
1400 |
|
1412 | |||
1401 | // Pull Requests |
|
1413 | // Pull Requests | |
1402 | .summary-details { |
|
1414 | .summary-details { | |
1403 | width: 72%; |
|
1415 | width: 72%; | |
1404 | } |
|
1416 | } | |
1405 | .pr-summary { |
|
1417 | .pr-summary { | |
1406 | border-bottom: @border-thickness solid @grey5; |
|
1418 | border-bottom: @border-thickness solid @grey5; | |
1407 | margin-bottom: @space; |
|
1419 | margin-bottom: @space; | |
1408 | } |
|
1420 | } | |
1409 | .reviewers-title { |
|
1421 | .reviewers-title { | |
1410 | width: 25%; |
|
1422 | width: 25%; | |
1411 | min-width: 200px; |
|
1423 | min-width: 200px; | |
1412 | } |
|
1424 | } | |
1413 | .reviewers { |
|
1425 | .reviewers { | |
1414 | width: 25%; |
|
1426 | width: 25%; | |
1415 | min-width: 200px; |
|
1427 | min-width: 200px; | |
1416 | } |
|
1428 | } | |
1417 | .reviewers ul li { |
|
1429 | .reviewers ul li { | |
1418 | position: relative; |
|
1430 | position: relative; | |
1419 | width: 100%; |
|
1431 | width: 100%; | |
1420 | padding-bottom: 8px; |
|
1432 | padding-bottom: 8px; | |
1421 | list-style-type: none; |
|
1433 | list-style-type: none; | |
1422 | } |
|
1434 | } | |
1423 |
|
1435 | |||
1424 | .reviewer_entry { |
|
1436 | .reviewer_entry { | |
1425 | min-height: 55px; |
|
1437 | min-height: 55px; | |
1426 | } |
|
1438 | } | |
1427 |
|
1439 | |||
1428 | .reviewers_member { |
|
1440 | .reviewers_member { | |
1429 | width: 100%; |
|
1441 | width: 100%; | |
1430 | overflow: auto; |
|
1442 | overflow: auto; | |
1431 | } |
|
1443 | } | |
1432 | .reviewer_reason { |
|
1444 | .reviewer_reason { | |
1433 | padding-left: 20px; |
|
1445 | padding-left: 20px; | |
1434 | line-height: 1.5em; |
|
1446 | line-height: 1.5em; | |
1435 | } |
|
1447 | } | |
1436 | .reviewer_status { |
|
1448 | .reviewer_status { | |
1437 | display: inline-block; |
|
1449 | display: inline-block; | |
1438 | width: 25px; |
|
1450 | width: 25px; | |
1439 | min-width: 25px; |
|
1451 | min-width: 25px; | |
1440 | height: 1.2em; |
|
1452 | height: 1.2em; | |
1441 | line-height: 1em; |
|
1453 | line-height: 1em; | |
1442 | } |
|
1454 | } | |
1443 |
|
1455 | |||
1444 | .reviewer_name { |
|
1456 | .reviewer_name { | |
1445 | display: inline-block; |
|
1457 | display: inline-block; | |
1446 | max-width: 83%; |
|
1458 | max-width: 83%; | |
1447 | padding-right: 20px; |
|
1459 | padding-right: 20px; | |
1448 | vertical-align: middle; |
|
1460 | vertical-align: middle; | |
1449 | line-height: 1; |
|
1461 | line-height: 1; | |
1450 |
|
1462 | |||
1451 | .rc-user { |
|
1463 | .rc-user { | |
1452 | min-width: 0; |
|
1464 | min-width: 0; | |
1453 | margin: -2px 1em 0 0; |
|
1465 | margin: -2px 1em 0 0; | |
1454 | } |
|
1466 | } | |
1455 |
|
1467 | |||
1456 | .reviewer { |
|
1468 | .reviewer { | |
1457 | float: left; |
|
1469 | float: left; | |
1458 | } |
|
1470 | } | |
1459 | } |
|
1471 | } | |
1460 |
|
1472 | |||
1461 | .reviewer_member_mandatory { |
|
1473 | .reviewer_member_mandatory { | |
1462 | position: absolute; |
|
1474 | position: absolute; | |
1463 | left: 15px; |
|
1475 | left: 15px; | |
1464 | top: 8px; |
|
1476 | top: 8px; | |
1465 | width: 16px; |
|
1477 | width: 16px; | |
1466 | font-size: 11px; |
|
1478 | font-size: 11px; | |
1467 | margin: 0; |
|
1479 | margin: 0; | |
1468 | padding: 0; |
|
1480 | padding: 0; | |
1469 | color: black; |
|
1481 | color: black; | |
1470 | } |
|
1482 | } | |
1471 |
|
1483 | |||
1472 | .reviewer_member_mandatory_remove, |
|
1484 | .reviewer_member_mandatory_remove, | |
1473 | .reviewer_member_remove { |
|
1485 | .reviewer_member_remove { | |
1474 | position: absolute; |
|
1486 | position: absolute; | |
1475 | right: 0; |
|
1487 | right: 0; | |
1476 | top: 0; |
|
1488 | top: 0; | |
1477 | width: 16px; |
|
1489 | width: 16px; | |
1478 | margin-bottom: 10px; |
|
1490 | margin-bottom: 10px; | |
1479 | padding: 0; |
|
1491 | padding: 0; | |
1480 | color: black; |
|
1492 | color: black; | |
1481 | } |
|
1493 | } | |
1482 |
|
1494 | |||
1483 | .reviewer_member_mandatory_remove { |
|
1495 | .reviewer_member_mandatory_remove { | |
1484 | color: @grey4; |
|
1496 | color: @grey4; | |
1485 | } |
|
1497 | } | |
1486 |
|
1498 | |||
1487 | .reviewer_member_status { |
|
1499 | .reviewer_member_status { | |
1488 | margin-top: 5px; |
|
1500 | margin-top: 5px; | |
1489 | } |
|
1501 | } | |
1490 | .pr-summary #summary{ |
|
1502 | .pr-summary #summary{ | |
1491 | width: 100%; |
|
1503 | width: 100%; | |
1492 | } |
|
1504 | } | |
1493 | .pr-summary .action_button:hover { |
|
1505 | .pr-summary .action_button:hover { | |
1494 | border: 0; |
|
1506 | border: 0; | |
1495 | cursor: pointer; |
|
1507 | cursor: pointer; | |
1496 | } |
|
1508 | } | |
1497 | .pr-details-title { |
|
1509 | .pr-details-title { | |
1498 | padding-bottom: 8px; |
|
1510 | padding-bottom: 8px; | |
1499 | border-bottom: @border-thickness solid @grey5; |
|
1511 | border-bottom: @border-thickness solid @grey5; | |
1500 |
|
1512 | |||
1501 | .action_button.disabled { |
|
1513 | .action_button.disabled { | |
1502 | color: @grey4; |
|
1514 | color: @grey4; | |
1503 | cursor: inherit; |
|
1515 | cursor: inherit; | |
1504 | } |
|
1516 | } | |
1505 | .action_button { |
|
1517 | .action_button { | |
1506 | color: @rcblue; |
|
1518 | color: @rcblue; | |
1507 | } |
|
1519 | } | |
1508 | } |
|
1520 | } | |
1509 | .pr-details-content { |
|
1521 | .pr-details-content { | |
1510 | margin-top: @textmargin; |
|
1522 | margin-top: @textmargin; | |
1511 | margin-bottom: @textmargin; |
|
1523 | margin-bottom: @textmargin; | |
1512 | } |
|
1524 | } | |
1513 |
|
1525 | |||
1514 | .pr-reviewer-rules { |
|
1526 | .pr-reviewer-rules { | |
1515 | padding: 10px 0px 20px 0px; |
|
1527 | padding: 10px 0px 20px 0px; | |
1516 | } |
|
1528 | } | |
1517 |
|
1529 | |||
1518 | .group_members { |
|
1530 | .group_members { | |
1519 | margin-top: 0; |
|
1531 | margin-top: 0; | |
1520 | padding: 0; |
|
1532 | padding: 0; | |
1521 | list-style: outside none none; |
|
1533 | list-style: outside none none; | |
1522 |
|
1534 | |||
1523 | img { |
|
1535 | img { | |
1524 | height: @gravatar-size; |
|
1536 | height: @gravatar-size; | |
1525 | width: @gravatar-size; |
|
1537 | width: @gravatar-size; | |
1526 | margin-right: .5em; |
|
1538 | margin-right: .5em; | |
1527 | margin-left: 3px; |
|
1539 | margin-left: 3px; | |
1528 | } |
|
1540 | } | |
1529 |
|
1541 | |||
1530 | .to-delete { |
|
1542 | .to-delete { | |
1531 | .user { |
|
1543 | .user { | |
1532 | text-decoration: line-through; |
|
1544 | text-decoration: line-through; | |
1533 | } |
|
1545 | } | |
1534 | } |
|
1546 | } | |
1535 | } |
|
1547 | } | |
1536 |
|
1548 | |||
1537 | .compare_view_commits_title { |
|
1549 | .compare_view_commits_title { | |
1538 | .disabled { |
|
1550 | .disabled { | |
1539 | cursor: inherit; |
|
1551 | cursor: inherit; | |
1540 | &:hover{ |
|
1552 | &:hover{ | |
1541 | background-color: inherit; |
|
1553 | background-color: inherit; | |
1542 | color: inherit; |
|
1554 | color: inherit; | |
1543 | } |
|
1555 | } | |
1544 | } |
|
1556 | } | |
1545 | } |
|
1557 | } | |
1546 |
|
1558 | |||
1547 | .subtitle-compare { |
|
1559 | .subtitle-compare { | |
1548 | margin: -15px 0px 0px 0px; |
|
1560 | margin: -15px 0px 0px 0px; | |
1549 | } |
|
1561 | } | |
1550 |
|
1562 | |||
1551 | // new entry in group_members |
|
1563 | // new entry in group_members | |
1552 | .td-author-new-entry { |
|
1564 | .td-author-new-entry { | |
1553 | background-color: rgba(red(@alert1), green(@alert1), blue(@alert1), 0.3); |
|
1565 | background-color: rgba(red(@alert1), green(@alert1), blue(@alert1), 0.3); | |
1554 | } |
|
1566 | } | |
1555 |
|
1567 | |||
1556 | .usergroup_member_remove { |
|
1568 | .usergroup_member_remove { | |
1557 | width: 16px; |
|
1569 | width: 16px; | |
1558 | margin-bottom: 10px; |
|
1570 | margin-bottom: 10px; | |
1559 | padding: 0; |
|
1571 | padding: 0; | |
1560 | color: black !important; |
|
1572 | color: black !important; | |
1561 | cursor: pointer; |
|
1573 | cursor: pointer; | |
1562 | } |
|
1574 | } | |
1563 |
|
1575 | |||
1564 | .reviewer_ac .ac-input { |
|
1576 | .reviewer_ac .ac-input { | |
1565 | width: 92%; |
|
1577 | width: 92%; | |
1566 | margin-bottom: 1em; |
|
1578 | margin-bottom: 1em; | |
1567 | } |
|
1579 | } | |
1568 |
|
1580 | |||
1569 | .compare_view_commits tr{ |
|
1581 | .compare_view_commits tr{ | |
1570 | height: 20px; |
|
1582 | height: 20px; | |
1571 | } |
|
1583 | } | |
1572 | .compare_view_commits td { |
|
1584 | .compare_view_commits td { | |
1573 | vertical-align: top; |
|
1585 | vertical-align: top; | |
1574 | padding-top: 10px; |
|
1586 | padding-top: 10px; | |
1575 | } |
|
1587 | } | |
1576 | .compare_view_commits .author { |
|
1588 | .compare_view_commits .author { | |
1577 | margin-left: 5px; |
|
1589 | margin-left: 5px; | |
1578 | } |
|
1590 | } | |
1579 |
|
1591 | |||
1580 | .compare_view_commits { |
|
1592 | .compare_view_commits { | |
1581 | .color-a { |
|
1593 | .color-a { | |
1582 | color: @alert1; |
|
1594 | color: @alert1; | |
1583 | } |
|
1595 | } | |
1584 |
|
1596 | |||
1585 | .color-c { |
|
1597 | .color-c { | |
1586 | color: @color3; |
|
1598 | color: @color3; | |
1587 | } |
|
1599 | } | |
1588 |
|
1600 | |||
1589 | .color-r { |
|
1601 | .color-r { | |
1590 | color: @color5; |
|
1602 | color: @color5; | |
1591 | } |
|
1603 | } | |
1592 |
|
1604 | |||
1593 | .color-a-bg { |
|
1605 | .color-a-bg { | |
1594 | background-color: @alert1; |
|
1606 | background-color: @alert1; | |
1595 | } |
|
1607 | } | |
1596 |
|
1608 | |||
1597 | .color-c-bg { |
|
1609 | .color-c-bg { | |
1598 | background-color: @alert3; |
|
1610 | background-color: @alert3; | |
1599 | } |
|
1611 | } | |
1600 |
|
1612 | |||
1601 | .color-r-bg { |
|
1613 | .color-r-bg { | |
1602 | background-color: @alert2; |
|
1614 | background-color: @alert2; | |
1603 | } |
|
1615 | } | |
1604 |
|
1616 | |||
1605 | .color-a-border { |
|
1617 | .color-a-border { | |
1606 | border: 1px solid @alert1; |
|
1618 | border: 1px solid @alert1; | |
1607 | } |
|
1619 | } | |
1608 |
|
1620 | |||
1609 | .color-c-border { |
|
1621 | .color-c-border { | |
1610 | border: 1px solid @alert3; |
|
1622 | border: 1px solid @alert3; | |
1611 | } |
|
1623 | } | |
1612 |
|
1624 | |||
1613 | .color-r-border { |
|
1625 | .color-r-border { | |
1614 | border: 1px solid @alert2; |
|
1626 | border: 1px solid @alert2; | |
1615 | } |
|
1627 | } | |
1616 |
|
1628 | |||
1617 | .commit-change-indicator { |
|
1629 | .commit-change-indicator { | |
1618 | width: 15px; |
|
1630 | width: 15px; | |
1619 | height: 15px; |
|
1631 | height: 15px; | |
1620 | position: relative; |
|
1632 | position: relative; | |
1621 | left: 15px; |
|
1633 | left: 15px; | |
1622 | } |
|
1634 | } | |
1623 |
|
1635 | |||
1624 | .commit-change-content { |
|
1636 | .commit-change-content { | |
1625 | text-align: center; |
|
1637 | text-align: center; | |
1626 | vertical-align: middle; |
|
1638 | vertical-align: middle; | |
1627 | line-height: 15px; |
|
1639 | line-height: 15px; | |
1628 | } |
|
1640 | } | |
1629 | } |
|
1641 | } | |
1630 |
|
1642 | |||
1631 | .compare_view_filepath { |
|
1643 | .compare_view_filepath { | |
1632 | color: @grey1; |
|
1644 | color: @grey1; | |
1633 | } |
|
1645 | } | |
1634 |
|
1646 | |||
1635 | .show_more { |
|
1647 | .show_more { | |
1636 | display: inline-block; |
|
1648 | display: inline-block; | |
1637 | width: 0; |
|
1649 | width: 0; | |
1638 | height: 0; |
|
1650 | height: 0; | |
1639 | vertical-align: middle; |
|
1651 | vertical-align: middle; | |
1640 | content: ""; |
|
1652 | content: ""; | |
1641 | border: 4px solid; |
|
1653 | border: 4px solid; | |
1642 | border-right-color: transparent; |
|
1654 | border-right-color: transparent; | |
1643 | border-bottom-color: transparent; |
|
1655 | border-bottom-color: transparent; | |
1644 | border-left-color: transparent; |
|
1656 | border-left-color: transparent; | |
1645 | font-size: 0; |
|
1657 | font-size: 0; | |
1646 | } |
|
1658 | } | |
1647 |
|
1659 | |||
1648 | .journal_more .show_more { |
|
1660 | .journal_more .show_more { | |
1649 | display: inline; |
|
1661 | display: inline; | |
1650 |
|
1662 | |||
1651 | &:after { |
|
1663 | &:after { | |
1652 | content: none; |
|
1664 | content: none; | |
1653 | } |
|
1665 | } | |
1654 | } |
|
1666 | } | |
1655 |
|
1667 | |||
1656 | .compare_view_commits .collapse_commit:after { |
|
1668 | .compare_view_commits .collapse_commit:after { | |
1657 | cursor: pointer; |
|
1669 | cursor: pointer; | |
1658 | content: "\00A0\25B4"; |
|
1670 | content: "\00A0\25B4"; | |
1659 | margin-left: -3px; |
|
1671 | margin-left: -3px; | |
1660 | font-size: 17px; |
|
1672 | font-size: 17px; | |
1661 | color: @grey4; |
|
1673 | color: @grey4; | |
1662 | } |
|
1674 | } | |
1663 |
|
1675 | |||
1664 | .diff_links { |
|
1676 | .diff_links { | |
1665 | margin-left: 8px; |
|
1677 | margin-left: 8px; | |
1666 | } |
|
1678 | } | |
1667 |
|
1679 | |||
1668 | #pull_request_overview { |
|
1680 | #pull_request_overview { | |
1669 | div.ancestor { |
|
1681 | div.ancestor { | |
1670 | margin: -33px 0; |
|
1682 | margin: -33px 0; | |
1671 | } |
|
1683 | } | |
1672 | } |
|
1684 | } | |
1673 |
|
1685 | |||
1674 | div.ancestor { |
|
1686 | div.ancestor { | |
1675 | line-height: 33px; |
|
1687 | line-height: 33px; | |
1676 | } |
|
1688 | } | |
1677 |
|
1689 | |||
1678 | .cs_icon_td input[type="checkbox"] { |
|
1690 | .cs_icon_td input[type="checkbox"] { | |
1679 | display: none; |
|
1691 | display: none; | |
1680 | } |
|
1692 | } | |
1681 |
|
1693 | |||
1682 | .cs_icon_td .expand_file_icon:after { |
|
1694 | .cs_icon_td .expand_file_icon:after { | |
1683 | cursor: pointer; |
|
1695 | cursor: pointer; | |
1684 | content: "\00A0\25B6"; |
|
1696 | content: "\00A0\25B6"; | |
1685 | font-size: 12px; |
|
1697 | font-size: 12px; | |
1686 | color: @grey4; |
|
1698 | color: @grey4; | |
1687 | } |
|
1699 | } | |
1688 |
|
1700 | |||
1689 | .cs_icon_td .collapse_file_icon:after { |
|
1701 | .cs_icon_td .collapse_file_icon:after { | |
1690 | cursor: pointer; |
|
1702 | cursor: pointer; | |
1691 | content: "\00A0\25BC"; |
|
1703 | content: "\00A0\25BC"; | |
1692 | font-size: 12px; |
|
1704 | font-size: 12px; | |
1693 | color: @grey4; |
|
1705 | color: @grey4; | |
1694 | } |
|
1706 | } | |
1695 |
|
1707 | |||
1696 | /*new binary |
|
1708 | /*new binary | |
1697 | NEW_FILENODE = 1 |
|
1709 | NEW_FILENODE = 1 | |
1698 | DEL_FILENODE = 2 |
|
1710 | DEL_FILENODE = 2 | |
1699 | MOD_FILENODE = 3 |
|
1711 | MOD_FILENODE = 3 | |
1700 | RENAMED_FILENODE = 4 |
|
1712 | RENAMED_FILENODE = 4 | |
1701 | COPIED_FILENODE = 5 |
|
1713 | COPIED_FILENODE = 5 | |
1702 | CHMOD_FILENODE = 6 |
|
1714 | CHMOD_FILENODE = 6 | |
1703 | BIN_FILENODE = 7 |
|
1715 | BIN_FILENODE = 7 | |
1704 | */ |
|
1716 | */ | |
1705 | .cs_files_expand { |
|
1717 | .cs_files_expand { | |
1706 | font-size: @basefontsize + 5px; |
|
1718 | font-size: @basefontsize + 5px; | |
1707 | line-height: 1.8em; |
|
1719 | line-height: 1.8em; | |
1708 | float: right; |
|
1720 | float: right; | |
1709 | } |
|
1721 | } | |
1710 |
|
1722 | |||
1711 | .cs_files_expand span{ |
|
1723 | .cs_files_expand span{ | |
1712 | color: @rcblue; |
|
1724 | color: @rcblue; | |
1713 | cursor: pointer; |
|
1725 | cursor: pointer; | |
1714 | } |
|
1726 | } | |
1715 | .cs_files { |
|
1727 | .cs_files { | |
1716 | clear: both; |
|
1728 | clear: both; | |
1717 | padding-bottom: @padding; |
|
1729 | padding-bottom: @padding; | |
1718 |
|
1730 | |||
1719 | .cur_cs { |
|
1731 | .cur_cs { | |
1720 | margin: 10px 2px; |
|
1732 | margin: 10px 2px; | |
1721 | font-weight: bold; |
|
1733 | font-weight: bold; | |
1722 | } |
|
1734 | } | |
1723 |
|
1735 | |||
1724 | .node { |
|
1736 | .node { | |
1725 | float: left; |
|
1737 | float: left; | |
1726 | } |
|
1738 | } | |
1727 |
|
1739 | |||
1728 | .changes { |
|
1740 | .changes { | |
1729 | float: right; |
|
1741 | float: right; | |
1730 | color: white; |
|
1742 | color: white; | |
1731 | font-size: @basefontsize - 4px; |
|
1743 | font-size: @basefontsize - 4px; | |
1732 | margin-top: 4px; |
|
1744 | margin-top: 4px; | |
1733 | opacity: 0.6; |
|
1745 | opacity: 0.6; | |
1734 | filter: Alpha(opacity=60); /* IE8 and earlier */ |
|
1746 | filter: Alpha(opacity=60); /* IE8 and earlier */ | |
1735 |
|
1747 | |||
1736 | .added { |
|
1748 | .added { | |
1737 | background-color: @alert1; |
|
1749 | background-color: @alert1; | |
1738 | float: left; |
|
1750 | float: left; | |
1739 | text-align: center; |
|
1751 | text-align: center; | |
1740 | } |
|
1752 | } | |
1741 |
|
1753 | |||
1742 | .deleted { |
|
1754 | .deleted { | |
1743 | background-color: @alert2; |
|
1755 | background-color: @alert2; | |
1744 | float: left; |
|
1756 | float: left; | |
1745 | text-align: center; |
|
1757 | text-align: center; | |
1746 | } |
|
1758 | } | |
1747 |
|
1759 | |||
1748 | .bin { |
|
1760 | .bin { | |
1749 | background-color: @alert1; |
|
1761 | background-color: @alert1; | |
1750 | text-align: center; |
|
1762 | text-align: center; | |
1751 | } |
|
1763 | } | |
1752 |
|
1764 | |||
1753 | /*new binary*/ |
|
1765 | /*new binary*/ | |
1754 | .bin.bin1 { |
|
1766 | .bin.bin1 { | |
1755 | background-color: @alert1; |
|
1767 | background-color: @alert1; | |
1756 | text-align: center; |
|
1768 | text-align: center; | |
1757 | } |
|
1769 | } | |
1758 |
|
1770 | |||
1759 | /*deleted binary*/ |
|
1771 | /*deleted binary*/ | |
1760 | .bin.bin2 { |
|
1772 | .bin.bin2 { | |
1761 | background-color: @alert2; |
|
1773 | background-color: @alert2; | |
1762 | text-align: center; |
|
1774 | text-align: center; | |
1763 | } |
|
1775 | } | |
1764 |
|
1776 | |||
1765 | /*mod binary*/ |
|
1777 | /*mod binary*/ | |
1766 | .bin.bin3 { |
|
1778 | .bin.bin3 { | |
1767 | background-color: @grey2; |
|
1779 | background-color: @grey2; | |
1768 | text-align: center; |
|
1780 | text-align: center; | |
1769 | } |
|
1781 | } | |
1770 |
|
1782 | |||
1771 | /*rename file*/ |
|
1783 | /*rename file*/ | |
1772 | .bin.bin4 { |
|
1784 | .bin.bin4 { | |
1773 | background-color: @alert4; |
|
1785 | background-color: @alert4; | |
1774 | text-align: center; |
|
1786 | text-align: center; | |
1775 | } |
|
1787 | } | |
1776 |
|
1788 | |||
1777 | /*copied file*/ |
|
1789 | /*copied file*/ | |
1778 | .bin.bin5 { |
|
1790 | .bin.bin5 { | |
1779 | background-color: @alert4; |
|
1791 | background-color: @alert4; | |
1780 | text-align: center; |
|
1792 | text-align: center; | |
1781 | } |
|
1793 | } | |
1782 |
|
1794 | |||
1783 | /*chmod file*/ |
|
1795 | /*chmod file*/ | |
1784 | .bin.bin6 { |
|
1796 | .bin.bin6 { | |
1785 | background-color: @grey2; |
|
1797 | background-color: @grey2; | |
1786 | text-align: center; |
|
1798 | text-align: center; | |
1787 | } |
|
1799 | } | |
1788 | } |
|
1800 | } | |
1789 | } |
|
1801 | } | |
1790 |
|
1802 | |||
1791 | .cs_files .cs_added, .cs_files .cs_A, |
|
1803 | .cs_files .cs_added, .cs_files .cs_A, | |
1792 | .cs_files .cs_added, .cs_files .cs_M, |
|
1804 | .cs_files .cs_added, .cs_files .cs_M, | |
1793 | .cs_files .cs_added, .cs_files .cs_D { |
|
1805 | .cs_files .cs_added, .cs_files .cs_D { | |
1794 | height: 16px; |
|
1806 | height: 16px; | |
1795 | padding-right: 10px; |
|
1807 | padding-right: 10px; | |
1796 | margin-top: 7px; |
|
1808 | margin-top: 7px; | |
1797 | text-align: left; |
|
1809 | text-align: left; | |
1798 | } |
|
1810 | } | |
1799 |
|
1811 | |||
1800 | .cs_icon_td { |
|
1812 | .cs_icon_td { | |
1801 | min-width: 16px; |
|
1813 | min-width: 16px; | |
1802 | width: 16px; |
|
1814 | width: 16px; | |
1803 | } |
|
1815 | } | |
1804 |
|
1816 | |||
1805 | .pull-request-merge { |
|
1817 | .pull-request-merge { | |
1806 | border: 1px solid @grey5; |
|
1818 | border: 1px solid @grey5; | |
1807 | padding: 10px 0px 20px; |
|
1819 | padding: 10px 0px 20px; | |
1808 | margin-top: 10px; |
|
1820 | margin-top: 10px; | |
1809 | margin-bottom: 20px; |
|
1821 | margin-bottom: 20px; | |
1810 | } |
|
1822 | } | |
1811 |
|
1823 | |||
1812 | .pull-request-merge-refresh { |
|
1824 | .pull-request-merge-refresh { | |
1813 | margin: 2px 7px; |
|
1825 | margin: 2px 7px; | |
1814 | a { |
|
1826 | a { | |
1815 | color: @grey3; |
|
1827 | color: @grey3; | |
1816 | } |
|
1828 | } | |
1817 | } |
|
1829 | } | |
1818 |
|
1830 | |||
1819 | .pull-request-merge ul { |
|
1831 | .pull-request-merge ul { | |
1820 | padding: 0px 0px; |
|
1832 | padding: 0px 0px; | |
1821 | } |
|
1833 | } | |
1822 |
|
1834 | |||
1823 | .pull-request-merge li { |
|
1835 | .pull-request-merge li { | |
1824 | list-style-type: none; |
|
1836 | list-style-type: none; | |
1825 | } |
|
1837 | } | |
1826 |
|
1838 | |||
1827 | .pull-request-merge .pull-request-wrap { |
|
1839 | .pull-request-merge .pull-request-wrap { | |
1828 | height: auto; |
|
1840 | height: auto; | |
1829 | padding: 0px 0px; |
|
1841 | padding: 0px 0px; | |
1830 | text-align: right; |
|
1842 | text-align: right; | |
1831 | } |
|
1843 | } | |
1832 |
|
1844 | |||
1833 | .pull-request-merge span { |
|
1845 | .pull-request-merge span { | |
1834 | margin-right: 5px; |
|
1846 | margin-right: 5px; | |
1835 | } |
|
1847 | } | |
1836 |
|
1848 | |||
1837 | .pull-request-merge-actions { |
|
1849 | .pull-request-merge-actions { | |
1838 | min-height: 30px; |
|
1850 | min-height: 30px; | |
1839 | padding: 0px 0px; |
|
1851 | padding: 0px 0px; | |
1840 | } |
|
1852 | } | |
1841 |
|
1853 | |||
1842 | .pull-request-merge-info { |
|
1854 | .pull-request-merge-info { | |
1843 | padding: 0px 5px 5px 0px; |
|
1855 | padding: 0px 5px 5px 0px; | |
1844 | } |
|
1856 | } | |
1845 |
|
1857 | |||
1846 | .merge-status { |
|
1858 | .merge-status { | |
1847 | margin-right: 5px; |
|
1859 | margin-right: 5px; | |
1848 | } |
|
1860 | } | |
1849 |
|
1861 | |||
1850 | .merge-message { |
|
1862 | .merge-message { | |
1851 | font-size: 1.2em |
|
1863 | font-size: 1.2em | |
1852 | } |
|
1864 | } | |
1853 |
|
1865 | |||
1854 | .merge-message.success i, |
|
1866 | .merge-message.success i, | |
1855 | .merge-icon.success i { |
|
1867 | .merge-icon.success i { | |
1856 | color:@alert1; |
|
1868 | color:@alert1; | |
1857 | } |
|
1869 | } | |
1858 |
|
1870 | |||
1859 | .merge-message.warning i, |
|
1871 | .merge-message.warning i, | |
1860 | .merge-icon.warning i { |
|
1872 | .merge-icon.warning i { | |
1861 | color: @alert3; |
|
1873 | color: @alert3; | |
1862 | } |
|
1874 | } | |
1863 |
|
1875 | |||
1864 | .merge-message.error i, |
|
1876 | .merge-message.error i, | |
1865 | .merge-icon.error i { |
|
1877 | .merge-icon.error i { | |
1866 | color:@alert2; |
|
1878 | color:@alert2; | |
1867 | } |
|
1879 | } | |
1868 |
|
1880 | |||
1869 | .pr-versions { |
|
1881 | .pr-versions { | |
1870 | font-size: 1.1em; |
|
1882 | font-size: 1.1em; | |
1871 |
|
1883 | |||
1872 | table { |
|
1884 | table { | |
1873 | padding: 0px 5px; |
|
1885 | padding: 0px 5px; | |
1874 | } |
|
1886 | } | |
1875 |
|
1887 | |||
1876 | td { |
|
1888 | td { | |
1877 | line-height: 15px; |
|
1889 | line-height: 15px; | |
1878 | } |
|
1890 | } | |
1879 |
|
1891 | |||
1880 | .compare-radio-button { |
|
1892 | .compare-radio-button { | |
1881 | position: relative; |
|
1893 | position: relative; | |
1882 | top: -3px; |
|
1894 | top: -3px; | |
1883 | } |
|
1895 | } | |
1884 | } |
|
1896 | } | |
1885 |
|
1897 | |||
1886 |
|
1898 | |||
1887 | #close_pull_request { |
|
1899 | #close_pull_request { | |
1888 | margin-right: 0px; |
|
1900 | margin-right: 0px; | |
1889 | } |
|
1901 | } | |
1890 |
|
1902 | |||
1891 | .empty_data { |
|
1903 | .empty_data { | |
1892 | color: @grey4; |
|
1904 | color: @grey4; | |
1893 | } |
|
1905 | } | |
1894 |
|
1906 | |||
1895 | #changeset_compare_view_content { |
|
1907 | #changeset_compare_view_content { | |
1896 | clear: both; |
|
1908 | clear: both; | |
1897 | width: 100%; |
|
1909 | width: 100%; | |
1898 | box-sizing: border-box; |
|
1910 | box-sizing: border-box; | |
1899 | .border-radius(@border-radius); |
|
1911 | .border-radius(@border-radius); | |
1900 |
|
1912 | |||
1901 | .help-block { |
|
1913 | .help-block { | |
1902 | margin: @padding 0; |
|
1914 | margin: @padding 0; | |
1903 | color: @text-color; |
|
1915 | color: @text-color; | |
1904 | &.pre-formatting { |
|
1916 | &.pre-formatting { | |
1905 | white-space: pre; |
|
1917 | white-space: pre; | |
1906 | } |
|
1918 | } | |
1907 | } |
|
1919 | } | |
1908 |
|
1920 | |||
1909 | .empty_data { |
|
1921 | .empty_data { | |
1910 | margin: @padding 0; |
|
1922 | margin: @padding 0; | |
1911 | } |
|
1923 | } | |
1912 |
|
1924 | |||
1913 | .alert { |
|
1925 | .alert { | |
1914 | margin-bottom: @space; |
|
1926 | margin-bottom: @space; | |
1915 | } |
|
1927 | } | |
1916 | } |
|
1928 | } | |
1917 |
|
1929 | |||
1918 | .table_disp { |
|
1930 | .table_disp { | |
1919 | .status { |
|
1931 | .status { | |
1920 | width: auto; |
|
1932 | width: auto; | |
1921 | } |
|
1933 | } | |
1922 | } |
|
1934 | } | |
1923 |
|
1935 | |||
1924 |
|
1936 | |||
1925 | .creation_in_progress { |
|
1937 | .creation_in_progress { | |
1926 | color: @grey4 |
|
1938 | color: @grey4 | |
1927 | } |
|
1939 | } | |
1928 |
|
1940 | |||
1929 | .status_box_menu { |
|
1941 | .status_box_menu { | |
1930 | margin: 0; |
|
1942 | margin: 0; | |
1931 | } |
|
1943 | } | |
1932 |
|
1944 | |||
1933 | .notification-table{ |
|
1945 | .notification-table{ | |
1934 | margin-bottom: @space; |
|
1946 | margin-bottom: @space; | |
1935 | display: table; |
|
1947 | display: table; | |
1936 | width: 100%; |
|
1948 | width: 100%; | |
1937 |
|
1949 | |||
1938 | .container{ |
|
1950 | .container{ | |
1939 | display: table-row; |
|
1951 | display: table-row; | |
1940 |
|
1952 | |||
1941 | .notification-header{ |
|
1953 | .notification-header{ | |
1942 | border-bottom: @border-thickness solid @border-default-color; |
|
1954 | border-bottom: @border-thickness solid @border-default-color; | |
1943 | } |
|
1955 | } | |
1944 |
|
1956 | |||
1945 | .notification-subject{ |
|
1957 | .notification-subject{ | |
1946 | display: table-cell; |
|
1958 | display: table-cell; | |
1947 | } |
|
1959 | } | |
1948 | } |
|
1960 | } | |
1949 | } |
|
1961 | } | |
1950 |
|
1962 | |||
1951 | // Notifications |
|
1963 | // Notifications | |
1952 | .notification-header{ |
|
1964 | .notification-header{ | |
1953 | display: table; |
|
1965 | display: table; | |
1954 | width: 100%; |
|
1966 | width: 100%; | |
1955 | padding: floor(@basefontsize/2) 0; |
|
1967 | padding: floor(@basefontsize/2) 0; | |
1956 | line-height: 1em; |
|
1968 | line-height: 1em; | |
1957 |
|
1969 | |||
1958 | .desc, .delete-notifications, .read-notifications{ |
|
1970 | .desc, .delete-notifications, .read-notifications{ | |
1959 | display: table-cell; |
|
1971 | display: table-cell; | |
1960 | text-align: left; |
|
1972 | text-align: left; | |
1961 | } |
|
1973 | } | |
1962 |
|
1974 | |||
1963 | .delete-notifications, .read-notifications{ |
|
1975 | .delete-notifications, .read-notifications{ | |
1964 | width: 35px; |
|
1976 | width: 35px; | |
1965 | min-width: 35px; //fixes when only one button is displayed |
|
1977 | min-width: 35px; //fixes when only one button is displayed | |
1966 | } |
|
1978 | } | |
1967 | } |
|
1979 | } | |
1968 |
|
1980 | |||
1969 | .notification-body { |
|
1981 | .notification-body { | |
1970 | .markdown-block, |
|
1982 | .markdown-block, | |
1971 | .rst-block { |
|
1983 | .rst-block { | |
1972 | padding: @padding 0; |
|
1984 | padding: @padding 0; | |
1973 | } |
|
1985 | } | |
1974 |
|
1986 | |||
1975 | .notification-subject { |
|
1987 | .notification-subject { | |
1976 | padding: @textmargin 0; |
|
1988 | padding: @textmargin 0; | |
1977 | border-bottom: @border-thickness solid @border-default-color; |
|
1989 | border-bottom: @border-thickness solid @border-default-color; | |
1978 | } |
|
1990 | } | |
1979 | } |
|
1991 | } | |
1980 |
|
1992 | |||
1981 |
|
1993 | |||
1982 | .notifications_buttons{ |
|
1994 | .notifications_buttons{ | |
1983 | float: right; |
|
1995 | float: right; | |
1984 | } |
|
1996 | } | |
1985 |
|
1997 | |||
1986 | #notification-status{ |
|
1998 | #notification-status{ | |
1987 | display: inline; |
|
1999 | display: inline; | |
1988 | } |
|
2000 | } | |
1989 |
|
2001 | |||
1990 | // Repositories |
|
2002 | // Repositories | |
1991 |
|
2003 | |||
1992 | #summary.fields{ |
|
2004 | #summary.fields{ | |
1993 | display: table; |
|
2005 | display: table; | |
1994 |
|
2006 | |||
1995 | .field{ |
|
2007 | .field{ | |
1996 | display: table-row; |
|
2008 | display: table-row; | |
1997 |
|
2009 | |||
1998 | .label-summary{ |
|
2010 | .label-summary{ | |
1999 | display: table-cell; |
|
2011 | display: table-cell; | |
2000 | min-width: @label-summary-minwidth; |
|
2012 | min-width: @label-summary-minwidth; | |
2001 | padding-top: @padding/2; |
|
2013 | padding-top: @padding/2; | |
2002 | padding-bottom: @padding/2; |
|
2014 | padding-bottom: @padding/2; | |
2003 | padding-right: @padding/2; |
|
2015 | padding-right: @padding/2; | |
2004 | } |
|
2016 | } | |
2005 |
|
2017 | |||
2006 | .input{ |
|
2018 | .input{ | |
2007 | display: table-cell; |
|
2019 | display: table-cell; | |
2008 | padding: @padding/2; |
|
2020 | padding: @padding/2; | |
2009 |
|
2021 | |||
2010 | input{ |
|
2022 | input{ | |
2011 | min-width: 29em; |
|
2023 | min-width: 29em; | |
2012 | padding: @padding/4; |
|
2024 | padding: @padding/4; | |
2013 | } |
|
2025 | } | |
2014 | } |
|
2026 | } | |
2015 | .statistics, .downloads{ |
|
2027 | .statistics, .downloads{ | |
2016 | .disabled{ |
|
2028 | .disabled{ | |
2017 | color: @grey4; |
|
2029 | color: @grey4; | |
2018 | } |
|
2030 | } | |
2019 | } |
|
2031 | } | |
2020 | } |
|
2032 | } | |
2021 | } |
|
2033 | } | |
2022 |
|
2034 | |||
2023 | #summary{ |
|
2035 | #summary{ | |
2024 | width: 70%; |
|
2036 | width: 70%; | |
2025 | } |
|
2037 | } | |
2026 |
|
2038 | |||
2027 |
|
2039 | |||
2028 | // Journal |
|
2040 | // Journal | |
2029 | .journal.title { |
|
2041 | .journal.title { | |
2030 | h5 { |
|
2042 | h5 { | |
2031 | float: left; |
|
2043 | float: left; | |
2032 | margin: 0; |
|
2044 | margin: 0; | |
2033 | width: 70%; |
|
2045 | width: 70%; | |
2034 | } |
|
2046 | } | |
2035 |
|
2047 | |||
2036 | ul { |
|
2048 | ul { | |
2037 | float: right; |
|
2049 | float: right; | |
2038 | display: inline-block; |
|
2050 | display: inline-block; | |
2039 | margin: 0; |
|
2051 | margin: 0; | |
2040 | width: 30%; |
|
2052 | width: 30%; | |
2041 | text-align: right; |
|
2053 | text-align: right; | |
2042 |
|
2054 | |||
2043 | li { |
|
2055 | li { | |
2044 | display: inline; |
|
2056 | display: inline; | |
2045 | font-size: @journal-fontsize; |
|
2057 | font-size: @journal-fontsize; | |
2046 | line-height: 1em; |
|
2058 | line-height: 1em; | |
2047 |
|
2059 | |||
2048 | list-style-type: none; |
|
2060 | list-style-type: none; | |
2049 | } |
|
2061 | } | |
2050 | } |
|
2062 | } | |
2051 | } |
|
2063 | } | |
2052 |
|
2064 | |||
2053 | .filterexample { |
|
2065 | .filterexample { | |
2054 | position: absolute; |
|
2066 | position: absolute; | |
2055 | top: 95px; |
|
2067 | top: 95px; | |
2056 | left: @contentpadding; |
|
2068 | left: @contentpadding; | |
2057 | color: @rcblue; |
|
2069 | color: @rcblue; | |
2058 | font-size: 11px; |
|
2070 | font-size: 11px; | |
2059 | font-family: @text-regular; |
|
2071 | font-family: @text-regular; | |
2060 | cursor: help; |
|
2072 | cursor: help; | |
2061 |
|
2073 | |||
2062 | &:hover { |
|
2074 | &:hover { | |
2063 | color: @rcdarkblue; |
|
2075 | color: @rcdarkblue; | |
2064 | } |
|
2076 | } | |
2065 |
|
2077 | |||
2066 | @media (max-width:768px) { |
|
2078 | @media (max-width:768px) { | |
2067 | position: relative; |
|
2079 | position: relative; | |
2068 | top: auto; |
|
2080 | top: auto; | |
2069 | left: auto; |
|
2081 | left: auto; | |
2070 | display: block; |
|
2082 | display: block; | |
2071 | } |
|
2083 | } | |
2072 | } |
|
2084 | } | |
2073 |
|
2085 | |||
2074 |
|
2086 | |||
2075 | #journal{ |
|
2087 | #journal{ | |
2076 | margin-bottom: @space; |
|
2088 | margin-bottom: @space; | |
2077 |
|
2089 | |||
2078 | .journal_day{ |
|
2090 | .journal_day{ | |
2079 | margin-bottom: @textmargin/2; |
|
2091 | margin-bottom: @textmargin/2; | |
2080 | padding-bottom: @textmargin/2; |
|
2092 | padding-bottom: @textmargin/2; | |
2081 | font-size: @journal-fontsize; |
|
2093 | font-size: @journal-fontsize; | |
2082 | border-bottom: @border-thickness solid @border-default-color; |
|
2094 | border-bottom: @border-thickness solid @border-default-color; | |
2083 | } |
|
2095 | } | |
2084 |
|
2096 | |||
2085 | .journal_container{ |
|
2097 | .journal_container{ | |
2086 | margin-bottom: @space; |
|
2098 | margin-bottom: @space; | |
2087 |
|
2099 | |||
2088 | .journal_user{ |
|
2100 | .journal_user{ | |
2089 | display: inline-block; |
|
2101 | display: inline-block; | |
2090 | } |
|
2102 | } | |
2091 | .journal_action_container{ |
|
2103 | .journal_action_container{ | |
2092 | display: block; |
|
2104 | display: block; | |
2093 | margin-top: @textmargin; |
|
2105 | margin-top: @textmargin; | |
2094 |
|
2106 | |||
2095 | div{ |
|
2107 | div{ | |
2096 | display: inline; |
|
2108 | display: inline; | |
2097 | } |
|
2109 | } | |
2098 |
|
2110 | |||
2099 | div.journal_action_params{ |
|
2111 | div.journal_action_params{ | |
2100 | display: block; |
|
2112 | display: block; | |
2101 | } |
|
2113 | } | |
2102 |
|
2114 | |||
2103 | div.journal_repo:after{ |
|
2115 | div.journal_repo:after{ | |
2104 | content: "\A"; |
|
2116 | content: "\A"; | |
2105 | white-space: pre; |
|
2117 | white-space: pre; | |
2106 | } |
|
2118 | } | |
2107 |
|
2119 | |||
2108 | div.date{ |
|
2120 | div.date{ | |
2109 | display: block; |
|
2121 | display: block; | |
2110 | margin-bottom: @textmargin; |
|
2122 | margin-bottom: @textmargin; | |
2111 | } |
|
2123 | } | |
2112 | } |
|
2124 | } | |
2113 | } |
|
2125 | } | |
2114 | } |
|
2126 | } | |
2115 |
|
2127 | |||
2116 | // Files |
|
2128 | // Files | |
2117 | .edit-file-title { |
|
2129 | .edit-file-title { | |
2118 | font-size: 16px; |
|
2130 | font-size: 16px; | |
2119 |
|
2131 | |||
2120 | .title-heading { |
|
2132 | .title-heading { | |
2121 | padding: 2px; |
|
2133 | padding: 2px; | |
2122 | } |
|
2134 | } | |
2123 | } |
|
2135 | } | |
2124 |
|
2136 | |||
2125 | .edit-file-fieldset { |
|
2137 | .edit-file-fieldset { | |
2126 | margin: @sidebarpadding 0; |
|
2138 | margin: @sidebarpadding 0; | |
2127 |
|
2139 | |||
2128 | .fieldset { |
|
2140 | .fieldset { | |
2129 | .left-label { |
|
2141 | .left-label { | |
2130 | width: 13%; |
|
2142 | width: 13%; | |
2131 | } |
|
2143 | } | |
2132 | .right-content { |
|
2144 | .right-content { | |
2133 | width: 87%; |
|
2145 | width: 87%; | |
2134 | max-width: 100%; |
|
2146 | max-width: 100%; | |
2135 | } |
|
2147 | } | |
2136 | .filename-label { |
|
2148 | .filename-label { | |
2137 | margin-top: 13px; |
|
2149 | margin-top: 13px; | |
2138 | } |
|
2150 | } | |
2139 | .commit-message-label { |
|
2151 | .commit-message-label { | |
2140 | margin-top: 4px; |
|
2152 | margin-top: 4px; | |
2141 | } |
|
2153 | } | |
2142 | .file-upload-input { |
|
2154 | .file-upload-input { | |
2143 | input { |
|
2155 | input { | |
2144 | display: none; |
|
2156 | display: none; | |
2145 | } |
|
2157 | } | |
2146 | margin-top: 10px; |
|
2158 | margin-top: 10px; | |
2147 | } |
|
2159 | } | |
2148 | .file-upload-label { |
|
2160 | .file-upload-label { | |
2149 | margin-top: 10px; |
|
2161 | margin-top: 10px; | |
2150 | } |
|
2162 | } | |
2151 | p { |
|
2163 | p { | |
2152 | margin-top: 5px; |
|
2164 | margin-top: 5px; | |
2153 | } |
|
2165 | } | |
2154 |
|
2166 | |||
2155 | } |
|
2167 | } | |
2156 | .custom-path-link { |
|
2168 | .custom-path-link { | |
2157 | margin-left: 5px; |
|
2169 | margin-left: 5px; | |
2158 | } |
|
2170 | } | |
2159 | #commit { |
|
2171 | #commit { | |
2160 | resize: vertical; |
|
2172 | resize: vertical; | |
2161 | } |
|
2173 | } | |
2162 | } |
|
2174 | } | |
2163 |
|
2175 | |||
2164 | .delete-file-preview { |
|
2176 | .delete-file-preview { | |
2165 | max-height: 250px; |
|
2177 | max-height: 250px; | |
2166 | } |
|
2178 | } | |
2167 |
|
2179 | |||
2168 | .new-file, |
|
2180 | .new-file, | |
2169 | #filter_activate, |
|
2181 | #filter_activate, | |
2170 | #filter_deactivate { |
|
2182 | #filter_deactivate { | |
2171 | float: right; |
|
2183 | float: right; | |
2172 | margin: 0 0 0 10px; |
|
2184 | margin: 0 0 0 10px; | |
2173 | } |
|
2185 | } | |
2174 |
|
2186 | |||
2175 | .file-upload-transaction-wrapper { |
|
2187 | .file-upload-transaction-wrapper { | |
2176 | margin-top: 57px; |
|
2188 | margin-top: 57px; | |
2177 | clear: both; |
|
2189 | clear: both; | |
2178 | } |
|
2190 | } | |
2179 |
|
2191 | |||
2180 | .file-upload-transaction-wrapper .error { |
|
2192 | .file-upload-transaction-wrapper .error { | |
2181 | color: @color5; |
|
2193 | color: @color5; | |
2182 | } |
|
2194 | } | |
2183 |
|
2195 | |||
2184 | .file-upload-transaction { |
|
2196 | .file-upload-transaction { | |
2185 | min-height: 200px; |
|
2197 | min-height: 200px; | |
2186 | padding: 54px; |
|
2198 | padding: 54px; | |
2187 | border: 1px solid @grey5; |
|
2199 | border: 1px solid @grey5; | |
2188 | text-align: center; |
|
2200 | text-align: center; | |
2189 | clear: both; |
|
2201 | clear: both; | |
2190 | } |
|
2202 | } | |
2191 |
|
2203 | |||
2192 | .file-upload-transaction i { |
|
2204 | .file-upload-transaction i { | |
2193 | font-size: 48px |
|
2205 | font-size: 48px | |
2194 | } |
|
2206 | } | |
2195 |
|
2207 | |||
2196 | h3.files_location{ |
|
2208 | h3.files_location{ | |
2197 | line-height: 2.4em; |
|
2209 | line-height: 2.4em; | |
2198 | } |
|
2210 | } | |
2199 |
|
2211 | |||
2200 | .browser-nav { |
|
2212 | .browser-nav { | |
2201 | width: 100%; |
|
2213 | width: 100%; | |
2202 | display: table; |
|
2214 | display: table; | |
2203 | margin-bottom: 20px; |
|
2215 | margin-bottom: 20px; | |
2204 |
|
2216 | |||
2205 | .info_box { |
|
2217 | .info_box { | |
2206 | float: left; |
|
2218 | float: left; | |
2207 | display: inline-table; |
|
2219 | display: inline-table; | |
2208 | height: 2.5em; |
|
2220 | height: 2.5em; | |
2209 |
|
2221 | |||
2210 | .browser-cur-rev, .info_box_elem { |
|
2222 | .browser-cur-rev, .info_box_elem { | |
2211 | display: table-cell; |
|
2223 | display: table-cell; | |
2212 | vertical-align: middle; |
|
2224 | vertical-align: middle; | |
2213 | } |
|
2225 | } | |
2214 |
|
2226 | |||
2215 | .drop-menu { |
|
2227 | .drop-menu { | |
2216 | margin: 0 10px; |
|
2228 | margin: 0 10px; | |
2217 | } |
|
2229 | } | |
2218 |
|
2230 | |||
2219 | .info_box_elem { |
|
2231 | .info_box_elem { | |
2220 | border-top: @border-thickness solid @grey5; |
|
2232 | border-top: @border-thickness solid @grey5; | |
2221 | border-bottom: @border-thickness solid @grey5; |
|
2233 | border-bottom: @border-thickness solid @grey5; | |
2222 | box-shadow: @button-shadow; |
|
2234 | box-shadow: @button-shadow; | |
2223 |
|
2235 | |||
2224 | #at_rev, a { |
|
2236 | #at_rev, a { | |
2225 | padding: 0.6em 0.4em; |
|
2237 | padding: 0.6em 0.4em; | |
2226 | margin: 0; |
|
2238 | margin: 0; | |
2227 | .box-shadow(none); |
|
2239 | .box-shadow(none); | |
2228 | border: 0; |
|
2240 | border: 0; | |
2229 | height: 12px; |
|
2241 | height: 12px; | |
2230 | color: @grey2; |
|
2242 | color: @grey2; | |
2231 | } |
|
2243 | } | |
2232 |
|
2244 | |||
2233 | input#at_rev { |
|
2245 | input#at_rev { | |
2234 | max-width: 50px; |
|
2246 | max-width: 50px; | |
2235 | text-align: center; |
|
2247 | text-align: center; | |
2236 | } |
|
2248 | } | |
2237 |
|
2249 | |||
2238 | &.previous { |
|
2250 | &.previous { | |
2239 | border: @border-thickness solid @grey5; |
|
2251 | border: @border-thickness solid @grey5; | |
2240 | border-top-left-radius: @border-radius; |
|
2252 | border-top-left-radius: @border-radius; | |
2241 | border-bottom-left-radius: @border-radius; |
|
2253 | border-bottom-left-radius: @border-radius; | |
2242 |
|
2254 | |||
2243 | &:hover { |
|
2255 | &:hover { | |
2244 | border-color: @grey4; |
|
2256 | border-color: @grey4; | |
2245 | } |
|
2257 | } | |
2246 |
|
2258 | |||
2247 | .disabled { |
|
2259 | .disabled { | |
2248 | color: @grey5; |
|
2260 | color: @grey5; | |
2249 | cursor: not-allowed; |
|
2261 | cursor: not-allowed; | |
2250 | opacity: 0.5; |
|
2262 | opacity: 0.5; | |
2251 | } |
|
2263 | } | |
2252 | } |
|
2264 | } | |
2253 |
|
2265 | |||
2254 | &.next { |
|
2266 | &.next { | |
2255 | border: @border-thickness solid @grey5; |
|
2267 | border: @border-thickness solid @grey5; | |
2256 | border-top-right-radius: @border-radius; |
|
2268 | border-top-right-radius: @border-radius; | |
2257 | border-bottom-right-radius: @border-radius; |
|
2269 | border-bottom-right-radius: @border-radius; | |
2258 |
|
2270 | |||
2259 | &:hover { |
|
2271 | &:hover { | |
2260 | border-color: @grey4; |
|
2272 | border-color: @grey4; | |
2261 | } |
|
2273 | } | |
2262 |
|
2274 | |||
2263 | .disabled { |
|
2275 | .disabled { | |
2264 | color: @grey5; |
|
2276 | color: @grey5; | |
2265 | cursor: not-allowed; |
|
2277 | cursor: not-allowed; | |
2266 | opacity: 0.5; |
|
2278 | opacity: 0.5; | |
2267 | } |
|
2279 | } | |
2268 | } |
|
2280 | } | |
2269 | } |
|
2281 | } | |
2270 |
|
2282 | |||
2271 | .browser-cur-rev { |
|
2283 | .browser-cur-rev { | |
2272 |
|
2284 | |||
2273 | span{ |
|
2285 | span{ | |
2274 | margin: 0; |
|
2286 | margin: 0; | |
2275 | color: @rcblue; |
|
2287 | color: @rcblue; | |
2276 | height: 12px; |
|
2288 | height: 12px; | |
2277 | display: inline-block; |
|
2289 | display: inline-block; | |
2278 | padding: 0.7em 1em ; |
|
2290 | padding: 0.7em 1em ; | |
2279 | border: @border-thickness solid @rcblue; |
|
2291 | border: @border-thickness solid @rcblue; | |
2280 | margin-right: @padding; |
|
2292 | margin-right: @padding; | |
2281 | } |
|
2293 | } | |
2282 | } |
|
2294 | } | |
2283 |
|
2295 | |||
2284 | } |
|
2296 | } | |
2285 |
|
2297 | |||
2286 | .select-index-number { |
|
2298 | .select-index-number { | |
2287 | margin: 0 0 0 20px; |
|
2299 | margin: 0 0 0 20px; | |
2288 | color: @grey3; |
|
2300 | color: @grey3; | |
2289 | } |
|
2301 | } | |
2290 |
|
2302 | |||
2291 | .search_activate { |
|
2303 | .search_activate { | |
2292 | display: table-cell; |
|
2304 | display: table-cell; | |
2293 | vertical-align: middle; |
|
2305 | vertical-align: middle; | |
2294 |
|
2306 | |||
2295 | input, label{ |
|
2307 | input, label{ | |
2296 | margin: 0; |
|
2308 | margin: 0; | |
2297 | padding: 0; |
|
2309 | padding: 0; | |
2298 | } |
|
2310 | } | |
2299 |
|
2311 | |||
2300 | input{ |
|
2312 | input{ | |
2301 | margin-left: @textmargin; |
|
2313 | margin-left: @textmargin; | |
2302 | } |
|
2314 | } | |
2303 |
|
2315 | |||
2304 | } |
|
2316 | } | |
2305 | } |
|
2317 | } | |
2306 |
|
2318 | |||
2307 | .browser-cur-rev{ |
|
2319 | .browser-cur-rev{ | |
2308 | margin-bottom: @textmargin; |
|
2320 | margin-bottom: @textmargin; | |
2309 | } |
|
2321 | } | |
2310 |
|
2322 | |||
2311 | #node_filter_box_loading{ |
|
2323 | #node_filter_box_loading{ | |
2312 | .info_text; |
|
2324 | .info_text; | |
2313 | } |
|
2325 | } | |
2314 |
|
2326 | |||
2315 | .browser-search { |
|
2327 | .browser-search { | |
2316 | margin: -25px 0px 5px 0px; |
|
2328 | margin: -25px 0px 5px 0px; | |
2317 | } |
|
2329 | } | |
2318 |
|
2330 | |||
2319 | .files-quick-filter { |
|
2331 | .files-quick-filter { | |
2320 | float: right; |
|
2332 | float: right; | |
2321 | width: 180px; |
|
2333 | width: 180px; | |
2322 | position: relative; |
|
2334 | position: relative; | |
2323 | } |
|
2335 | } | |
2324 |
|
2336 | |||
2325 | .files-filter-box { |
|
2337 | .files-filter-box { | |
2326 | display: flex; |
|
2338 | display: flex; | |
2327 | padding: 0px; |
|
2339 | padding: 0px; | |
2328 | border-radius: 3px; |
|
2340 | border-radius: 3px; | |
2329 | margin-bottom: 0; |
|
2341 | margin-bottom: 0; | |
2330 |
|
2342 | |||
2331 | a { |
|
2343 | a { | |
2332 | border: none !important; |
|
2344 | border: none !important; | |
2333 | } |
|
2345 | } | |
2334 |
|
2346 | |||
2335 | li { |
|
2347 | li { | |
2336 | list-style-type: none |
|
2348 | list-style-type: none | |
2337 | } |
|
2349 | } | |
2338 | } |
|
2350 | } | |
2339 |
|
2351 | |||
2340 | .files-filter-box-path { |
|
2352 | .files-filter-box-path { | |
2341 | line-height: 33px; |
|
2353 | line-height: 33px; | |
2342 | padding: 0; |
|
2354 | padding: 0; | |
2343 | width: 20px; |
|
2355 | width: 20px; | |
2344 | position: absolute; |
|
2356 | position: absolute; | |
2345 | z-index: 11; |
|
2357 | z-index: 11; | |
2346 | left: 5px; |
|
2358 | left: 5px; | |
2347 | } |
|
2359 | } | |
2348 |
|
2360 | |||
2349 | .files-filter-box-input { |
|
2361 | .files-filter-box-input { | |
2350 | margin-right: 0; |
|
2362 | margin-right: 0; | |
2351 |
|
2363 | |||
2352 | input { |
|
2364 | input { | |
2353 | border: 1px solid @white; |
|
2365 | border: 1px solid @white; | |
2354 | padding-left: 25px; |
|
2366 | padding-left: 25px; | |
2355 | width: 145px; |
|
2367 | width: 145px; | |
2356 |
|
2368 | |||
2357 | &:hover { |
|
2369 | &:hover { | |
2358 | border-color: @grey6; |
|
2370 | border-color: @grey6; | |
2359 | } |
|
2371 | } | |
2360 |
|
2372 | |||
2361 | &:focus { |
|
2373 | &:focus { | |
2362 | border-color: @grey5; |
|
2374 | border-color: @grey5; | |
2363 | } |
|
2375 | } | |
2364 | } |
|
2376 | } | |
2365 | } |
|
2377 | } | |
2366 |
|
2378 | |||
2367 | .browser-result{ |
|
2379 | .browser-result{ | |
2368 | td a{ |
|
2380 | td a{ | |
2369 | margin-left: 0.5em; |
|
2381 | margin-left: 0.5em; | |
2370 | display: inline-block; |
|
2382 | display: inline-block; | |
2371 |
|
2383 | |||
2372 | em { |
|
2384 | em { | |
2373 | font-weight: @text-bold-weight; |
|
2385 | font-weight: @text-bold-weight; | |
2374 | font-family: @text-bold; |
|
2386 | font-family: @text-bold; | |
2375 | } |
|
2387 | } | |
2376 | } |
|
2388 | } | |
2377 | } |
|
2389 | } | |
2378 |
|
2390 | |||
2379 | .browser-highlight{ |
|
2391 | .browser-highlight{ | |
2380 | background-color: @grey5-alpha; |
|
2392 | background-color: @grey5-alpha; | |
2381 | } |
|
2393 | } | |
2382 |
|
2394 | |||
2383 |
|
2395 | |||
2384 | .edit-file-fieldset #location, |
|
2396 | .edit-file-fieldset #location, | |
2385 | .edit-file-fieldset #filename { |
|
2397 | .edit-file-fieldset #filename { | |
2386 | display: flex; |
|
2398 | display: flex; | |
2387 | width: -moz-available; /* WebKit-based browsers will ignore this. */ |
|
2399 | width: -moz-available; /* WebKit-based browsers will ignore this. */ | |
2388 | width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */ |
|
2400 | width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */ | |
2389 | width: fill-available; |
|
2401 | width: fill-available; | |
2390 | border: 0; |
|
2402 | border: 0; | |
2391 | } |
|
2403 | } | |
2392 |
|
2404 | |||
2393 | .path-items { |
|
2405 | .path-items { | |
2394 | display: flex; |
|
2406 | display: flex; | |
2395 | padding: 0; |
|
2407 | padding: 0; | |
2396 | border: 1px solid #eeeeee; |
|
2408 | border: 1px solid #eeeeee; | |
2397 | width: 100%; |
|
2409 | width: 100%; | |
2398 | float: left; |
|
2410 | float: left; | |
2399 |
|
2411 | |||
2400 | .breadcrumb-path { |
|
2412 | .breadcrumb-path { | |
2401 | line-height: 30px; |
|
2413 | line-height: 30px; | |
2402 | padding: 0 4px; |
|
2414 | padding: 0 4px; | |
2403 | white-space: nowrap; |
|
2415 | white-space: nowrap; | |
2404 | } |
|
2416 | } | |
2405 |
|
2417 | |||
2406 | .location-path { |
|
2418 | .location-path { | |
2407 | width: -moz-available; /* WebKit-based browsers will ignore this. */ |
|
2419 | width: -moz-available; /* WebKit-based browsers will ignore this. */ | |
2408 | width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */ |
|
2420 | width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */ | |
2409 | width: fill-available; |
|
2421 | width: fill-available; | |
2410 |
|
2422 | |||
2411 | .file-name-input { |
|
2423 | .file-name-input { | |
2412 | padding: 0.5em 0; |
|
2424 | padding: 0.5em 0; | |
2413 | } |
|
2425 | } | |
2414 |
|
2426 | |||
2415 | } |
|
2427 | } | |
2416 |
|
2428 | |||
2417 | ul { |
|
2429 | ul { | |
2418 | display: flex; |
|
2430 | display: flex; | |
2419 | margin: 0; |
|
2431 | margin: 0; | |
2420 | padding: 0; |
|
2432 | padding: 0; | |
2421 | width: 100%; |
|
2433 | width: 100%; | |
2422 | } |
|
2434 | } | |
2423 |
|
2435 | |||
2424 | li { |
|
2436 | li { | |
2425 | list-style-type: none; |
|
2437 | list-style-type: none; | |
2426 | } |
|
2438 | } | |
2427 |
|
2439 | |||
2428 | } |
|
2440 | } | |
2429 |
|
2441 | |||
2430 | .editor-items { |
|
2442 | .editor-items { | |
2431 | height: 40px; |
|
2443 | height: 40px; | |
2432 | margin: 10px 0 -17px 10px; |
|
2444 | margin: 10px 0 -17px 10px; | |
2433 |
|
2445 | |||
2434 | .editor-action { |
|
2446 | .editor-action { | |
2435 | cursor: pointer; |
|
2447 | cursor: pointer; | |
2436 | } |
|
2448 | } | |
2437 |
|
2449 | |||
2438 | .editor-action.active { |
|
2450 | .editor-action.active { | |
2439 | border-bottom: 2px solid #5C5C5C; |
|
2451 | border-bottom: 2px solid #5C5C5C; | |
2440 | } |
|
2452 | } | |
2441 |
|
2453 | |||
2442 | li { |
|
2454 | li { | |
2443 | list-style-type: none; |
|
2455 | list-style-type: none; | |
2444 | } |
|
2456 | } | |
2445 | } |
|
2457 | } | |
2446 |
|
2458 | |||
2447 | .edit-file-fieldset .message textarea { |
|
2459 | .edit-file-fieldset .message textarea { | |
2448 | border: 1px solid #eeeeee; |
|
2460 | border: 1px solid #eeeeee; | |
2449 | } |
|
2461 | } | |
2450 |
|
2462 | |||
2451 | #files_data .codeblock { |
|
2463 | #files_data .codeblock { | |
2452 | background-color: #F5F5F5; |
|
2464 | background-color: #F5F5F5; | |
2453 | } |
|
2465 | } | |
2454 |
|
2466 | |||
2455 | #editor_preview { |
|
2467 | #editor_preview { | |
2456 | background: white; |
|
2468 | background: white; | |
2457 | } |
|
2469 | } | |
2458 |
|
2470 | |||
2459 | .show-editor { |
|
2471 | .show-editor { | |
2460 | padding: 10px; |
|
2472 | padding: 10px; | |
2461 | background-color: white; |
|
2473 | background-color: white; | |
2462 |
|
2474 | |||
2463 | } |
|
2475 | } | |
2464 |
|
2476 | |||
2465 | .show-preview { |
|
2477 | .show-preview { | |
2466 | padding: 10px; |
|
2478 | padding: 10px; | |
2467 | background-color: white; |
|
2479 | background-color: white; | |
2468 | border-left: 1px solid #eeeeee; |
|
2480 | border-left: 1px solid #eeeeee; | |
2469 | } |
|
2481 | } | |
2470 | // quick filter |
|
2482 | // quick filter | |
2471 | .grid-quick-filter { |
|
2483 | .grid-quick-filter { | |
2472 | float: right; |
|
2484 | float: right; | |
2473 | position: relative; |
|
2485 | position: relative; | |
2474 | } |
|
2486 | } | |
2475 |
|
2487 | |||
2476 | .grid-filter-box { |
|
2488 | .grid-filter-box { | |
2477 | display: flex; |
|
2489 | display: flex; | |
2478 | padding: 0px; |
|
2490 | padding: 0px; | |
2479 | border-radius: 3px; |
|
2491 | border-radius: 3px; | |
2480 | margin-bottom: 0; |
|
2492 | margin-bottom: 0; | |
2481 |
|
2493 | |||
2482 | a { |
|
2494 | a { | |
2483 | border: none !important; |
|
2495 | border: none !important; | |
2484 | } |
|
2496 | } | |
2485 |
|
2497 | |||
2486 | li { |
|
2498 | li { | |
2487 | list-style-type: none |
|
2499 | list-style-type: none | |
2488 | } |
|
2500 | } | |
2489 | } |
|
2501 | } | |
2490 |
|
2502 | |||
2491 | .grid-filter-box-icon { |
|
2503 | .grid-filter-box-icon { | |
2492 | line-height: 33px; |
|
2504 | line-height: 33px; | |
2493 | padding: 0; |
|
2505 | padding: 0; | |
2494 | width: 20px; |
|
2506 | width: 20px; | |
2495 | position: absolute; |
|
2507 | position: absolute; | |
2496 | z-index: 11; |
|
2508 | z-index: 11; | |
2497 | left: 5px; |
|
2509 | left: 5px; | |
2498 | } |
|
2510 | } | |
2499 |
|
2511 | |||
2500 | .grid-filter-box-input { |
|
2512 | .grid-filter-box-input { | |
2501 | margin-right: 0; |
|
2513 | margin-right: 0; | |
2502 |
|
2514 | |||
2503 | input { |
|
2515 | input { | |
2504 | border: 1px solid @white; |
|
2516 | border: 1px solid @white; | |
2505 | padding-left: 25px; |
|
2517 | padding-left: 25px; | |
2506 | width: 145px; |
|
2518 | width: 145px; | |
2507 |
|
2519 | |||
2508 | &:hover { |
|
2520 | &:hover { | |
2509 | border-color: @grey6; |
|
2521 | border-color: @grey6; | |
2510 | } |
|
2522 | } | |
2511 |
|
2523 | |||
2512 | &:focus { |
|
2524 | &:focus { | |
2513 | border-color: @grey5; |
|
2525 | border-color: @grey5; | |
2514 | } |
|
2526 | } | |
2515 | } |
|
2527 | } | |
2516 | } |
|
2528 | } | |
2517 |
|
2529 | |||
2518 |
|
2530 | |||
2519 |
|
2531 | |||
2520 | // Search |
|
2532 | // Search | |
2521 |
|
2533 | |||
2522 | .search-form{ |
|
2534 | .search-form{ | |
2523 | #q { |
|
2535 | #q { | |
2524 | width: @search-form-width; |
|
2536 | width: @search-form-width; | |
2525 | } |
|
2537 | } | |
2526 | .fields{ |
|
2538 | .fields{ | |
2527 | margin: 0 0 @space; |
|
2539 | margin: 0 0 @space; | |
2528 | } |
|
2540 | } | |
2529 |
|
2541 | |||
2530 | label{ |
|
2542 | label{ | |
2531 | display: inline-block; |
|
2543 | display: inline-block; | |
2532 | margin-right: @textmargin; |
|
2544 | margin-right: @textmargin; | |
2533 | padding-top: 0.25em; |
|
2545 | padding-top: 0.25em; | |
2534 | } |
|
2546 | } | |
2535 |
|
2547 | |||
2536 |
|
2548 | |||
2537 | .results{ |
|
2549 | .results{ | |
2538 | clear: both; |
|
2550 | clear: both; | |
2539 | margin: 0 0 @padding; |
|
2551 | margin: 0 0 @padding; | |
2540 | } |
|
2552 | } | |
2541 |
|
2553 | |||
2542 | .search-tags { |
|
2554 | .search-tags { | |
2543 | padding: 5px 0; |
|
2555 | padding: 5px 0; | |
2544 | } |
|
2556 | } | |
2545 | } |
|
2557 | } | |
2546 |
|
2558 | |||
2547 | div.search-feedback-items { |
|
2559 | div.search-feedback-items { | |
2548 | display: inline-block; |
|
2560 | display: inline-block; | |
2549 | } |
|
2561 | } | |
2550 |
|
2562 | |||
2551 | div.search-code-body { |
|
2563 | div.search-code-body { | |
2552 | background-color: #ffffff; padding: 5px 0 5px 10px; |
|
2564 | background-color: #ffffff; padding: 5px 0 5px 10px; | |
2553 | pre { |
|
2565 | pre { | |
2554 | .match { background-color: #faffa6;} |
|
2566 | .match { background-color: #faffa6;} | |
2555 | .break { display: block; width: 100%; background-color: #DDE7EF; color: #747474; } |
|
2567 | .break { display: block; width: 100%; background-color: #DDE7EF; color: #747474; } | |
2556 | } |
|
2568 | } | |
2557 | } |
|
2569 | } | |
2558 |
|
2570 | |||
2559 | .expand_commit.search { |
|
2571 | .expand_commit.search { | |
2560 | .show_more.open { |
|
2572 | .show_more.open { | |
2561 | height: auto; |
|
2573 | height: auto; | |
2562 | max-height: none; |
|
2574 | max-height: none; | |
2563 | } |
|
2575 | } | |
2564 | } |
|
2576 | } | |
2565 |
|
2577 | |||
2566 | .search-results { |
|
2578 | .search-results { | |
2567 |
|
2579 | |||
2568 | h2 { |
|
2580 | h2 { | |
2569 | margin-bottom: 0; |
|
2581 | margin-bottom: 0; | |
2570 | } |
|
2582 | } | |
2571 | .codeblock { |
|
2583 | .codeblock { | |
2572 | border: none; |
|
2584 | border: none; | |
2573 | background: transparent; |
|
2585 | background: transparent; | |
2574 | } |
|
2586 | } | |
2575 |
|
2587 | |||
2576 | .codeblock-header { |
|
2588 | .codeblock-header { | |
2577 | border: none; |
|
2589 | border: none; | |
2578 | background: transparent; |
|
2590 | background: transparent; | |
2579 | } |
|
2591 | } | |
2580 |
|
2592 | |||
2581 | .code-body { |
|
2593 | .code-body { | |
2582 | border: @border-thickness solid @grey6; |
|
2594 | border: @border-thickness solid @grey6; | |
2583 | .border-radius(@border-radius); |
|
2595 | .border-radius(@border-radius); | |
2584 | } |
|
2596 | } | |
2585 |
|
2597 | |||
2586 | .td-commit { |
|
2598 | .td-commit { | |
2587 | &:extend(pre); |
|
2599 | &:extend(pre); | |
2588 | border-bottom: @border-thickness solid @border-default-color; |
|
2600 | border-bottom: @border-thickness solid @border-default-color; | |
2589 | } |
|
2601 | } | |
2590 |
|
2602 | |||
2591 | .message { |
|
2603 | .message { | |
2592 | height: auto; |
|
2604 | height: auto; | |
2593 | max-width: 350px; |
|
2605 | max-width: 350px; | |
2594 | white-space: normal; |
|
2606 | white-space: normal; | |
2595 | text-overflow: initial; |
|
2607 | text-overflow: initial; | |
2596 | overflow: visible; |
|
2608 | overflow: visible; | |
2597 |
|
2609 | |||
2598 | .match { background-color: #faffa6;} |
|
2610 | .match { background-color: #faffa6;} | |
2599 | .break { background-color: #DDE7EF; width: 100%; color: #747474; display: block; } |
|
2611 | .break { background-color: #DDE7EF; width: 100%; color: #747474; display: block; } | |
2600 | } |
|
2612 | } | |
2601 |
|
2613 | |||
2602 | .path { |
|
2614 | .path { | |
2603 | border-bottom: none !important; |
|
2615 | border-bottom: none !important; | |
2604 | border-left: 1px solid @grey6 !important; |
|
2616 | border-left: 1px solid @grey6 !important; | |
2605 | border-right: 1px solid @grey6 !important; |
|
2617 | border-right: 1px solid @grey6 !important; | |
2606 | } |
|
2618 | } | |
2607 | } |
|
2619 | } | |
2608 |
|
2620 | |||
2609 | table.rctable td.td-search-results div { |
|
2621 | table.rctable td.td-search-results div { | |
2610 | max-width: 100%; |
|
2622 | max-width: 100%; | |
2611 | } |
|
2623 | } | |
2612 |
|
2624 | |||
2613 | #tip-box, .tip-box{ |
|
2625 | #tip-box, .tip-box{ | |
2614 | padding: @menupadding/2; |
|
2626 | padding: @menupadding/2; | |
2615 | display: block; |
|
2627 | display: block; | |
2616 | border: @border-thickness solid @border-highlight-color; |
|
2628 | border: @border-thickness solid @border-highlight-color; | |
2617 | .border-radius(@border-radius); |
|
2629 | .border-radius(@border-radius); | |
2618 | background-color: white; |
|
2630 | background-color: white; | |
2619 | z-index: 99; |
|
2631 | z-index: 99; | |
2620 | white-space: pre-wrap; |
|
2632 | white-space: pre-wrap; | |
2621 | } |
|
2633 | } | |
2622 |
|
2634 | |||
2623 | #linktt { |
|
2635 | #linktt { | |
2624 | width: 79px; |
|
2636 | width: 79px; | |
2625 | } |
|
2637 | } | |
2626 |
|
2638 | |||
2627 | #help_kb .modal-content{ |
|
2639 | #help_kb .modal-content{ | |
2628 | max-width: 750px; |
|
2640 | max-width: 750px; | |
2629 | margin: 10% auto; |
|
2641 | margin: 10% auto; | |
2630 |
|
2642 | |||
2631 | table{ |
|
2643 | table{ | |
2632 | td,th{ |
|
2644 | td,th{ | |
2633 | border-bottom: none; |
|
2645 | border-bottom: none; | |
2634 | line-height: 2.5em; |
|
2646 | line-height: 2.5em; | |
2635 | } |
|
2647 | } | |
2636 | th{ |
|
2648 | th{ | |
2637 | padding-bottom: @textmargin/2; |
|
2649 | padding-bottom: @textmargin/2; | |
2638 | } |
|
2650 | } | |
2639 | td.keys{ |
|
2651 | td.keys{ | |
2640 | text-align: center; |
|
2652 | text-align: center; | |
2641 | } |
|
2653 | } | |
2642 | } |
|
2654 | } | |
2643 |
|
2655 | |||
2644 | .block-left{ |
|
2656 | .block-left{ | |
2645 | width: 45%; |
|
2657 | width: 45%; | |
2646 | margin-right: 5%; |
|
2658 | margin-right: 5%; | |
2647 | } |
|
2659 | } | |
2648 | .modal-footer{ |
|
2660 | .modal-footer{ | |
2649 | clear: both; |
|
2661 | clear: both; | |
2650 | } |
|
2662 | } | |
2651 | .key.tag{ |
|
2663 | .key.tag{ | |
2652 | padding: 0.5em; |
|
2664 | padding: 0.5em; | |
2653 | background-color: @rcblue; |
|
2665 | background-color: @rcblue; | |
2654 | color: white; |
|
2666 | color: white; | |
2655 | border-color: @rcblue; |
|
2667 | border-color: @rcblue; | |
2656 | .box-shadow(none); |
|
2668 | .box-shadow(none); | |
2657 | } |
|
2669 | } | |
2658 | } |
|
2670 | } | |
2659 |
|
2671 | |||
2660 |
|
2672 | |||
2661 |
|
2673 | |||
2662 | //--- IMPORTS FOR REFACTORED STYLES ------------------// |
|
2674 | //--- IMPORTS FOR REFACTORED STYLES ------------------// | |
2663 |
|
2675 | |||
2664 | @import 'statistics-graph'; |
|
2676 | @import 'statistics-graph'; | |
2665 | @import 'tables'; |
|
2677 | @import 'tables'; | |
2666 | @import 'forms'; |
|
2678 | @import 'forms'; | |
2667 | @import 'diff'; |
|
2679 | @import 'diff'; | |
2668 | @import 'summary'; |
|
2680 | @import 'summary'; | |
2669 | @import 'navigation'; |
|
2681 | @import 'navigation'; | |
2670 |
|
2682 | |||
2671 | //--- SHOW/HIDE SECTIONS --// |
|
2683 | //--- SHOW/HIDE SECTIONS --// | |
2672 |
|
2684 | |||
2673 | .btn-collapse { |
|
2685 | .btn-collapse { | |
2674 | float: right; |
|
2686 | float: right; | |
2675 | text-align: right; |
|
2687 | text-align: right; | |
2676 | font-family: @text-light; |
|
2688 | font-family: @text-light; | |
2677 | font-size: @basefontsize; |
|
2689 | font-size: @basefontsize; | |
2678 | cursor: pointer; |
|
2690 | cursor: pointer; | |
2679 | border: none; |
|
2691 | border: none; | |
2680 | color: @rcblue; |
|
2692 | color: @rcblue; | |
2681 | } |
|
2693 | } | |
2682 |
|
2694 | |||
2683 | table.rctable, |
|
2695 | table.rctable, | |
2684 | table.dataTable { |
|
2696 | table.dataTable { | |
2685 | .btn-collapse { |
|
2697 | .btn-collapse { | |
2686 | float: right; |
|
2698 | float: right; | |
2687 | text-align: right; |
|
2699 | text-align: right; | |
2688 | } |
|
2700 | } | |
2689 | } |
|
2701 | } | |
2690 |
|
2702 | |||
2691 | table.rctable { |
|
2703 | table.rctable { | |
2692 | &.permissions { |
|
2704 | &.permissions { | |
2693 |
|
2705 | |||
2694 | th.td-owner { |
|
2706 | th.td-owner { | |
2695 | padding: 0; |
|
2707 | padding: 0; | |
2696 | } |
|
2708 | } | |
2697 |
|
2709 | |||
2698 | th { |
|
2710 | th { | |
2699 | font-weight: normal; |
|
2711 | font-weight: normal; | |
2700 | padding: 0 5px; |
|
2712 | padding: 0 5px; | |
2701 | } |
|
2713 | } | |
2702 |
|
2714 | |||
2703 | } |
|
2715 | } | |
2704 | } |
|
2716 | } | |
2705 |
|
2717 | |||
2706 |
|
2718 | |||
2707 | // TODO: johbo: Fix for IE10, this avoids that we see a border |
|
2719 | // TODO: johbo: Fix for IE10, this avoids that we see a border | |
2708 | // and padding around checkboxes and radio boxes. Move to the right place, |
|
2720 | // and padding around checkboxes and radio boxes. Move to the right place, | |
2709 | // or better: Remove this once we did the form refactoring. |
|
2721 | // or better: Remove this once we did the form refactoring. | |
2710 | input[type=checkbox], |
|
2722 | input[type=checkbox], | |
2711 | input[type=radio] { |
|
2723 | input[type=radio] { | |
2712 | padding: 0; |
|
2724 | padding: 0; | |
2713 | border: none; |
|
2725 | border: none; | |
2714 | } |
|
2726 | } | |
2715 |
|
2727 | |||
2716 | .toggle-ajax-spinner{ |
|
2728 | .toggle-ajax-spinner{ | |
2717 | height: 16px; |
|
2729 | height: 16px; | |
2718 | width: 16px; |
|
2730 | width: 16px; | |
2719 | } |
|
2731 | } | |
2720 |
|
2732 | |||
2721 |
|
2733 | |||
2722 | .markup-form .clearfix { |
|
2734 | .markup-form .clearfix { | |
2723 | .border-radius(@border-radius); |
|
2735 | .border-radius(@border-radius); | |
2724 | margin: 0px; |
|
2736 | margin: 0px; | |
2725 | } |
|
2737 | } | |
2726 |
|
2738 | |||
2727 | .markup-form-area { |
|
2739 | .markup-form-area { | |
2728 | padding: 8px 12px; |
|
2740 | padding: 8px 12px; | |
2729 | border: 1px solid @grey4; |
|
2741 | border: 1px solid @grey4; | |
2730 | .border-radius(@border-radius); |
|
2742 | .border-radius(@border-radius); | |
2731 | } |
|
2743 | } | |
2732 |
|
2744 | |||
2733 | .markup-form-area-header .nav-links { |
|
2745 | .markup-form-area-header .nav-links { | |
2734 | display: flex; |
|
2746 | display: flex; | |
2735 | flex-flow: row wrap; |
|
2747 | flex-flow: row wrap; | |
2736 | -webkit-flex-flow: row wrap; |
|
2748 | -webkit-flex-flow: row wrap; | |
2737 | width: 100%; |
|
2749 | width: 100%; | |
2738 | } |
|
2750 | } | |
2739 |
|
2751 | |||
2740 | .markup-form-area-footer { |
|
2752 | .markup-form-area-footer { | |
2741 | display: flex; |
|
2753 | display: flex; | |
2742 | } |
|
2754 | } | |
2743 |
|
2755 | |||
2744 | .markup-form-area-footer .toolbar { |
|
2756 | .markup-form-area-footer .toolbar { | |
2745 |
|
2757 | |||
2746 | } |
|
2758 | } | |
2747 |
|
2759 | |||
2748 | // markup Form |
|
2760 | // markup Form | |
2749 | div.markup-form { |
|
2761 | div.markup-form { | |
2750 | margin-top: 20px; |
|
2762 | margin-top: 20px; | |
2751 | } |
|
2763 | } | |
2752 |
|
2764 | |||
2753 | .markup-form strong { |
|
2765 | .markup-form strong { | |
2754 | display: block; |
|
2766 | display: block; | |
2755 | margin-bottom: 15px; |
|
2767 | margin-bottom: 15px; | |
2756 | } |
|
2768 | } | |
2757 |
|
2769 | |||
2758 | .markup-form textarea { |
|
2770 | .markup-form textarea { | |
2759 | width: 100%; |
|
2771 | width: 100%; | |
2760 | height: 100px; |
|
2772 | height: 100px; | |
2761 | font-family: @text-monospace; |
|
2773 | font-family: @text-monospace; | |
2762 | } |
|
2774 | } | |
2763 |
|
2775 | |||
2764 | form.markup-form { |
|
2776 | form.markup-form { | |
2765 | margin-top: 10px; |
|
2777 | margin-top: 10px; | |
2766 | margin-left: 10px; |
|
2778 | margin-left: 10px; | |
2767 | } |
|
2779 | } | |
2768 |
|
2780 | |||
2769 | .markup-form .comment-block-ta, |
|
2781 | .markup-form .comment-block-ta, | |
2770 | .markup-form .preview-box { |
|
2782 | .markup-form .preview-box { | |
2771 | .border-radius(@border-radius); |
|
2783 | .border-radius(@border-radius); | |
2772 | .box-sizing(border-box); |
|
2784 | .box-sizing(border-box); | |
2773 | background-color: white; |
|
2785 | background-color: white; | |
2774 | } |
|
2786 | } | |
2775 |
|
2787 | |||
2776 | .markup-form .preview-box.unloaded { |
|
2788 | .markup-form .preview-box.unloaded { | |
2777 | height: 50px; |
|
2789 | height: 50px; | |
2778 | text-align: center; |
|
2790 | text-align: center; | |
2779 | padding: 20px; |
|
2791 | padding: 20px; | |
2780 | background-color: white; |
|
2792 | background-color: white; | |
2781 | } |
|
2793 | } | |
2782 |
|
2794 | |||
2783 |
|
2795 | |||
2784 | .dropzone-wrapper { |
|
2796 | .dropzone-wrapper { | |
2785 | border: 1px solid @grey5; |
|
2797 | border: 1px solid @grey5; | |
2786 | padding: 20px; |
|
2798 | padding: 20px; | |
2787 | } |
|
2799 | } | |
2788 |
|
2800 | |||
2789 | .dropzone, |
|
2801 | .dropzone, | |
2790 | .dropzone-pure { |
|
2802 | .dropzone-pure { | |
2791 | border: 2px dashed @grey5; |
|
2803 | border: 2px dashed @grey5; | |
2792 | border-radius: 5px; |
|
2804 | border-radius: 5px; | |
2793 | background: white; |
|
2805 | background: white; | |
2794 | min-height: 200px; |
|
2806 | min-height: 200px; | |
2795 | padding: 54px; |
|
2807 | padding: 54px; | |
2796 |
|
2808 | |||
2797 | .dz-message { |
|
2809 | .dz-message { | |
2798 | font-weight: 700; |
|
2810 | font-weight: 700; | |
2799 | text-align: center; |
|
2811 | text-align: center; | |
2800 | margin: 2em 0; |
|
2812 | margin: 2em 0; | |
2801 | } |
|
2813 | } | |
2802 |
|
2814 | |||
2803 | } |
|
2815 | } | |
2804 |
|
2816 | |||
2805 | .dz-preview { |
|
2817 | .dz-preview { | |
2806 | margin: 10px 0 !important; |
|
2818 | margin: 10px 0 !important; | |
2807 | position: relative; |
|
2819 | position: relative; | |
2808 | vertical-align: top; |
|
2820 | vertical-align: top; | |
2809 | padding: 10px; |
|
2821 | padding: 10px; | |
2810 | border-bottom: 1px solid @grey5; |
|
2822 | border-bottom: 1px solid @grey5; | |
2811 | } |
|
2823 | } | |
2812 |
|
2824 | |||
2813 | .dz-filename { |
|
2825 | .dz-filename { | |
2814 | font-weight: 700; |
|
2826 | font-weight: 700; | |
2815 | float: left; |
|
2827 | float: left; | |
2816 | } |
|
2828 | } | |
2817 |
|
2829 | |||
2818 | .dz-sending { |
|
2830 | .dz-sending { | |
2819 | float: right; |
|
2831 | float: right; | |
2820 | } |
|
2832 | } | |
2821 |
|
2833 | |||
2822 | .dz-response { |
|
2834 | .dz-response { | |
2823 | clear: both |
|
2835 | clear: both | |
2824 | } |
|
2836 | } | |
2825 |
|
2837 | |||
2826 | .dz-filename-size { |
|
2838 | .dz-filename-size { | |
2827 | float: right |
|
2839 | float: right | |
2828 | } |
|
2840 | } | |
2829 |
|
2841 | |||
2830 | .dz-error-message { |
|
2842 | .dz-error-message { | |
2831 | color: @alert2; |
|
2843 | color: @alert2; | |
2832 | padding-top: 10px; |
|
2844 | padding-top: 10px; | |
2833 | clear: both; |
|
2845 | clear: both; | |
2834 | } |
|
2846 | } | |
2835 |
|
2847 | |||
2836 |
|
2848 | |||
2837 | .user-hovercard { |
|
2849 | .user-hovercard { | |
2838 | padding: 5px; |
|
2850 | padding: 5px; | |
2839 | } |
|
2851 | } | |
2840 |
|
2852 | |||
2841 | .user-hovercard-icon { |
|
2853 | .user-hovercard-icon { | |
2842 | display: inline; |
|
2854 | display: inline; | |
2843 | padding: 0; |
|
2855 | padding: 0; | |
2844 | box-sizing: content-box; |
|
2856 | box-sizing: content-box; | |
2845 | border-radius: 50%; |
|
2857 | border-radius: 50%; | |
2846 | float: left; |
|
2858 | float: left; | |
2847 | } |
|
2859 | } | |
2848 |
|
2860 | |||
2849 | .user-hovercard-name { |
|
2861 | .user-hovercard-name { | |
2850 | float: right; |
|
2862 | float: right; | |
2851 | vertical-align: top; |
|
2863 | vertical-align: top; | |
2852 | padding-left: 10px; |
|
2864 | padding-left: 10px; | |
2853 | min-width: 150px; |
|
2865 | min-width: 150px; | |
2854 | } |
|
2866 | } | |
2855 |
|
2867 | |||
2856 | .user-hovercard-bio { |
|
2868 | .user-hovercard-bio { | |
2857 | clear: both; |
|
2869 | clear: both; | |
2858 | padding-top: 10px; |
|
2870 | padding-top: 10px; | |
2859 | } |
|
2871 | } | |
2860 |
|
2872 | |||
2861 | .user-hovercard-header { |
|
2873 | .user-hovercard-header { | |
2862 | clear: both; |
|
2874 | clear: both; | |
2863 | min-height: 10px; |
|
2875 | min-height: 10px; | |
2864 | } |
|
2876 | } | |
2865 |
|
2877 | |||
2866 | .user-hovercard-footer { |
|
2878 | .user-hovercard-footer { | |
2867 | clear: both; |
|
2879 | clear: both; | |
2868 | min-height: 10px; |
|
2880 | min-height: 10px; | |
2869 | } |
|
2881 | } | |
2870 |
|
2882 | |||
2871 | .user-group-hovercard { |
|
2883 | .user-group-hovercard { | |
2872 | padding: 5px; |
|
2884 | padding: 5px; | |
2873 | } |
|
2885 | } | |
2874 |
|
2886 | |||
2875 | .user-group-hovercard-icon { |
|
2887 | .user-group-hovercard-icon { | |
2876 | display: inline; |
|
2888 | display: inline; | |
2877 | padding: 0; |
|
2889 | padding: 0; | |
2878 | box-sizing: content-box; |
|
2890 | box-sizing: content-box; | |
2879 | border-radius: 50%; |
|
2891 | border-radius: 50%; | |
2880 | float: left; |
|
2892 | float: left; | |
2881 | } |
|
2893 | } | |
2882 |
|
2894 | |||
2883 | .user-group-hovercard-name { |
|
2895 | .user-group-hovercard-name { | |
2884 | float: left; |
|
2896 | float: left; | |
2885 | vertical-align: top; |
|
2897 | vertical-align: top; | |
2886 | padding-left: 10px; |
|
2898 | padding-left: 10px; | |
2887 | min-width: 150px; |
|
2899 | min-width: 150px; | |
2888 | } |
|
2900 | } | |
2889 |
|
2901 | |||
2890 | .user-group-hovercard-icon i { |
|
2902 | .user-group-hovercard-icon i { | |
2891 | border: 1px solid @grey4; |
|
2903 | border: 1px solid @grey4; | |
2892 | border-radius: 4px; |
|
2904 | border-radius: 4px; | |
2893 | } |
|
2905 | } | |
2894 |
|
2906 | |||
2895 | .user-group-hovercard-bio { |
|
2907 | .user-group-hovercard-bio { | |
2896 | clear: both; |
|
2908 | clear: both; | |
2897 | padding-top: 10px; |
|
2909 | padding-top: 10px; | |
2898 | line-height: 1.0em; |
|
2910 | line-height: 1.0em; | |
2899 | } |
|
2911 | } | |
2900 |
|
2912 | |||
2901 | .user-group-hovercard-header { |
|
2913 | .user-group-hovercard-header { | |
2902 | clear: both; |
|
2914 | clear: both; | |
2903 | min-height: 10px; |
|
2915 | min-height: 10px; | |
2904 | } |
|
2916 | } | |
2905 |
|
2917 | |||
2906 | .user-group-hovercard-footer { |
|
2918 | .user-group-hovercard-footer { | |
2907 | clear: both; |
|
2919 | clear: both; | |
2908 | min-height: 10px; |
|
2920 | min-height: 10px; | |
2909 | } |
|
2921 | } | |
2910 |
|
2922 | |||
2911 | .pr-hovercard-header { |
|
2923 | .pr-hovercard-header { | |
2912 | clear: both; |
|
2924 | clear: both; | |
2913 | display: block; |
|
2925 | display: block; | |
2914 | line-height: 20px; |
|
2926 | line-height: 20px; | |
2915 | } |
|
2927 | } | |
2916 |
|
2928 | |||
2917 | .pr-hovercard-user { |
|
2929 | .pr-hovercard-user { | |
2918 | display: flex; |
|
2930 | display: flex; | |
2919 | align-items: center; |
|
2931 | align-items: center; | |
2920 | padding-left: 5px; |
|
2932 | padding-left: 5px; | |
2921 | } |
|
2933 | } | |
2922 |
|
2934 | |||
2923 | .pr-hovercard-title { |
|
2935 | .pr-hovercard-title { | |
2924 | padding-top: 5px; |
|
2936 | padding-top: 5px; | |
2925 | } No newline at end of file |
|
2937 | } |
@@ -1,154 +1,171 b'' | |||||
1 | // tags.less |
|
1 | // tags.less | |
2 | // For use in RhodeCode applications; |
|
2 | // For use in RhodeCode applications; | |
3 | // see style guide documentation for guidelines. |
|
3 | // see style guide documentation for guidelines. | |
4 |
|
4 | |||
5 | // TAGS |
|
5 | // TAGS | |
6 | .tag, |
|
6 | .tag, | |
7 | .tagtag { |
|
7 | .tagtag { | |
8 | display: inline-block; |
|
8 | display: inline-block; | |
9 | min-height: 0; |
|
9 | min-height: 0; | |
10 | margin: 0 auto; |
|
10 | margin: 0 auto; | |
11 | padding: .25em; |
|
11 | padding: .25em; | |
12 | text-align: center; |
|
12 | text-align: center; | |
13 | font-size: (-1 + @basefontsize); //fit in tables |
|
13 | font-size: (-1 + @basefontsize); //fit in tables | |
14 | line-height: 1.1em; |
|
14 | line-height: 1.1em; | |
15 | border: none; |
|
15 | border: none; | |
16 | box-shadow: @button-shadow; |
|
16 | box-shadow: @button-shadow; | |
17 | .border-radius(@border-radius); |
|
17 | .border-radius(@border-radius); | |
18 | font-family: @text-regular; |
|
18 | font-family: @text-regular; | |
19 | background-image: none; |
|
19 | background-image: none; | |
20 | color: @grey4; |
|
20 | color: @grey4; | |
21 | .border ( @border-thickness-tags, @grey5 ); |
|
21 | .border ( @border-thickness-tags, @grey5 ); | |
22 | white-space: nowrap; |
|
22 | white-space: nowrap; | |
23 | a { |
|
23 | a { | |
24 | color: inherit; |
|
24 | color: inherit; | |
25 |
|
25 | |||
26 | &:hover { |
|
26 | &:hover { | |
27 | color: @grey2; |
|
27 | color: @grey2; | |
28 | } |
|
28 | } | |
29 |
|
29 | |||
30 | i, |
|
30 | i, | |
31 | [class^="icon-"]:before, |
|
31 | [class^="icon-"]:before, | |
32 | [class*=" icon-"]:before { |
|
32 | [class*=" icon-"]:before { | |
33 | text-decoration: none; |
|
33 | text-decoration: none; | |
34 | } |
|
34 | } | |
35 | } |
|
35 | } | |
36 |
|
36 | |||
37 | &:hover { |
|
37 | &:hover { | |
38 | border-color: @grey4; |
|
38 | border-color: @grey4; | |
39 | } |
|
39 | } | |
40 | } |
|
40 | } | |
41 |
|
41 | |||
42 | .tag0 { .border ( @border-thickness-tags, @grey4 ); color:@grey4; } |
|
42 | .tag0 { .border ( @border-thickness-tags, @grey4 ); color:@grey4; } | |
43 | .tag1 { .border ( @border-thickness-tags, @color1 ); color:@color1; } |
|
43 | .tag1 { .border ( @border-thickness-tags, @color1 ); color:@color1; } | |
44 | .tag2 { .border ( @border-thickness-tags, @color2 ); color:@color2; } |
|
44 | .tag2 { .border ( @border-thickness-tags, @color2 ); color:@color2; } | |
45 | .tag3 { .border ( @border-thickness-tags, @color3 ); color:@color3; } |
|
45 | .tag3 { .border ( @border-thickness-tags, @color3 ); color:@color3; } | |
46 | .tag4 { .border ( @border-thickness-tags, @color4 ); color:@color4; } |
|
46 | .tag4 { .border ( @border-thickness-tags, @color4 ); color:@color4; } | |
47 | .tag5 { .border ( @border-thickness-tags, @color5 ); color:@color5; } |
|
47 | .tag5 { .border ( @border-thickness-tags, @color5 ); color:@color5; } | |
48 | .tag6 { .border ( @border-thickness-tags, @color6 ); color:@color6; } |
|
48 | .tag6 { .border ( @border-thickness-tags, @color6 ); color:@color6; } | |
49 | .tag7 { .border ( @border-thickness-tags, @color7 ); color:@color7; } |
|
49 | .tag7 { .border ( @border-thickness-tags, @color7 ); color:@color7; } | |
50 | .tag8 { .border ( @border-thickness-tags, @color8 ); color:@color8; } |
|
50 | .tag8 { .border ( @border-thickness-tags, @color8 ); color:@color8; } | |
51 |
|
51 | |||
52 |
|
52 | |||
53 | .tag-gist-public { |
|
53 | .tag-gist-public { | |
54 | .border (@border-thickness-tags, @color1); |
|
54 | .border (@border-thickness-tags, @color1); | |
55 | color: @color1; |
|
55 | color: @color1; | |
56 | } |
|
56 | } | |
57 |
|
57 | |||
58 |
|
58 | |||
59 | .tag-gist-private { |
|
59 | .tag-gist-private { | |
60 | .border (@border-thickness-tags, @color2); |
|
60 | .border (@border-thickness-tags, @color2); | |
61 | color: @color2; |
|
61 | color: @color2; | |
62 | } |
|
62 | } | |
63 |
|
63 | |||
64 |
|
64 | |||
|
65 | .tag-merge-state-created { | |||
|
66 | color: @color1; | |||
|
67 | } | |||
|
68 | ||||
|
69 | .tag-merge-state-creating { | |||
|
70 | color: @color1; | |||
|
71 | } | |||
|
72 | ||||
|
73 | .tag-merge-state-merging { | |||
|
74 | color: @color3; | |||
|
75 | } | |||
|
76 | ||||
|
77 | .tag-merge-state-updating { | |||
|
78 | color: @color3; | |||
|
79 | } | |||
|
80 | ||||
|
81 | ||||
65 | .metatag-list { |
|
82 | .metatag-list { | |
66 | margin: 0; |
|
83 | margin: 0; | |
67 | padding: 0; |
|
84 | padding: 0; | |
68 |
|
85 | |||
69 | li { |
|
86 | li { | |
70 | margin: 0 0 @padding; |
|
87 | margin: 0 0 @padding; | |
71 | line-height: 1em; |
|
88 | line-height: 1em; | |
72 | list-style-type: none; |
|
89 | list-style-type: none; | |
73 | } |
|
90 | } | |
74 | } |
|
91 | } | |
75 |
|
92 | |||
76 | .branchtag, .booktag { |
|
93 | .branchtag, .booktag { | |
77 | &:extend(.tag); |
|
94 | &:extend(.tag); | |
78 |
|
95 | |||
79 |
|
96 | |||
80 | a { |
|
97 | a { | |
81 | color:inherit; |
|
98 | color:inherit; | |
82 | } |
|
99 | } | |
83 | } |
|
100 | } | |
84 |
|
101 | |||
85 | .metatag { |
|
102 | .metatag { | |
86 | &:extend(.tag); |
|
103 | &:extend(.tag); | |
87 | a { |
|
104 | a { | |
88 | color:inherit; |
|
105 | color:inherit; | |
89 | text-decoration: underline; |
|
106 | text-decoration: underline; | |
90 | } |
|
107 | } | |
91 | } |
|
108 | } | |
92 |
|
109 | |||
93 | [tag="generic"] { &:extend(.tag0); } |
|
110 | [tag="generic"] { &:extend(.tag0); } | |
94 | [tag="label"] { &:extend(.tag0); } |
|
111 | [tag="label"] { &:extend(.tag0); } | |
95 |
|
112 | |||
96 | [tag="state featured"] { &:extend(.tag1); } |
|
113 | [tag="state featured"] { &:extend(.tag1); } | |
97 | [tag="state dev"] { &:extend(.tag1); } |
|
114 | [tag="state dev"] { &:extend(.tag1); } | |
98 | [tag="ref base"] { &:extend(.tag1); } |
|
115 | [tag="ref base"] { &:extend(.tag1); } | |
99 |
|
116 | |||
100 | [tag="state stable"] { &:extend(.tag2); } |
|
117 | [tag="state stable"] { &:extend(.tag2); } | |
101 | [tag="state stale"] { &:extend(.tag2); } |
|
118 | [tag="state stale"] { &:extend(.tag2); } | |
102 |
|
119 | |||
103 | [tag="ref requires"] { &:extend(.tag3); } |
|
120 | [tag="ref requires"] { &:extend(.tag3); } | |
104 |
|
121 | |||
105 | [tag="state dead"] { &:extend(.tag4); } |
|
122 | [tag="state dead"] { &:extend(.tag4); } | |
106 | [tag="state deprecated"] { &:extend(.tag4); } |
|
123 | [tag="state deprecated"] { &:extend(.tag4); } | |
107 |
|
124 | |||
108 | [tag="ref conflicts"] { &:extend(.tag4); } |
|
125 | [tag="ref conflicts"] { &:extend(.tag4); } | |
109 |
|
126 | |||
110 | [tag="license"] { &:extend(.tag6); } |
|
127 | [tag="license"] { &:extend(.tag6); } | |
111 |
|
128 | |||
112 | [tag="lang"] { &:extend(.tag7); } |
|
129 | [tag="lang"] { &:extend(.tag7); } | |
113 | [tag="language"] { &:extend(.tag7); } |
|
130 | [tag="language"] { &:extend(.tag7); } | |
114 | [tag="ref recommends"] { &:extend(.tag7); } |
|
131 | [tag="ref recommends"] { &:extend(.tag7); } | |
115 |
|
132 | |||
116 | [tag="see"] { &:extend(.tag8); } |
|
133 | [tag="see"] { &:extend(.tag8); } | |
117 | [tag="url"] { &:extend(.tag8); } |
|
134 | [tag="url"] { &:extend(.tag8); } | |
118 |
|
135 | |||
119 |
|
136 | |||
120 | .perm_overriden { |
|
137 | .perm_overriden { | |
121 | text-decoration: line-through; |
|
138 | text-decoration: line-through; | |
122 | opacity: 0.6; |
|
139 | opacity: 0.6; | |
123 | } |
|
140 | } | |
124 |
|
141 | |||
125 | .perm_tag { |
|
142 | .perm_tag { | |
126 | &:extend(.tag); |
|
143 | &:extend(.tag); | |
127 |
|
144 | |||
128 | &.read { |
|
145 | &.read { | |
129 | &:extend(.tag1); |
|
146 | &:extend(.tag1); | |
130 | } |
|
147 | } | |
131 | &.write { |
|
148 | &.write { | |
132 | &:extend(.tag4); |
|
149 | &:extend(.tag4); | |
133 | } |
|
150 | } | |
134 | &.admin { |
|
151 | &.admin { | |
135 | &:extend(.tag5); |
|
152 | &:extend(.tag5); | |
136 | } |
|
153 | } | |
137 | &.merge { |
|
154 | &.merge { | |
138 | &:extend(.tag1); |
|
155 | &:extend(.tag1); | |
139 | } |
|
156 | } | |
140 | &.push { |
|
157 | &.push { | |
141 | &:extend(.tag4); |
|
158 | &:extend(.tag4); | |
142 | } |
|
159 | } | |
143 | &.push_force { |
|
160 | &.push_force { | |
144 | &:extend(.tag5); |
|
161 | &:extend(.tag5); | |
145 | } |
|
162 | } | |
146 | } |
|
163 | } | |
147 |
|
164 | |||
148 | .phase-draft { |
|
165 | .phase-draft { | |
149 | color: @color3 |
|
166 | color: @color3 | |
150 | } |
|
167 | } | |
151 |
|
168 | |||
152 | .phase-secret { |
|
169 | .phase-secret { | |
153 | color:@grey3 |
|
170 | color:@grey3 | |
154 | } |
|
171 | } |
@@ -1,94 +1,91 b'' | |||||
1 | <%namespace name="base" file="/base/base.mako"/> |
|
1 | <%namespace name="base" file="/base/base.mako"/> | |
2 |
|
2 | |||
3 | <div class="panel panel-default"> |
|
3 | <div class="panel panel-default"> | |
4 | <div class="panel-body"> |
|
4 | <div class="panel-body"> | |
5 | %if c.closed: |
|
5 | %if c.closed: | |
6 | ${h.checkbox('show_closed',checked="checked", label=_('Show Closed Pull Requests'))} |
|
6 | ${h.checkbox('show_closed',checked="checked", label=_('Show Closed Pull Requests'))} | |
7 | %else: |
|
7 | %else: | |
8 | ${h.checkbox('show_closed',label=_('Show Closed Pull Requests'))} |
|
8 | ${h.checkbox('show_closed',label=_('Show Closed Pull Requests'))} | |
9 | %endif |
|
9 | %endif | |
10 | </div> |
|
10 | </div> | |
11 | </div> |
|
11 | </div> | |
12 |
|
12 | |||
13 | <div class="panel panel-default"> |
|
13 | <div class="panel panel-default"> | |
14 | <div class="panel-heading"> |
|
14 | <div class="panel-heading"> | |
15 | <h3 class="panel-title">${_('Pull Requests You Participate In')}</h3> |
|
15 | <h3 class="panel-title">${_('Pull Requests You Participate In')}</h3> | |
16 | </div> |
|
16 | </div> | |
17 | <div class="panel-body panel-body-min-height"> |
|
17 | <div class="panel-body panel-body-min-height"> | |
18 | <table id="pull_request_list_table" class="display"></table> |
|
18 | <table id="pull_request_list_table" class="display"></table> | |
19 | </div> |
|
19 | </div> | |
20 | </div> |
|
20 | </div> | |
21 |
|
21 | |||
22 | <script type="text/javascript"> |
|
22 | <script type="text/javascript"> | |
23 | $(document).ready(function() { |
|
23 | $(document).ready(function() { | |
24 |
|
24 | |||
25 | $('#show_closed').on('click', function(e){ |
|
25 | $('#show_closed').on('click', function(e){ | |
26 | if($(this).is(":checked")){ |
|
26 | if($(this).is(":checked")){ | |
27 | window.location = "${h.route_path('my_account_pullrequests', _query={'pr_show_closed':1})}"; |
|
27 | window.location = "${h.route_path('my_account_pullrequests', _query={'pr_show_closed':1})}"; | |
28 | } |
|
28 | } | |
29 | else{ |
|
29 | else{ | |
30 | window.location = "${h.route_path('my_account_pullrequests')}"; |
|
30 | window.location = "${h.route_path('my_account_pullrequests')}"; | |
31 | } |
|
31 | } | |
32 | }); |
|
32 | }); | |
33 |
|
33 | |||
34 | var $pullRequestListTable = $('#pull_request_list_table'); |
|
34 | var $pullRequestListTable = $('#pull_request_list_table'); | |
35 |
|
35 | |||
36 | // participating object list |
|
36 | // participating object list | |
37 | $pullRequestListTable.DataTable({ |
|
37 | $pullRequestListTable.DataTable({ | |
38 | processing: true, |
|
38 | processing: true, | |
39 | serverSide: true, |
|
39 | serverSide: true, | |
40 | ajax: { |
|
40 | ajax: { | |
41 | "url": "${h.route_path('my_account_pullrequests_data')}", |
|
41 | "url": "${h.route_path('my_account_pullrequests_data')}", | |
42 | "data": function (d) { |
|
42 | "data": function (d) { | |
43 | d.closed = "${c.closed}"; |
|
43 | d.closed = "${c.closed}"; | |
44 | } |
|
44 | } | |
45 | }, |
|
45 | }, | |
46 | dom: 'rtp', |
|
46 | dom: 'rtp', | |
47 | pageLength: ${c.visual.dashboard_items}, |
|
47 | pageLength: ${c.visual.dashboard_items}, | |
48 | order: [[ 2, "desc" ]], |
|
48 | order: [[ 2, "desc" ]], | |
49 | columns: [ |
|
49 | columns: [ | |
|
50 | { data: {"_": "target_repo", | |||
|
51 | "sort": "target_repo"}, title: "${_('Target Repo')}", className: "td-targetrepo", orderable: false}, | |||
50 | { data: {"_": "status", |
|
52 | { data: {"_": "status", | |
51 | "sort": "status"}, title: "", className: "td-status", orderable: false}, |
|
53 | "sort": "status"}, title: "", className: "td-status", orderable: false}, | |
52 | { data: {"_": "target_repo", |
|
|||
53 | "sort": "target_repo"}, title: "${_('Target Repo')}", className: "td-targetrepo", orderable: false}, |
|
|||
54 | { data: {"_": "name", |
|
54 | { data: {"_": "name", | |
55 | "sort": "name_raw"}, title: "${_('Id')}", className: "td-componentname", "type": "num" }, |
|
55 | "sort": "name_raw"}, title: "${_('Id')}", className: "td-componentname", "type": "num" }, | |
56 | { data: {"_": "title", |
|
56 | { data: {"_": "title", | |
57 | "sort": "title"}, title: "${_('Title')}", className: "td-description" }, |
|
57 | "sort": "title"}, title: "${_('Title')}", className: "td-description" }, | |
58 | { data: {"_": "author", |
|
58 | { data: {"_": "author", | |
59 | "sort": "author_raw"}, title: "${_('Author')}", className: "td-user", orderable: false }, |
|
59 | "sort": "author_raw"}, title: "${_('Author')}", className: "td-user", orderable: false }, | |
60 | { data: {"_": "comments", |
|
60 | { data: {"_": "comments", | |
61 | "sort": "comments_raw"}, title: "", className: "td-comments", orderable: false}, |
|
61 | "sort": "comments_raw"}, title: "", className: "td-comments", orderable: false}, | |
62 | { data: {"_": "updated_on", |
|
62 | { data: {"_": "updated_on", | |
63 | "sort": "updated_on_raw"}, title: "${_('Last Update')}", className: "td-time" } |
|
63 | "sort": "updated_on_raw"}, title: "${_('Last Update')}", className: "td-time" } | |
64 | ], |
|
64 | ], | |
65 | language: { |
|
65 | language: { | |
66 | paginate: DEFAULT_GRID_PAGINATION, |
|
66 | paginate: DEFAULT_GRID_PAGINATION, | |
67 | sProcessing: _gettext('loading...'), |
|
67 | sProcessing: _gettext('loading...'), | |
68 | emptyTable: _gettext("There are currently no open pull requests requiring your participation.") |
|
68 | emptyTable: _gettext("There are currently no open pull requests requiring your participation.") | |
69 | }, |
|
69 | }, | |
70 | "drawCallback": function( settings, json ) { |
|
70 | "drawCallback": function( settings, json ) { | |
71 | timeagoActivate(); |
|
71 | timeagoActivate(); | |
72 | tooltipActivate(); |
|
72 | tooltipActivate(); | |
73 | }, |
|
73 | }, | |
74 | "createdRow": function ( row, data, index ) { |
|
74 | "createdRow": function ( row, data, index ) { | |
75 | if (data['closed']) { |
|
75 | if (data['closed']) { | |
76 | $(row).addClass('closed'); |
|
76 | $(row).addClass('closed'); | |
77 | } |
|
77 | } | |
78 | if (data['owned']) { |
|
78 | if (data['owned']) { | |
79 | $(row).addClass('owned'); |
|
79 | $(row).addClass('owned'); | |
80 | } |
|
80 | } | |
81 | if (data['state'] !== 'created') { |
|
|||
82 | $(row).addClass('state-' + data['state']); |
|
|||
83 | } |
|
|||
84 | } |
|
81 | } | |
85 | }); |
|
82 | }); | |
86 | $pullRequestListTable.on('xhr.dt', function(e, settings, json, xhr){ |
|
83 | $pullRequestListTable.on('xhr.dt', function(e, settings, json, xhr){ | |
87 | $pullRequestListTable.css('opacity', 1); |
|
84 | $pullRequestListTable.css('opacity', 1); | |
88 | }); |
|
85 | }); | |
89 |
|
86 | |||
90 | $pullRequestListTable.on('preXhr.dt', function(e, settings, data){ |
|
87 | $pullRequestListTable.on('preXhr.dt', function(e, settings, data){ | |
91 | $pullRequestListTable.css('opacity', 0.3); |
|
88 | $pullRequestListTable.css('opacity', 0.3); | |
92 | }); |
|
89 | }); | |
93 | }); |
|
90 | }); | |
94 | </script> |
|
91 | </script> |
@@ -1,474 +1,479 b'' | |||||
1 | ## DATA TABLE RE USABLE ELEMENTS |
|
1 | ## DATA TABLE RE USABLE ELEMENTS | |
2 | ## usage: |
|
2 | ## usage: | |
3 | ## <%namespace name="dt" file="/data_table/_dt_elements.mako"/> |
|
3 | ## <%namespace name="dt" file="/data_table/_dt_elements.mako"/> | |
4 | <%namespace name="base" file="/base/base.mako"/> |
|
4 | <%namespace name="base" file="/base/base.mako"/> | |
5 |
|
5 | |||
6 | <%def name="metatags_help()"> |
|
6 | <%def name="metatags_help()"> | |
7 | <table> |
|
7 | <table> | |
8 | <% |
|
8 | <% | |
9 | example_tags = [ |
|
9 | example_tags = [ | |
10 | ('state','[stable]'), |
|
10 | ('state','[stable]'), | |
11 | ('state','[stale]'), |
|
11 | ('state','[stale]'), | |
12 | ('state','[featured]'), |
|
12 | ('state','[featured]'), | |
13 | ('state','[dev]'), |
|
13 | ('state','[dev]'), | |
14 | ('state','[dead]'), |
|
14 | ('state','[dead]'), | |
15 | ('state','[deprecated]'), |
|
15 | ('state','[deprecated]'), | |
16 |
|
16 | |||
17 | ('label','[personal]'), |
|
17 | ('label','[personal]'), | |
18 | ('generic','[v2.0.0]'), |
|
18 | ('generic','[v2.0.0]'), | |
19 |
|
19 | |||
20 | ('lang','[lang => JavaScript]'), |
|
20 | ('lang','[lang => JavaScript]'), | |
21 | ('license','[license => LicenseName]'), |
|
21 | ('license','[license => LicenseName]'), | |
22 |
|
22 | |||
23 | ('ref','[requires => RepoName]'), |
|
23 | ('ref','[requires => RepoName]'), | |
24 | ('ref','[recommends => GroupName]'), |
|
24 | ('ref','[recommends => GroupName]'), | |
25 | ('ref','[conflicts => SomeName]'), |
|
25 | ('ref','[conflicts => SomeName]'), | |
26 | ('ref','[base => SomeName]'), |
|
26 | ('ref','[base => SomeName]'), | |
27 | ('url','[url => [linkName](https://rhodecode.com)]'), |
|
27 | ('url','[url => [linkName](https://rhodecode.com)]'), | |
28 | ('see','[see => http://rhodecode.com]'), |
|
28 | ('see','[see => http://rhodecode.com]'), | |
29 | ] |
|
29 | ] | |
30 | %> |
|
30 | %> | |
31 | % for tag_type, tag in example_tags: |
|
31 | % for tag_type, tag in example_tags: | |
32 | <tr> |
|
32 | <tr> | |
33 | <td>${tag|n}</td> |
|
33 | <td>${tag|n}</td> | |
34 | <td>${h.style_metatag(tag_type, tag)|n}</td> |
|
34 | <td>${h.style_metatag(tag_type, tag)|n}</td> | |
35 | </tr> |
|
35 | </tr> | |
36 | % endfor |
|
36 | % endfor | |
37 | </table> |
|
37 | </table> | |
38 | </%def> |
|
38 | </%def> | |
39 |
|
39 | |||
40 | <%def name="render_description(description, stylify_metatags)"> |
|
40 | <%def name="render_description(description, stylify_metatags)"> | |
41 | <% |
|
41 | <% | |
42 | tags = [] |
|
42 | tags = [] | |
43 | if stylify_metatags: |
|
43 | if stylify_metatags: | |
44 | tags, description = h.extract_metatags(description) |
|
44 | tags, description = h.extract_metatags(description) | |
45 | %> |
|
45 | %> | |
46 | % for tag_type, tag in tags: |
|
46 | % for tag_type, tag in tags: | |
47 | ${h.style_metatag(tag_type, tag)|n,trim} |
|
47 | ${h.style_metatag(tag_type, tag)|n,trim} | |
48 | % endfor |
|
48 | % endfor | |
49 | <code style="white-space: pre-wrap">${description}</code> |
|
49 | <code style="white-space: pre-wrap">${description}</code> | |
50 | </%def> |
|
50 | </%def> | |
51 |
|
51 | |||
52 | ## REPOSITORY RENDERERS |
|
52 | ## REPOSITORY RENDERERS | |
53 | <%def name="quick_menu(repo_name)"> |
|
53 | <%def name="quick_menu(repo_name)"> | |
54 | <i class="icon-more"></i> |
|
54 | <i class="icon-more"></i> | |
55 | <div class="menu_items_container hidden"> |
|
55 | <div class="menu_items_container hidden"> | |
56 | <ul class="menu_items"> |
|
56 | <ul class="menu_items"> | |
57 | <li> |
|
57 | <li> | |
58 | <a title="${_('Summary')}" href="${h.route_path('repo_summary',repo_name=repo_name)}"> |
|
58 | <a title="${_('Summary')}" href="${h.route_path('repo_summary',repo_name=repo_name)}"> | |
59 | <span>${_('Summary')}</span> |
|
59 | <span>${_('Summary')}</span> | |
60 | </a> |
|
60 | </a> | |
61 | </li> |
|
61 | </li> | |
62 | <li> |
|
62 | <li> | |
63 | <a title="${_('Commits')}" href="${h.route_path('repo_commits',repo_name=repo_name)}"> |
|
63 | <a title="${_('Commits')}" href="${h.route_path('repo_commits',repo_name=repo_name)}"> | |
64 | <span>${_('Commits')}</span> |
|
64 | <span>${_('Commits')}</span> | |
65 | </a> |
|
65 | </a> | |
66 | </li> |
|
66 | </li> | |
67 | <li> |
|
67 | <li> | |
68 | <a title="${_('Files')}" href="${h.route_path('repo_files:default_commit',repo_name=repo_name)}"> |
|
68 | <a title="${_('Files')}" href="${h.route_path('repo_files:default_commit',repo_name=repo_name)}"> | |
69 | <span>${_('Files')}</span> |
|
69 | <span>${_('Files')}</span> | |
70 | </a> |
|
70 | </a> | |
71 | </li> |
|
71 | </li> | |
72 | <li> |
|
72 | <li> | |
73 | <a title="${_('Fork')}" href="${h.route_path('repo_fork_new',repo_name=repo_name)}"> |
|
73 | <a title="${_('Fork')}" href="${h.route_path('repo_fork_new',repo_name=repo_name)}"> | |
74 | <span>${_('Fork')}</span> |
|
74 | <span>${_('Fork')}</span> | |
75 | </a> |
|
75 | </a> | |
76 | </li> |
|
76 | </li> | |
77 | </ul> |
|
77 | </ul> | |
78 | </div> |
|
78 | </div> | |
79 | </%def> |
|
79 | </%def> | |
80 |
|
80 | |||
81 | <%def name="repo_name(name,rtype,rstate,private,archived,fork_of,short_name=False,admin=False)"> |
|
81 | <%def name="repo_name(name,rtype,rstate,private,archived,fork_of,short_name=False,admin=False)"> | |
82 | <% |
|
82 | <% | |
83 | def get_name(name,short_name=short_name): |
|
83 | def get_name(name,short_name=short_name): | |
84 | if short_name: |
|
84 | if short_name: | |
85 | return name.split('/')[-1] |
|
85 | return name.split('/')[-1] | |
86 | else: |
|
86 | else: | |
87 | return name |
|
87 | return name | |
88 | %> |
|
88 | %> | |
89 | <div class="${'repo_state_pending' if rstate == 'repo_state_pending' else ''} truncate"> |
|
89 | <div class="${'repo_state_pending' if rstate == 'repo_state_pending' else ''} truncate"> | |
90 | ##NAME |
|
90 | ##NAME | |
91 | <a href="${h.route_path('edit_repo',repo_name=name) if admin else h.route_path('repo_summary',repo_name=name)}"> |
|
91 | <a href="${h.route_path('edit_repo',repo_name=name) if admin else h.route_path('repo_summary',repo_name=name)}"> | |
92 |
|
92 | |||
93 | ##TYPE OF REPO |
|
93 | ##TYPE OF REPO | |
94 | %if h.is_hg(rtype): |
|
94 | %if h.is_hg(rtype): | |
95 | <span title="${_('Mercurial repository')}"><i class="icon-hg" style="font-size: 14px;"></i></span> |
|
95 | <span title="${_('Mercurial repository')}"><i class="icon-hg" style="font-size: 14px;"></i></span> | |
96 | %elif h.is_git(rtype): |
|
96 | %elif h.is_git(rtype): | |
97 | <span title="${_('Git repository')}"><i class="icon-git" style="font-size: 14px"></i></span> |
|
97 | <span title="${_('Git repository')}"><i class="icon-git" style="font-size: 14px"></i></span> | |
98 | %elif h.is_svn(rtype): |
|
98 | %elif h.is_svn(rtype): | |
99 | <span title="${_('Subversion repository')}"><i class="icon-svn" style="font-size: 14px"></i></span> |
|
99 | <span title="${_('Subversion repository')}"><i class="icon-svn" style="font-size: 14px"></i></span> | |
100 | %endif |
|
100 | %endif | |
101 |
|
101 | |||
102 | ##PRIVATE/PUBLIC |
|
102 | ##PRIVATE/PUBLIC | |
103 | %if private is True and c.visual.show_private_icon: |
|
103 | %if private is True and c.visual.show_private_icon: | |
104 | <i class="icon-lock" title="${_('Private repository')}"></i> |
|
104 | <i class="icon-lock" title="${_('Private repository')}"></i> | |
105 | %elif private is False and c.visual.show_public_icon: |
|
105 | %elif private is False and c.visual.show_public_icon: | |
106 | <i class="icon-unlock-alt" title="${_('Public repository')}"></i> |
|
106 | <i class="icon-unlock-alt" title="${_('Public repository')}"></i> | |
107 | %else: |
|
107 | %else: | |
108 | <span></span> |
|
108 | <span></span> | |
109 | %endif |
|
109 | %endif | |
110 | ${get_name(name)} |
|
110 | ${get_name(name)} | |
111 | </a> |
|
111 | </a> | |
112 | %if fork_of: |
|
112 | %if fork_of: | |
113 | <a href="${h.route_path('repo_summary',repo_name=fork_of.repo_name)}"><i class="icon-code-fork"></i></a> |
|
113 | <a href="${h.route_path('repo_summary',repo_name=fork_of.repo_name)}"><i class="icon-code-fork"></i></a> | |
114 | %endif |
|
114 | %endif | |
115 | %if rstate == 'repo_state_pending': |
|
115 | %if rstate == 'repo_state_pending': | |
116 | <span class="creation_in_progress tooltip" title="${_('This repository is being created in a background task')}"> |
|
116 | <span class="creation_in_progress tooltip" title="${_('This repository is being created in a background task')}"> | |
117 | (${_('creating...')}) |
|
117 | (${_('creating...')}) | |
118 | </span> |
|
118 | </span> | |
119 | %endif |
|
119 | %endif | |
120 |
|
120 | |||
121 | </div> |
|
121 | </div> | |
122 | </%def> |
|
122 | </%def> | |
123 |
|
123 | |||
124 | <%def name="repo_desc(description, stylify_metatags)"> |
|
124 | <%def name="repo_desc(description, stylify_metatags)"> | |
125 | <% |
|
125 | <% | |
126 | tags, description = h.extract_metatags(description) |
|
126 | tags, description = h.extract_metatags(description) | |
127 | %> |
|
127 | %> | |
128 |
|
128 | |||
129 | <div class="truncate-wrap"> |
|
129 | <div class="truncate-wrap"> | |
130 | % if stylify_metatags: |
|
130 | % if stylify_metatags: | |
131 | % for tag_type, tag in tags: |
|
131 | % for tag_type, tag in tags: | |
132 | ${h.style_metatag(tag_type, tag)|n} |
|
132 | ${h.style_metatag(tag_type, tag)|n} | |
133 | % endfor |
|
133 | % endfor | |
134 | % endif |
|
134 | % endif | |
135 | ${description} |
|
135 | ${description} | |
136 | </div> |
|
136 | </div> | |
137 |
|
137 | |||
138 | </%def> |
|
138 | </%def> | |
139 |
|
139 | |||
140 | <%def name="last_change(last_change)"> |
|
140 | <%def name="last_change(last_change)"> | |
141 | ${h.age_component(last_change, time_is_local=True)} |
|
141 | ${h.age_component(last_change, time_is_local=True)} | |
142 | </%def> |
|
142 | </%def> | |
143 |
|
143 | |||
144 | <%def name="revision(repo_name, rev, commit_id, author, last_msg, commit_date)"> |
|
144 | <%def name="revision(repo_name, rev, commit_id, author, last_msg, commit_date)"> | |
145 | <div> |
|
145 | <div> | |
146 | %if rev >= 0: |
|
146 | %if rev >= 0: | |
147 | <code><a class="tooltip-hovercard" data-hovercard-alt=${h.tooltip(last_msg)} data-hovercard-url="${h.route_path('hovercard_repo_commit', repo_name=repo_name, commit_id=commit_id)}" href="${h.route_path('repo_commit',repo_name=repo_name,commit_id=commit_id)}">${'r{}:{}'.format(rev,h.short_id(commit_id))}</a></code> |
|
147 | <code><a class="tooltip-hovercard" data-hovercard-alt=${h.tooltip(last_msg)} data-hovercard-url="${h.route_path('hovercard_repo_commit', repo_name=repo_name, commit_id=commit_id)}" href="${h.route_path('repo_commit',repo_name=repo_name,commit_id=commit_id)}">${'r{}:{}'.format(rev,h.short_id(commit_id))}</a></code> | |
148 | %else: |
|
148 | %else: | |
149 | ${_('No commits yet')} |
|
149 | ${_('No commits yet')} | |
150 | %endif |
|
150 | %endif | |
151 | </div> |
|
151 | </div> | |
152 | </%def> |
|
152 | </%def> | |
153 |
|
153 | |||
154 | <%def name="rss(name)"> |
|
154 | <%def name="rss(name)"> | |
155 | %if c.rhodecode_user.username != h.DEFAULT_USER: |
|
155 | %if c.rhodecode_user.username != h.DEFAULT_USER: | |
156 | <a title="${h.tooltip(_('Subscribe to %s rss feed')% name)}" href="${h.route_path('rss_feed_home', repo_name=name, _query=dict(auth_token=c.rhodecode_user.feed_token))}"><i class="icon-rss-sign"></i></a> |
|
156 | <a title="${h.tooltip(_('Subscribe to %s rss feed')% name)}" href="${h.route_path('rss_feed_home', repo_name=name, _query=dict(auth_token=c.rhodecode_user.feed_token))}"><i class="icon-rss-sign"></i></a> | |
157 | %else: |
|
157 | %else: | |
158 | <a title="${h.tooltip(_('Subscribe to %s rss feed')% name)}" href="${h.route_path('rss_feed_home', repo_name=name)}"><i class="icon-rss-sign"></i></a> |
|
158 | <a title="${h.tooltip(_('Subscribe to %s rss feed')% name)}" href="${h.route_path('rss_feed_home', repo_name=name)}"><i class="icon-rss-sign"></i></a> | |
159 | %endif |
|
159 | %endif | |
160 | </%def> |
|
160 | </%def> | |
161 |
|
161 | |||
162 | <%def name="atom(name)"> |
|
162 | <%def name="atom(name)"> | |
163 | %if c.rhodecode_user.username != h.DEFAULT_USER: |
|
163 | %if c.rhodecode_user.username != h.DEFAULT_USER: | |
164 | <a title="${h.tooltip(_('Subscribe to %s atom feed')% name)}" href="${h.route_path('atom_feed_home', repo_name=name, _query=dict(auth_token=c.rhodecode_user.feed_token))}"><i class="icon-rss-sign"></i></a> |
|
164 | <a title="${h.tooltip(_('Subscribe to %s atom feed')% name)}" href="${h.route_path('atom_feed_home', repo_name=name, _query=dict(auth_token=c.rhodecode_user.feed_token))}"><i class="icon-rss-sign"></i></a> | |
165 | %else: |
|
165 | %else: | |
166 | <a title="${h.tooltip(_('Subscribe to %s atom feed')% name)}" href="${h.route_path('atom_feed_home', repo_name=name)}"><i class="icon-rss-sign"></i></a> |
|
166 | <a title="${h.tooltip(_('Subscribe to %s atom feed')% name)}" href="${h.route_path('atom_feed_home', repo_name=name)}"><i class="icon-rss-sign"></i></a> | |
167 | %endif |
|
167 | %endif | |
168 | </%def> |
|
168 | </%def> | |
169 |
|
169 | |||
170 | <%def name="repo_actions(repo_name, super_user=True)"> |
|
170 | <%def name="repo_actions(repo_name, super_user=True)"> | |
171 | <div> |
|
171 | <div> | |
172 | <div class="grid_edit"> |
|
172 | <div class="grid_edit"> | |
173 | <a href="${h.route_path('edit_repo',repo_name=repo_name)}" title="${_('Edit')}"> |
|
173 | <a href="${h.route_path('edit_repo',repo_name=repo_name)}" title="${_('Edit')}"> | |
174 | Edit |
|
174 | Edit | |
175 | </a> |
|
175 | </a> | |
176 | </div> |
|
176 | </div> | |
177 | <div class="grid_delete"> |
|
177 | <div class="grid_delete"> | |
178 | ${h.secure_form(h.route_path('edit_repo_advanced_delete', repo_name=repo_name), request=request)} |
|
178 | ${h.secure_form(h.route_path('edit_repo_advanced_delete', repo_name=repo_name), request=request)} | |
179 | ${h.submit('remove_%s' % repo_name,_('Delete'),class_="btn btn-link btn-danger", |
|
179 | ${h.submit('remove_%s' % repo_name,_('Delete'),class_="btn btn-link btn-danger", | |
180 | onclick="return confirm('"+_('Confirm to delete this repository: %s') % repo_name+"');")} |
|
180 | onclick="return confirm('"+_('Confirm to delete this repository: %s') % repo_name+"');")} | |
181 | ${h.end_form()} |
|
181 | ${h.end_form()} | |
182 | </div> |
|
182 | </div> | |
183 | </div> |
|
183 | </div> | |
184 | </%def> |
|
184 | </%def> | |
185 |
|
185 | |||
186 | <%def name="repo_state(repo_state)"> |
|
186 | <%def name="repo_state(repo_state)"> | |
187 | <div> |
|
187 | <div> | |
188 | %if repo_state == 'repo_state_pending': |
|
188 | %if repo_state == 'repo_state_pending': | |
189 | <div class="tag tag4">${_('Creating')}</div> |
|
189 | <div class="tag tag4">${_('Creating')}</div> | |
190 | %elif repo_state == 'repo_state_created': |
|
190 | %elif repo_state == 'repo_state_created': | |
191 | <div class="tag tag1">${_('Created')}</div> |
|
191 | <div class="tag tag1">${_('Created')}</div> | |
192 | %else: |
|
192 | %else: | |
193 | <div class="tag alert2" title="${h.tooltip(repo_state)}">invalid</div> |
|
193 | <div class="tag alert2" title="${h.tooltip(repo_state)}">invalid</div> | |
194 | %endif |
|
194 | %endif | |
195 | </div> |
|
195 | </div> | |
196 | </%def> |
|
196 | </%def> | |
197 |
|
197 | |||
198 |
|
198 | |||
199 | ## REPO GROUP RENDERERS |
|
199 | ## REPO GROUP RENDERERS | |
200 | <%def name="quick_repo_group_menu(repo_group_name)"> |
|
200 | <%def name="quick_repo_group_menu(repo_group_name)"> | |
201 | <i class="icon-more"></i> |
|
201 | <i class="icon-more"></i> | |
202 | <div class="menu_items_container hidden"> |
|
202 | <div class="menu_items_container hidden"> | |
203 | <ul class="menu_items"> |
|
203 | <ul class="menu_items"> | |
204 | <li> |
|
204 | <li> | |
205 | <a href="${h.route_path('repo_group_home', repo_group_name=repo_group_name)}">${_('Summary')}</a> |
|
205 | <a href="${h.route_path('repo_group_home', repo_group_name=repo_group_name)}">${_('Summary')}</a> | |
206 | </li> |
|
206 | </li> | |
207 |
|
207 | |||
208 | </ul> |
|
208 | </ul> | |
209 | </div> |
|
209 | </div> | |
210 | </%def> |
|
210 | </%def> | |
211 |
|
211 | |||
212 | <%def name="repo_group_name(repo_group_name, children_groups=None)"> |
|
212 | <%def name="repo_group_name(repo_group_name, children_groups=None)"> | |
213 | <div> |
|
213 | <div> | |
214 | <a href="${h.route_path('repo_group_home', repo_group_name=repo_group_name)}"> |
|
214 | <a href="${h.route_path('repo_group_home', repo_group_name=repo_group_name)}"> | |
215 | <i class="icon-repo-group" title="${_('Repository group')}" style="font-size: 14px"></i> |
|
215 | <i class="icon-repo-group" title="${_('Repository group')}" style="font-size: 14px"></i> | |
216 | %if children_groups: |
|
216 | %if children_groups: | |
217 | ${h.literal(' » '.join(children_groups))} |
|
217 | ${h.literal(' » '.join(children_groups))} | |
218 | %else: |
|
218 | %else: | |
219 | ${repo_group_name} |
|
219 | ${repo_group_name} | |
220 | %endif |
|
220 | %endif | |
221 | </a> |
|
221 | </a> | |
222 | </div> |
|
222 | </div> | |
223 | </%def> |
|
223 | </%def> | |
224 |
|
224 | |||
225 | <%def name="repo_group_desc(description, personal, stylify_metatags)"> |
|
225 | <%def name="repo_group_desc(description, personal, stylify_metatags)"> | |
226 |
|
226 | |||
227 | <% |
|
227 | <% | |
228 | if stylify_metatags: |
|
228 | if stylify_metatags: | |
229 | tags, description = h.extract_metatags(description) |
|
229 | tags, description = h.extract_metatags(description) | |
230 | %> |
|
230 | %> | |
231 |
|
231 | |||
232 | <div class="truncate-wrap"> |
|
232 | <div class="truncate-wrap"> | |
233 | % if personal: |
|
233 | % if personal: | |
234 | <div class="metatag" tag="personal">${_('personal')}</div> |
|
234 | <div class="metatag" tag="personal">${_('personal')}</div> | |
235 | % endif |
|
235 | % endif | |
236 |
|
236 | |||
237 | % if stylify_metatags: |
|
237 | % if stylify_metatags: | |
238 | % for tag_type, tag in tags: |
|
238 | % for tag_type, tag in tags: | |
239 | ${h.style_metatag(tag_type, tag)|n} |
|
239 | ${h.style_metatag(tag_type, tag)|n} | |
240 | % endfor |
|
240 | % endfor | |
241 | % endif |
|
241 | % endif | |
242 | ${description} |
|
242 | ${description} | |
243 | </div> |
|
243 | </div> | |
244 |
|
244 | |||
245 | </%def> |
|
245 | </%def> | |
246 |
|
246 | |||
247 | <%def name="repo_group_actions(repo_group_id, repo_group_name, gr_count)"> |
|
247 | <%def name="repo_group_actions(repo_group_id, repo_group_name, gr_count)"> | |
248 | <div class="grid_edit"> |
|
248 | <div class="grid_edit"> | |
249 | <a href="${h.route_path('edit_repo_group',repo_group_name=repo_group_name)}" title="${_('Edit')}">Edit</a> |
|
249 | <a href="${h.route_path('edit_repo_group',repo_group_name=repo_group_name)}" title="${_('Edit')}">Edit</a> | |
250 | </div> |
|
250 | </div> | |
251 | <div class="grid_delete"> |
|
251 | <div class="grid_delete"> | |
252 | ${h.secure_form(h.route_path('edit_repo_group_advanced_delete', repo_group_name=repo_group_name), request=request)} |
|
252 | ${h.secure_form(h.route_path('edit_repo_group_advanced_delete', repo_group_name=repo_group_name), request=request)} | |
253 | ${h.submit('remove_%s' % repo_group_name,_('Delete'),class_="btn btn-link btn-danger", |
|
253 | ${h.submit('remove_%s' % repo_group_name,_('Delete'),class_="btn btn-link btn-danger", | |
254 | onclick="return confirm('"+_ungettext('Confirm to delete this group: %s with %s repository','Confirm to delete this group: %s with %s repositories',gr_count) % (repo_group_name, gr_count)+"');")} |
|
254 | onclick="return confirm('"+_ungettext('Confirm to delete this group: %s with %s repository','Confirm to delete this group: %s with %s repositories',gr_count) % (repo_group_name, gr_count)+"');")} | |
255 | ${h.end_form()} |
|
255 | ${h.end_form()} | |
256 | </div> |
|
256 | </div> | |
257 | </%def> |
|
257 | </%def> | |
258 |
|
258 | |||
259 |
|
259 | |||
260 | <%def name="user_actions(user_id, username)"> |
|
260 | <%def name="user_actions(user_id, username)"> | |
261 | <div class="grid_edit"> |
|
261 | <div class="grid_edit"> | |
262 | <a href="${h.route_path('user_edit',user_id=user_id)}" title="${_('Edit')}"> |
|
262 | <a href="${h.route_path('user_edit',user_id=user_id)}" title="${_('Edit')}"> | |
263 | ${_('Edit')} |
|
263 | ${_('Edit')} | |
264 | </a> |
|
264 | </a> | |
265 | </div> |
|
265 | </div> | |
266 | <div class="grid_delete"> |
|
266 | <div class="grid_delete"> | |
267 | ${h.secure_form(h.route_path('user_delete', user_id=user_id), request=request)} |
|
267 | ${h.secure_form(h.route_path('user_delete', user_id=user_id), request=request)} | |
268 | ${h.submit('remove_',_('Delete'),id="remove_user_%s" % user_id, class_="btn btn-link btn-danger", |
|
268 | ${h.submit('remove_',_('Delete'),id="remove_user_%s" % user_id, class_="btn btn-link btn-danger", | |
269 | onclick="return confirm('"+_('Confirm to delete this user: %s') % username+"');")} |
|
269 | onclick="return confirm('"+_('Confirm to delete this user: %s') % username+"');")} | |
270 | ${h.end_form()} |
|
270 | ${h.end_form()} | |
271 | </div> |
|
271 | </div> | |
272 | </%def> |
|
272 | </%def> | |
273 |
|
273 | |||
274 | <%def name="user_group_actions(user_group_id, user_group_name)"> |
|
274 | <%def name="user_group_actions(user_group_id, user_group_name)"> | |
275 | <div class="grid_edit"> |
|
275 | <div class="grid_edit"> | |
276 | <a href="${h.route_path('edit_user_group', user_group_id=user_group_id)}" title="${_('Edit')}">Edit</a> |
|
276 | <a href="${h.route_path('edit_user_group', user_group_id=user_group_id)}" title="${_('Edit')}">Edit</a> | |
277 | </div> |
|
277 | </div> | |
278 | <div class="grid_delete"> |
|
278 | <div class="grid_delete"> | |
279 | ${h.secure_form(h.route_path('user_groups_delete', user_group_id=user_group_id), request=request)} |
|
279 | ${h.secure_form(h.route_path('user_groups_delete', user_group_id=user_group_id), request=request)} | |
280 | ${h.submit('remove_',_('Delete'),id="remove_group_%s" % user_group_id, class_="btn btn-link btn-danger", |
|
280 | ${h.submit('remove_',_('Delete'),id="remove_group_%s" % user_group_id, class_="btn btn-link btn-danger", | |
281 | onclick="return confirm('"+_('Confirm to delete this user group: %s') % user_group_name+"');")} |
|
281 | onclick="return confirm('"+_('Confirm to delete this user group: %s') % user_group_name+"');")} | |
282 | ${h.end_form()} |
|
282 | ${h.end_form()} | |
283 | </div> |
|
283 | </div> | |
284 | </%def> |
|
284 | </%def> | |
285 |
|
285 | |||
286 |
|
286 | |||
287 | <%def name="user_name(user_id, username)"> |
|
287 | <%def name="user_name(user_id, username)"> | |
288 | ${h.link_to(h.person(username, 'username_or_name_or_email'), h.route_path('user_edit', user_id=user_id))} |
|
288 | ${h.link_to(h.person(username, 'username_or_name_or_email'), h.route_path('user_edit', user_id=user_id))} | |
289 | </%def> |
|
289 | </%def> | |
290 |
|
290 | |||
291 | <%def name="user_profile(username)"> |
|
291 | <%def name="user_profile(username)"> | |
292 | ${base.gravatar_with_user(username, 16, tooltip=True)} |
|
292 | ${base.gravatar_with_user(username, 16, tooltip=True)} | |
293 | </%def> |
|
293 | </%def> | |
294 |
|
294 | |||
295 | <%def name="user_group_name(user_group_name)"> |
|
295 | <%def name="user_group_name(user_group_name)"> | |
296 | <div> |
|
296 | <div> | |
297 | <i class="icon-user-group" title="${_('User group')}"></i> |
|
297 | <i class="icon-user-group" title="${_('User group')}"></i> | |
298 | ${h.link_to_group(user_group_name)} |
|
298 | ${h.link_to_group(user_group_name)} | |
299 | </div> |
|
299 | </div> | |
300 | </%def> |
|
300 | </%def> | |
301 |
|
301 | |||
302 |
|
302 | |||
303 | ## GISTS |
|
303 | ## GISTS | |
304 |
|
304 | |||
305 | <%def name="gist_gravatar(full_contact)"> |
|
305 | <%def name="gist_gravatar(full_contact)"> | |
306 | <div class="gist_gravatar"> |
|
306 | <div class="gist_gravatar"> | |
307 | ${base.gravatar(full_contact, 30)} |
|
307 | ${base.gravatar(full_contact, 30)} | |
308 | </div> |
|
308 | </div> | |
309 | </%def> |
|
309 | </%def> | |
310 |
|
310 | |||
311 | <%def name="gist_access_id(gist_access_id, full_contact)"> |
|
311 | <%def name="gist_access_id(gist_access_id, full_contact)"> | |
312 | <div> |
|
312 | <div> | |
313 | <b> |
|
313 | <b> | |
314 | <a href="${h.route_path('gist_show', gist_id=gist_access_id)}">gist: ${gist_access_id}</a> |
|
314 | <a href="${h.route_path('gist_show', gist_id=gist_access_id)}">gist: ${gist_access_id}</a> | |
315 | </b> |
|
315 | </b> | |
316 | </div> |
|
316 | </div> | |
317 | </%def> |
|
317 | </%def> | |
318 |
|
318 | |||
319 | <%def name="gist_author(full_contact, created_on, expires)"> |
|
319 | <%def name="gist_author(full_contact, created_on, expires)"> | |
320 | ${base.gravatar_with_user(full_contact, 16, tooltip=True)} |
|
320 | ${base.gravatar_with_user(full_contact, 16, tooltip=True)} | |
321 | </%def> |
|
321 | </%def> | |
322 |
|
322 | |||
323 |
|
323 | |||
324 | <%def name="gist_created(created_on)"> |
|
324 | <%def name="gist_created(created_on)"> | |
325 | <div class="created"> |
|
325 | <div class="created"> | |
326 | ${h.age_component(created_on, time_is_local=True)} |
|
326 | ${h.age_component(created_on, time_is_local=True)} | |
327 | </div> |
|
327 | </div> | |
328 | </%def> |
|
328 | </%def> | |
329 |
|
329 | |||
330 | <%def name="gist_expires(expires)"> |
|
330 | <%def name="gist_expires(expires)"> | |
331 | <div class="created"> |
|
331 | <div class="created"> | |
332 | %if expires == -1: |
|
332 | %if expires == -1: | |
333 | ${_('never')} |
|
333 | ${_('never')} | |
334 | %else: |
|
334 | %else: | |
335 | ${h.age_component(h.time_to_utcdatetime(expires))} |
|
335 | ${h.age_component(h.time_to_utcdatetime(expires))} | |
336 | %endif |
|
336 | %endif | |
337 | </div> |
|
337 | </div> | |
338 | </%def> |
|
338 | </%def> | |
339 |
|
339 | |||
340 | <%def name="gist_type(gist_type)"> |
|
340 | <%def name="gist_type(gist_type)"> | |
341 | %if gist_type == 'public': |
|
341 | %if gist_type == 'public': | |
342 | <span class="tag tag-gist-public disabled">${_('Public Gist')}</span> |
|
342 | <span class="tag tag-gist-public disabled">${_('Public Gist')}</span> | |
343 | %else: |
|
343 | %else: | |
344 | <span class="tag tag-gist-private disabled">${_('Private Gist')}</span> |
|
344 | <span class="tag tag-gist-private disabled">${_('Private Gist')}</span> | |
345 | %endif |
|
345 | %endif | |
346 | </%def> |
|
346 | </%def> | |
347 |
|
347 | |||
348 | <%def name="gist_description(gist_description)"> |
|
348 | <%def name="gist_description(gist_description)"> | |
349 | ${gist_description} |
|
349 | ${gist_description} | |
350 | </%def> |
|
350 | </%def> | |
351 |
|
351 | |||
352 |
|
352 | |||
353 | ## PULL REQUESTS GRID RENDERERS |
|
353 | ## PULL REQUESTS GRID RENDERERS | |
354 |
|
354 | |||
355 | <%def name="pullrequest_target_repo(repo_name)"> |
|
355 | <%def name="pullrequest_target_repo(repo_name)"> | |
356 | <div class="truncate"> |
|
356 | <div class="truncate"> | |
357 | ${h.link_to(repo_name,h.route_path('repo_summary',repo_name=repo_name))} |
|
357 | ${h.link_to(repo_name,h.route_path('repo_summary',repo_name=repo_name))} | |
358 | </div> |
|
358 | </div> | |
359 | </%def> |
|
359 | </%def> | |
360 |
|
360 | |||
361 | <%def name="pullrequest_status(status)"> |
|
361 | <%def name="pullrequest_status(status)"> | |
362 | <i class="icon-circle review-status-${status}"></i> |
|
362 | <i class="icon-circle review-status-${status}"></i> | |
363 | </%def> |
|
363 | </%def> | |
364 |
|
364 | |||
365 | <%def name="pullrequest_title(title, description)"> |
|
365 | <%def name="pullrequest_title(title, description)"> | |
366 | ${title} |
|
366 | ${title} | |
367 | </%def> |
|
367 | </%def> | |
368 |
|
368 | |||
369 | <%def name="pullrequest_comments(comments_nr)"> |
|
369 | <%def name="pullrequest_comments(comments_nr)"> | |
370 | <i class="icon-comment"></i> ${comments_nr} |
|
370 | <i class="icon-comment"></i> ${comments_nr} | |
371 | </%def> |
|
371 | </%def> | |
372 |
|
372 | |||
373 | <%def name="pullrequest_name(pull_request_id, is_wip, target_repo_name, short=False)"> |
|
373 | <%def name="pullrequest_name(pull_request_id, state, is_wip, target_repo_name, short=False)"> | |
374 | <a href="${h.route_path('pullrequest_show',repo_name=target_repo_name,pull_request_id=pull_request_id)}"> |
|
374 | <a href="${h.route_path('pullrequest_show',repo_name=target_repo_name,pull_request_id=pull_request_id)}"> | |
375 | % if is_wip: |
|
|||
376 | <span class="tag tooltip" title="${_('Work in progress')}">wip</span> |
|
|||
377 | % endif |
|
|||
378 |
|
375 | |||
379 | % if short: |
|
376 | % if short: | |
380 | !${pull_request_id} |
|
377 | !${pull_request_id} | |
381 | % else: |
|
378 | % else: | |
382 | ${_('Pull request !{}').format(pull_request_id)} |
|
379 | ${_('Pull request !{}').format(pull_request_id)} | |
383 | % endif |
|
380 | % endif | |
|
381 | ||||
|
382 | % if state not in ['created']: | |||
|
383 | <span class="tag tag-merge-state-${state} tooltip" title="Pull request state is changing">${state}</span> | |||
|
384 | % endif | |||
|
385 | ||||
|
386 | % if is_wip: | |||
|
387 | <span class="tag tooltip" title="${_('Work in progress')}">wip</span> | |||
|
388 | % endif | |||
384 | </a> |
|
389 | </a> | |
385 | </%def> |
|
390 | </%def> | |
386 |
|
391 | |||
387 | <%def name="pullrequest_updated_on(updated_on)"> |
|
392 | <%def name="pullrequest_updated_on(updated_on)"> | |
388 | ${h.age_component(h.time_to_utcdatetime(updated_on))} |
|
393 | ${h.age_component(h.time_to_utcdatetime(updated_on))} | |
389 | </%def> |
|
394 | </%def> | |
390 |
|
395 | |||
391 | <%def name="pullrequest_author(full_contact)"> |
|
396 | <%def name="pullrequest_author(full_contact)"> | |
392 | ${base.gravatar_with_user(full_contact, 16, tooltip=True)} |
|
397 | ${base.gravatar_with_user(full_contact, 16, tooltip=True)} | |
393 | </%def> |
|
398 | </%def> | |
394 |
|
399 | |||
395 |
|
400 | |||
396 | ## ARTIFACT RENDERERS |
|
401 | ## ARTIFACT RENDERERS | |
397 | <%def name="repo_artifact_name(repo_name, file_uid, artifact_display_name)"> |
|
402 | <%def name="repo_artifact_name(repo_name, file_uid, artifact_display_name)"> | |
398 | <a href="${h.route_path('repo_artifacts_get', repo_name=repo_name, uid=file_uid)}"> |
|
403 | <a href="${h.route_path('repo_artifacts_get', repo_name=repo_name, uid=file_uid)}"> | |
399 | ${artifact_display_name or '_EMPTY_NAME_'} |
|
404 | ${artifact_display_name or '_EMPTY_NAME_'} | |
400 | </a> |
|
405 | </a> | |
401 | </%def> |
|
406 | </%def> | |
402 |
|
407 | |||
403 | <%def name="repo_artifact_uid(repo_name, file_uid)"> |
|
408 | <%def name="repo_artifact_uid(repo_name, file_uid)"> | |
404 | <code>${h.shorter(file_uid, size=24, prefix=True)}</code> |
|
409 | <code>${h.shorter(file_uid, size=24, prefix=True)}</code> | |
405 | </%def> |
|
410 | </%def> | |
406 |
|
411 | |||
407 | <%def name="repo_artifact_sha256(artifact_sha256)"> |
|
412 | <%def name="repo_artifact_sha256(artifact_sha256)"> | |
408 | <div class="code">${h.shorter(artifact_sha256, 12)}</div> |
|
413 | <div class="code">${h.shorter(artifact_sha256, 12)}</div> | |
409 | </%def> |
|
414 | </%def> | |
410 |
|
415 | |||
411 | <%def name="repo_artifact_actions(repo_name, file_store_id, file_uid)"> |
|
416 | <%def name="repo_artifact_actions(repo_name, file_store_id, file_uid)"> | |
412 | ## <div class="grid_edit"> |
|
417 | ## <div class="grid_edit"> | |
413 | ## <a href="#Edit" title="${_('Edit')}">${_('Edit')}</a> |
|
418 | ## <a href="#Edit" title="${_('Edit')}">${_('Edit')}</a> | |
414 | ## </div> |
|
419 | ## </div> | |
415 | <div class="grid_edit"> |
|
420 | <div class="grid_edit"> | |
416 | <a href="${h.route_path('repo_artifacts_info', repo_name=repo_name, uid=file_store_id)}" title="${_('Info')}">${_('Info')}</a> |
|
421 | <a href="${h.route_path('repo_artifacts_info', repo_name=repo_name, uid=file_store_id)}" title="${_('Info')}">${_('Info')}</a> | |
417 | </div> |
|
422 | </div> | |
418 | % if h.HasRepoPermissionAny('repository.admin')(c.repo_name): |
|
423 | % if h.HasRepoPermissionAny('repository.admin')(c.repo_name): | |
419 | <div class="grid_delete"> |
|
424 | <div class="grid_delete"> | |
420 | ${h.secure_form(h.route_path('repo_artifacts_delete', repo_name=repo_name, uid=file_store_id), request=request)} |
|
425 | ${h.secure_form(h.route_path('repo_artifacts_delete', repo_name=repo_name, uid=file_store_id), request=request)} | |
421 | ${h.submit('remove_',_('Delete'),id="remove_artifact_%s" % file_store_id, class_="btn btn-link btn-danger", |
|
426 | ${h.submit('remove_',_('Delete'),id="remove_artifact_%s" % file_store_id, class_="btn btn-link btn-danger", | |
422 | onclick="return confirm('"+_('Confirm to delete this artifact: %s') % file_uid+"');")} |
|
427 | onclick="return confirm('"+_('Confirm to delete this artifact: %s') % file_uid+"');")} | |
423 | ${h.end_form()} |
|
428 | ${h.end_form()} | |
424 | </div> |
|
429 | </div> | |
425 | % endif |
|
430 | % endif | |
426 | </%def> |
|
431 | </%def> | |
427 |
|
432 | |||
428 | <%def name="markup_form(form_id, form_text='', help_text=None)"> |
|
433 | <%def name="markup_form(form_id, form_text='', help_text=None)"> | |
429 |
|
434 | |||
430 | <div class="markup-form"> |
|
435 | <div class="markup-form"> | |
431 | <div class="markup-form-area"> |
|
436 | <div class="markup-form-area"> | |
432 | <div class="markup-form-area-header"> |
|
437 | <div class="markup-form-area-header"> | |
433 | <ul class="nav-links clearfix"> |
|
438 | <ul class="nav-links clearfix"> | |
434 | <li class="active"> |
|
439 | <li class="active"> | |
435 | <a href="#edit-text" tabindex="-1" id="edit-btn_${form_id}">${_('Write')}</a> |
|
440 | <a href="#edit-text" tabindex="-1" id="edit-btn_${form_id}">${_('Write')}</a> | |
436 | </li> |
|
441 | </li> | |
437 | <li class=""> |
|
442 | <li class=""> | |
438 | <a href="#preview-text" tabindex="-1" id="preview-btn_${form_id}">${_('Preview')}</a> |
|
443 | <a href="#preview-text" tabindex="-1" id="preview-btn_${form_id}">${_('Preview')}</a> | |
439 | </li> |
|
444 | </li> | |
440 | </ul> |
|
445 | </ul> | |
441 | </div> |
|
446 | </div> | |
442 |
|
447 | |||
443 | <div class="markup-form-area-write" style="display: block;"> |
|
448 | <div class="markup-form-area-write" style="display: block;"> | |
444 | <div id="edit-container_${form_id}"> |
|
449 | <div id="edit-container_${form_id}"> | |
445 | <textarea id="${form_id}" name="${form_id}" class="comment-block-ta ac-input">${form_text if form_text else ''}</textarea> |
|
450 | <textarea id="${form_id}" name="${form_id}" class="comment-block-ta ac-input">${form_text if form_text else ''}</textarea> | |
446 | </div> |
|
451 | </div> | |
447 | <div id="preview-container_${form_id}" class="clearfix" style="display: none;"> |
|
452 | <div id="preview-container_${form_id}" class="clearfix" style="display: none;"> | |
448 | <div id="preview-box_${form_id}" class="preview-box"></div> |
|
453 | <div id="preview-box_${form_id}" class="preview-box"></div> | |
449 | </div> |
|
454 | </div> | |
450 | </div> |
|
455 | </div> | |
451 |
|
456 | |||
452 | <div class="markup-form-area-footer"> |
|
457 | <div class="markup-form-area-footer"> | |
453 | <div class="toolbar"> |
|
458 | <div class="toolbar"> | |
454 | <div class="toolbar-text"> |
|
459 | <div class="toolbar-text"> | |
455 | ${(_('Parsed using %s syntax') % ( |
|
460 | ${(_('Parsed using %s syntax') % ( | |
456 | ('<a href="%s">%s</a>' % (h.route_url('%s_help' % c.visual.default_renderer), c.visual.default_renderer.upper())), |
|
461 | ('<a href="%s">%s</a>' % (h.route_url('%s_help' % c.visual.default_renderer), c.visual.default_renderer.upper())), | |
457 | ) |
|
462 | ) | |
458 | )|n} |
|
463 | )|n} | |
459 | </div> |
|
464 | </div> | |
460 | </div> |
|
465 | </div> | |
461 | </div> |
|
466 | </div> | |
462 | </div> |
|
467 | </div> | |
463 |
|
468 | |||
464 | <div class="markup-form-footer"> |
|
469 | <div class="markup-form-footer"> | |
465 | % if help_text: |
|
470 | % if help_text: | |
466 | <span class="help-block">${help_text}</span> |
|
471 | <span class="help-block">${help_text}</span> | |
467 | % endif |
|
472 | % endif | |
468 | </div> |
|
473 | </div> | |
469 | </div> |
|
474 | </div> | |
470 | <script type="text/javascript"> |
|
475 | <script type="text/javascript"> | |
471 | new MarkupForm('${form_id}'); |
|
476 | new MarkupForm('${form_id}'); | |
472 | </script> |
|
477 | </script> | |
473 |
|
478 | |||
474 | </%def> |
|
479 | </%def> |
@@ -1,809 +1,822 b'' | |||||
1 | <%inherit file="/base/base.mako"/> |
|
1 | <%inherit file="/base/base.mako"/> | |
2 | <%namespace name="base" file="/base/base.mako"/> |
|
2 | <%namespace name="base" file="/base/base.mako"/> | |
3 | <%namespace name="dt" file="/data_table/_dt_elements.mako"/> |
|
3 | <%namespace name="dt" file="/data_table/_dt_elements.mako"/> | |
4 |
|
4 | |||
5 | <%def name="title()"> |
|
5 | <%def name="title()"> | |
6 | ${_('{} Pull Request !{}').format(c.repo_name, c.pull_request.pull_request_id)} |
|
6 | ${_('{} Pull Request !{}').format(c.repo_name, c.pull_request.pull_request_id)} | |
7 | %if c.rhodecode_name: |
|
7 | %if c.rhodecode_name: | |
8 | · ${h.branding(c.rhodecode_name)} |
|
8 | · ${h.branding(c.rhodecode_name)} | |
9 | %endif |
|
9 | %endif | |
10 | </%def> |
|
10 | </%def> | |
11 |
|
11 | |||
12 | <%def name="breadcrumbs_links()"> |
|
12 | <%def name="breadcrumbs_links()"> | |
13 | <span id="pr-title"> |
|
13 | <% | |
14 |
|
|
14 | pr_title = c.pull_request.title | |
15 |
|
|
15 | if c.pull_request.is_closed(): | |
16 | (${_('Closed')}) |
|
16 | pr_title = '[{}] {}'.format(_('Closed'), pr_title) | |
17 |
% |
|
17 | %> | |
18 | </span> |
|
18 | ||
|
19 | <div id="pr-title"> | |||
|
20 | <input class="pr-title-input large disabled" disabled="disabled" name="pullrequest_title" type="text" value="${pr_title}"> | |||
|
21 | </div> | |||
19 | <div id="pr-title-edit" class="input" style="display: none;"> |
|
22 | <div id="pr-title-edit" class="input" style="display: none;"> | |
20 | ${h.text('pullrequest_title', id_="pr-title-input", class_="large", value=c.pull_request.title)} |
|
23 | <input class="pr-title-input large" id="pr-title-input" name="pullrequest_title" type="text" value="${c.pull_request.title}"> | |
21 | </div> |
|
24 | </div> | |
22 | </%def> |
|
25 | </%def> | |
23 |
|
26 | |||
24 | <%def name="menu_bar_nav()"> |
|
27 | <%def name="menu_bar_nav()"> | |
25 | ${self.menu_items(active='repositories')} |
|
28 | ${self.menu_items(active='repositories')} | |
26 | </%def> |
|
29 | </%def> | |
27 |
|
30 | |||
28 | <%def name="menu_bar_subnav()"> |
|
31 | <%def name="menu_bar_subnav()"> | |
29 | ${self.repo_menu(active='showpullrequest')} |
|
32 | ${self.repo_menu(active='showpullrequest')} | |
30 | </%def> |
|
33 | </%def> | |
31 |
|
34 | |||
32 | <%def name="main()"> |
|
35 | <%def name="main()"> | |
33 |
|
36 | |||
34 | <script type="text/javascript"> |
|
37 | <script type="text/javascript"> | |
35 | // TODO: marcink switch this to pyroutes |
|
38 | // TODO: marcink switch this to pyroutes | |
36 | AJAX_COMMENT_DELETE_URL = "${h.route_path('pullrequest_comment_delete',repo_name=c.repo_name,pull_request_id=c.pull_request.pull_request_id,comment_id='__COMMENT_ID__')}"; |
|
39 | AJAX_COMMENT_DELETE_URL = "${h.route_path('pullrequest_comment_delete',repo_name=c.repo_name,pull_request_id=c.pull_request.pull_request_id,comment_id='__COMMENT_ID__')}"; | |
37 | templateContext.pull_request_data.pull_request_id = ${c.pull_request.pull_request_id}; |
|
40 | templateContext.pull_request_data.pull_request_id = ${c.pull_request.pull_request_id}; | |
38 | </script> |
|
41 | </script> | |
39 | <div class="box"> |
|
42 | <div class="box"> | |
40 |
|
43 | |||
41 | ${self.breadcrumbs()} |
|
44 | ${self.breadcrumbs()} | |
42 |
|
45 | |||
43 | <div class="box pr-summary"> |
|
46 | <div class="box pr-summary"> | |
44 |
|
47 | |||
45 | <div class="summary-details block-left"> |
|
48 | <div class="summary-details block-left"> | |
46 | <% summary = lambda n:{False:'summary-short'}.get(n) %> |
|
49 | <% summary = lambda n:{False:'summary-short'}.get(n) %> | |
47 | <div class="pr-details-title"> |
|
50 | <div class="pr-details-title"> | |
48 | <a href="${h.route_path('pull_requests_global', pull_request_id=c.pull_request.pull_request_id)}">${_('Pull request !{}').format(c.pull_request.pull_request_id)}</a> ${_('From')} ${h.format_date(c.pull_request.created_on)} |
|
51 | <a href="${h.route_path('pull_requests_global', pull_request_id=c.pull_request.pull_request_id)}">${_('Pull request !{}').format(c.pull_request.pull_request_id)}</a> ${_('From')} ${h.format_date(c.pull_request.created_on)} | |
49 | %if c.allowed_to_update: |
|
52 | %if c.allowed_to_update: | |
50 | <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"> | |
51 | % if c.allowed_to_delete: |
|
54 | % if c.allowed_to_delete: | |
52 | ${h.secure_form(h.route_path('pullrequest_delete', repo_name=c.pull_request.target_repo.repo_name, pull_request_id=c.pull_request.pull_request_id), request=request)} |
|
55 | ${h.secure_form(h.route_path('pullrequest_delete', repo_name=c.pull_request.target_repo.repo_name, pull_request_id=c.pull_request.pull_request_id), request=request)} | |
53 | ${h.submit('remove_%s' % c.pull_request.pull_request_id, _('Delete'), |
|
56 | ${h.submit('remove_%s' % c.pull_request.pull_request_id, _('Delete'), | |
54 | class_="btn btn-link btn-danger no-margin",onclick="return confirm('"+_('Confirm to delete this pull request')+"');")} |
|
57 | class_="btn btn-link btn-danger no-margin",onclick="return confirm('"+_('Confirm to delete this pull request')+"');")} | |
55 | ${h.end_form()} |
|
58 | ${h.end_form()} | |
56 | % else: |
|
59 | % else: | |
57 | ${_('Delete')} |
|
60 | ${_('Delete')} | |
58 | % endif |
|
61 | % endif | |
59 | </div> |
|
62 | </div> | |
60 | <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> | |
61 | <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> | |
62 | %endif |
|
65 | %endif | |
63 | </div> |
|
66 | </div> | |
64 |
|
67 | |||
65 | <div id="summary" class="fields pr-details-content"> |
|
68 | <div id="summary" class="fields pr-details-content"> | |
66 | <div class="field"> |
|
69 | <div class="field"> | |
67 | <div class="label-summary"> |
|
70 | <div class="label-summary"> | |
68 | <label>${_('Source')}:</label> |
|
71 | <label>${_('Source')}:</label> | |
69 | </div> |
|
72 | </div> | |
70 | <div class="input"> |
|
73 | <div class="input"> | |
71 | <div class="pr-origininfo"> |
|
74 | <div class="pr-origininfo"> | |
72 | ## branch link is only valid if it is a branch |
|
75 | ## branch link is only valid if it is a branch | |
73 | <span class="tag"> |
|
76 | <span class="tag"> | |
74 | %if c.pull_request.source_ref_parts.type == 'branch': |
|
77 | %if c.pull_request.source_ref_parts.type == 'branch': | |
75 | <a href="${h.route_path('repo_commits', repo_name=c.pull_request.source_repo.repo_name, _query=dict(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.route_path('repo_commits', repo_name=c.pull_request.source_repo.repo_name, _query=dict(branch=c.pull_request.source_ref_parts.name))}">${c.pull_request.source_ref_parts.type}: ${c.pull_request.source_ref_parts.name}</a> | |
76 | %else: |
|
79 | %else: | |
77 | ${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} | |
78 | %endif |
|
81 | %endif | |
79 | </span> |
|
82 | </span> | |
80 | <span class="clone-url"> |
|
83 | <span class="clone-url"> | |
81 | <a href="${h.route_path('repo_summary', repo_name=c.pull_request.source_repo.repo_name)}">${c.pull_request.source_repo.clone_url()}</a> |
|
84 | <a href="${h.route_path('repo_summary', repo_name=c.pull_request.source_repo.repo_name)}">${c.pull_request.source_repo.clone_url()}</a> | |
82 | </span> |
|
85 | </span> | |
83 | <br/> |
|
86 | <br/> | |
84 | % if c.ancestor_commit: |
|
87 | % if c.ancestor_commit: | |
85 | ${_('Common ancestor')}: |
|
88 | ${_('Common ancestor')}: | |
86 | <code><a href="${h.route_path('repo_commit', repo_name=c.target_repo.repo_name, commit_id=c.ancestor_commit.raw_id)}">${h.show_id(c.ancestor_commit)}</a></code> |
|
89 | <code><a href="${h.route_path('repo_commit', repo_name=c.target_repo.repo_name, commit_id=c.ancestor_commit.raw_id)}">${h.show_id(c.ancestor_commit)}</a></code> | |
87 | % endif |
|
90 | % endif | |
88 | </div> |
|
91 | </div> | |
89 | %if h.is_hg(c.pull_request.source_repo): |
|
92 | %if h.is_hg(c.pull_request.source_repo): | |
90 | <% clone_url = 'hg pull -r {} {}'.format(h.short_id(c.source_ref), c.pull_request.source_repo.clone_url()) %> |
|
93 | <% clone_url = 'hg pull -r {} {}'.format(h.short_id(c.source_ref), c.pull_request.source_repo.clone_url()) %> | |
91 | %elif h.is_git(c.pull_request.source_repo): |
|
94 | %elif h.is_git(c.pull_request.source_repo): | |
92 | <% clone_url = 'git pull {} {}'.format(c.pull_request.source_repo.clone_url(), c.pull_request.source_ref_parts.name) %> |
|
95 | <% clone_url = 'git pull {} {}'.format(c.pull_request.source_repo.clone_url(), c.pull_request.source_ref_parts.name) %> | |
93 | %endif |
|
96 | %endif | |
94 |
|
97 | |||
95 | <div class=""> |
|
98 | <div class=""> | |
96 | <input type="text" class="input-monospace pr-pullinfo" value="${clone_url}" readonly="readonly"> |
|
99 | <input type="text" class="input-monospace pr-pullinfo" value="${clone_url}" readonly="readonly"> | |
97 | <i class="tooltip icon-clipboard clipboard-action pull-right pr-pullinfo-copy" data-clipboard-text="${clone_url}" title="${_('Copy the pull url')}"></i> |
|
100 | <i class="tooltip icon-clipboard clipboard-action pull-right pr-pullinfo-copy" data-clipboard-text="${clone_url}" title="${_('Copy the pull url')}"></i> | |
98 | </div> |
|
101 | </div> | |
99 |
|
102 | |||
100 | </div> |
|
103 | </div> | |
101 | </div> |
|
104 | </div> | |
102 | <div class="field"> |
|
105 | <div class="field"> | |
103 | <div class="label-summary"> |
|
106 | <div class="label-summary"> | |
104 | <label>${_('Target')}:</label> |
|
107 | <label>${_('Target')}:</label> | |
105 | </div> |
|
108 | </div> | |
106 | <div class="input"> |
|
109 | <div class="input"> | |
107 | <div class="pr-targetinfo"> |
|
110 | <div class="pr-targetinfo"> | |
108 | ## branch link is only valid if it is a branch |
|
111 | ## branch link is only valid if it is a branch | |
109 | <span class="tag"> |
|
112 | <span class="tag"> | |
110 | %if c.pull_request.target_ref_parts.type == 'branch': |
|
113 | %if c.pull_request.target_ref_parts.type == 'branch': | |
111 | <a href="${h.route_path('repo_commits', repo_name=c.pull_request.target_repo.repo_name, _query=dict(branch=c.pull_request.target_ref_parts.name))}">${c.pull_request.target_ref_parts.type}: ${c.pull_request.target_ref_parts.name}</a> |
|
114 | <a href="${h.route_path('repo_commits', repo_name=c.pull_request.target_repo.repo_name, _query=dict(branch=c.pull_request.target_ref_parts.name))}">${c.pull_request.target_ref_parts.type}: ${c.pull_request.target_ref_parts.name}</a> | |
112 | %else: |
|
115 | %else: | |
113 | ${c.pull_request.target_ref_parts.type}: ${c.pull_request.target_ref_parts.name} |
|
116 | ${c.pull_request.target_ref_parts.type}: ${c.pull_request.target_ref_parts.name} | |
114 | %endif |
|
117 | %endif | |
115 | </span> |
|
118 | </span> | |
116 | <span class="clone-url"> |
|
119 | <span class="clone-url"> | |
117 | <a href="${h.route_path('repo_summary', repo_name=c.pull_request.target_repo.repo_name)}">${c.pull_request.target_repo.clone_url()}</a> |
|
120 | <a href="${h.route_path('repo_summary', repo_name=c.pull_request.target_repo.repo_name)}">${c.pull_request.target_repo.clone_url()}</a> | |
118 | </span> |
|
121 | </span> | |
119 | </div> |
|
122 | </div> | |
120 | </div> |
|
123 | </div> | |
121 | </div> |
|
124 | </div> | |
122 |
|
125 | |||
123 | ## Link to the shadow repository. |
|
126 | ## Link to the shadow repository. | |
124 | <div class="field"> |
|
127 | <div class="field"> | |
125 | <div class="label-summary"> |
|
128 | <div class="label-summary"> | |
126 | <label>${_('Merge')}:</label> |
|
129 | <label>${_('Merge')}:</label> | |
127 | </div> |
|
130 | </div> | |
128 | <div class="input"> |
|
131 | <div class="input"> | |
129 | % if not c.pull_request.is_closed() and c.pull_request.shadow_merge_ref: |
|
132 | % if not c.pull_request.is_closed() and c.pull_request.shadow_merge_ref: | |
130 | %if h.is_hg(c.pull_request.target_repo): |
|
133 | %if h.is_hg(c.pull_request.target_repo): | |
131 | <% clone_url = 'hg clone --update {} {} pull-request-{}'.format(c.pull_request.shadow_merge_ref.name, c.shadow_clone_url, c.pull_request.pull_request_id) %> |
|
134 | <% clone_url = 'hg clone --update {} {} pull-request-{}'.format(c.pull_request.shadow_merge_ref.name, c.shadow_clone_url, c.pull_request.pull_request_id) %> | |
132 | %elif h.is_git(c.pull_request.target_repo): |
|
135 | %elif h.is_git(c.pull_request.target_repo): | |
133 | <% clone_url = 'git clone --branch {} {} pull-request-{}'.format(c.pull_request.shadow_merge_ref.name, c.shadow_clone_url, c.pull_request.pull_request_id) %> |
|
136 | <% clone_url = 'git clone --branch {} {} pull-request-{}'.format(c.pull_request.shadow_merge_ref.name, c.shadow_clone_url, c.pull_request.pull_request_id) %> | |
134 | %endif |
|
137 | %endif | |
135 | <div class=""> |
|
138 | <div class=""> | |
136 | <input type="text" class="input-monospace pr-mergeinfo" value="${clone_url}" readonly="readonly"> |
|
139 | <input type="text" class="input-monospace pr-mergeinfo" value="${clone_url}" readonly="readonly"> | |
137 | <i class="tooltip icon-clipboard clipboard-action pull-right pr-mergeinfo-copy" data-clipboard-text="${clone_url}" title="${_('Copy the clone url')}"></i> |
|
140 | <i class="tooltip icon-clipboard clipboard-action pull-right pr-mergeinfo-copy" data-clipboard-text="${clone_url}" title="${_('Copy the clone url')}"></i> | |
138 | </div> |
|
141 | </div> | |
139 | % else: |
|
142 | % else: | |
140 | <div class=""> |
|
143 | <div class=""> | |
141 | ${_('Shadow repository data not available')}. |
|
144 | ${_('Shadow repository data not available')}. | |
142 | </div> |
|
145 | </div> | |
143 | % endif |
|
146 | % endif | |
144 | </div> |
|
147 | </div> | |
145 | </div> |
|
148 | </div> | |
146 |
|
149 | |||
147 | <div class="field"> |
|
150 | <div class="field"> | |
148 | <div class="label-summary"> |
|
151 | <div class="label-summary"> | |
149 | <label>${_('Review')}:</label> |
|
152 | <label>${_('Review')}:</label> | |
150 | </div> |
|
153 | </div> | |
151 | <div class="input"> |
|
154 | <div class="input"> | |
152 | %if c.pull_request_review_status: |
|
155 | %if c.pull_request_review_status: | |
153 | <i class="icon-circle review-status-${c.pull_request_review_status}"></i> |
|
156 | <i class="icon-circle review-status-${c.pull_request_review_status}"></i> | |
154 |
<span class="changeset-status-lbl |
|
157 | <span class="changeset-status-lbl"> | |
155 | %if c.pull_request.is_closed(): |
|
158 | %if c.pull_request.is_closed(): | |
156 | ${_('Closed')}, |
|
159 | ${_('Closed')}, | |
157 | %endif |
|
160 | %endif | |
158 | ${h.commit_status_lbl(c.pull_request_review_status)} |
|
161 | ${h.commit_status_lbl(c.pull_request_review_status)} | |
159 | </span> |
|
162 | </span> | |
160 | - ${_ungettext('calculated based on %s reviewer vote', 'calculated based on %s reviewers votes', len(c.pull_request_reviewers)) % len(c.pull_request_reviewers)} |
|
163 | - ${_ungettext('calculated based on %s reviewer vote', 'calculated based on %s reviewers votes', len(c.pull_request_reviewers)) % len(c.pull_request_reviewers)} | |
161 | %endif |
|
164 | %endif | |
162 | </div> |
|
165 | </div> | |
163 | </div> |
|
166 | </div> | |
164 | <div class="field"> |
|
167 | <div class="field"> | |
165 | <div class="pr-description-label label-summary" title="${_('Rendered using {} renderer').format(c.renderer)}"> |
|
168 | <div class="pr-description-label label-summary" title="${_('Rendered using {} renderer').format(c.renderer)}"> | |
166 | <label>${_('Description')}:</label> |
|
169 | <label>${_('Description')}:</label> | |
167 | </div> |
|
170 | </div> | |
168 | <div id="pr-desc" class="input"> |
|
171 | <div id="pr-desc" class="input"> | |
169 | <div class="pr-description">${h.render(c.pull_request.description, renderer=c.renderer, repo_name=c.repo_name)}</div> |
|
172 | <div class="pr-description">${h.render(c.pull_request.description, renderer=c.renderer, repo_name=c.repo_name)}</div> | |
170 | </div> |
|
173 | </div> | |
171 | <div id="pr-desc-edit" class="input textarea editor" style="display: none;"> |
|
174 | <div id="pr-desc-edit" class="input textarea editor" style="display: none;"> | |
172 | <input id="pr-renderer-input" type="hidden" name="description_renderer" value="${c.visual.default_renderer}"> |
|
175 | <input id="pr-renderer-input" type="hidden" name="description_renderer" value="${c.visual.default_renderer}"> | |
173 | ${dt.markup_form('pr-description-input', form_text=c.pull_request.description)} |
|
176 | ${dt.markup_form('pr-description-input', form_text=c.pull_request.description)} | |
174 | </div> |
|
177 | </div> | |
175 | </div> |
|
178 | </div> | |
176 |
|
179 | |||
177 | <div class="field"> |
|
180 | <div class="field"> | |
178 | <div class="label-summary"> |
|
181 | <div class="label-summary"> | |
179 | <label>${_('Versions')}:</label> |
|
182 | <label>${_('Versions')}:</label> | |
180 | </div> |
|
183 | </div> | |
181 |
|
184 | |||
182 | <% outdated_comm_count_ver = len(c.inline_versions[None]['outdated']) %> |
|
185 | <% outdated_comm_count_ver = len(c.inline_versions[None]['outdated']) %> | |
183 | <% general_outdated_comm_count_ver = len(c.comment_versions[None]['outdated']) %> |
|
186 | <% general_outdated_comm_count_ver = len(c.comment_versions[None]['outdated']) %> | |
184 |
|
187 | |||
185 | <div class="pr-versions"> |
|
188 | <div class="pr-versions"> | |
186 | % if c.show_version_changes: |
|
189 | % if c.show_version_changes: | |
187 | <% outdated_comm_count_ver = len(c.inline_versions[c.at_version_num]['outdated']) %> |
|
190 | <% outdated_comm_count_ver = len(c.inline_versions[c.at_version_num]['outdated']) %> | |
188 | <% general_outdated_comm_count_ver = len(c.comment_versions[c.at_version_num]['outdated']) %> |
|
191 | <% general_outdated_comm_count_ver = len(c.comment_versions[c.at_version_num]['outdated']) %> | |
189 | <a id="show-pr-versions" class="input" onclick="return versionController.toggleVersionView(this)" href="#show-pr-versions" |
|
192 | <a id="show-pr-versions" class="input" onclick="return versionController.toggleVersionView(this)" href="#show-pr-versions" | |
190 | 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))}" |
|
193 | 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))}" | |
191 | data-toggle-off="${_('Hide all versions of this pull request')}"> |
|
194 | data-toggle-off="${_('Hide all versions of this pull request')}"> | |
192 | ${_ungettext('{} version available for this pull request, show it.', '{} versions available for this pull request, show them.', len(c.versions)).format(len(c.versions))} |
|
195 | ${_ungettext('{} version available for this pull request, show it.', '{} versions available for this pull request, show them.', len(c.versions)).format(len(c.versions))} | |
193 | </a> |
|
196 | </a> | |
194 | <table> |
|
197 | <table> | |
195 | ## SHOW ALL VERSIONS OF PR |
|
198 | ## SHOW ALL VERSIONS OF PR | |
196 | <% ver_pr = None %> |
|
199 | <% ver_pr = None %> | |
197 |
|
200 | |||
198 | % for data in reversed(list(enumerate(c.versions, 1))): |
|
201 | % for data in reversed(list(enumerate(c.versions, 1))): | |
199 | <% ver_pos = data[0] %> |
|
202 | <% ver_pos = data[0] %> | |
200 | <% ver = data[1] %> |
|
203 | <% ver = data[1] %> | |
201 | <% ver_pr = ver.pull_request_version_id %> |
|
204 | <% ver_pr = ver.pull_request_version_id %> | |
202 | <% display_row = '' if c.at_version and (c.at_version_num == ver_pr or c.from_version_num == ver_pr) else 'none' %> |
|
205 | <% display_row = '' if c.at_version and (c.at_version_num == ver_pr or c.from_version_num == ver_pr) else 'none' %> | |
203 |
|
206 | |||
204 | <tr class="version-pr" style="display: ${display_row}"> |
|
207 | <tr class="version-pr" style="display: ${display_row}"> | |
205 | <td> |
|
208 | <td> | |
206 | <code> |
|
209 | <code> | |
207 | <a href="${request.current_route_path(_query=dict(version=ver_pr or 'latest'))}">v${ver_pos}</a> |
|
210 | <a href="${request.current_route_path(_query=dict(version=ver_pr or 'latest'))}">v${ver_pos}</a> | |
208 | </code> |
|
211 | </code> | |
209 | </td> |
|
212 | </td> | |
210 | <td> |
|
213 | <td> | |
211 | <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}"/> |
|
214 | <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}"/> | |
212 | <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}"/> |
|
215 | <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}"/> | |
213 | </td> |
|
216 | </td> | |
214 | <td> |
|
217 | <td> | |
215 | <% review_status = c.review_versions[ver_pr].status if ver_pr in c.review_versions else 'not_reviewed' %> |
|
218 | <% review_status = c.review_versions[ver_pr].status if ver_pr in c.review_versions else 'not_reviewed' %> | |
216 | <i class="tooltip icon-circle review-status-${review_status}" title="${_('Your review status at this version')}"></i> |
|
219 | <i class="tooltip icon-circle review-status-${review_status}" title="${_('Your review status at this version')}"></i> | |
217 | </div> |
|
220 | ||
218 | </td> |
|
221 | </td> | |
219 | <td> |
|
222 | <td> | |
220 | % if c.at_version_num != ver_pr: |
|
223 | % if c.at_version_num != ver_pr: | |
221 | <i class="icon-comment"></i> |
|
224 | <i class="icon-comment"></i> | |
222 | <code class="tooltip" title="${_('Comment from pull request version v{0}, general:{1} inline:{2}').format(ver_pos, len(c.comment_versions[ver_pr]['at']), len(c.inline_versions[ver_pr]['at']))}"> |
|
225 | <code class="tooltip" title="${_('Comment from pull request version v{0}, general:{1} inline:{2}').format(ver_pos, len(c.comment_versions[ver_pr]['at']), len(c.inline_versions[ver_pr]['at']))}"> | |
223 | G:${len(c.comment_versions[ver_pr]['at'])} / I:${len(c.inline_versions[ver_pr]['at'])} |
|
226 | G:${len(c.comment_versions[ver_pr]['at'])} / I:${len(c.inline_versions[ver_pr]['at'])} | |
224 | </code> |
|
227 | </code> | |
225 | % endif |
|
228 | % endif | |
226 | </td> |
|
229 | </td> | |
227 | <td> |
|
230 | <td> | |
228 | ##<code>${ver.source_ref_parts.commit_id[:6]}</code> |
|
231 | ##<code>${ver.source_ref_parts.commit_id[:6]}</code> | |
229 | </td> |
|
232 | </td> | |
230 | <td> |
|
233 | <td> | |
231 | ${h.age_component(ver.updated_on, time_is_local=True)} |
|
234 | ${h.age_component(ver.updated_on, time_is_local=True)} | |
232 | </td> |
|
235 | </td> | |
233 | </tr> |
|
236 | </tr> | |
234 | % endfor |
|
237 | % endfor | |
235 |
|
238 | |||
236 | <tr> |
|
239 | <tr> | |
237 | <td colspan="6"> |
|
240 | <td colspan="6"> | |
238 | <button id="show-version-diff" onclick="return versionController.showVersionDiff()" class="btn btn-sm" style="display: none" |
|
241 | <button id="show-version-diff" onclick="return versionController.showVersionDiff()" class="btn btn-sm" style="display: none" | |
239 | data-label-text-locked="${_('select versions to show changes')}" |
|
242 | data-label-text-locked="${_('select versions to show changes')}" | |
240 | data-label-text-diff="${_('show changes between versions')}" |
|
243 | data-label-text-diff="${_('show changes between versions')}" | |
241 | data-label-text-show="${_('show pull request for this version')}" |
|
244 | data-label-text-show="${_('show pull request for this version')}" | |
242 | > |
|
245 | > | |
243 | ${_('select versions to show changes')} |
|
246 | ${_('select versions to show changes')} | |
244 | </button> |
|
247 | </button> | |
245 | </td> |
|
248 | </td> | |
246 | </tr> |
|
249 | </tr> | |
247 | </table> |
|
250 | </table> | |
248 | % else: |
|
251 | % else: | |
249 | <div class="input"> |
|
252 | <div class="input"> | |
250 | ${_('Pull request versions not available')}. |
|
253 | ${_('Pull request versions not available')}. | |
251 | </div> |
|
254 | </div> | |
252 | % endif |
|
255 | % endif | |
253 | </div> |
|
256 | </div> | |
254 | </div> |
|
257 | </div> | |
255 |
|
258 | |||
256 | <div id="pr-save" class="field" style="display: none;"> |
|
259 | <div id="pr-save" class="field" style="display: none;"> | |
257 | <div class="label-summary"></div> |
|
260 | <div class="label-summary"></div> | |
258 | <div class="input"> |
|
261 | <div class="input"> | |
259 | <span id="edit_pull_request" class="btn btn-small no-margin">${_('Save Changes')}</span> |
|
262 | <span id="edit_pull_request" class="btn btn-small no-margin">${_('Save Changes')}</span> | |
260 | </div> |
|
263 | </div> | |
261 | </div> |
|
264 | </div> | |
262 | </div> |
|
265 | </div> | |
263 | </div> |
|
266 | </div> | |
264 | <div> |
|
267 | <div> | |
265 | ## AUTHOR |
|
268 | ## AUTHOR | |
266 | <div class="reviewers-title block-right"> |
|
269 | <div class="reviewers-title block-right"> | |
267 | <div class="pr-details-title"> |
|
270 | <div class="pr-details-title"> | |
268 | ${_('Author of this pull request')} |
|
271 | ${_('Author of this pull request')} | |
269 | </div> |
|
272 | </div> | |
270 | </div> |
|
273 | </div> | |
271 | <div class="block-right pr-details-content reviewers"> |
|
274 | <div class="block-right pr-details-content reviewers"> | |
272 | <ul class="group_members"> |
|
275 | <ul class="group_members"> | |
273 | <li> |
|
276 | <li> | |
274 | ${self.gravatar_with_user(c.pull_request.author.email, 16, tooltip=True)} |
|
277 | ${self.gravatar_with_user(c.pull_request.author.email, 16, tooltip=True)} | |
275 | </li> |
|
278 | </li> | |
276 | </ul> |
|
279 | </ul> | |
277 | </div> |
|
280 | </div> | |
278 |
|
281 | |||
279 | ## REVIEW RULES |
|
282 | ## REVIEW RULES | |
280 | <div id="review_rules" style="display: none" class="reviewers-title block-right"> |
|
283 | <div id="review_rules" style="display: none" class="reviewers-title block-right"> | |
281 | <div class="pr-details-title"> |
|
284 | <div class="pr-details-title"> | |
282 | ${_('Reviewer rules')} |
|
285 | ${_('Reviewer rules')} | |
283 | %if c.allowed_to_update: |
|
286 | %if c.allowed_to_update: | |
284 | <span id="close_edit_reviewers" class="block-right action_button last-item" style="display: none;">${_('Close')}</span> |
|
287 | <span id="close_edit_reviewers" class="block-right action_button last-item" style="display: none;">${_('Close')}</span> | |
285 | %endif |
|
288 | %endif | |
286 | </div> |
|
289 | </div> | |
287 | <div class="pr-reviewer-rules"> |
|
290 | <div class="pr-reviewer-rules"> | |
288 | ## review rules will be appended here, by default reviewers logic |
|
291 | ## review rules will be appended here, by default reviewers logic | |
289 | </div> |
|
292 | </div> | |
290 | <input id="review_data" type="hidden" name="review_data" value=""> |
|
293 | <input id="review_data" type="hidden" name="review_data" value=""> | |
291 | </div> |
|
294 | </div> | |
292 |
|
295 | |||
293 | ## REVIEWERS |
|
296 | ## REVIEWERS | |
294 | <div class="reviewers-title block-right"> |
|
297 | <div class="reviewers-title block-right"> | |
295 | <div class="pr-details-title"> |
|
298 | <div class="pr-details-title"> | |
296 | ${_('Pull request reviewers')} |
|
299 | ${_('Pull request reviewers')} | |
297 | %if c.allowed_to_update: |
|
300 | %if c.allowed_to_update: | |
298 | <span id="open_edit_reviewers" class="block-right action_button last-item">${_('Edit')}</span> |
|
301 | <span id="open_edit_reviewers" class="block-right action_button last-item">${_('Edit')}</span> | |
299 | %endif |
|
302 | %endif | |
300 | </div> |
|
303 | </div> | |
301 | </div> |
|
304 | </div> | |
302 | <div id="reviewers" class="block-right pr-details-content reviewers"> |
|
305 | <div id="reviewers" class="block-right pr-details-content reviewers"> | |
303 |
|
306 | |||
304 | ## members redering block |
|
307 | ## members redering block | |
305 | <input type="hidden" name="__start__" value="review_members:sequence"> |
|
308 | <input type="hidden" name="__start__" value="review_members:sequence"> | |
306 | <ul id="review_members" class="group_members"> |
|
309 | <ul id="review_members" class="group_members"> | |
307 |
|
310 | |||
308 | % for review_obj, member, reasons, mandatory, status in c.pull_request_reviewers: |
|
311 | % for review_obj, member, reasons, mandatory, status in c.pull_request_reviewers: | |
309 | <script> |
|
312 | <script> | |
310 | var member = ${h.json.dumps(h.reviewer_as_json(member, reasons=reasons, mandatory=mandatory, user_group=review_obj.rule_user_group_data()))|n}; |
|
313 | var member = ${h.json.dumps(h.reviewer_as_json(member, reasons=reasons, mandatory=mandatory, user_group=review_obj.rule_user_group_data()))|n}; | |
311 | var status = "${(status[0][1].status if status else 'not_reviewed')}"; |
|
314 | var status = "${(status[0][1].status if status else 'not_reviewed')}"; | |
312 | var status_lbl = "${h.commit_status_lbl(status[0][1].status if status else 'not_reviewed')}"; |
|
315 | var status_lbl = "${h.commit_status_lbl(status[0][1].status if status else 'not_reviewed')}"; | |
313 | var allowed_to_update = ${h.json.dumps(c.allowed_to_update)}; |
|
316 | var allowed_to_update = ${h.json.dumps(c.allowed_to_update)}; | |
314 |
|
317 | |||
315 | var entry = renderTemplate('reviewMemberEntry', { |
|
318 | var entry = renderTemplate('reviewMemberEntry', { | |
316 | 'member': member, |
|
319 | 'member': member, | |
317 | 'mandatory': member.mandatory, |
|
320 | 'mandatory': member.mandatory, | |
318 | 'reasons': member.reasons, |
|
321 | 'reasons': member.reasons, | |
319 | 'allowed_to_update': allowed_to_update, |
|
322 | 'allowed_to_update': allowed_to_update, | |
320 | 'review_status': status, |
|
323 | 'review_status': status, | |
321 | 'review_status_label': status_lbl, |
|
324 | 'review_status_label': status_lbl, | |
322 | 'user_group': member.user_group, |
|
325 | 'user_group': member.user_group, | |
323 | 'create': false |
|
326 | 'create': false | |
324 | }); |
|
327 | }); | |
325 | $('#review_members').append(entry) |
|
328 | $('#review_members').append(entry) | |
326 | </script> |
|
329 | </script> | |
327 |
|
330 | |||
328 | % endfor |
|
331 | % endfor | |
329 |
|
332 | |||
330 | </ul> |
|
333 | </ul> | |
331 |
|
334 | |||
332 | <input type="hidden" name="__end__" value="review_members:sequence"> |
|
335 | <input type="hidden" name="__end__" value="review_members:sequence"> | |
333 | ## end members redering block |
|
336 | ## end members redering block | |
334 |
|
337 | |||
335 | %if not c.pull_request.is_closed(): |
|
338 | %if not c.pull_request.is_closed(): | |
336 | <div id="add_reviewer" class="ac" style="display: none;"> |
|
339 | <div id="add_reviewer" class="ac" style="display: none;"> | |
337 | %if c.allowed_to_update: |
|
340 | %if c.allowed_to_update: | |
338 | % if not c.forbid_adding_reviewers: |
|
341 | % if not c.forbid_adding_reviewers: | |
339 | <div id="add_reviewer_input" class="reviewer_ac"> |
|
342 | <div id="add_reviewer_input" class="reviewer_ac"> | |
340 | ${h.text('user', class_='ac-input', placeholder=_('Add reviewer or reviewer group'))} |
|
343 | ${h.text('user', class_='ac-input', placeholder=_('Add reviewer or reviewer group'))} | |
341 | <div id="reviewers_container"></div> |
|
344 | <div id="reviewers_container"></div> | |
342 | </div> |
|
345 | </div> | |
343 | % endif |
|
346 | % endif | |
344 | <div class="pull-right"> |
|
347 | <div class="pull-right"> | |
345 | <button id="update_pull_request" class="btn btn-small no-margin">${_('Save Changes')}</button> |
|
348 | <button id="update_pull_request" class="btn btn-small no-margin">${_('Save Changes')}</button> | |
346 | </div> |
|
349 | </div> | |
347 | %endif |
|
350 | %endif | |
348 | </div> |
|
351 | </div> | |
349 | %endif |
|
352 | %endif | |
350 | </div> |
|
353 | </div> | |
351 | </div> |
|
354 | </div> | |
352 | </div> |
|
355 | </div> | |
|
356 | ||||
353 | <div class="box"> |
|
357 | <div class="box"> | |
354 | ##DIFF |
|
358 | ||
|
359 | % if c.state_progressing: | |||
|
360 | <h2 style="text-align: center"> | |||
|
361 | ${_('Cannot show diff when pull request state is changing. Current progress state')}: <span class="tag tag-merge-state-${c.pull_request.state}">${c.pull_request.state}</span> | |||
|
362 | </h2> | |||
|
363 | ||||
|
364 | % else: | |||
|
365 | ||||
|
366 | ## Diffs rendered here | |||
355 | <div class="table" > |
|
367 | <div class="table" > | |
356 | <div id="changeset_compare_view_content"> |
|
368 | <div id="changeset_compare_view_content"> | |
357 | ##CS |
|
369 | ##CS | |
358 | % if c.missing_requirements: |
|
370 | % if c.missing_requirements: | |
359 | <div class="box"> |
|
371 | <div class="box"> | |
360 | <div class="alert alert-warning"> |
|
372 | <div class="alert alert-warning"> | |
361 | <div> |
|
373 | <div> | |
362 | <strong>${_('Missing requirements:')}</strong> |
|
374 | <strong>${_('Missing requirements:')}</strong> | |
363 | ${_('These commits cannot be displayed, because this repository uses the Mercurial largefiles extension, which was not enabled.')} |
|
375 | ${_('These commits cannot be displayed, because this repository uses the Mercurial largefiles extension, which was not enabled.')} | |
364 | </div> |
|
376 | </div> | |
365 | </div> |
|
377 | </div> | |
366 | </div> |
|
378 | </div> | |
367 | % elif c.missing_commits: |
|
379 | % elif c.missing_commits: | |
368 | <div class="box"> |
|
380 | <div class="box"> | |
369 | <div class="alert alert-warning"> |
|
381 | <div class="alert alert-warning"> | |
370 | <div> |
|
382 | <div> | |
371 | <strong>${_('Missing commits')}:</strong> |
|
383 | <strong>${_('Missing commits')}:</strong> | |
372 | ${_('This pull request cannot be displayed, because one or more commits no longer exist in the source repository.')} |
|
384 | ${_('This pull request cannot be displayed, because one or more commits no longer exist in the source repository.')} | |
373 | ${_('Please update this pull request, push the commits back into the source repository, or consider closing this pull request.')} |
|
385 | ${_('Please update this pull request, push the commits back into the source repository, or consider closing this pull request.')} | |
374 | ${_('Consider doing a {force_refresh_url} in case you think this is an error.').format(force_refresh_url=h.link_to('force refresh', h.current_route_path(request, force_refresh='1')))|n} |
|
386 | ${_('Consider doing a {force_refresh_url} in case you think this is an error.').format(force_refresh_url=h.link_to('force refresh', h.current_route_path(request, force_refresh='1')))|n} | |
375 | </div> |
|
387 | </div> | |
376 | </div> |
|
388 | </div> | |
377 | </div> |
|
389 | </div> | |
378 | % endif |
|
390 | % endif | |
379 |
|
391 | |||
380 | <div class="compare_view_commits_title"> |
|
392 | <div class="compare_view_commits_title"> | |
381 | % if not c.compare_mode: |
|
393 | % if not c.compare_mode: | |
382 |
|
394 | |||
383 | % if c.at_version_pos: |
|
395 | % if c.at_version_pos: | |
384 | <h4> |
|
396 | <h4> | |
385 | ${_('Showing changes at v%d, commenting is disabled.') % c.at_version_pos} |
|
397 | ${_('Showing changes at v%d, commenting is disabled.') % c.at_version_pos} | |
386 | </h4> |
|
398 | </h4> | |
387 | % endif |
|
399 | % endif | |
388 |
|
400 | |||
389 | <div class="pull-left"> |
|
401 | <div class="pull-left"> | |
390 | <div class="btn-group"> |
|
402 | <div class="btn-group"> | |
391 | <a |
|
403 | <a | |
392 | class="btn" |
|
404 | class="btn" | |
393 | href="#" |
|
405 | href="#" | |
394 | onclick="$('.compare_select').show();$('.compare_select_hidden').hide(); return false"> |
|
406 | onclick="$('.compare_select').show();$('.compare_select_hidden').hide(); return false"> | |
395 | ${_ungettext('Expand %s commit','Expand %s commits', len(c.commit_ranges)) % len(c.commit_ranges)} |
|
407 | ${_ungettext('Expand %s commit','Expand %s commits', len(c.commit_ranges)) % len(c.commit_ranges)} | |
396 | </a> |
|
408 | </a> | |
397 | <a |
|
409 | <a | |
398 | class="btn" |
|
410 | class="btn" | |
399 | href="#" |
|
411 | href="#" | |
400 | onclick="$('.compare_select').hide();$('.compare_select_hidden').show(); return false"> |
|
412 | onclick="$('.compare_select').hide();$('.compare_select_hidden').show(); return false"> | |
401 | ${_ungettext('Collapse %s commit','Collapse %s commits', len(c.commit_ranges)) % len(c.commit_ranges)} |
|
413 | ${_ungettext('Collapse %s commit','Collapse %s commits', len(c.commit_ranges)) % len(c.commit_ranges)} | |
402 | </a> |
|
414 | </a> | |
403 | </div> |
|
415 | </div> | |
404 | </div> |
|
416 | </div> | |
405 |
|
417 | |||
406 | <div class="pull-right"> |
|
418 | <div class="pull-right"> | |
407 | % if c.allowed_to_update and not c.pull_request.is_closed(): |
|
419 | % if c.allowed_to_update and not c.pull_request.is_closed(): | |
408 |
|
420 | |||
409 | <div class="btn-group btn-group-actions"> |
|
421 | <div class="btn-group btn-group-actions"> | |
410 | <a id="update_commits" class="btn btn-primary no-margin" onclick="updateController.updateCommits(this); return false"> |
|
422 | <a id="update_commits" class="btn btn-primary no-margin" onclick="updateController.updateCommits(this); return false"> | |
411 | ${_('Update commits')} |
|
423 | ${_('Update commits')} | |
412 | </a> |
|
424 | </a> | |
413 |
|
425 | |||
414 | <a id="update_commits_switcher" class="btn btn-primary" style="margin-left: -1px" data-toggle="dropdown" aria-pressed="false" role="button"> |
|
426 | <a id="update_commits_switcher" class="btn btn-primary" style="margin-left: -1px" data-toggle="dropdown" aria-pressed="false" role="button"> | |
415 | <i class="icon-down"></i> |
|
427 | <i class="icon-down"></i> | |
416 | </a> |
|
428 | </a> | |
417 |
|
429 | |||
418 | <div class="btn-action-switcher-container" id="update-commits-switcher"> |
|
430 | <div class="btn-action-switcher-container" id="update-commits-switcher"> | |
419 | <ul class="btn-action-switcher" role="menu"> |
|
431 | <ul class="btn-action-switcher" role="menu"> | |
420 | <li> |
|
432 | <li> | |
421 | <a href="#forceUpdate" onclick="updateController.forceUpdateCommits(this); return false"> |
|
433 | <a href="#forceUpdate" onclick="updateController.forceUpdateCommits(this); return false"> | |
422 | ${_('Force update commits')} |
|
434 | ${_('Force update commits')} | |
423 | </a> |
|
435 | </a> | |
424 | <div class="action-help-block"> |
|
436 | <div class="action-help-block"> | |
425 | ${_('Update commits and force refresh this pull request.')} |
|
437 | ${_('Update commits and force refresh this pull request.')} | |
426 | </div> |
|
438 | </div> | |
427 | </li> |
|
439 | </li> | |
428 | </ul> |
|
440 | </ul> | |
429 | </div> |
|
441 | </div> | |
430 | </div> |
|
442 | </div> | |
431 |
|
443 | |||
432 | % else: |
|
444 | % else: | |
433 | <a class="tooltip btn disabled pull-right" disabled="disabled" title="${_('Update is disabled for current view')}">${_('Update commits')}</a> |
|
445 | <a class="tooltip btn disabled pull-right" disabled="disabled" title="${_('Update is disabled for current view')}">${_('Update commits')}</a> | |
434 | % endif |
|
446 | % endif | |
435 |
|
447 | |||
436 | </div> |
|
448 | </div> | |
437 | % endif |
|
449 | % endif | |
438 | </div> |
|
450 | </div> | |
439 |
|
451 | |||
440 | % if not c.missing_commits: |
|
452 | % if not c.missing_commits: | |
441 | % if c.compare_mode: |
|
453 | % if c.compare_mode: | |
442 | % if c.at_version: |
|
454 | % if c.at_version: | |
443 | <h4> |
|
455 | <h4> | |
444 | ${_('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')}: |
|
456 | ${_('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')}: | |
445 | </h4> |
|
457 | </h4> | |
446 |
|
458 | |||
447 | <div class="subtitle-compare"> |
|
459 | <div class="subtitle-compare"> | |
448 | ${_('commits added: {}, removed: {}').format(len(c.commit_changes_summary.added), len(c.commit_changes_summary.removed))} |
|
460 | ${_('commits added: {}, removed: {}').format(len(c.commit_changes_summary.added), len(c.commit_changes_summary.removed))} | |
449 | </div> |
|
461 | </div> | |
450 |
|
462 | |||
451 | <div class="container"> |
|
463 | <div class="container"> | |
452 | <table class="rctable compare_view_commits"> |
|
464 | <table class="rctable compare_view_commits"> | |
453 | <tr> |
|
465 | <tr> | |
454 | <th></th> |
|
466 | <th></th> | |
455 | <th>${_('Time')}</th> |
|
467 | <th>${_('Time')}</th> | |
456 | <th>${_('Author')}</th> |
|
468 | <th>${_('Author')}</th> | |
457 | <th>${_('Commit')}</th> |
|
469 | <th>${_('Commit')}</th> | |
458 | <th></th> |
|
470 | <th></th> | |
459 | <th>${_('Description')}</th> |
|
471 | <th>${_('Description')}</th> | |
460 | </tr> |
|
472 | </tr> | |
461 |
|
473 | |||
462 | % for c_type, commit in c.commit_changes: |
|
474 | % for c_type, commit in c.commit_changes: | |
463 | % if c_type in ['a', 'r']: |
|
475 | % if c_type in ['a', 'r']: | |
464 | <% |
|
476 | <% | |
465 | if c_type == 'a': |
|
477 | if c_type == 'a': | |
466 | cc_title = _('Commit added in displayed changes') |
|
478 | cc_title = _('Commit added in displayed changes') | |
467 | elif c_type == 'r': |
|
479 | elif c_type == 'r': | |
468 | cc_title = _('Commit removed in displayed changes') |
|
480 | cc_title = _('Commit removed in displayed changes') | |
469 | else: |
|
481 | else: | |
470 | cc_title = '' |
|
482 | cc_title = '' | |
471 | %> |
|
483 | %> | |
472 | <tr id="row-${commit.raw_id}" commit_id="${commit.raw_id}" class="compare_select"> |
|
484 | <tr id="row-${commit.raw_id}" commit_id="${commit.raw_id}" class="compare_select"> | |
473 | <td> |
|
485 | <td> | |
474 | <div class="commit-change-indicator color-${c_type}-border"> |
|
486 | <div class="commit-change-indicator color-${c_type}-border"> | |
475 | <div class="commit-change-content color-${c_type} tooltip" title="${h.tooltip(cc_title)}"> |
|
487 | <div class="commit-change-content color-${c_type} tooltip" title="${h.tooltip(cc_title)}"> | |
476 | ${c_type.upper()} |
|
488 | ${c_type.upper()} | |
477 | </div> |
|
489 | </div> | |
478 | </div> |
|
490 | </div> | |
479 | </td> |
|
491 | </td> | |
480 | <td class="td-time"> |
|
492 | <td class="td-time"> | |
481 | ${h.age_component(commit.date)} |
|
493 | ${h.age_component(commit.date)} | |
482 | </td> |
|
494 | </td> | |
483 | <td class="td-user"> |
|
495 | <td class="td-user"> | |
484 | ${base.gravatar_with_user(commit.author, 16, tooltip=True)} |
|
496 | ${base.gravatar_with_user(commit.author, 16, tooltip=True)} | |
485 | </td> |
|
497 | </td> | |
486 | <td class="td-hash"> |
|
498 | <td class="td-hash"> | |
487 | <code> |
|
499 | <code> | |
488 | <a href="${h.route_path('repo_commit', repo_name=c.target_repo.repo_name, commit_id=commit.raw_id)}"> |
|
500 | <a href="${h.route_path('repo_commit', repo_name=c.target_repo.repo_name, commit_id=commit.raw_id)}"> | |
489 | r${commit.idx}:${h.short_id(commit.raw_id)} |
|
501 | r${commit.idx}:${h.short_id(commit.raw_id)} | |
490 | </a> |
|
502 | </a> | |
491 | ${h.hidden('revisions', commit.raw_id)} |
|
503 | ${h.hidden('revisions', commit.raw_id)} | |
492 | </code> |
|
504 | </code> | |
493 | </td> |
|
505 | </td> | |
494 | <td class="td-message expand_commit" data-commit-id="${commit.raw_id}" title="${_( 'Expand commit message')}" onclick="commitsController.expandCommit(this); return false"> |
|
506 | <td class="td-message expand_commit" data-commit-id="${commit.raw_id}" title="${_( 'Expand commit message')}" onclick="commitsController.expandCommit(this); return false"> | |
495 | <i class="icon-expand-linked"></i> |
|
507 | <i class="icon-expand-linked"></i> | |
496 | </td> |
|
508 | </td> | |
497 | <td class="mid td-description"> |
|
509 | <td class="mid td-description"> | |
498 | <div class="log-container truncate-wrap"> |
|
510 | <div class="log-container truncate-wrap"> | |
499 | <div class="message truncate" id="c-${commit.raw_id}" data-message-raw="${commit.message}">${h.urlify_commit_message(commit.message, c.repo_name)}</div> |
|
511 | <div class="message truncate" id="c-${commit.raw_id}" data-message-raw="${commit.message}">${h.urlify_commit_message(commit.message, c.repo_name)}</div> | |
500 | </div> |
|
512 | </div> | |
501 | </td> |
|
513 | </td> | |
502 | </tr> |
|
514 | </tr> | |
503 | % endif |
|
515 | % endif | |
504 | % endfor |
|
516 | % endfor | |
505 | </table> |
|
517 | </table> | |
506 | </div> |
|
518 | </div> | |
507 |
|
519 | |||
508 | % endif |
|
520 | % endif | |
509 |
|
521 | |||
510 | % else: |
|
522 | % else: | |
511 | <%include file="/compare/compare_commits.mako" /> |
|
523 | <%include file="/compare/compare_commits.mako" /> | |
512 | % endif |
|
524 | % endif | |
513 |
|
525 | |||
514 | <div class="cs_files"> |
|
526 | <div class="cs_files"> | |
515 | <%namespace name="cbdiffs" file="/codeblocks/diffs.mako"/> |
|
527 | <%namespace name="cbdiffs" file="/codeblocks/diffs.mako"/> | |
516 | % if c.at_version: |
|
528 | % if c.at_version: | |
517 | <% c.inline_cnt = len(c.inline_versions[c.at_version_num]['display']) %> |
|
529 | <% c.inline_cnt = len(c.inline_versions[c.at_version_num]['display']) %> | |
518 | <% c.comments = c.comment_versions[c.at_version_num]['display'] %> |
|
530 | <% c.comments = c.comment_versions[c.at_version_num]['display'] %> | |
519 | % else: |
|
531 | % else: | |
520 | <% c.inline_cnt = len(c.inline_versions[c.at_version_num]['until']) %> |
|
532 | <% c.inline_cnt = len(c.inline_versions[c.at_version_num]['until']) %> | |
521 | <% c.comments = c.comment_versions[c.at_version_num]['until'] %> |
|
533 | <% c.comments = c.comment_versions[c.at_version_num]['until'] %> | |
522 | % endif |
|
534 | % endif | |
523 |
|
535 | |||
524 | <% |
|
536 | <% | |
525 | pr_menu_data = { |
|
537 | pr_menu_data = { | |
526 | 'outdated_comm_count_ver': outdated_comm_count_ver |
|
538 | 'outdated_comm_count_ver': outdated_comm_count_ver | |
527 | } |
|
539 | } | |
528 | %> |
|
540 | %> | |
529 |
|
541 | |||
530 | ${cbdiffs.render_diffset_menu(c.diffset, range_diff_on=c.range_diff_on)} |
|
542 | ${cbdiffs.render_diffset_menu(c.diffset, range_diff_on=c.range_diff_on)} | |
531 |
|
543 | |||
532 | % if c.range_diff_on: |
|
544 | % if c.range_diff_on: | |
533 | % for commit in c.commit_ranges: |
|
545 | % for commit in c.commit_ranges: | |
534 | ${cbdiffs.render_diffset( |
|
546 | ${cbdiffs.render_diffset( | |
535 | c.changes[commit.raw_id], |
|
547 | c.changes[commit.raw_id], | |
536 | commit=commit, use_comments=True, |
|
548 | commit=commit, use_comments=True, | |
537 | collapse_when_files_over=5, |
|
549 | collapse_when_files_over=5, | |
538 | disable_new_comments=True, |
|
550 | disable_new_comments=True, | |
539 | deleted_files_comments=c.deleted_files_comments, |
|
551 | deleted_files_comments=c.deleted_files_comments, | |
540 | inline_comments=c.inline_comments, |
|
552 | inline_comments=c.inline_comments, | |
541 | pull_request_menu=pr_menu_data)} |
|
553 | pull_request_menu=pr_menu_data)} | |
542 | % endfor |
|
554 | % endfor | |
543 | % else: |
|
555 | % else: | |
544 | ${cbdiffs.render_diffset( |
|
556 | ${cbdiffs.render_diffset( | |
545 | c.diffset, use_comments=True, |
|
557 | c.diffset, use_comments=True, | |
546 | collapse_when_files_over=30, |
|
558 | collapse_when_files_over=30, | |
547 | disable_new_comments=not c.allowed_to_comment, |
|
559 | disable_new_comments=not c.allowed_to_comment, | |
548 | deleted_files_comments=c.deleted_files_comments, |
|
560 | deleted_files_comments=c.deleted_files_comments, | |
549 | inline_comments=c.inline_comments, |
|
561 | inline_comments=c.inline_comments, | |
550 | pull_request_menu=pr_menu_data)} |
|
562 | pull_request_menu=pr_menu_data)} | |
551 | % endif |
|
563 | % endif | |
552 |
|
564 | |||
553 | </div> |
|
565 | </div> | |
554 | % else: |
|
566 | % else: | |
555 | ## skipping commits we need to clear the view for missing commits |
|
567 | ## skipping commits we need to clear the view for missing commits | |
556 | <div style="clear:both;"></div> |
|
568 | <div style="clear:both;"></div> | |
557 | % endif |
|
569 | % endif | |
558 |
|
570 | |||
559 | </div> |
|
571 | </div> | |
560 | </div> |
|
572 | </div> | |
561 |
|
573 | |||
562 | ## template for inline comment form |
|
574 | ## template for inline comment form | |
563 | <%namespace name="comment" file="/changeset/changeset_file_comment.mako"/> |
|
575 | <%namespace name="comment" file="/changeset/changeset_file_comment.mako"/> | |
564 |
|
576 | |||
565 | ## comments heading with count |
|
577 | ## comments heading with count | |
566 | <div class="comments-heading"> |
|
578 | <div class="comments-heading"> | |
567 | <i class="icon-comment"></i> |
|
579 | <i class="icon-comment"></i> | |
568 | ${_('Comments')} ${len(c.comments)} |
|
580 | ${_('Comments')} ${len(c.comments)} | |
569 | </div> |
|
581 | </div> | |
570 |
|
582 | |||
571 | ## render general comments |
|
583 | ## render general comments | |
572 | <div id="comment-tr-show"> |
|
584 | <div id="comment-tr-show"> | |
573 | % if general_outdated_comm_count_ver: |
|
585 | % if general_outdated_comm_count_ver: | |
574 | <div class="info-box"> |
|
586 | <div class="info-box"> | |
575 | % if general_outdated_comm_count_ver == 1: |
|
587 | % if general_outdated_comm_count_ver == 1: | |
576 | ${_('there is {num} general comment from older versions').format(num=general_outdated_comm_count_ver)}, |
|
588 | ${_('there is {num} general comment from older versions').format(num=general_outdated_comm_count_ver)}, | |
577 | <a href="#show-hidden-comments" onclick="$('.comment-general.comment-outdated').show(); $(this).parent().hide(); return false;">${_('show it')}</a> |
|
589 | <a href="#show-hidden-comments" onclick="$('.comment-general.comment-outdated').show(); $(this).parent().hide(); return false;">${_('show it')}</a> | |
578 | % else: |
|
590 | % else: | |
579 | ${_('there are {num} general comments from older versions').format(num=general_outdated_comm_count_ver)}, |
|
591 | ${_('there are {num} general comments from older versions').format(num=general_outdated_comm_count_ver)}, | |
580 | <a href="#show-hidden-comments" onclick="$('.comment-general.comment-outdated').show(); $(this).parent().hide(); return false;">${_('show them')}</a> |
|
592 | <a href="#show-hidden-comments" onclick="$('.comment-general.comment-outdated').show(); $(this).parent().hide(); return false;">${_('show them')}</a> | |
581 | % endif |
|
593 | % endif | |
582 | </div> |
|
594 | </div> | |
583 | % endif |
|
595 | % endif | |
584 | </div> |
|
596 | </div> | |
585 |
|
597 | |||
586 | ${comment.generate_comments(c.comments, include_pull_request=True, is_pull_request=True)} |
|
598 | ${comment.generate_comments(c.comments, include_pull_request=True, is_pull_request=True)} | |
587 |
|
599 | |||
588 | % if not c.pull_request.is_closed(): |
|
600 | % if not c.pull_request.is_closed(): | |
589 | ## main comment form and it status |
|
601 | ## main comment form and it status | |
590 | ${comment.comments(h.route_path('pullrequest_comment_create', repo_name=c.repo_name, |
|
602 | ${comment.comments(h.route_path('pullrequest_comment_create', repo_name=c.repo_name, | |
591 | pull_request_id=c.pull_request.pull_request_id), |
|
603 | pull_request_id=c.pull_request.pull_request_id), | |
592 | c.pull_request_review_status, |
|
604 | c.pull_request_review_status, | |
593 | is_pull_request=True, change_status=c.allowed_to_change_status)} |
|
605 | is_pull_request=True, change_status=c.allowed_to_change_status)} | |
594 |
|
606 | |||
595 | ## merge status, and merge action |
|
607 | ## merge status, and merge action | |
596 | <div class="pull-request-merge"> |
|
608 | <div class="pull-request-merge"> | |
597 | <%include file="/pullrequests/pullrequest_merge_checks.mako"/> |
|
609 | <%include file="/pullrequests/pullrequest_merge_checks.mako"/> | |
598 | </div> |
|
610 | </div> | |
599 |
|
611 | |||
600 | %endif |
|
612 | %endif | |
601 |
|
613 | |||
602 | <script type="text/javascript"> |
|
614 | % endif | |
|
615 | </div> | |||
|
616 | ||||
|
617 | <script type="text/javascript"> | |||
603 |
|
618 | |||
604 | versionController = new VersionController(); |
|
619 | versionController = new VersionController(); | |
605 | versionController.init(); |
|
620 | versionController.init(); | |
606 |
|
621 | |||
607 | reviewersController = new ReviewersController(); |
|
622 | reviewersController = new ReviewersController(); | |
608 | commitsController = new CommitsController(); |
|
623 | commitsController = new CommitsController(); | |
609 |
|
624 | |||
610 | updateController = new UpdatePrController(); |
|
625 | updateController = new UpdatePrController(); | |
611 |
|
626 | |||
612 | $(function(){ |
|
627 | $(function(){ | |
613 |
|
628 | |||
614 | // custom code mirror |
|
629 | // custom code mirror | |
615 | var codeMirrorInstance = $('#pr-description-input').get(0).MarkupForm.cm; |
|
630 | var codeMirrorInstance = $('#pr-description-input').get(0).MarkupForm.cm; | |
616 |
|
631 | |||
617 | var PRDetails = { |
|
632 | var PRDetails = { | |
618 | editButton: $('#open_edit_pullrequest'), |
|
633 | editButton: $('#open_edit_pullrequest'), | |
619 | closeButton: $('#close_edit_pullrequest'), |
|
634 | closeButton: $('#close_edit_pullrequest'), | |
620 | deleteButton: $('#delete_pullrequest'), |
|
635 | deleteButton: $('#delete_pullrequest'), | |
621 | viewFields: $('#pr-desc, #pr-title'), |
|
636 | viewFields: $('#pr-desc, #pr-title'), | |
622 | editFields: $('#pr-desc-edit, #pr-title-edit, #pr-save'), |
|
637 | editFields: $('#pr-desc-edit, #pr-title-edit, #pr-save'), | |
623 |
|
638 | |||
624 | init: function() { |
|
639 | init: function() { | |
625 | var that = this; |
|
640 | var that = this; | |
626 | this.editButton.on('click', function(e) { that.edit(); }); |
|
641 | this.editButton.on('click', function(e) { that.edit(); }); | |
627 | this.closeButton.on('click', function(e) { that.view(); }); |
|
642 | this.closeButton.on('click', function(e) { that.view(); }); | |
628 | }, |
|
643 | }, | |
629 |
|
644 | |||
630 | edit: function(event) { |
|
645 | edit: function(event) { | |
631 | this.viewFields.hide(); |
|
646 | this.viewFields.hide(); | |
632 | this.editButton.hide(); |
|
647 | this.editButton.hide(); | |
633 | this.deleteButton.hide(); |
|
648 | this.deleteButton.hide(); | |
634 | this.closeButton.show(); |
|
649 | this.closeButton.show(); | |
635 | this.editFields.show(); |
|
650 | this.editFields.show(); | |
636 | codeMirrorInstance.refresh(); |
|
651 | codeMirrorInstance.refresh(); | |
637 | }, |
|
652 | }, | |
638 |
|
653 | |||
639 | view: function(event) { |
|
654 | view: function(event) { | |
640 | this.editButton.show(); |
|
655 | this.editButton.show(); | |
641 | this.deleteButton.show(); |
|
656 | this.deleteButton.show(); | |
642 | this.editFields.hide(); |
|
657 | this.editFields.hide(); | |
643 | this.closeButton.hide(); |
|
658 | this.closeButton.hide(); | |
644 | this.viewFields.show(); |
|
659 | this.viewFields.show(); | |
645 | } |
|
660 | } | |
646 | }; |
|
661 | }; | |
647 |
|
662 | |||
648 | var ReviewersPanel = { |
|
663 | var ReviewersPanel = { | |
649 | editButton: $('#open_edit_reviewers'), |
|
664 | editButton: $('#open_edit_reviewers'), | |
650 | closeButton: $('#close_edit_reviewers'), |
|
665 | closeButton: $('#close_edit_reviewers'), | |
651 | addButton: $('#add_reviewer'), |
|
666 | addButton: $('#add_reviewer'), | |
652 | removeButtons: $('.reviewer_member_remove,.reviewer_member_mandatory_remove'), |
|
667 | removeButtons: $('.reviewer_member_remove,.reviewer_member_mandatory_remove'), | |
653 |
|
668 | |||
654 | init: function() { |
|
669 | init: function() { | |
655 | var self = this; |
|
670 | var self = this; | |
656 | this.editButton.on('click', function(e) { self.edit(); }); |
|
671 | this.editButton.on('click', function(e) { self.edit(); }); | |
657 | this.closeButton.on('click', function(e) { self.close(); }); |
|
672 | this.closeButton.on('click', function(e) { self.close(); }); | |
658 | }, |
|
673 | }, | |
659 |
|
674 | |||
660 | edit: function(event) { |
|
675 | edit: function(event) { | |
661 | this.editButton.hide(); |
|
676 | this.editButton.hide(); | |
662 | this.closeButton.show(); |
|
677 | this.closeButton.show(); | |
663 | this.addButton.show(); |
|
678 | this.addButton.show(); | |
664 | this.removeButtons.css('visibility', 'visible'); |
|
679 | this.removeButtons.css('visibility', 'visible'); | |
665 | // review rules |
|
680 | // review rules | |
666 | reviewersController.loadReviewRules( |
|
681 | reviewersController.loadReviewRules( | |
667 | ${c.pull_request.reviewer_data_json | n}); |
|
682 | ${c.pull_request.reviewer_data_json | n}); | |
668 | }, |
|
683 | }, | |
669 |
|
684 | |||
670 | close: function(event) { |
|
685 | close: function(event) { | |
671 | this.editButton.show(); |
|
686 | this.editButton.show(); | |
672 | this.closeButton.hide(); |
|
687 | this.closeButton.hide(); | |
673 | this.addButton.hide(); |
|
688 | this.addButton.hide(); | |
674 | this.removeButtons.css('visibility', 'hidden'); |
|
689 | this.removeButtons.css('visibility', 'hidden'); | |
675 | // hide review rules |
|
690 | // hide review rules | |
676 | reviewersController.hideReviewRules() |
|
691 | reviewersController.hideReviewRules() | |
677 | } |
|
692 | } | |
678 | }; |
|
693 | }; | |
679 |
|
694 | |||
680 | PRDetails.init(); |
|
695 | PRDetails.init(); | |
681 | ReviewersPanel.init(); |
|
696 | ReviewersPanel.init(); | |
682 |
|
697 | |||
683 | showOutdated = function(self){ |
|
698 | showOutdated = function(self){ | |
684 | $('.comment-inline.comment-outdated').show(); |
|
699 | $('.comment-inline.comment-outdated').show(); | |
685 | $('.filediff-outdated').show(); |
|
700 | $('.filediff-outdated').show(); | |
686 | $('.showOutdatedComments').hide(); |
|
701 | $('.showOutdatedComments').hide(); | |
687 | $('.hideOutdatedComments').show(); |
|
702 | $('.hideOutdatedComments').show(); | |
688 | }; |
|
703 | }; | |
689 |
|
704 | |||
690 | hideOutdated = function(self){ |
|
705 | hideOutdated = function(self){ | |
691 | $('.comment-inline.comment-outdated').hide(); |
|
706 | $('.comment-inline.comment-outdated').hide(); | |
692 | $('.filediff-outdated').hide(); |
|
707 | $('.filediff-outdated').hide(); | |
693 | $('.hideOutdatedComments').hide(); |
|
708 | $('.hideOutdatedComments').hide(); | |
694 | $('.showOutdatedComments').show(); |
|
709 | $('.showOutdatedComments').show(); | |
695 | }; |
|
710 | }; | |
696 |
|
711 | |||
697 | refreshMergeChecks = function(){ |
|
712 | refreshMergeChecks = function(){ | |
698 | var loadUrl = "${request.current_route_path(_query=dict(merge_checks=1))}"; |
|
713 | var loadUrl = "${request.current_route_path(_query=dict(merge_checks=1))}"; | |
699 | $('.pull-request-merge').css('opacity', 0.3); |
|
714 | $('.pull-request-merge').css('opacity', 0.3); | |
700 | $('.action-buttons-extra').css('opacity', 0.3); |
|
715 | $('.action-buttons-extra').css('opacity', 0.3); | |
701 |
|
716 | |||
702 | $('.pull-request-merge').load( |
|
717 | $('.pull-request-merge').load( | |
703 | loadUrl, function() { |
|
718 | loadUrl, function() { | |
704 | $('.pull-request-merge').css('opacity', 1); |
|
719 | $('.pull-request-merge').css('opacity', 1); | |
705 |
|
720 | |||
706 | $('.action-buttons-extra').css('opacity', 1); |
|
721 | $('.action-buttons-extra').css('opacity', 1); | |
707 | } |
|
722 | } | |
708 | ); |
|
723 | ); | |
709 | }; |
|
724 | }; | |
710 |
|
725 | |||
711 | closePullRequest = function (status) { |
|
726 | closePullRequest = function (status) { | |
712 | if (!confirm(_gettext('Are you sure to close this pull request without merging?'))) { |
|
727 | if (!confirm(_gettext('Are you sure to close this pull request without merging?'))) { | |
713 | return false; |
|
728 | return false; | |
714 | } |
|
729 | } | |
715 | // inject closing flag |
|
730 | // inject closing flag | |
716 | $('.action-buttons-extra').append('<input type="hidden" class="close-pr-input" id="close_pull_request" value="1">'); |
|
731 | $('.action-buttons-extra').append('<input type="hidden" class="close-pr-input" id="close_pull_request" value="1">'); | |
717 | $(generalCommentForm.statusChange).select2("val", status).trigger('change'); |
|
732 | $(generalCommentForm.statusChange).select2("val", status).trigger('change'); | |
718 | $(generalCommentForm.submitForm).submit(); |
|
733 | $(generalCommentForm.submitForm).submit(); | |
719 | }; |
|
734 | }; | |
720 |
|
735 | |||
721 | $('#show-outdated-comments').on('click', function(e){ |
|
736 | $('#show-outdated-comments').on('click', function(e){ | |
722 | var button = $(this); |
|
737 | var button = $(this); | |
723 | var outdated = $('.comment-outdated'); |
|
738 | var outdated = $('.comment-outdated'); | |
724 |
|
739 | |||
725 | if (button.html() === "(Show)") { |
|
740 | if (button.html() === "(Show)") { | |
726 | button.html("(Hide)"); |
|
741 | button.html("(Hide)"); | |
727 | outdated.show(); |
|
742 | outdated.show(); | |
728 | } else { |
|
743 | } else { | |
729 | button.html("(Show)"); |
|
744 | button.html("(Show)"); | |
730 | outdated.hide(); |
|
745 | outdated.hide(); | |
731 | } |
|
746 | } | |
732 | }); |
|
747 | }); | |
733 |
|
748 | |||
734 | $('.show-inline-comments').on('change', function(e){ |
|
749 | $('.show-inline-comments').on('change', function(e){ | |
735 | var show = 'none'; |
|
750 | var show = 'none'; | |
736 | var target = e.currentTarget; |
|
751 | var target = e.currentTarget; | |
737 | if(target.checked){ |
|
752 | if(target.checked){ | |
738 | show = '' |
|
753 | show = '' | |
739 | } |
|
754 | } | |
740 | var boxid = $(target).attr('id_for'); |
|
755 | var boxid = $(target).attr('id_for'); | |
741 | var comments = $('#{0} .inline-comments'.format(boxid)); |
|
756 | var comments = $('#{0} .inline-comments'.format(boxid)); | |
742 | var fn_display = function(idx){ |
|
757 | var fn_display = function(idx){ | |
743 | $(this).css('display', show); |
|
758 | $(this).css('display', show); | |
744 | }; |
|
759 | }; | |
745 | $(comments).each(fn_display); |
|
760 | $(comments).each(fn_display); | |
746 | var btns = $('#{0} .inline-comments-button'.format(boxid)); |
|
761 | var btns = $('#{0} .inline-comments-button'.format(boxid)); | |
747 | $(btns).each(fn_display); |
|
762 | $(btns).each(fn_display); | |
748 | }); |
|
763 | }); | |
749 |
|
764 | |||
750 | $('#merge_pull_request_form').submit(function() { |
|
765 | $('#merge_pull_request_form').submit(function() { | |
751 | if (!$('#merge_pull_request').attr('disabled')) { |
|
766 | if (!$('#merge_pull_request').attr('disabled')) { | |
752 | $('#merge_pull_request').attr('disabled', 'disabled'); |
|
767 | $('#merge_pull_request').attr('disabled', 'disabled'); | |
753 | } |
|
768 | } | |
754 | return true; |
|
769 | return true; | |
755 | }); |
|
770 | }); | |
756 |
|
771 | |||
757 | $('#edit_pull_request').on('click', function(e){ |
|
772 | $('#edit_pull_request').on('click', function(e){ | |
758 | var title = $('#pr-title-input').val(); |
|
773 | var title = $('#pr-title-input').val(); | |
759 | var description = codeMirrorInstance.getValue(); |
|
774 | var description = codeMirrorInstance.getValue(); | |
760 | var renderer = $('#pr-renderer-input').val(); |
|
775 | var renderer = $('#pr-renderer-input').val(); | |
761 | editPullRequest( |
|
776 | editPullRequest( | |
762 | "${c.repo_name}", "${c.pull_request.pull_request_id}", |
|
777 | "${c.repo_name}", "${c.pull_request.pull_request_id}", | |
763 | title, description, renderer); |
|
778 | title, description, renderer); | |
764 | }); |
|
779 | }); | |
765 |
|
780 | |||
766 | $('#update_pull_request').on('click', function(e){ |
|
781 | $('#update_pull_request').on('click', function(e){ | |
767 | $(this).attr('disabled', 'disabled'); |
|
782 | $(this).attr('disabled', 'disabled'); | |
768 | $(this).addClass('disabled'); |
|
783 | $(this).addClass('disabled'); | |
769 | $(this).html(_gettext('Saving...')); |
|
784 | $(this).html(_gettext('Saving...')); | |
770 | reviewersController.updateReviewers( |
|
785 | reviewersController.updateReviewers( | |
771 | "${c.repo_name}", "${c.pull_request.pull_request_id}"); |
|
786 | "${c.repo_name}", "${c.pull_request.pull_request_id}"); | |
772 | }); |
|
787 | }); | |
773 |
|
788 | |||
774 |
|
789 | |||
775 | // fixing issue with caches on firefox |
|
790 | // fixing issue with caches on firefox | |
776 | $('#update_commits').removeAttr("disabled"); |
|
791 | $('#update_commits').removeAttr("disabled"); | |
777 |
|
792 | |||
778 | $('.show-inline-comments').on('click', function(e){ |
|
793 | $('.show-inline-comments').on('click', function(e){ | |
779 | var boxid = $(this).attr('data-comment-id'); |
|
794 | var boxid = $(this).attr('data-comment-id'); | |
780 | var button = $(this); |
|
795 | var button = $(this); | |
781 |
|
796 | |||
782 | if(button.hasClass("comments-visible")) { |
|
797 | if(button.hasClass("comments-visible")) { | |
783 | $('#{0} .inline-comments'.format(boxid)).each(function(index){ |
|
798 | $('#{0} .inline-comments'.format(boxid)).each(function(index){ | |
784 | $(this).hide(); |
|
799 | $(this).hide(); | |
785 | }); |
|
800 | }); | |
786 | button.removeClass("comments-visible"); |
|
801 | button.removeClass("comments-visible"); | |
787 | } else { |
|
802 | } else { | |
788 | $('#{0} .inline-comments'.format(boxid)).each(function(index){ |
|
803 | $('#{0} .inline-comments'.format(boxid)).each(function(index){ | |
789 | $(this).show(); |
|
804 | $(this).show(); | |
790 | }); |
|
805 | }); | |
791 | button.addClass("comments-visible"); |
|
806 | button.addClass("comments-visible"); | |
792 | } |
|
807 | } | |
793 | }); |
|
808 | }); | |
794 |
|
809 | |||
795 | // register submit callback on commentForm form to track TODOs |
|
810 | // register submit callback on commentForm form to track TODOs | |
796 | window.commentFormGlobalSubmitSuccessCallback = function(){ |
|
811 | window.commentFormGlobalSubmitSuccessCallback = function(){ | |
797 | refreshMergeChecks(); |
|
812 | refreshMergeChecks(); | |
798 | }; |
|
813 | }; | |
799 |
|
814 | |||
800 | ReviewerAutoComplete('#user'); |
|
815 | ReviewerAutoComplete('#user'); | |
801 |
|
816 | |||
802 | }) |
|
817 | }) | |
803 |
|
818 | |||
804 | </script> |
|
819 | </script> | |
805 |
|
||||
806 | </div> |
|
|||
807 | </div> |
|
820 | </div> | |
808 |
|
821 | |||
809 | </%def> |
|
822 | </%def> |
@@ -1,143 +1,140 b'' | |||||
1 | <%inherit file="/base/base.mako"/> |
|
1 | <%inherit file="/base/base.mako"/> | |
2 |
|
2 | |||
3 | <%def name="title()"> |
|
3 | <%def name="title()"> | |
4 | ${_('{} Pull Requests').format(c.repo_name)} |
|
4 | ${_('{} Pull Requests').format(c.repo_name)} | |
5 | %if c.rhodecode_name: |
|
5 | %if c.rhodecode_name: | |
6 | · ${h.branding(c.rhodecode_name)} |
|
6 | · ${h.branding(c.rhodecode_name)} | |
7 | %endif |
|
7 | %endif | |
8 | </%def> |
|
8 | </%def> | |
9 |
|
9 | |||
10 | <%def name="breadcrumbs_links()"></%def> |
|
10 | <%def name="breadcrumbs_links()"></%def> | |
11 |
|
11 | |||
12 | <%def name="menu_bar_nav()"> |
|
12 | <%def name="menu_bar_nav()"> | |
13 | ${self.menu_items(active='repositories')} |
|
13 | ${self.menu_items(active='repositories')} | |
14 | </%def> |
|
14 | </%def> | |
15 |
|
15 | |||
16 |
|
16 | |||
17 | <%def name="menu_bar_subnav()"> |
|
17 | <%def name="menu_bar_subnav()"> | |
18 | ${self.repo_menu(active='showpullrequest')} |
|
18 | ${self.repo_menu(active='showpullrequest')} | |
19 | </%def> |
|
19 | </%def> | |
20 |
|
20 | |||
21 |
|
21 | |||
22 | <%def name="main()"> |
|
22 | <%def name="main()"> | |
23 |
|
23 | |||
24 | <div class="box"> |
|
24 | <div class="box"> | |
25 | <div class="title"> |
|
25 | <div class="title"> | |
26 | <ul class="button-links"> |
|
26 | <ul class="button-links"> | |
27 | <li class="btn ${h.is_active('open', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':0})}">${_('Opened')}</a></li> |
|
27 | <li class="btn ${h.is_active('open', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':0})}">${_('Opened')}</a></li> | |
28 | <li class="btn ${h.is_active('my', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':0,'my':1})}">${_('Opened by me')}</a></li> |
|
28 | <li class="btn ${h.is_active('my', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':0,'my':1})}">${_('Opened by me')}</a></li> | |
29 | <li class="btn ${h.is_active('awaiting', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':0,'awaiting_review':1})}">${_('Awaiting review')}</a></li> |
|
29 | <li class="btn ${h.is_active('awaiting', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':0,'awaiting_review':1})}">${_('Awaiting review')}</a></li> | |
30 | <li class="btn ${h.is_active('awaiting_my', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':0,'awaiting_my_review':1})}">${_('Awaiting my review')}</a></li> |
|
30 | <li class="btn ${h.is_active('awaiting_my', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':0,'awaiting_my_review':1})}">${_('Awaiting my review')}</a></li> | |
31 | <li class="btn ${h.is_active('closed', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':0,'closed':1})}">${_('Closed')}</a></li> |
|
31 | <li class="btn ${h.is_active('closed', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':0,'closed':1})}">${_('Closed')}</a></li> | |
32 | <li class="btn ${h.is_active('source', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':1})}">${_('From this repo')}</a></li> |
|
32 | <li class="btn ${h.is_active('source', c.active)}"><a href="${h.route_path('pullrequest_show_all',repo_name=c.repo_name, _query={'source':1})}">${_('From this repo')}</a></li> | |
33 | </ul> |
|
33 | </ul> | |
34 |
|
34 | |||
35 | <ul class="links"> |
|
35 | <ul class="links"> | |
36 | % if c.rhodecode_user.username != h.DEFAULT_USER: |
|
36 | % if c.rhodecode_user.username != h.DEFAULT_USER: | |
37 | <li> |
|
37 | <li> | |
38 | <span> |
|
38 | <span> | |
39 | <a id="open_new_pull_request" class="btn btn-small btn-success" href="${h.route_path('pullrequest_new',repo_name=c.repo_name)}"> |
|
39 | <a id="open_new_pull_request" class="btn btn-small btn-success" href="${h.route_path('pullrequest_new',repo_name=c.repo_name)}"> | |
40 | ${_('Open new Pull Request')} |
|
40 | ${_('Open new Pull Request')} | |
41 | </a> |
|
41 | </a> | |
42 | </span> |
|
42 | </span> | |
43 | </li> |
|
43 | </li> | |
44 | % endif |
|
44 | % endif | |
45 |
|
45 | |||
46 | <li> |
|
46 | <li> | |
47 | <div class="grid-quick-filter"> |
|
47 | <div class="grid-quick-filter"> | |
48 | <ul class="grid-filter-box"> |
|
48 | <ul class="grid-filter-box"> | |
49 | <li class="grid-filter-box-icon"> |
|
49 | <li class="grid-filter-box-icon"> | |
50 | <i class="icon-search"></i> |
|
50 | <i class="icon-search"></i> | |
51 | </li> |
|
51 | </li> | |
52 | <li class="grid-filter-box-input"> |
|
52 | <li class="grid-filter-box-input"> | |
53 | <input class="q_filter_box" id="q_filter" size="15" type="text" name="filter" placeholder="${_('quick filter...')}" value=""/> |
|
53 | <input class="q_filter_box" id="q_filter" size="15" type="text" name="filter" placeholder="${_('quick filter...')}" value=""/> | |
54 | </li> |
|
54 | </li> | |
55 | </ul> |
|
55 | </ul> | |
56 | </div> |
|
56 | </div> | |
57 | </li> |
|
57 | </li> | |
58 |
|
58 | |||
59 | </ul> |
|
59 | </ul> | |
60 |
|
60 | |||
61 | </div> |
|
61 | </div> | |
62 |
|
62 | |||
63 | <div class="main-content-full-width"> |
|
63 | <div class="main-content-full-width"> | |
64 | <table id="pull_request_list_table" class="display"></table> |
|
64 | <table id="pull_request_list_table" class="display"></table> | |
65 | </div> |
|
65 | </div> | |
66 |
|
66 | |||
67 | </div> |
|
67 | </div> | |
68 |
|
68 | |||
69 | <script type="text/javascript"> |
|
69 | <script type="text/javascript"> | |
70 | $(document).ready(function() { |
|
70 | $(document).ready(function() { | |
71 | var $pullRequestListTable = $('#pull_request_list_table'); |
|
71 | var $pullRequestListTable = $('#pull_request_list_table'); | |
72 |
|
72 | |||
73 | // object list |
|
73 | // object list | |
74 | $pullRequestListTable.DataTable({ |
|
74 | $pullRequestListTable.DataTable({ | |
75 | processing: true, |
|
75 | processing: true, | |
76 | serverSide: true, |
|
76 | serverSide: true, | |
77 | ajax: { |
|
77 | ajax: { | |
78 | "url": "${h.route_path('pullrequest_show_all_data', repo_name=c.repo_name)}", |
|
78 | "url": "${h.route_path('pullrequest_show_all_data', repo_name=c.repo_name)}", | |
79 | "data": function (d) { |
|
79 | "data": function (d) { | |
80 | d.source = "${c.source}"; |
|
80 | d.source = "${c.source}"; | |
81 | d.closed = "${c.closed}"; |
|
81 | d.closed = "${c.closed}"; | |
82 | d.my = "${c.my}"; |
|
82 | d.my = "${c.my}"; | |
83 | d.awaiting_review = "${c.awaiting_review}"; |
|
83 | d.awaiting_review = "${c.awaiting_review}"; | |
84 | d.awaiting_my_review = "${c.awaiting_my_review}"; |
|
84 | d.awaiting_my_review = "${c.awaiting_my_review}"; | |
85 | } |
|
85 | } | |
86 | }, |
|
86 | }, | |
87 | dom: 'rtp', |
|
87 | dom: 'rtp', | |
88 | pageLength: ${c.visual.dashboard_items}, |
|
88 | pageLength: ${c.visual.dashboard_items}, | |
89 | order: [[ 1, "desc" ]], |
|
89 | order: [[ 1, "desc" ]], | |
90 | columns: [ |
|
90 | columns: [ | |
91 | { data: {"_": "status", |
|
91 | { data: {"_": "status", | |
92 | "sort": "status"}, title: "", className: "td-status", orderable: false}, |
|
92 | "sort": "status"}, title: "", className: "td-status", orderable: false}, | |
93 | { data: {"_": "name", |
|
93 | { data: {"_": "name", | |
94 | "sort": "name_raw"}, title: "${_('Id')}", className: "td-componentname", "type": "num" }, |
|
94 | "sort": "name_raw"}, title: "${_('Id')}", className: "td-componentname", "type": "num" }, | |
95 | { data: {"_": "title", |
|
95 | { data: {"_": "title", | |
96 | "sort": "title"}, title: "${_('Title')}", className: "td-description" }, |
|
96 | "sort": "title"}, title: "${_('Title')}", className: "td-description" }, | |
97 | { data: {"_": "author", |
|
97 | { data: {"_": "author", | |
98 | "sort": "author_raw"}, title: "${_('Author')}", className: "td-user", orderable: false }, |
|
98 | "sort": "author_raw"}, title: "${_('Author')}", className: "td-user", orderable: false }, | |
99 | { data: {"_": "comments", |
|
99 | { data: {"_": "comments", | |
100 | "sort": "comments_raw"}, title: "", className: "td-comments", orderable: false}, |
|
100 | "sort": "comments_raw"}, title: "", className: "td-comments", orderable: false}, | |
101 | { data: {"_": "updated_on", |
|
101 | { data: {"_": "updated_on", | |
102 | "sort": "updated_on_raw"}, title: "${_('Last Update')}", className: "td-time" } |
|
102 | "sort": "updated_on_raw"}, title: "${_('Last Update')}", className: "td-time" } | |
103 | ], |
|
103 | ], | |
104 | language: { |
|
104 | language: { | |
105 | paginate: DEFAULT_GRID_PAGINATION, |
|
105 | paginate: DEFAULT_GRID_PAGINATION, | |
106 | sProcessing: _gettext('loading...'), |
|
106 | sProcessing: _gettext('loading...'), | |
107 | emptyTable: _gettext("No pull requests available yet.") |
|
107 | emptyTable: _gettext("No pull requests available yet.") | |
108 | }, |
|
108 | }, | |
109 | "drawCallback": function( settings, json ) { |
|
109 | "drawCallback": function( settings, json ) { | |
110 | timeagoActivate(); |
|
110 | timeagoActivate(); | |
111 | tooltipActivate(); |
|
111 | tooltipActivate(); | |
112 | }, |
|
112 | }, | |
113 | "createdRow": function ( row, data, index ) { |
|
113 | "createdRow": function ( row, data, index ) { | |
114 | if (data['closed']) { |
|
114 | if (data['closed']) { | |
115 | $(row).addClass('closed'); |
|
115 | $(row).addClass('closed'); | |
116 | } |
|
116 | } | |
117 | if (data['state'] !== 'created') { |
|
|||
118 | $(row).addClass('state-' + data['state']); |
|
|||
119 | } |
|
|||
120 | } |
|
117 | } | |
121 | }); |
|
118 | }); | |
122 |
|
119 | |||
123 | $pullRequestListTable.on('xhr.dt', function(e, settings, json, xhr){ |
|
120 | $pullRequestListTable.on('xhr.dt', function(e, settings, json, xhr){ | |
124 | $pullRequestListTable.css('opacity', 1); |
|
121 | $pullRequestListTable.css('opacity', 1); | |
125 | }); |
|
122 | }); | |
126 |
|
123 | |||
127 | $pullRequestListTable.on('preXhr.dt', function(e, settings, data){ |
|
124 | $pullRequestListTable.on('preXhr.dt', function(e, settings, data){ | |
128 | $pullRequestListTable.css('opacity', 0.3); |
|
125 | $pullRequestListTable.css('opacity', 0.3); | |
129 | }); |
|
126 | }); | |
130 |
|
127 | |||
131 | // filter |
|
128 | // filter | |
132 | $('#q_filter').on('keyup', |
|
129 | $('#q_filter').on('keyup', | |
133 | $.debounce(250, function() { |
|
130 | $.debounce(250, function() { | |
134 | $pullRequestListTable.DataTable().search( |
|
131 | $pullRequestListTable.DataTable().search( | |
135 | $('#q_filter').val() |
|
132 | $('#q_filter').val() | |
136 | ).draw(); |
|
133 | ).draw(); | |
137 | }) |
|
134 | }) | |
138 | ); |
|
135 | ); | |
139 |
|
136 | |||
140 | }); |
|
137 | }); | |
141 |
|
138 | |||
142 | </script> |
|
139 | </script> | |
143 | </%def> |
|
140 | </%def> |
General Comments 0
You need to be logged in to leave comments.
Login now