Show More
@@ -1,296 +1,296 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.repo_context_bar('changelog')} |
|
27 | ${self.repo_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 | // register our routes needed for this view |
|
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']); |
|
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']); |
|
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']); |
|
154 | pyroutes.register('pullrequest_home', "${h.url('pullrequest_home', repo_name='%(repo_name)s')}", ['repo_name']); | |
155 |
|
155 | |||
156 | var checkbox_checker = function(e){ |
|
156 | var checkbox_checker = function(e){ | |
157 | var checked_checkboxes = []; |
|
157 | var checked_checkboxes = []; | |
158 | for (pos in checkboxes){ |
|
158 | for (pos in checkboxes){ | |
159 | if(checkboxes[pos].checked){ |
|
159 | if(checkboxes[pos].checked){ | |
160 | checked_checkboxes.push(checkboxes[pos]); |
|
160 | checked_checkboxes.push(checkboxes[pos]); | |
161 | } |
|
161 | } | |
162 | } |
|
162 | } | |
163 | if(YUD.get('open_new_pr')){ |
|
163 | if(YUD.get('open_new_pr')){ | |
164 | if(checked_checkboxes.length>1){ |
|
164 | if(checked_checkboxes.length>1){ | |
165 | YUD.setStyle('open_new_pr','display','none'); |
|
165 | YUD.setStyle('open_new_pr','display','none'); | |
166 | } else { |
|
166 | } else { | |
167 | YUD.setStyle('open_new_pr','display',''); |
|
167 | YUD.setStyle('open_new_pr','display',''); | |
168 | if(checked_checkboxes.length>0){ |
|
168 | if(checked_checkboxes.length>0){ | |
169 | YUD.get('open_new_pr').innerHTML = _TM['Open new pull request for selected changesets']; |
|
169 | YUD.get('open_new_pr').innerHTML = _TM['Open new pull request for selected changesets']; | |
170 | }else{ |
|
170 | }else{ | |
171 | YUD.get('open_new_pr').innerHTML = _TM['Open new pull request']; |
|
171 | YUD.get('open_new_pr').innerHTML = _TM['Open new pull request']; | |
172 | } |
|
172 | } | |
173 | } |
|
173 | } | |
174 | } |
|
174 | } | |
175 |
|
175 | |||
176 | if(checked_checkboxes.length>0){ |
|
176 | if(checked_checkboxes.length>0){ | |
177 | var rev_end = checked_checkboxes[0].name; |
|
177 | var rev_end = checked_checkboxes[0].name; | |
178 | var rev_start = checked_checkboxes[checked_checkboxes.length-1].name; |
|
178 | var rev_start = checked_checkboxes[checked_checkboxes.length-1].name; | |
179 | var url = pyroutes.url('changeset_home', {'repo_name': '${c.repo_name}', |
|
179 | var url = pyroutes.url('changeset_home', {'repo_name': '${c.repo_name}', | |
180 | 'revision': rev_start+'...'+rev_end}); |
|
180 | 'revision': rev_start+'...'+rev_end}); | |
181 |
|
181 | |||
182 | var link = (rev_start == rev_end) |
|
182 | var link = (rev_start == rev_end) | |
183 | ? _TM['Show selected changeset __S'] |
|
183 | ? _TM['Show selected changeset __S'] | |
184 | : _TM['Show selected changesets __S -> __E']; |
|
184 | : _TM['Show selected changesets __S -> __E']; | |
185 |
|
185 | |||
186 | link = link.replace('__S',rev_start.substr(0,6)); |
|
186 | link = link.replace('__S',rev_start.substr(0,6)); | |
187 | link = link.replace('__E',rev_end.substr(0,6)); |
|
187 | link = link.replace('__E',rev_end.substr(0,6)); | |
188 | YUD.get('rev_range_container').href = url; |
|
188 | YUD.get('rev_range_container').href = url; | |
189 | YUD.get('rev_range_container').innerHTML = link; |
|
189 | YUD.get('rev_range_container').innerHTML = link; | |
190 | YUD.setStyle('rev_range_container','display',''); |
|
190 | YUD.setStyle('rev_range_container','display',''); | |
191 | YUD.setStyle('rev_range_clear','display',''); |
|
191 | YUD.setStyle('rev_range_clear','display',''); | |
192 |
|
192 | |||
193 | YUD.get('open_new_pr').href = pyroutes.url('pullrequest_home', |
|
193 | YUD.get('open_new_pr').href = pyroutes.url('pullrequest_home', | |
194 | {'repo_name': '${c.repo_name}', |
|
194 | {'repo_name': '${c.repo_name}', | |
195 | 'rev_start': rev_start, |
|
195 | 'rev_start': rev_start, | |
196 | 'rev_end': rev_end}) |
|
196 | 'rev_end': rev_end}) | |
197 |
|
197 | |||
198 | YUD.setStyle('compare_fork','display','none'); |
|
198 | YUD.setStyle('compare_fork','display','none'); | |
199 | }else{ |
|
199 | }else{ | |
200 | YUD.setStyle('rev_range_container','display','none'); |
|
200 | YUD.setStyle('rev_range_container','display','none'); | |
201 | YUD.setStyle('rev_range_clear','display','none'); |
|
201 | YUD.setStyle('rev_range_clear','display','none'); | |
202 | %if c.branch_name: |
|
202 | %if c.branch_name: | |
203 | YUD.get('open_new_pr').href = pyroutes.url('pullrequest_home', |
|
203 | YUD.get('open_new_pr').href = pyroutes.url('pullrequest_home', | |
204 | {'repo_name': '${c.repo_name}', |
|
204 | {'repo_name': '${c.repo_name}', | |
205 | 'branch':'${c.branch_name}'}); |
|
205 | 'branch':'${c.branch_name}'}); | |
206 | %else: |
|
206 | %else: | |
207 | YUD.get('open_new_pr').href = pyroutes.url('pullrequest_home', |
|
207 | YUD.get('open_new_pr').href = pyroutes.url('pullrequest_home', | |
208 | {'repo_name': '${c.repo_name}'}); |
|
208 | {'repo_name': '${c.repo_name}'}); | |
209 | %endif |
|
209 | %endif | |
210 | YUD.setStyle('compare_fork','display',''); |
|
210 | YUD.setStyle('compare_fork','display',''); | |
211 | } |
|
211 | } | |
212 | }; |
|
212 | }; | |
213 | YUE.onDOMReady(checkbox_checker); |
|
213 | YUE.onDOMReady(checkbox_checker); | |
214 | YUE.on(checkboxes,'click', checkbox_checker); |
|
214 | YUE.on(checkboxes,'click', checkbox_checker); | |
215 |
|
215 | |||
216 | YUE.on('rev_range_clear','click',function(e){ |
|
216 | YUE.on('rev_range_clear','click',function(e){ | |
217 | for (var i=0; i<checkboxes.length; i++){ |
|
217 | for (var i=0; i<checkboxes.length; i++){ | |
218 | var cb = checkboxes[i]; |
|
218 | var cb = checkboxes[i]; | |
219 | cb.checked = false; |
|
219 | cb.checked = false; | |
220 | } |
|
220 | } | |
221 | checkbox_checker(); |
|
221 | checkbox_checker(); | |
222 | YUE.preventDefault(e); |
|
222 | YUE.preventDefault(e); | |
223 | }); |
|
223 | }); | |
224 |
|
224 | |||
225 | var msgs = YUQ('.message'); |
|
225 | var msgs = YUQ('.message'); | |
226 | // get first element height |
|
226 | // get first element height | |
227 | var el = YUQ('#graph_content .container')[0]; |
|
227 | var el = YUQ('#graph_content .container')[0]; | |
228 | var row_h = el.clientHeight; |
|
228 | var row_h = el.clientHeight; | |
229 | for(var i=0;i<msgs.length;i++){ |
|
229 | for(var i=0;i<msgs.length;i++){ | |
230 | var m = msgs[i]; |
|
230 | var m = msgs[i]; | |
231 |
|
231 | |||
232 | var h = m.clientHeight; |
|
232 | var h = m.clientHeight; | |
233 | var pad = YUD.getStyle(m,'padding'); |
|
233 | var pad = YUD.getStyle(m,'padding'); | |
234 | if(h > row_h){ |
|
234 | if(h > row_h){ | |
235 | var offset = row_h - (h+12); |
|
235 | var offset = row_h - (h+12); | |
236 | YUD.setStyle(m.nextElementSibling,'display','block'); |
|
236 | YUD.setStyle(m.nextElementSibling,'display','block'); | |
237 | YUD.setStyle(m.nextElementSibling,'margin-top',offset+'px'); |
|
237 | YUD.setStyle(m.nextElementSibling,'margin-top',offset+'px'); | |
238 | }; |
|
238 | }; | |
239 | } |
|
239 | } | |
240 | YUE.on(YUQ('.expand'),'click',function(e){ |
|
240 | YUE.on(YUQ('.expand'),'click',function(e){ | |
241 | var elem = e.currentTarget.parentNode.parentNode; |
|
241 | var elem = e.currentTarget.parentNode.parentNode; | |
242 | YUD.setStyle(e.currentTarget,'display','none'); |
|
242 | YUD.setStyle(e.currentTarget,'display','none'); | |
243 | YUD.setStyle(elem,'height','auto'); |
|
243 | YUD.setStyle(elem,'height','auto'); | |
244 |
|
244 | |||
245 | //redraw the graph, line_count and jsdata are global vars |
|
245 | //redraw the graph, line_count and jsdata are global vars | |
246 | set_canvas(100); |
|
246 | set_canvas(100); | |
247 |
|
247 | |||
248 | var r = new BranchRenderer(); |
|
248 | var r = new BranchRenderer(); | |
249 | r.render(jsdata,100,line_count); |
|
249 | r.render(jsdata,100,line_count); | |
250 |
|
250 | |||
251 | }); |
|
251 | }); | |
252 |
|
252 | |||
253 | // change branch filter |
|
253 | // change branch filter | |
254 | YUE.on(YUD.get('branch_filter'),'change',function(e){ |
|
254 | YUE.on(YUD.get('branch_filter'),'change',function(e){ | |
255 | var selected_branch = e.currentTarget.options[e.currentTarget.selectedIndex].value; |
|
255 | var selected_branch = e.currentTarget.options[e.currentTarget.selectedIndex].value; | |
256 | if(selected_branch != ''){ |
|
256 | if(selected_branch != ''){ | |
257 | window.location = pyroutes.url('changelog_home', {'repo_name': '${c.repo_name}', |
|
257 | window.location = pyroutes.url('changelog_home', {'repo_name': '${c.repo_name}', | |
258 |
'branch': |
|
258 | 'branch':selected_branch}); | |
259 | }else{ |
|
259 | }else{ | |
260 | window.location = pyroutes.url('changelog_home', {'repo_name': '${c.repo_name}'}); |
|
260 | window.location = pyroutes.url('changelog_home', {'repo_name': '${c.repo_name}'}); | |
261 | } |
|
261 | } | |
262 | }); |
|
262 | }); | |
263 |
|
263 | |||
264 | function set_canvas(width) { |
|
264 | function set_canvas(width) { | |
265 | var c = document.getElementById('graph_nodes'); |
|
265 | var c = document.getElementById('graph_nodes'); | |
266 | var t = document.getElementById('graph_content'); |
|
266 | var t = document.getElementById('graph_content'); | |
267 | canvas = document.getElementById('graph_canvas'); |
|
267 | canvas = document.getElementById('graph_canvas'); | |
268 | var div_h = t.clientHeight; |
|
268 | var div_h = t.clientHeight; | |
269 | canvas.setAttribute('height',div_h); |
|
269 | canvas.setAttribute('height',div_h); | |
270 | canvas.setAttribute('width',width); |
|
270 | canvas.setAttribute('width',width); | |
271 | }; |
|
271 | }; | |
272 | var heads = 1; |
|
272 | var heads = 1; | |
273 | var line_count = 0; |
|
273 | var line_count = 0; | |
274 | var jsdata = ${c.jsdata|n}; |
|
274 | var jsdata = ${c.jsdata|n}; | |
275 |
|
275 | |||
276 | for (var i=0;i<jsdata.length;i++) { |
|
276 | for (var i=0;i<jsdata.length;i++) { | |
277 | var in_l = jsdata[i][2]; |
|
277 | var in_l = jsdata[i][2]; | |
278 | for (var j in in_l) { |
|
278 | for (var j in in_l) { | |
279 | var m = in_l[j][1]; |
|
279 | var m = in_l[j][1]; | |
280 | if (m > line_count) |
|
280 | if (m > line_count) | |
281 | line_count = m; |
|
281 | line_count = m; | |
282 | } |
|
282 | } | |
283 | } |
|
283 | } | |
284 | set_canvas(100); |
|
284 | set_canvas(100); | |
285 |
|
285 | |||
286 | var r = new BranchRenderer(); |
|
286 | var r = new BranchRenderer(); | |
287 | r.render(jsdata,100,line_count); |
|
287 | r.render(jsdata,100,line_count); | |
288 |
|
288 | |||
289 | }); |
|
289 | }); | |
290 | </script> |
|
290 | </script> | |
291 | %else: |
|
291 | %else: | |
292 | ${_('There are no changes yet')} |
|
292 | ${_('There are no changes yet')} | |
293 | %endif |
|
293 | %endif | |
294 | </div> |
|
294 | </div> | |
295 | </div> |
|
295 | </div> | |
296 | </%def> |
|
296 | </%def> |
General Comments 0
You need to be logged in to leave comments.
Login now