branches.html
93 lines
| 2.9 KiB
| text/html
|
HtmlLexer
r547 | ## -*- coding: utf-8 -*- | |||
<%inherit file="/base/base.html"/> | ||||
<%def name="title()"> | ||||
Vincent Duvert
|
r2417 | ${_('%s Branches') % c.repo_name} - ${c.rhodecode_name} | ||
r547 | </%def> | |||
<%def name="breadcrumbs_links()"> | ||||
r1654 | <input class="q_filter_box" id="q_filter_branches" size="15" type="text" name="filter" value="${_('quick filter...')}"/> | |||
Takumi IINO
|
r2492 | ${h.link_to(_(u'Home'),h.url('/'))} | ||
r1888 | » | |||
r547 | ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} | |||
» | ||||
${_('branches')} | ||||
</%def> | ||||
<%def name="page_nav()"> | ||||
r1888 | ${self.menu('branches')} | |||
r547 | </%def> | |||
<%def name="main()"> | ||||
<div class="box"> | ||||
<!-- box / title --> | ||||
<div class="title"> | ||||
${self.breadcrumbs()} | ||||
</div> | ||||
<!-- end box / title --> | ||||
r2362 | %if c.repo_branches: | |||
r2243 | <div class="info_box" id="compare_branches" style="clear: both;padding: 10px 19px;vertical-align: right;text-align: right;"><a href="#" class="ui-btn small">${_('Compare branches')}</a></div> | |||
r2362 | %endif | |||
r547 | <div class="table"> | |||
<%include file='branches_data.html'/> | ||||
</div> | ||||
r1654 | </div> | |||
<script type="text/javascript"> | ||||
r2243 | YUE.on('compare_branches','click',function(e){ | |||
YUE.preventDefault(e); | ||||
var org = YUQ('input[name=compare_org]:checked')[0]; | ||||
var other = YUQ('input[name=compare_other]:checked')[0]; | ||||
r1782 | ||||
r2243 | if(org && other){ | |||
r2363 | var compare_url = "${h.url('compare_url',repo_name=c.repo_name,org_ref_type='branch',org_ref='__ORG__',other_ref_type='branch',other_ref='__OTHER__')}"; | |||
var u = compare_url.replace('__ORG__',org.value) | ||||
.replace('__OTHER__',other.value); | ||||
r2243 | window.location=u; | |||
} | ||||
r3010 | }); | |||
r1782 | // main table sorting | |||
var myColumnDefs = [ | ||||
{key:"name",label:"${_('Name')}",sortable:true}, | ||||
{key:"date",label:"${_('Date')}",sortable:true, | ||||
sortOptions: { sortFunction: dateSort }}, | ||||
{key:"author",label:"${_('Author')}",sortable:true}, | ||||
{key:"revision",label:"${_('Revision')}",sortable:true, | ||||
sortOptions: { sortFunction: revisionSort }}, | ||||
r2243 | {key:"compare",label:"${_('Compare')}",sortable:false,}, | |||
r1782 | ]; | |||
var myDataSource = new YAHOO.util.DataSource(YUD.get("branches_data")); | ||||
myDataSource.responseType = YAHOO.util.DataSource.TYPE_HTMLTABLE; | ||||
myDataSource.responseSchema = { | ||||
fields: [ | ||||
{key:"name"}, | ||||
{key:"date"}, | ||||
{key:"author"}, | ||||
{key:"revision"}, | ||||
r2243 | {key:"compare"}, | |||
r1782 | ] | |||
}; | ||||
var myDataTable = new YAHOO.widget.DataTable("table_wrap", myColumnDefs, myDataSource, | ||||
{ | ||||
sortedBy:{key:"name",dir:"asc"}, | ||||
MSG_SORTASC:"${_('Click to sort ascending')}", | ||||
MSG_SORTDESC:"${_('Click to sort descending')}", | ||||
MSG_EMPTY:"${_('No records found.')}", | ||||
MSG_ERROR:"${_('Data error.')}", | ||||
r1888 | MSG_LOADING:"${_('Loading...')}", | |||
r1782 | } | |||
); | ||||
myDataTable.subscribe('postRenderEvent',function(oArgs) { | ||||
tooltip_activate(); | ||||
var func = function(node){ | ||||
return node.parentNode.parentNode.parentNode.parentNode.parentNode; | ||||
} | ||||
r1888 | q_filter('q_filter_branches',YUQ('div.table tr td .logtags .branchtag a'),func); | |||
}); | ||||
r1782 | ||||
r1654 | </script> | |||
r1782 | ||||
r1888 | </%def> | |||