annotate rhodecode/templates/changelog/changelog.html @ 3761:087b50ef7e17 beta

changelog for file history shows that we're in different changelog view
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 15 Apr 2013 22:52:08 +0200
parents 6302a1423a4e
children 5a8918aba869
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
421
cbfb853a0a4c fixed bug when author had " in name, thus breaking the javascript data format
Marcin Kuzminski <marcin@python-works.com>
parents: 401
diff changeset
1 ## -*- coding: utf-8 -*-
cbfb853a0a4c fixed bug when author had " in name, thus breaking the javascript data format
Marcin Kuzminski <marcin@python-works.com>
parents: 401
diff changeset
2
143
787689980bcd Tempaltes changes for changelog and shortlog, changed menu generation in base
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
3 <%inherit file="/base/base.html"/>
787689980bcd Tempaltes changes for changelog and shortlog, changed menu generation in base
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4
787689980bcd Tempaltes changes for changelog and shortlog, changed menu generation in base
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5 <%def name="title()">
3761
087b50ef7e17 changelog for file history shows that we're in different changelog view
Marcin Kuzminski <marcin@python-works.com>
parents: 3760
diff changeset
6 ${_('%s Changelog') % c.repo_name} &middot;
087b50ef7e17 changelog for file history shows that we're in different changelog view
Marcin Kuzminski <marcin@python-works.com>
parents: 3760
diff changeset
7 %if c.changelog_for_path:
087b50ef7e17 changelog for file history shows that we're in different changelog view
Marcin Kuzminski <marcin@python-works.com>
parents: 3760
diff changeset
8 /${c.changelog_for_path} &middot;
087b50ef7e17 changelog for file history shows that we're in different changelog view
Marcin Kuzminski <marcin@python-works.com>
parents: 3760
diff changeset
9 %endif
087b50ef7e17 changelog for file history shows that we're in different changelog view
Marcin Kuzminski <marcin@python-works.com>
parents: 3760
diff changeset
10 ${c.rhodecode_name}
143
787689980bcd Tempaltes changes for changelog and shortlog, changed menu generation in base
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
11 </%def>
362
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 322
diff changeset
12
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 322
diff changeset
13 <%def name="breadcrumbs_links()">
2312
f6d57d055d1e Improved i18n on changelog and user group administration pages.
Vincent Duvert <vincent@duvert.net>
parents: 2269
diff changeset
14 <% size = c.size if c.size <= c.total_cs else c.total_cs %>
3761
087b50ef7e17 changelog for file history shows that we're in different changelog view
Marcin Kuzminski <marcin@python-works.com>
parents: 3760
diff changeset
15 ${_('Changelog')}
087b50ef7e17 changelog for file history shows that we're in different changelog view
Marcin Kuzminski <marcin@python-works.com>
parents: 3760
diff changeset
16 %if c.changelog_for_path:
087b50ef7e17 changelog for file history shows that we're in different changelog view
Marcin Kuzminski <marcin@python-works.com>
parents: 3760
diff changeset
17 - /${c.changelog_for_path}
087b50ef7e17 changelog for file history shows that we're in different changelog view
Marcin Kuzminski <marcin@python-works.com>
parents: 3760
diff changeset
18 %endif
087b50ef7e17 changelog for file history shows that we're in different changelog view
Marcin Kuzminski <marcin@python-works.com>
parents: 3760
diff changeset
19 - ${ungettext('showing %d out of %d revision', 'showing %d out of %d revisions', size) % (size, c.total_cs)}
143
787689980bcd Tempaltes changes for changelog and shortlog, changed menu generation in base
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
20 </%def>
362
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 322
diff changeset
21
143
787689980bcd Tempaltes changes for changelog and shortlog, changed menu generation in base
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
22 <%def name="page_nav()">
3603
eacd33e0c5b3 use valid options for the top menu: repositories, journal, search and admin
Mads Kiilerich <madski@unity3d.com>
parents: 3592
diff changeset
23 ${self.menu('repositories')}
143
787689980bcd Tempaltes changes for changelog and shortlog, changed menu generation in base
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
24 </%def>
787689980bcd Tempaltes changes for changelog and shortlog, changed menu generation in base
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
25
787689980bcd Tempaltes changes for changelog and shortlog, changed menu generation in base
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
26 <%def name="main()">
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
27 ${self.context_bar('changelog')}
362
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 322
diff changeset
28 <div class="box">
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 322
diff changeset
29 <!-- box / title -->
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 322
diff changeset
30 <div class="title">
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 322
diff changeset
31 ${self.breadcrumbs()}
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 322
diff changeset
32 </div>
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 322
diff changeset
33 <div class="table">
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
34 % if c.pagination:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
35 <div id="graph">
3760
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
36 <div style="display:${'none' if c.changelog_for_path else ''}">
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
37 <div class="info_box" style="clear: both;padding: 10px 6px;min-height: 12px;text-align: right;">
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
38 <a href="#" class="ui-btn small" id="rev_range_container" style="display:none"></a>
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
39 <a href="#" class="ui-btn small" id="rev_range_clear" style="display:none">${_('Clear selection')}</a>
2973
9937afa7f093 whitespace cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 2934
diff changeset
40
3760
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
41 %if c.rhodecode_db_repo.fork:
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
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>
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
43 %endif
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
44 %if h.is_hg(c.rhodecode_repo):
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
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>
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
46 %endif
2363
745dda7817ed Rewrote url routes to make all validations and parsing for compare view + added compare fork button into forked repos
Marcin Kuzminski <marcin@python-works.com>
parents: 2346
diff changeset
47 </div>
3760
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
48 <div class="container_header">
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
49 ${h.form(h.url.current(),method='get')}
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
50 <div style="float:left">
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
51 ${h.submit('set',_('Show'),class_="ui-btn")}
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
52 ${h.text('size',size=1,value=c.size)}
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
53 ${_('revisions')}
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
54 </div>
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
55 ${h.end_form()}
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
56 <div style="float:right">${h.select('branch_filter',c.branch_name,c.branch_filters)}</div>
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
57 </div>
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
58 </div>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
59 <div id="graph_nodes">
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
60 <canvas id="graph_canvas"></canvas>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
61 </div>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
62 <div id="graph_content">
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
63
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
64 <table id="changesets">
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
65 <tbody>
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
66 %for cnt,cs in enumerate(c.pagination):
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
67 <tr id="chg_${cnt+1}" class="container ${'tablerow%s' % (cnt%2)}">
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
68 <td class="checkbox">
3760
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
69 %if c.changelog_for_path:
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
70 ${h.checkbox(cs.raw_id,class_="changeset_range", disabled="disabled")}
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
71 %else:
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
72 ${h.checkbox(cs.raw_id,class_="changeset_range")}
6302a1423a4e Use changelog controller for displaying history of files.
Marcin Kuzminski <marcin@python-works.com>
parents: 3707
diff changeset
73 %endif
3688
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
74 <td class="status">
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
75 %if c.statuses.get(cs.raw_id):
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
76 <div class="changeset-status-ico">
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
77 %if c.statuses.get(cs.raw_id)[2]:
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
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])}">
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
79 <img src="${h.url('/images/icons/flag_status_%s.png' % c.statuses.get(cs.raw_id)[0])}" />
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
80 </a>
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
81 %else:
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
82 <img src="${h.url('/images/icons/flag_status_%s.png' % c.statuses.get(cs.raw_id)[0])}" />
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
83 %endif
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
84 </div>
6c505fe11f0f bring back review status in main changelog
Marcin Kuzminski <marcin@python-works.com>
parents: 3654
diff changeset
85 %endif
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
86 </td>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
87 <td class="author">
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
88 <img alt="gravatar" src="${h.gravatar_url(h.email_or_none(cs.author),16)}"/>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
89 <span title="${cs.author}" class="user">${h.shorter(h.person(cs.author),22)}</span>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
90 </td>
3585
acc264c649d6 adjust the width on changelog based on the show_id function output
Marcin Kuzminski <marcin@python-works.com>
parents: 3582
diff changeset
91 <td class="hash" style="width:${len(h.show_id(cs))*6.5}px">
3538
9bf927589f7a Tweaks to Changelog and Summary view, removing excess information, and improving layout.
Leonardo Carneiro <leonardo@unity3d.com>
parents: 3537
diff changeset
92 <a href="${h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id)}">
3557
58dcef7eef03 Implemented show_id function that is a configurable way to display sha hashes in the changelog.
Marcin Kuzminski <marcin@python-works.com>
parents: 3552
diff changeset
93 <span class="changeset_hash">${h.show_id(cs)}</span>
3538
9bf927589f7a Tweaks to Changelog and Summary view, removing excess information, and improving layout.
Leonardo Carneiro <leonardo@unity3d.com>
parents: 3537
diff changeset
94 </a>
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
95 </td>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
96 <td class="date">
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
97 <div class="date">${h.age(cs.date,True)}</div>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
98 </td>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
99 <td class="mid">
3537
7f8d349bbde4 Tweaks to Changelog view, removing excess information, and improving layout.
Leonardo <leo@unity3d.com>
parents: 3536
diff changeset
100 <div class="log-container">
7f8d349bbde4 Tweaks to Changelog view, removing excess information, and improving layout.
Leonardo <leo@unity3d.com>
parents: 3536
diff changeset
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>
7f8d349bbde4 Tweaks to Changelog view, removing excess information, and improving layout.
Leonardo <leo@unity3d.com>
parents: 3536
diff changeset
102 <div class="expand"><span class="expandtext">&darr; ${_('Show more')} &darr;</span></div>
7f8d349bbde4 Tweaks to Changelog view, removing excess information, and improving layout.
Leonardo <leo@unity3d.com>
parents: 3536
diff changeset
103 <div class="extra-container">
3538
9bf927589f7a Tweaks to Changelog and Summary view, removing excess information, and improving layout.
Leonardo Carneiro <leonardo@unity3d.com>
parents: 3537
diff changeset
104 %if c.comments.get(cs.raw_id,[]):
1884
0614862a20ec Added number of comments in changelog for each changeset
Marcin Kuzminski <marcin@python-works.com>
parents: 1882
diff changeset
105 <div class="comments-container">
1885
350d95dece6f ui touch ups
Marcin Kuzminski <marcin@python-works.com>
parents: 1884
diff changeset
106 <div class="comments-cnt" title="${('comments')}">
3538
9bf927589f7a Tweaks to Changelog and Summary view, removing excess information, and improving layout.
Leonardo Carneiro <leonardo@unity3d.com>
parents: 3537
diff changeset
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)}">
9bf927589f7a Tweaks to Changelog and Summary view, removing excess information, and improving layout.
Leonardo Carneiro <leonardo@unity3d.com>
parents: 3537
diff changeset
108 ${len(c.comments[cs.raw_id])}
9bf927589f7a Tweaks to Changelog and Summary view, removing excess information, and improving layout.
Leonardo Carneiro <leonardo@unity3d.com>
parents: 3537
diff changeset
109 </a>
1885
350d95dece6f ui touch ups
Marcin Kuzminski <marcin@python-works.com>
parents: 1884
diff changeset
110 </div>
1884
0614862a20ec Added number of comments in changelog for each changeset
Marcin Kuzminski <marcin@python-works.com>
parents: 1882
diff changeset
111 </div>
3537
7f8d349bbde4 Tweaks to Changelog view, removing excess information, and improving layout.
Leonardo <leo@unity3d.com>
parents: 3536
diff changeset
112 %endif
3541
8fae93880c30 fixed bookmarks error on git
Marcin Kuzminski <marcin@python-works.com>
parents: 3540
diff changeset
113 %if h.is_hg(c.rhodecode_repo):
3544
c0a157ab9a15 codecleaner
Marcin Kuzminski <marcin@python-works.com>
parents: 3541
diff changeset
114 %for book in cs.bookmarks:
3707
93de03499097 shortlog: show all refs (bookmarks,tags,branches) in one dedicated column
Marcin Kuzminski <marcin@python-works.com>
parents: 3688
diff changeset
115 <div class="booktag" title="${_('Bookmark %s') % book}">
3544
c0a157ab9a15 codecleaner
Marcin Kuzminski <marcin@python-works.com>
parents: 3541
diff changeset
116 ${h.link_to(h.shorter(book),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
c0a157ab9a15 codecleaner
Marcin Kuzminski <marcin@python-works.com>
parents: 3541
diff changeset
117 </div>
c0a157ab9a15 codecleaner
Marcin Kuzminski <marcin@python-works.com>
parents: 3541
diff changeset
118 %endfor
3541
8fae93880c30 fixed bookmarks error on git
Marcin Kuzminski <marcin@python-works.com>
parents: 3540
diff changeset
119 %endif
3537
7f8d349bbde4 Tweaks to Changelog view, removing excess information, and improving layout.
Leonardo <leo@unity3d.com>
parents: 3536
diff changeset
120 %for tag in cs.tags:
3654
ec6354949623 Fix a lot of casings - use standard casing in most places
Mads Kiilerich <madski@unity3d.com>
parents: 3603
diff changeset
121 <div class="tagtag" title="${_('Tag %s') % tag}">
3537
7f8d349bbde4 Tweaks to Changelog view, removing excess information, and improving layout.
Leonardo <leo@unity3d.com>
parents: 3536
diff changeset
122 ${h.link_to(h.shorter(tag),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
123 </div>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
124 %endfor
3538
9bf927589f7a Tweaks to Changelog and Summary view, removing excess information, and improving layout.
Leonardo Carneiro <leonardo@unity3d.com>
parents: 3537
diff changeset
125 %if (not c.branch_name) and cs.branch:
3654
ec6354949623 Fix a lot of casings - use standard casing in most places
Mads Kiilerich <madski@unity3d.com>
parents: 3603
diff changeset
126 <div class="branchtag" title="${_('Branch %s' % cs.branch)}">
3538
9bf927589f7a Tweaks to Changelog and Summary view, removing excess information, and improving layout.
Leonardo Carneiro <leonardo@unity3d.com>
parents: 3537
diff changeset
127 ${h.link_to(h.shorter(cs.branch),h.url('changelog_home',repo_name=c.repo_name,branch=cs.branch))}
3537
7f8d349bbde4 Tweaks to Changelog view, removing excess information, and improving layout.
Leonardo <leo@unity3d.com>
parents: 3536
diff changeset
128 </div>
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
129 %endif
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
130 </div>
3537
7f8d349bbde4 Tweaks to Changelog view, removing excess information, and improving layout.
Leonardo <leo@unity3d.com>
parents: 3536
diff changeset
131 </div>
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
132 </td>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
133 </tr>
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
134 %endfor
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
135 </tbody>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
136 </table>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
137
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
138 <div class="pagination-wh pagination-left">
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
139 ${c.pagination.pager('$link_previous ~2~ $link_next')}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
140 </div>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
141 </div>
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
142 </div>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
143
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
144 <script type="text/javascript" src="${h.url('/js/graph.js')}"></script>
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
145 <script type="text/javascript">
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
146 YAHOO.util.Event.onDOMReady(function(){
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
147
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
148 //Monitor range checkboxes and build a link to changesets
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
149 //ranges
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
150 var checkboxes = YUD.getElementsByClassName('changeset_range');
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
151 var url_tmpl = "${h.url('changeset_home',repo_name=c.repo_name,revision='__REVRANGE__')}";
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
152 var pr_tmpl = "${h.url('pullrequest_home',repo_name=c.repo_name)}";
3464
d253f1b530c8 Bugfix: On the changelog page, its possible that some changeset is already checked out by the browser. So we check for that on page load.
Leonardo Carneiro <leonardo@unity3d.com>
parents: 3463
diff changeset
153
3552
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
154 var checkbox_checker = function(e){
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
155 var checked_checkboxes = [];
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
156 for (pos in checkboxes){
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
157 if(checkboxes[pos].checked){
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
158 checked_checkboxes.push(checkboxes[pos]);
977
28524453bb76 started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
Marcin Kuzminski <marcin@python-works.com>
parents: 904
diff changeset
159 }
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
160 }
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
161 if(YUD.get('open_new_pr')){
3552
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
162 if(checked_checkboxes.length>1){
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
163 YUD.setStyle('open_new_pr','display','none');
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
164 } else {
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
165 YUD.setStyle('open_new_pr','display','');
3485
b19b1723ff10 pullrequest: pullrequest from changelog view
Mads Kiilerich <madski@unity3d.com>
parents: 3465
diff changeset
166 if(checked_checkboxes.length>0){
3552
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
167 YUD.get('open_new_pr').innerHTML = _TM['Open new pull request for selected changesets'];
3485
b19b1723ff10 pullrequest: pullrequest from changelog view
Mads Kiilerich <madski@unity3d.com>
parents: 3465
diff changeset
168 }else{
3552
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
169 YUD.get('open_new_pr').innerHTML = _TM['Open new pull request'];
3485
b19b1723ff10 pullrequest: pullrequest from changelog view
Mads Kiilerich <madski@unity3d.com>
parents: 3465
diff changeset
170 }
2927
58bb350bfef8 Don't allow cherry picking changesets from the changelog using checkboxes.
Marcin Kuzminski <marcin@python-works.com>
parents: 2924
diff changeset
171 }
3552
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
172 }
2973
9937afa7f093 whitespace cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 2934
diff changeset
173
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
174 if(checked_checkboxes.length>0){
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
175 var rev_end = checked_checkboxes[0].name;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
176 var rev_start = checked_checkboxes[checked_checkboxes.length-1].name;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
177 var url = url_tmpl.replace('__REVRANGE__',
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
178 rev_start+'...'+rev_end);
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
179
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
180 var link = (rev_start == rev_end)
3592
549c73bfc206 changelog / compare: adjust titles
Mads Kiilerich <madski@unity3d.com>
parents: 3585
diff changeset
181 ? _TM['Show selected changeset __S']
549c73bfc206 changelog / compare: adjust titles
Mads Kiilerich <madski@unity3d.com>
parents: 3585
diff changeset
182 : _TM['Show selected changesets __S -> __E'];
3447
e74557f57f76 whitespace cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3446
diff changeset
183
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
184 link = link.replace('__S',rev_start.substr(0,6));
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
185 link = link.replace('__E',rev_end.substr(0,6));
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
186 YUD.get('rev_range_container').href = url;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
187 YUD.get('rev_range_container').innerHTML = link;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
188 YUD.setStyle('rev_range_container','display','');
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
189 YUD.setStyle('rev_range_clear','display','');
2973
9937afa7f093 whitespace cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 2934
diff changeset
190
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
191 YUD.get('open_new_pr').href = pr_tmpl + '?rev_start={0}&rev_end={1}'.format(rev_start,rev_end);
3552
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
192 YUD.setStyle('compare_fork','display','none');
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
193 }else{
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
194 YUD.setStyle('rev_range_container','display','none');
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
195 YUD.setStyle('rev_range_clear','display','none');
3552
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
196 if (checkboxes){
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
197 YUD.get('open_new_pr').href = pr_tmpl + '?rev_end={0}'.format(checkboxes[0].name);
977
28524453bb76 started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
Marcin Kuzminski <marcin@python-works.com>
parents: 904
diff changeset
198 }
3552
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
199 YUD.setStyle('compare_fork','display','');
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
200 }
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
201 };
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
202 YUE.onDOMReady(checkbox_checker);
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
203 YUE.on(checkboxes,'click', checkbox_checker);
3464
d253f1b530c8 Bugfix: On the changelog page, its possible that some changeset is already checked out by the browser. So we check for that on page load.
Leonardo Carneiro <leonardo@unity3d.com>
parents: 3463
diff changeset
204
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
205 YUE.on('rev_range_clear','click',function(e){
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
206 for (var i=0; i<checkboxes.length; i++){
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
207 var cb = checkboxes[i];
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
208 cb.checked = false;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
209 }
3552
7967d00e4692 Stylistic cleanup - mostly formatting
Mads Kiilerich <madski@unity3d.com>
parents: 3550
diff changeset
210 checkbox_checker();
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
211 YUE.preventDefault(e);
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
212 });
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
213
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
214 var msgs = YUQ('.message');
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
215 // get first element height
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
216 var el = YUQ('#graph_content .container')[0];
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
217 var row_h = el.clientHeight;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
218 for(var i=0;i<msgs.length;i++){
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
219 var m = msgs[i];
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
220
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
221 var h = m.clientHeight;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
222 var pad = YUD.getStyle(m,'padding');
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
223 if(h > row_h){
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
224 var offset = row_h - (h+12);
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
225 YUD.setStyle(m.nextElementSibling,'display','block');
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
226 YUD.setStyle(m.nextElementSibling,'margin-top',offset+'px');
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
227 };
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
228 }
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
229 YUE.on(YUQ('.expand'),'click',function(e){
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
230 var elem = e.currentTarget.parentNode.parentNode;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
231 YUD.setStyle(e.currentTarget,'display','none');
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
232 YUD.setStyle(elem,'height','auto');
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
233
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
234 //redraw the graph, line_count and jsdata are global vars
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
235 set_canvas(100);
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
236
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
237 var r = new BranchRenderer();
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
238 r.render(jsdata,100,line_count);
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
239
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
240 });
3536
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
241
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
242 // change branch filter
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
243 YUE.on(YUD.get('branch_filter'),'change',function(e){
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
244 var selected_branch = e.currentTarget.options[e.currentTarget.selectedIndex].value;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
245 var url_main = "${h.url('changelog_home',repo_name=c.repo_name)}";
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
246 var url = "${h.url('changelog_home',repo_name=c.repo_name,branch='__BRANCH__')}";
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
247 var url = url.replace('__BRANCH__',selected_branch);
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
248 if(selected_branch != ''){
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
249 window.location = url;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
250 }else{
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
251 window.location = url_main;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
252 }
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
253
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
254 });
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
255
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
256 function set_canvas(width) {
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
257 var c = document.getElementById('graph_nodes');
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
258 var t = document.getElementById('graph_content');
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
259 canvas = document.getElementById('graph_canvas');
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
260 var div_h = t.clientHeight;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
261 canvas.setAttribute('height',div_h);
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
262 canvas.setAttribute('width',width);
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
263 };
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
264 var heads = 1;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
265 var line_count = 0;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
266 var jsdata = ${c.jsdata|n};
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
267
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
268 for (var i=0;i<jsdata.length;i++) {
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
269 var in_l = jsdata[i][2];
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
270 for (var j in in_l) {
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
271 var m = in_l[j][1];
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
272 if (m > line_count)
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
273 line_count = m;
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
274 }
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
275 }
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
276 set_canvas(100);
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
277
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
278 var r = new BranchRenderer();
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
279 r.render(jsdata,100,line_count);
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
280
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
281 });
ed48d17836a4 WIP: Changelog view
Leonardo <leo@unity3d.com>
parents: 3532
diff changeset
282 </script>
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
283 %else:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
284 ${_('There are no changes yet')}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
285 %endif
362
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 322
diff changeset
286 </div>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1885
diff changeset
287 </div>
1865
37b3c3244bbc UI fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1862
diff changeset
288 </%def>