##// END OF EJS Templates
added limit for showing pygemntized source codes larger than 250kb.
added limit for showing pygemntized source codes larger than 250kb.

File last commit:

r485:9836541b celery
r485:9836541b celery
Show More
files_source.html
54 lines | 2.3 KiB | text/html | HtmlLexer
version bump to 0.8...
r362 <dl>
<dt>${_('Last revision')}</dt>
fixes translations, style updates....
r410 <dd>
${h.link_to("r%s:%s" % (c.files_list.last_changeset.revision,c.files_list.last_changeset._short),
h.url('files_home',repo_name=c.repo_name,revision=c.files_list.last_changeset._short,f_path=c.f_path))}
</dd>
Implemented file history.
r128 <dt>${_('Size')}</dt>
files source updated to use webhelpers huminizer for file size, and added link to annotation
r167 <dd>${h.format_byte_size(c.files_list.size,binary=True)}</dd>
Implemented file history.
r128 <dt>${_('Options')}</dt>
#4: changes proposed by feedback to annotation
r278 <dd>${h.link_to(_('show annotation'),
added limit for showing pygemntized source codes larger than 250kb.
r485 h.url('files_annotate_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}
/ ${h.link_to(_('show as raw'),
h.url('files_raw_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}
#4: changes proposed by feedback to annotation
r278 / ${h.link_to(_('download as raw'),
added limit for showing pygemntized source codes larger than 250kb.
r485 h.url('files_rawfile_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}
#4: changes proposed by feedback to annotation
r278 </dd>
Implemented file history.
r128 <dt>${_('History')}</dt>
<dd>
fixes translations, style updates....
r410 <div>
${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='get')}
Update css +file browsing and diffs
r144 ${h.hidden('diff2',c.files_list.last_changeset._short)}
added jump to revision from file history.
r413 ${h.select('diff1',c.files_list.last_changeset._short,c.file_history)}
${h.submit('diff','diff to revision',class_="ui-button ui-widget ui-state-default ui-corner-all")}
${h.submit('show_rev','show at revision',class_="ui-button ui-widget ui-state-default ui-corner-all")}
Implemented file history.
r128 ${h.end_form()}
fixes translations, style updates....
r410 </div>
Implemented file history.
r128 </dd>
version bump to 0.8...
r362 </dl>
Implemented file history.
r128 <div id="body" class="codeblock">
Update css +file browsing and diffs
r144 <div class="code-header">
moved diff libs to vcs. updated htmls and css for diff and source
r158 <div class="revision">${c.files_list.name}@r${c.files_list.last_changeset.revision}:${c.files_list.last_changeset._short}</div>
templating updates (font sizes)
r387 <div class="commit">"${c.files_list.last_changeset.message}"</div>
Update css +file browsing and diffs
r144 </div>
<div class="code-body">
added limit for showing pygemntized source codes larger than 250kb.
r485 % if c.files_list.size < c.file_size_limit:
${h.pygmentize(c.files_list,linenos=True,anchorlinenos=True,lineanchors='S',cssclass="code-highlight")}
%else:
${_('File is to big to display')} ${h.link_to(_('show as raw'),
h.url('files_raw_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}
%endif
Update css +file browsing and diffs
r144 </div>
added jump to revision from file history.
r413 </div>
<script type="text/javascript">
YAHOO.util.Event.onDOMReady(function(){
YAHOO.util.Event.addListener('show_rev','click',function(e){
YAHOO.util.Event.preventDefault(e);
var cs = YAHOO.util.Dom.get('diff1').value;
var url = "${h.url('files_home',repo_name=c.repo_name,revision='__CS__',f_path=c.f_path)}".replace('__CS__',cs);
window.location = url;
});
});
</script>