shortlog_data.html
101 lines
| 3.5 KiB
| text/html
|
HtmlLexer
r547 | ## -*- coding: utf-8 -*- | |||
r1736 | %if c.repo_changesets: | |||
r1770 | <table class="table_disp"> | |||
Mads Kiilerich
|
r3197 | <tr> | ||
<th class="left">${_('revision')}</th> | ||||
r1837 | <th class="left">${_('commit message')}</th> | |||
Mads Kiilerich
|
r3197 | <th class="left">${_('age')}</th> | ||
<th class="left">${_('author')}</th> | ||||
<th class="left">${_('branch')}</th> | ||||
<th class="left">${_('tags')}</th> | ||||
</tr> | ||||
r547 | %for cnt,cs in enumerate(c.repo_changesets): | |||
Mads Kiilerich
|
r3197 | <tr class="parity${cnt%2}"> | ||
r636 | <td> | |||
r2884 | <div> | |||
<div class="changeset-status-container"> | ||||
%if c.statuses.get(cs.raw_id): | ||||
<div class="changeset-status-ico"> | ||||
%if c.statuses.get(cs.raw_id)[2]: | ||||
r3214 | <a class="tooltip" title="${_('Click to open associated pull request #%s' % c.statuses.get(cs.raw_id)[2])}" href="${h.url('pullrequest_show',repo_name=c.statuses.get(cs.raw_id)[3],pull_request_id=c.statuses.get(cs.raw_id)[2])}"> | |||
r2884 | <img src="${h.url('/images/icons/flag_status_%s.png' % c.statuses.get(cs.raw_id)[0])}" /> | |||
</a> | ||||
%else: | ||||
<img src="${h.url('/images/icons/flag_status_%s.png' % c.statuses.get(cs.raw_id)[0])}" /> | ||||
%endif | ||||
</div> | ||||
%endif | ||||
r2907 | </div> | |||
r2884 | <pre><a href="${h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id)}">r${cs.revision}:${h.short_id(cs.raw_id)}</a></pre> | |||
</div> | ||||
r1888 | </td> | |||
r1837 | <td> | |||
r3039 | ${h.urlify_commit(h.truncate(cs.message,50),c.repo_name, h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))} | |||
r799 | </td> | |||
r2427 | <td><span class="tooltip" title="${h.tooltip(h.fmt_date(cs.date))}"> | |||
r799 | ${h.age(cs.date)}</span> | |||
r1888 | </td> | |||
Mads Kiilerich
|
r3197 | <td title="${cs.author}">${h.person(cs.author)}</td> | ||
<td> | ||||
<span class="logtags"> | ||||
r2231 | %if cs.branch: | |||
Mads Kiilerich
|
r3197 | <span class="branchtag"> | ||
r1959 | ${cs.branch} | |||
</span> | ||||
r2231 | %endif | |||
Mads Kiilerich
|
r3197 | </span> | ||
</td> | ||||
<td> | ||||
<span class="logtags"> | ||||
%for tag in cs.tags: | ||||
<span class="tagtag">${tag}</span> | ||||
%endfor | ||||
</span> | ||||
</td> | ||||
</tr> | ||||
r547 | %endfor | |||
</table> | ||||
<script type="text/javascript"> | ||||
r1421 | YUE.onDOMReady(function(){ | |||
YUE.delegate("shortlog_data","click",function(e, matchedEl, container){ | ||||
ypjax(e.target.href,"shortlog_data",function(){tooltip_activate();}); | ||||
YUE.preventDefault(e); | ||||
r1888 | },'.pager_link'); | |||
r1421 | }); | |||
r547 | </script> | |||
<div class="pagination-wh pagination-left"> | ||||
r1421 | ${c.repo_changesets.pager('$link_previous ~2~ $link_next')} | |||
r547 | </div> | |||
%else: | ||||
r1736 | ||||
%if h.HasRepoPermissionAny('repository.write','repository.admin')(c.repo_name): | ||||
<h4>${_('Add or upload files directly via RhodeCode')}</h4> | ||||
<div style="margin: 20px 30px;"> | ||||
<div id="add_node_id" class="add_node"> | ||||
r1756 | <a class="ui-btn" href="${h.url('files_add_home',repo_name=c.repo_name,revision=0,f_path='')}">${_('add new file')}</a> | |||
r1736 | </div> | |||
</div> | ||||
r547 | %endif | |||
r1888 | ||||
r1736 | ||||
r1888 | <h4>${_('Push new repo')}</h4> | |||
r1736 | <pre> | |||
r1786 | ${c.rhodecode_repo.alias} clone ${c.clone_repo_url} | |||
${c.rhodecode_repo.alias} add README # add first file | ||||
${c.rhodecode_repo.alias} commit -m "Initial" # commit with message | ||||
r2182 | ${c.rhodecode_repo.alias} push ${'origin master' if h.is_git(c.rhodecode_repo) else ''} # push changes back | |||
r1736 | </pre> | |||
r1888 | ||||
r1736 | <h4>${_('Existing repository?')}</h4> | |||
<pre> | ||||
r2659 | %if h.is_git(c.rhodecode_repo): | |||
git remote add origin ${c.clone_repo_url} | ||||
git push -u origin master | ||||
%else: | ||||
hg push ${c.clone_repo_url} | ||||
r2673 | %endif | |||
r1888 | </pre> | |||
r1736 | %endif | |||