Files
@ c40e567e4b82
Branch filter:
Location: kallithea/kallithea/templates/changelog/changelog_summary_data.html
c40e567e4b82
4.5 KiB
text/html
style: use Bootstrap compatible data-toggle="tooltip" markup
Based on work by Dominik Ruf and Andrew Shadura.
Based on work by Dominik Ruf and Andrew Shadura.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | ## -*- coding: utf-8 -*-
%if c.repo_changesets:
<table class="table">
<tr>
<th class="left"></th>
<th class="left"></th>
<th class="left">${_('Revision')}</th>
<th class="left">${_('Commit Message')}</th>
<th class="left">${_('Age')}</th>
<th class="left">${_('Author')}</th>
<th class="left">${_('Refs')}</th>
</tr>
%for cnt,cs in enumerate(c.repo_changesets):
<tr class="parity${cnt%2} ${'mergerow' if len(cs.parents) > 1 else ''}">
<td class="compact">
<div class="changeset-status-container">
%if c.statuses.get(cs.raw_id):
<span class="changeset-status-ico shortlog">
%if c.statuses.get(cs.raw_id)[2]:
<a data-toggle="tooltip" title="${_('Changeset status: %s by %s\nClick to open associated pull request %s') % (c.statuses.get(cs.raw_id)[1], c.statuses.get(cs.raw_id)[5].username, c.statuses.get(cs.raw_id)[4])}" href="${h.url('pullrequest_show',repo_name=c.statuses.get(cs.raw_id)[3],pull_request_id=c.statuses.get(cs.raw_id)[2])}">
<i class="icon-circle changeset-status-${c.statuses.get(cs.raw_id)[0]}"></i>
</a>
%else:
<a data-toggle="tooltip" title="${_('Changeset status: %s by %s') % (c.statuses.get(cs.raw_id)[1], c.statuses.get(cs.raw_id)[5].username)}"
href="${c.comments[cs.raw_id][0].url()}">
<i class="icon-circle changeset-status-${c.statuses.get(cs.raw_id)[0]}"></i>
</a>
%endif
</span>
%endif
</div>
</td>
<td class="compact">
%if c.comments.get(cs.raw_id,[]):
<div class="comments-container">
<div title="${('comments')}">
<a href="${c.comments[cs.raw_id][0].url()}">
<i class="icon-comment"></i>${len(c.comments[cs.raw_id])}
</a>
</div>
</div>
%endif
</td>
<td>
<a href="${h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id)}" class="revision-link">${h.show_id(cs)}</a>
</td>
<td>
${h.urlify_text(h.chop_at(cs.message,'\n'),c.repo_name, h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
</td>
<td><span data-toggle="tooltip" title="${h.fmt_date(cs.date)}">
${h.age(cs.date)}</span>
</td>
<td title="${cs.author}">${h.person(cs.author)}</td>
<td>
%if h.is_hg(c.db_repo_scm_instance):
%for book in cs.bookmarks:
<span class="booktag" title="${_('Bookmark %s') % book}">
${h.link_to(book,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
</span>
%endfor
%endif
%for tag in cs.tags:
<span class="tagtag" title="${_('Tag %s') % tag}">
${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
</span>
%endfor
%if cs.branch:
<span class="branchtag" title="${_('Branch %s' % cs.branch)}">
${h.link_to(cs.branch,h.url('changelog_home',repo_name=c.repo_name,branch=cs.branch))}
</span>
%endif
</td>
</tr>
%endfor
</table>
<ul class="pagination">
${c.repo_changesets.pager()}
</ul>
%else:
%if h.HasRepoPermissionAny('repository.write','repository.admin')(c.repo_name):
<h4>${_('Add or upload files directly via Kallithea')}</h4>
<div style="margin: 20px 30px;">
<div id="add_node_id" class="add_node">
<a class="btn btn-default btn-xs" href="${h.url('files_add_home',repo_name=c.repo_name,revision=0,f_path='', anchor='edit')}">${_('Add New File')}</a>
</div>
</div>
%endif
<h4>${_('Push new repository')}</h4>
<pre>
${c.db_repo_scm_instance.alias} clone ${c.clone_repo_url}
${c.db_repo_scm_instance.alias} add README # add first file
${c.db_repo_scm_instance.alias} commit -m "Initial" # commit with message
${c.db_repo_scm_instance.alias} push ${'origin master' if h.is_git(c.db_repo_scm_instance) else ''} # push changes back
</pre>
<h4>${_('Existing repository?')}</h4>
<pre>
%if h.is_git(c.db_repo_scm_instance):
git remote add origin ${c.clone_repo_url}
git push -u origin master
%else:
hg push ${c.clone_repo_url}
%endif
</pre>
%endif
|