##// END OF EJS Templates
fixed issue with formatting escaping on url used in changelog js....
marcink -
r3979:04242759 default
parent child Browse files
Show More
@@ -1,290 +1,296 b''
1 1 ## -*- coding: utf-8 -*-
2 2
3 3 <%inherit file="/base/base.html"/>
4 4
5 5 <%def name="title()">
6 6 ${_('%s Changelog') % c.repo_name} &middot;
7 7 %if c.changelog_for_path:
8 8 /${c.changelog_for_path} &middot;
9 9 %endif
10 10 ${c.rhodecode_name}
11 11 </%def>
12 12
13 13 <%def name="breadcrumbs_links()">
14 14 <% size = c.size if c.size <= c.total_cs else c.total_cs %>
15 15 ${_('Changelog')}
16 16 %if c.changelog_for_path:
17 17 - /${c.changelog_for_path}
18 18 %endif
19 19 - ${ungettext('showing %d out of %d revision', 'showing %d out of %d revisions', size) % (size, c.total_cs)}
20 20 </%def>
21 21
22 22 <%def name="page_nav()">
23 23 ${self.menu('repositories')}
24 24 </%def>
25 25
26 26 <%def name="main()">
27 27 ${self.context_bar('changelog')}
28 28 <div class="box">
29 29 <!-- box / title -->
30 30 <div class="title">
31 31 ${self.breadcrumbs()}
32 32 </div>
33 33 <div class="table">
34 34 % if c.pagination:
35 35 <div id="graph">
36 36 <div style="display:${'none' if c.changelog_for_path else ''}">
37 37 <div class="info_box" style="clear: both;padding: 10px 6px;min-height: 12px;text-align: right;">
38 38 <a href="#" class="ui-btn small" id="rev_range_container" style="display:none"></a>
39 39 <a href="#" class="ui-btn small" id="rev_range_clear" style="display:none">${_('Clear selection')}</a>
40 40
41 41 %if c.rhodecode_db_repo.fork:
42 42 <a id="compare_fork" title="${_('Compare fork with %s' % c.rhodecode_db_repo.fork.repo_name)}" href="${h.url('compare_url',repo_name=c.rhodecode_db_repo.fork.repo_name,org_ref_type='branch',org_ref='default',other_repo=c.repo_name,other_ref_type='branch',other_ref=request.GET.get('branch') or 'default',merge=1)}" class="ui-btn small">${_('Compare fork with parent')}</a>
43 43 %endif
44 44 %if h.is_hg(c.rhodecode_repo):
45 45 <a id="open_new_pr" href="${h.url('pullrequest_home',repo_name=c.repo_name)}" class="ui-btn small">${_('Open new pull request')}</a>
46 46 %endif
47 47 </div>
48 48 <div class="container_header">
49 49 ${h.form(h.url.current(),method='get')}
50 50 <div style="float:left">
51 51 ${h.submit('set',_('Show'),class_="ui-btn")}
52 52 ${h.text('size',size=1,value=c.size)}
53 53 ${_('revisions')}
54 54 </div>
55 55 ${h.end_form()}
56 56 <div style="float:right">${h.select('branch_filter',c.branch_name,c.branch_filters)}</div>
57 57 </div>
58 58 </div>
59 59 <div id="graph_nodes">
60 60 <canvas id="graph_canvas"></canvas>
61 61 </div>
62 62 <div id="graph_content">
63 63
64 64 <table id="changesets">
65 65 <tbody>
66 66 %for cnt,cs in enumerate(c.pagination):
67 67 <tr id="chg_${cnt+1}" class="container ${'tablerow%s' % (cnt%2)}">
68 68 <td class="checkbox">
69 69 %if c.changelog_for_path:
70 70 ${h.checkbox(cs.raw_id,class_="changeset_range", disabled="disabled")}
71 71 %else:
72 72 ${h.checkbox(cs.raw_id,class_="changeset_range")}
73 73 %endif
74 74 <td class="status">
75 75 %if c.statuses.get(cs.raw_id):
76 76 <div class="changeset-status-ico">
77 77 %if c.statuses.get(cs.raw_id)[2]:
78 78 <a class="tooltip" title="${_('Click to open associated pull request #%s' % c.statuses.get(cs.raw_id)[2])}" href="${h.url('pullrequest_show',repo_name=c.statuses.get(cs.raw_id)[3],pull_request_id=c.statuses.get(cs.raw_id)[2])}">
79 79 <img src="${h.url('/images/icons/flag_status_%s.png' % c.statuses.get(cs.raw_id)[0])}" />
80 80 </a>
81 81 %else:
82 82 <img src="${h.url('/images/icons/flag_status_%s.png' % c.statuses.get(cs.raw_id)[0])}" />
83 83 %endif
84 84 </div>
85 85 %endif
86 86 </td>
87 87 <td class="author">
88 88 <img alt="gravatar" src="${h.gravatar_url(h.email_or_none(cs.author),16)}"/>
89 89 <span title="${cs.author}" class="user">${h.shorter(h.person(cs.author),22)}</span>
90 90 </td>
91 91 <td class="hash" style="width:${len(h.show_id(cs))*6.5}px">
92 92 <a href="${h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id)}">
93 93 <span class="changeset_hash">${h.show_id(cs)}</span>
94 94 </a>
95 95 </td>
96 96 <td class="date">
97 97 <div class="date">${h.age(cs.date,True)}</div>
98 98 </td>
99 99 <td class="mid">
100 100 <div class="log-container">
101 101 <div class="message">${h.urlify_commit(cs.message, c.repo_name,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}</div>
102 102 <div class="expand"><span class="expandtext">&darr; ${_('Show more')} &darr;</span></div>
103 103 <div class="extra-container">
104 104 %if c.comments.get(cs.raw_id):
105 105 <div class="comments-container">
106 106 <div class="comments-cnt" title="${('comments')}">
107 107 <a href="${h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id,anchor='comment-%s' % c.comments[cs.raw_id][0].comment_id)}">
108 108 ${len(c.comments[cs.raw_id])}
109 109 </a>
110 110 </div>
111 111 </div>
112 112 %endif
113 113 %if h.is_hg(c.rhodecode_repo):
114 114 %for book in cs.bookmarks:
115 115 <div class="booktag" title="${_('Bookmark %s') % book}">
116 116 ${h.link_to(h.shorter(book),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
117 117 </div>
118 118 %endfor
119 119 %endif
120 120 %for tag in cs.tags:
121 121 <div class="tagtag" title="${_('Tag %s') % tag}">
122 122 ${h.link_to(h.shorter(tag),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
123 123 </div>
124 124 %endfor
125 125 %if (not c.branch_name) and cs.branch:
126 126 <div class="branchtag" title="${_('Branch %s' % cs.branch)}">
127 127 ${h.link_to(h.shorter(cs.branch),h.url('changelog_home',repo_name=c.repo_name,branch=cs.branch))}
128 128 </div>
129 129 %endif
130 130 </div>
131 131 </div>
132 132 </td>
133 133 </tr>
134 134 %endfor
135 135 </tbody>
136 136 </table>
137 137
138 138 <div class="pagination-wh pagination-left">
139 139 ${c.pagination.pager('$link_previous ~2~ $link_next')}
140 140 </div>
141 141 </div>
142 142 </div>
143 143
144 144 <script type="text/javascript" src="${h.url('/js/graph.js')}"></script>
145 145 <script type="text/javascript">
146 146 YAHOO.util.Event.onDOMReady(function(){
147 147
148 148 //Monitor range checkboxes and build a link to changesets
149 149 //ranges
150 150 var checkboxes = YUD.getElementsByClassName('changeset_range');
151 var url_tmpl = "${h.url('changeset_home',repo_name=c.repo_name,revision='__REVRANGE__')}";
151 // register our routes needed for this view
152 pyroutes.register('changeset_home', "${h.url('changeset_home', repo_name='%(repo_name)s', revision='%(revision)s')}", ['repo_name', 'revision']);
153 pyroutes.register('changelog_home', "${h.url('changelog_home', repo_name='%(repo_name)s')}", ['repo_name']);
154 pyroutes.register('pullrequest_home', "${h.url('pullrequest_home', repo_name='%(repo_name)s')}", ['repo_name']);
152 155
153 156 var checkbox_checker = function(e){
154 157 var checked_checkboxes = [];
155 158 for (pos in checkboxes){
156 159 if(checkboxes[pos].checked){
157 160 checked_checkboxes.push(checkboxes[pos]);
158 161 }
159 162 }
160 163 if(YUD.get('open_new_pr')){
161 164 if(checked_checkboxes.length>1){
162 165 YUD.setStyle('open_new_pr','display','none');
163 166 } else {
164 167 YUD.setStyle('open_new_pr','display','');
165 168 if(checked_checkboxes.length>0){
166 169 YUD.get('open_new_pr').innerHTML = _TM['Open new pull request for selected changesets'];
167 170 }else{
168 171 YUD.get('open_new_pr').innerHTML = _TM['Open new pull request'];
169 172 }
170 173 }
171 174 }
172 175
173 176 if(checked_checkboxes.length>0){
174 177 var rev_end = checked_checkboxes[0].name;
175 178 var rev_start = checked_checkboxes[checked_checkboxes.length-1].name;
176 var url = url_tmpl.replace('__REVRANGE__',
177 rev_start+'...'+rev_end);
179 var url = pyroutes.url('changeset_home', {'repo_name': '${c.repo_name}',
180 'revision': rev_start+'...'+rev_end});
178 181
179 182 var link = (rev_start == rev_end)
180 183 ? _TM['Show selected changeset __S']
181 184 : _TM['Show selected changesets __S -> __E'];
182 185
183 186 link = link.replace('__S',rev_start.substr(0,6));
184 187 link = link.replace('__E',rev_end.substr(0,6));
185 188 YUD.get('rev_range_container').href = url;
186 189 YUD.get('rev_range_container').innerHTML = link;
187 190 YUD.setStyle('rev_range_container','display','');
188 191 YUD.setStyle('rev_range_clear','display','');
189 192
190 var pr_tmpl = "${h.url('pullrequest_home',repo_name=c.repo_name,rev_start='{0}',rev_end='{1}')}";
191 YUD.get('open_new_pr').href = pr_tmpl.format(rev_start,rev_end);
193 YUD.get('open_new_pr').href = pyroutes.url('pullrequest_home',
194 {'repo_name': '${c.repo_name}',
195 'rev_start': rev_start,
196 'rev_end': rev_end})
197
192 198 YUD.setStyle('compare_fork','display','none');
193 199 }else{
194 200 YUD.setStyle('rev_range_container','display','none');
195 201 YUD.setStyle('rev_range_clear','display','none');
196 202 %if c.branch_name:
197 YUD.get('open_new_pr').href = "${h.url('pullrequest_home',repo_name=c.repo_name,branch=c.branch_name)}";
203 YUD.get('open_new_pr').href = pyroutes.url('pullrequest_home',
204 {'repo_name': '${c.repo_name}',
205 'branch':'${c.branch_name}'});
198 206 %else:
199 YUD.get('open_new_pr').href = "${h.url('pullrequest_home',repo_name=c.repo_name)}";
207 YUD.get('open_new_pr').href = pyroutes.url('pullrequest_home',
208 {'repo_name': '${c.repo_name}'});
200 209 %endif
201 210 YUD.setStyle('compare_fork','display','');
202 211 }
203 212 };
204 213 YUE.onDOMReady(checkbox_checker);
205 214 YUE.on(checkboxes,'click', checkbox_checker);
206 215
207 216 YUE.on('rev_range_clear','click',function(e){
208 217 for (var i=0; i<checkboxes.length; i++){
209 218 var cb = checkboxes[i];
210 219 cb.checked = false;
211 220 }
212 221 checkbox_checker();
213 222 YUE.preventDefault(e);
214 223 });
215 224
216 225 var msgs = YUQ('.message');
217 226 // get first element height
218 227 var el = YUQ('#graph_content .container')[0];
219 228 var row_h = el.clientHeight;
220 229 for(var i=0;i<msgs.length;i++){
221 230 var m = msgs[i];
222 231
223 232 var h = m.clientHeight;
224 233 var pad = YUD.getStyle(m,'padding');
225 234 if(h > row_h){
226 235 var offset = row_h - (h+12);
227 236 YUD.setStyle(m.nextElementSibling,'display','block');
228 237 YUD.setStyle(m.nextElementSibling,'margin-top',offset+'px');
229 238 };
230 239 }
231 240 YUE.on(YUQ('.expand'),'click',function(e){
232 241 var elem = e.currentTarget.parentNode.parentNode;
233 242 YUD.setStyle(e.currentTarget,'display','none');
234 243 YUD.setStyle(elem,'height','auto');
235 244
236 245 //redraw the graph, line_count and jsdata are global vars
237 246 set_canvas(100);
238 247
239 248 var r = new BranchRenderer();
240 249 r.render(jsdata,100,line_count);
241 250
242 251 });
243 252
244 253 // change branch filter
245 254 YUE.on(YUD.get('branch_filter'),'change',function(e){
246 255 var selected_branch = e.currentTarget.options[e.currentTarget.selectedIndex].value;
247 var url_main = "${h.url('changelog_home',repo_name=c.repo_name)}";
248 var url = "${h.url('changelog_home',repo_name=c.repo_name,branch='__BRANCH__')}";
249 var url = url.replace('__BRANCH__', encodeURIComponent(selected_branch));
250 256 if(selected_branch != ''){
251 window.location = url;
257 window.location = pyroutes.url('changelog_home', {'repo_name': '${c.repo_name}',
258 'branch':encodeURIComponent(selected_branch)});
252 259 }else{
253 window.location = url_main;
260 window.location = pyroutes.url('changelog_home', {'repo_name': '${c.repo_name}'});
254 261 }
255
256 262 });
257 263
258 264 function set_canvas(width) {
259 265 var c = document.getElementById('graph_nodes');
260 266 var t = document.getElementById('graph_content');
261 267 canvas = document.getElementById('graph_canvas');
262 268 var div_h = t.clientHeight;
263 269 canvas.setAttribute('height',div_h);
264 270 canvas.setAttribute('width',width);
265 271 };
266 272 var heads = 1;
267 273 var line_count = 0;
268 274 var jsdata = ${c.jsdata|n};
269 275
270 276 for (var i=0;i<jsdata.length;i++) {
271 277 var in_l = jsdata[i][2];
272 278 for (var j in in_l) {
273 279 var m = in_l[j][1];
274 280 if (m > line_count)
275 281 line_count = m;
276 282 }
277 283 }
278 284 set_canvas(100);
279 285
280 286 var r = new BranchRenderer();
281 287 r.render(jsdata,100,line_count);
282 288
283 289 });
284 290 </script>
285 291 %else:
286 292 ${_('There are no changes yet')}
287 293 %endif
288 294 </div>
289 295 </div>
290 296 </%def>
General Comments 0
You need to be logged in to leave comments. Login now