files_source.mako
92 lines
| 5.0 KiB
| application/x-mako
|
MakoHtmlLexer
r1282 | <%namespace name="sourceblock" file="/codeblocks/source.mako"/> | ||
<div id="codeblock" class="codeblock"> | |||
<div class="codeblock-header"> | |||
<div class="stats"> | |||
<span> <strong>${c.file}</strong></span> | |||
r1577 | % if c.lf_node: | ||
<span title="${_('This file is a pointer to large binary file')}"> | ${_('LargeFile')} ${h.format_byte_size_binary(c.lf_node.size)} </span> | |||
% endif | |||
r1927 | <span> | ${c.file.lines()[0]} ${_ungettext('line', 'lines', c.file.lines()[0])}</span> | ||
r1282 | <span> | ${h.format_byte_size_binary(c.file.size)}</span> | ||
<span> | ${c.file.mimetype} </span> | |||
r1935 | <span> | ${h.get_lexer_for_filenode(c.file).__class__.__name__}</span> | ||
<span class="item last"> | <i class="tooltip icon-clipboard clipboard-action" data-clipboard-text="${c.file.path}" title="${_('Copy the full path')}"></i></span> | |||
r1282 | </div> | ||
<div class="buttons"> | |||
<a id="file_history_overview" href="#"> | |||
${_('History')} | |||
</a> | |||
r1931 | <a id="file_history_overview_full" style="display: none" href="${h.route_path('repo_changelog_file',repo_name=c.repo_name, commit_id=c.commit.raw_id, f_path=c.f_path)}"> | ||
r1282 | ${_('Show Full History')} | ||
</a> | | |||
%if c.annotate: | |||
r1927 | ${h.link_to(_('Source'), h.route_path('repo_files', repo_name=c.repo_name,commit_id=c.commit.raw_id,f_path=c.f_path))} | ||
r1282 | %else: | ||
r1927 | ${h.link_to(_('Annotation'), h.route_path('repo_files:annotated',repo_name=c.repo_name,commit_id=c.commit.raw_id,f_path=c.f_path))} | ||
r1282 | %endif | ||
r1927 | | ${h.link_to(_('Raw'), h.route_path('repo_file_raw',repo_name=c.repo_name,commit_id=c.commit.raw_id,f_path=c.f_path))} | ||
r1577 | | | ||
% if c.lf_node: | |||
r1927 | <a href="${h.route_path('repo_file_download',repo_name=c.repo_name,commit_id=c.commit.raw_id,f_path=c.f_path, _query=dict(lf=1))}"> | ||
r1577 | ${_('Download largefile')} | ||
</a> | |||
% else: | |||
r1927 | <a href="${h.route_path('repo_file_download',repo_name=c.repo_name,commit_id=c.commit.raw_id,f_path=c.f_path)}"> | ||
r1577 | ${_('Download')} | ||
</a> | |||
% endif | |||
r1282 | |||
%if h.HasRepoPermissionAny('repository.write','repository.admin')(c.repo_name): | |||
| | |||
%if c.on_branch_head and c.branch_or_raw_id and not c.file.is_binary: | |||
r1927 | <a href="${h.route_path('repo_files_edit_file',repo_name=c.repo_name,commit_id=c.branch_or_raw_id,f_path=c.f_path, _anchor='edit')}"> | ||
${_('Edit on Branch:{}').format(c.branch_name)} | |||
r1282 | </a> | ||
r1927 | | <a class="btn-danger btn-link" href="${h.route_path('repo_files_remove_file',repo_name=c.repo_name,commit_id=c.branch_or_raw_id,f_path=c.f_path, _anchor='edit')}">${_('Delete')} | ||
r1282 | </a> | ||
%elif c.on_branch_head and c.branch_or_raw_id and c.file.is_binary: | |||
${h.link_to(_('Edit'), '#', class_="btn btn-link disabled tooltip", title=_('Editing binary files not allowed'))} | |||
r1927 | | ${h.link_to(_('Delete'), h.route_path('repo_files_remove_file',repo_name=c.repo_name,commit_id=c.branch_or_raw_id,f_path=c.f_path, _anchor='edit'),class_="btn-danger btn-link")} | ||
r1282 | %else: | ||
${h.link_to(_('Edit'), '#', class_="btn btn-link disabled tooltip", title=_('Editing files allowed only when on branch head commit'))} | |||
| ${h.link_to(_('Delete'), '#', class_="btn btn-danger btn-link disabled tooltip", title=_('Deleting files allowed only when on branch head commit'))} | |||
%endif | |||
%endif | |||
</div> | |||
</div> | |||
<div id="file_history_container"></div> | |||
<div class="code-body"> | |||
r1577 | %if c.file.is_binary: | ||
r1580 | <% rendered_binary = h.render_binary(c.repo_name, c.file)%> | ||
% if rendered_binary: | |||
${rendered_binary} | |||
% else: | |||
<div> | |||
${_('Binary file (%s)') % c.file.mimetype} | |||
</div> | |||
% endif | |||
r1577 | %else: | ||
r1927 | % if c.file.size < c.visual.cut_off_limit_file: | ||
r1282 | %if c.renderer and not c.annotate: | ||
r1927 | ${h.render(c.file.content, renderer=c.renderer, relative_url=h.route_path('repo_file_raw',repo_name=c.repo_name,commit_id=c.commit.raw_id,f_path=c.f_path))} | ||
r1282 | %else: | ||
<table class="cb codehilite"> | |||
%if c.annotate: | |||
<% color_hasher = h.color_hasher() %> | |||
%for annotation, lines in c.annotated_lines: | |||
${sourceblock.render_annotation_lines(annotation, lines, color_hasher)} | |||
%endfor | |||
%else: | |||
%for line_num, tokens in enumerate(c.lines, 1): | |||
${sourceblock.render_line(line_num, tokens)} | |||
%endfor | |||
%endif | |||
</table> | |||
%endif | |||
%else: | |||
r1927 | ${_('File size {} is bigger then allowed limit {}. ').format(h.format_byte_size_binary(c.file.size), h.format_byte_size_binary(c.visual.cut_off_limit_file))} ${h.link_to(_('Show as raw'), | ||
h.route_path('repo_file_raw',repo_name=c.repo_name,commit_id=c.commit.raw_id,f_path=c.f_path))} | |||
r1282 | %endif | ||
%endif | |||
</div> | |||
</div> |