##// END OF EJS Templates
merged beta into stable
merged beta into stable

File last commit:

r2159:19b4e283 beta
r2257:a437a986 merge default
Show More
_dt_elements.html
89 lines | 3.1 KiB | text/html | HtmlLexer
Added sorting into journal and admin pages...
r1779 ## DATA TABLE RE USABLE ELEMENTS
## usage:
## <%namespace name="dt" file="/_data_table/_dt_elements.html"/>
<%def name="quick_menu(repo_name)">
<ul class="menu_items hidden">
<li style="border-top:1px solid #003367;margin-left:18px;padding-left:-99px"></li>
<li>
<a title="${_('Summary')}" href="${h.url('summary_home',repo_name=repo_name)}">
<span class="icon">
<img src="${h.url('/images/icons/clipboard_16.png')}" alt="${_('Summary')}" />
</span>
White-space cleanup
r1888 <span>${_('Summary')}</span>
</a>
Added sorting into journal and admin pages...
r1779 </li>
<li>
<a title="${_('Changelog')}" href="${h.url('changelog_home',repo_name=repo_name)}">
<span class="icon">
<img src="${h.url('/images/icons/time.png')}" alt="${_('Changelog')}" />
</span>
White-space cleanup
r1888 <span>${_('Changelog')}</span>
</a>
Added sorting into journal and admin pages...
r1779 </li>
<li>
<a title="${_('Files')}" href="${h.url('files_home',repo_name=repo_name)}">
<span class="icon">
<img src="${h.url('/images/icons/file.png')}" alt="${_('Files')}" />
</span>
White-space cleanup
r1888 <span>${_('Files')}</span>
</a>
Added sorting into journal and admin pages...
r1779 </li>
<li>
<a title="${_('Fork')}" href="${h.url('repo_fork_home',repo_name=repo_name)}">
<span class="icon">
<img src="${h.url('/images/icons/arrow_divide.png')}" alt="${_('Fork')}" />
</span>
White-space cleanup
r1888 <span>${_('Fork')}</span>
</a>
</li>
Added sorting into journal and admin pages...
r1779 </ul>
</%def>
fixes #407 wrong url to edit repo on admin page
r2159 <%def name="repo_name(name,rtype,private,fork_of,short_name=False, admin=False)">
#402 removed group prefix from repository name when listing repositories inside a group
r2133 <%
def get_name(name,short_name=short_name):
if short_name:
return name.split('/')[-1]
else:
return name
%>
Added sorting into journal and admin pages...
r1779 <div style="white-space: nowrap">
##TYPE OF REPO
optimized speed for browsing git changesets
r1959 %if h.is_hg(rtype):
Added sorting into journal and admin pages...
r1779 <img class="icon" title="${_('Mercurial repository')}" alt="${_('Mercurial repository')}" src="${h.url('/images/icons/hgicon.png')}"/>
optimized speed for browsing git changesets
r1959 %elif h.is_git(rtype):
Added sorting into journal and admin pages...
r1779 <img class="icon" title="${_('Git repository')}" alt="${_('Git repository')}" src="${h.url('/images/icons/giticon.png')}"/>
White-space cleanup
r1888 %endif
Added sorting into journal and admin pages...
r1779 ##PRIVATE/PUBLIC
%if private:
<img class="icon" title="${_('private repository')}" alt="${_('private repository')}" src="${h.url('/images/icons/lock.png')}"/>
%else:
<img class="icon" title="${_('public repository')}" alt="${_('public repository')}" src="${h.url('/images/icons/lock_open.png')}"/>
%endif
White-space cleanup
r1888
##NAME
fixes #407 wrong url to edit repo on admin page
r2159 %if admin:
${h.link_to(get_name(name),h.url('edit_repo',repo_name=name),class_="repo_name")}
%else:
${h.link_to(get_name(name),h.url('summary_home',repo_name=name),class_="repo_name")}
%endif
Added sorting into journal and admin pages...
r1779 %if fork_of:
<a href="${h.url('summary_home',repo_name=fork_of)}">
<img class="icon" alt="${_('fork')}" title="${_('Fork of')} ${fork_of}" src="${h.url('/images/icons/arrow_divide.png')}"/></a>
%endif
</div>
</%def>
<%def name="revision(name,rev,tip,author,last_msg)">
<div>
%if rev >= 0:
<pre><a title="${h.tooltip('%s:\n\n%s' % (author,last_msg))}" class="tooltip" href="${h.url('changeset_home',repo_name=name,revision=tip)}">${'r%s:%s' % (rev,h.short_id(tip))}</a></pre>
%else:
${_('No changesets yet')}
%endif
</div>
</%def>