comparison rhodecode/templates/tags/tags.html @ 1888:f91d3f9b7230 beta

White-space cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 12 Jan 2012 06:32:40 +0200
parents eaf09acf6872
children 76d156bef5a2
comparison
equal deleted inserted replaced
1886:50e32940e464 1888:f91d3f9b7230
7 7
8 8
9 <%def name="breadcrumbs_links()"> 9 <%def name="breadcrumbs_links()">
10 <input class="q_filter_box" id="q_filter_tags" size="15" type="text" name="filter" value="${_('quick filter...')}"/> 10 <input class="q_filter_box" id="q_filter_tags" size="15" type="text" name="filter" value="${_('quick filter...')}"/>
11 ${h.link_to(u'Home',h.url('/'))} 11 ${h.link_to(u'Home',h.url('/'))}
12 &raquo; 12 &raquo;
13 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} 13 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
14 &raquo; 14 &raquo;
15 ${_('tags')} 15 ${_('tags')}
16 </%def> 16 </%def>
17 17
59 sortedBy:{key:"name",dir:"asc"}, 59 sortedBy:{key:"name",dir:"asc"},
60 MSG_SORTASC:"${_('Click to sort ascending')}", 60 MSG_SORTASC:"${_('Click to sort ascending')}",
61 MSG_SORTDESC:"${_('Click to sort descending')}", 61 MSG_SORTDESC:"${_('Click to sort descending')}",
62 MSG_EMPTY:"${_('No records found.')}", 62 MSG_EMPTY:"${_('No records found.')}",
63 MSG_ERROR:"${_('Data error.')}", 63 MSG_ERROR:"${_('Data error.')}",
64 MSG_LOADING:"${_('Loading...')}", 64 MSG_LOADING:"${_('Loading...')}",
65 } 65 }
66 ); 66 );
67 myDataTable.subscribe('postRenderEvent',function(oArgs) { 67 myDataTable.subscribe('postRenderEvent',function(oArgs) {
68 tooltip_activate(); 68 tooltip_activate();
69 var func = function(node){ 69 var func = function(node){
70 return node.parentNode.parentNode.parentNode.parentNode.parentNode; 70 return node.parentNode.parentNode.parentNode.parentNode.parentNode;
71 } 71 }
72 q_filter('q_filter_tags',YUQ('div.table tr td .logtags .tagtag a'),func); 72 q_filter('q_filter_tags',YUQ('div.table tr td .logtags .tagtag a'),func);
73 }); 73 });
74 74
75 </script> 75 </script>
76 </%def> 76 </%def>