##// END OF EJS Templates
added settings rest controllers for admin, updated routes with easier submodule handling
added settings rest controllers for admin, updated routes with easier submodule handling

File last commit:

r282:237470e6 default
r346:51362853 default
Show More
summary.html
70 lines | 2.3 KiB | text/html | HtmlLexer
moved summary page to its own folder
r183 <%inherit file="/base/base.html"/>
<%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()">
removed search field from templates
r189 ${self.menu('summary')}
moved summary page to its own folder
r183 </%def>
html + css changes, added icons and etc.
r219
<%def name="js()">
<script type="text/javascript" src="/js/yui/utilities/utilities.js"></script>
<script type="text/javascript">
var E = YAHOO.util.Event;
var D = YAHOO.util.Dom;
E.onDOMReady(function(e){
id = 'clone_url';
E.addListener(id,'click',function(e){
D.get('clone_url').select();
})
})
</script>
</%def>
moved summary page to its own folder
r183 <%def name="main()">
<h2 class="no-link no-border">${_('Mercurial Repository Overview')}</h2>
<dl class="overview">
<dt>${_('name')}</dt>
<dd>${c.repo_info.name}</dd>
<dt>${_('description')}</dt>
<dd>${c.repo_info.description}</dd>
<dt>${_('contact')}</dt>
<dd>${c.repo_info.contact}</dd>
<dt>${_('last change')}</dt>
switched filters into webhelpers for easy of usage....
r282 <dd>${h.age(c.repo_info.last_change)} - ${h.rfc822date(c.repo_info.last_change)}</dd>
html + css changes, added icons and etc.
r219 <dt>${_('clone url')}</dt>
small fixes
r240 <dd><input type="text" id="clone_url" readonly="readonly" value="hg clone ${c.clone_repo_url}" size="70"/></dd>
Css changes, added icon pack.
r210 <dt>${_('download')}</dt>
moved summary page to its own folder
r183 <dd>
%for cnt,archive in enumerate(c.repo_info._get_archives()):
%if cnt >=1:
|
%endif
${h.link_to(c.repo_info.name+'.'+archive['type'],
h.url('files_archive_home',repo_name=c.repo_info.name,
Css changes, added icon pack.
r210 revision='tip',fileformat=archive['extension']),class_="archive_logo")}
moved summary page to its own folder
r183 %endfor
</dd>
templating update, improved look & feel, version bump
r225 <dt>${_('feeds')}</dt>
<dd>
${h.link_to(_('RSS'),h.url('rss_feed_home',repo_name=c.repo_info.name),class_='rss_logo')}
${h.link_to(_('Atom'),h.url('atom_feed_home',repo_name=c.repo_info.name),class_='atom_logo')}
</dd>
moved summary page to its own folder
r183 </dl>
html updates,mostly tables
r280 <h2>${h.link_to(_('Last ten changes'),h.url('changelog_home',repo_name=c.repo_name))}</h2>
switched filters into webhelpers for easy of usage....
r282 <%include file='../shortlog/shortlog_data.html'/>
moved summary page to its own folder
r183
html updates,mostly tables
r280 <h2>${h.link_to(_('Last ten tags'),h.url('tags_home',repo_name=c.repo_name))}</h2>
switched filters into webhelpers for easy of usage....
r282 <%include file='../tags/tags_data.html'/>
html updates,mostly tables
r280 <h2>${h.link_to(_('Last ten branches'),h.url('branches_home',repo_name=c.repo_name))}</h2>
switched filters into webhelpers for easy of usage....
r282 <%include file='../branches/branches_data.html'/>
moved summary page to its own folder
r183
</%def>