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