##// END OF EJS Templates
added jump to revision from file history.
marcink -
r413:0ebec9b8 default
parent child Browse files
Show More
@@ -1,36 +1,48 b''
1 1 <dl>
2 2 <dt>${_('Last revision')}</dt>
3 3 <dd>
4 4 ${h.link_to("r%s:%s" % (c.files_list.last_changeset.revision,c.files_list.last_changeset._short),
5 5 h.url('files_home',repo_name=c.repo_name,revision=c.files_list.last_changeset._short,f_path=c.f_path))}
6 6 </dd>
7 7 <dt>${_('Size')}</dt>
8 8 <dd>${h.format_byte_size(c.files_list.size,binary=True)}</dd>
9 9 <dt>${_('Options')}</dt>
10 10 <dd>${h.link_to(_('show annotation'),
11 11 h.url('files_annotate_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}
12 12 / ${h.link_to(_('download as raw'),
13 13 h.url('files_raw_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}
14 14 </dd>
15 15 <dt>${_('History')}</dt>
16 16 <dd>
17 17 <div>
18 18 ${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='get')}
19 19 ${h.hidden('diff2',c.files_list.last_changeset._short)}
20 ${h.select('diff1','',c.file_history)}
21 ${h.submit('diff','diff',class_="ui-button ui-widget ui-state-default ui-corner-all")}
20 ${h.select('diff1',c.files_list.last_changeset._short,c.file_history)}
21 ${h.submit('diff','diff to revision',class_="ui-button ui-widget ui-state-default ui-corner-all")}
22 ${h.submit('show_rev','show at revision',class_="ui-button ui-widget ui-state-default ui-corner-all")}
22 23 ${h.end_form()}
23 24 </div>
24 25 </dd>
25 26 </dl>
26 27
27 28
28 29 <div id="body" class="codeblock">
29 30 <div class="code-header">
30 31 <div class="revision">${c.files_list.name}@r${c.files_list.last_changeset.revision}:${c.files_list.last_changeset._short}</div>
31 32 <div class="commit">"${c.files_list.last_changeset.message}"</div>
32 33 </div>
33 34 <div class="code-body">
34 35 ${h.pygmentize(c.files_list,linenos=True,anchorlinenos=True,lineanchors='S',cssclass="code-highlight")}
35 36 </div>
36 </div> No newline at end of file
37 </div>
38
39 <script type="text/javascript">
40 YAHOO.util.Event.onDOMReady(function(){
41 YAHOO.util.Event.addListener('show_rev','click',function(e){
42 YAHOO.util.Event.preventDefault(e);
43 var cs = YAHOO.util.Dom.get('diff1').value;
44 var url = "${h.url('files_home',repo_name=c.repo_name,revision='__CS__',f_path=c.f_path)}".replace('__CS__',cs);
45 window.location = url;
46 });
47 });
48 </script> No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now