##// END OF EJS Templates
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Html changes and cleanups, made folders for html templates, implemented tags and branches pages

File last commit:

r127:20dc7a5e default
r127:20dc7a5e default
Show More
summary.html
114 lines | 3.5 KiB | text/html | HtmlLexer
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <%inherit file="/base/base.html"/>
Marcin Kuzminski
implemented Shortlog as seperate controller,...
r83 <%!
from pylons_app.lib import filters
%>
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 <%def name="title()">
${_('Repository managment')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Home',h.url('/'))}
/
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
/
${_('summary')}
</%def>
<%def name="page_nav()">
Marcin Kuzminski
Moved summary to seperate controller,...
r82 <form action="log">
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 <dl class="search">
<dt><label>Search: </label></dt>
<dd><input type="text" name="rev" /></dd>
</dl>
</form>
Added menu generation as function
r91 ${self.menu('summary')}
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 </%def>
<%def name="main()">
<h2 class="no-link no-border">${_('Mercurial Repository Overview')}</h2>
<dl class="overview">
Marcin Kuzminski
Moved summary to seperate controller,...
r82 <dt>${_('name')}</dt>
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 <dd>${c.repo_info.name}</dd>
Marcin Kuzminski
Moved summary to seperate controller,...
r82 <dt>${_('description')}</dt>
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 <dd>${c.repo_info.description}</dd>
Marcin Kuzminski
Moved summary to seperate controller,...
r82 <dt>${_('contact')}</dt>
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 <dd>${c.repo_info.contact}</dd>
Marcin Kuzminski
Moved summary to seperate controller,...
r82 <dt>${_('last change')}</dt>
Marcin Kuzminski
implemented Shortlog as seperate controller,...
r83 <dd>${c.repo_info.last_change|n,filters.rfc822date} - ${c.repo_info.last_change|n,filters.age}</dd>
Marcin Kuzminski
Moved summary to seperate controller,...
r82 <dt>${_('url')}</dt>
Updated summary page
r126 <dd><pre>hg clone <a href="${c.clone_repo_url}">${c.clone_repo_url}</a></pre></dd>
Marcin Kuzminski
Moved summary to seperate controller,...
r82 <dt>${_('Download')}</dt>
<dd>
%for archive in c.repo_info._get_archives():
| <a href="/${c.repo_info.name}/archive/${archive['node']}${archive['extension']}">
${c.repo_info.name}.${archive['type']}
</a>
%endfor
|
</dd>
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 </dl>
Html updates and fixes
r105 <h2>${h.link_to(_('Changes'),h.url('changelog_home',repo_name=c.repo_name))}</h2>
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 <table>
%for cnt,cs in enumerate(c.repo_changesets):
<tr class="parity${cnt%2}">
Marcin Kuzminski
implemented Shortlog as seperate controller,...
r83 <td>${cs._ctx.date()|n,filters.age}</td>
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 <td>${cs.author}</td>
added images updated htl added tags,branches display
r110 <td>
${h.link_to(cs.message,h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))}
<span class="logtags">
<span class="branchtag">${cs.branch}</span>
%for tag in cs.tags:
<span class="tagtag">${tag}</span>
%endfor
</span>
</td>
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 <td class="nowrap">
Html updates and fixes
r105 ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))}
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 |
Html updates and fixes
r105 ${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=cs._short))}
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 </td>
</tr>
%endfor
</table>
Html updates and fixes
r105 <h2>${h.link_to(_('Tags'),h.url('tags_home',repo_name=c.repo_name))}</h2>
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 <table>
Updated summary page
r126 %for cnt,tag in enumerate(c.repo_tags):
<tr class="parity${cnt%2}">
<td>${tag._ctx.date()|n,filters.age}</td>
<td></td>
<td>
<span class="logtags">
<span class="tagtag">${h.link_to(tag.tags[-1],h.url('changeset_home',repo_name=c.repo_name,revision=tag._short))}</span>
</span>
</td>
<td class="nowrap">
${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=tag._short))}
|
${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=tag._short))}
</td>
</tr>
Marcin Kuzminski
reimplemented summary page,...
r80 %endfor
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 </table>
Html updates and fixes
r105 <h2>${h.link_to(_('Branches'),h.url('branches_home',repo_name=c.repo_name))}</h2>
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 <table>
Updated summary page
r126 %for cnt,branch in enumerate(c.repo_branches):
<tr class="parity${cnt%2}">
<td>${branch._ctx.date()|n,filters.age}</td>
<td></td>
<td>
<span class="logtags">
<span class="branchtag">${h.link_to(branch.branch,h.url('changeset_home',repo_name=c.repo_name,revision=branch._short))}</span>
</span>
</td>
<td class="nowrap">
${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=branch._short))}
|
${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=branch._short))}
</td>
</tr>
Marcin Kuzminski
reimplemented summary page,...
r80 %endfor
Marcin Kuzminski
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
r74 </table>
</%def>