##// END OF EJS Templates
release: Finish preparation for 4.18.0
release: Finish preparation for 4.18.0

File last commit:

r3655:6431a1ec new-ui
r4182:f37a3126 v4.18.0 stable
Show More
base.mako
44 lines | 1.7 KiB | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282 <%def name="refs(commit)">
gravatars: reduce the size of fonts inside the initials gravatar
r3654 ## Build a cache of refs for selector
<script>
fileTreeRefs = {
}
</script>
templating: use .mako as extensions for template files.
r1282 %if commit.merge:
<span class="mergetag tag">
<i class="icon-merge">${_('merge')}</i>
</span>
%endif
%if h.is_hg(c.rhodecode_repo):
%for book in commit.bookmarks:
dan
tooltip: use consistent h.tooltip usage to set tooltips.
r1843 <span class="booktag tag" title="${h.tooltip(_('Bookmark %s') % book)}">
files: ported repository files controllers to pyramid views.
r1927 <a href="${h.route_path('repo_files:default_path',repo_name=c.repo_name,commit_id=commit.raw_id,_query=dict(at=book))}"><i class="icon-bookmark"></i>${h.shorter(book)}</a>
templating: use .mako as extensions for template files.
r1282 </span>
gravatars: reduce the size of fonts inside the initials gravatar
r3654 <script>
ui: new file tree switcher...
r3655 fileTreeRefs["${book}"] = {raw_id: "${commit.raw_id}", type:"book", text: "${book}"};
gravatars: reduce the size of fonts inside the initials gravatar
r3654 </script>
templating: use .mako as extensions for template files.
r1282 %endfor
%endif
%for tag in commit.tags:
dan
tooltip: use consistent h.tooltip usage to set tooltips.
r1843 <span class="tagtag tag" title="${h.tooltip(_('Tag %s') % tag)}">
files: ported repository files controllers to pyramid views.
r1927 <a href="${h.route_path('repo_files:default_path',repo_name=c.repo_name,commit_id=commit.raw_id,_query=dict(at=tag))}"><i class="icon-tag"></i>${tag}</a>
templating: use .mako as extensions for template files.
r1282 </span>
gravatars: reduce the size of fonts inside the initials gravatar
r3654 <script>
ui: new file tree switcher...
r3655 fileTreeRefs["${tag}"] = {raw_id: "${commit.raw_id}", type:"tag", text: "${tag}"};
gravatars: reduce the size of fonts inside the initials gravatar
r3654 </script>
templating: use .mako as extensions for template files.
r1282 %endfor
%if commit.branch:
dan
tooltip: use consistent h.tooltip usage to set tooltips.
r1843 <span class="branchtag tag" title="${h.tooltip(_('Branch %s') % commit.branch)}">
files: ported repository files controllers to pyramid views.
r1927 <a href="${h.route_path('repo_files:default_path',repo_name=c.repo_name,commit_id=commit.raw_id,_query=dict(at=commit.branch))}"><i class="icon-code-fork"></i>${h.shorter(commit.branch)}</a>
templating: use .mako as extensions for template files.
r1282 </span>
gravatars: reduce the size of fonts inside the initials gravatar
r3654 <script>
ui: new file tree switcher...
r3655 fileTreeRefs["${commit.branch}"] = {raw_id: "${commit.raw_id}", type:"branch", text: "${commit.branch}"};
gravatars: reduce the size of fonts inside the initials gravatar
r3654 </script>
templating: use .mako as extensions for template files.
r1282 %endif
</%def>