Files
@ f7a52d548fd0
Branch filter:
Location: kallithea/rhodecode/templates/files/files.html
f7a52d548fd0
4.3 KiB
text/html
merge with beta
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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | <%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s files') % c.repo_name} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_(u'Home'),h.url('/'))}
»
${h.link_to(c.repo_name,h.url('files_home',repo_name=c.repo_name))}
»
${_('files')}
%if c.file:
@ r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)}
%endif
</%def>
<%def name="page_nav()">
${self.menu('files')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
<ul class="links">
<li>
<span style="text-transform: uppercase;"><a href="#">${_('branch')}: ${c.changeset.branch}</a></span>
</li>
</ul>
</div>
<div class="table">
<div id="files_data">
<%include file='files_ypjax.html'/>
</div>
</div>
</div>
<script type="text/javascript">
var CACHE = {};
var CACHE_EXPIRE = 60*1000; //cache for 60s
//used to construct links from the search list
var node_list_url = '${h.url("files_home",repo_name=c.repo_name,revision='__REV__',f_path='__FPATH__')}';
//send the nodelist request to this url
var url_base = '${h.url("files_nodelist_home",repo_name=c.repo_name,revision='__REV__',f_path='__FPATH__')}';
var ypjax_links = function(){
YUE.on(YUQ('.ypjax-link'), 'click',function(e){
//don't do ypjax on middle click
if(e.which == 2 || !History.enabled){
return true;
}
var el = e.currentTarget;
var url = el.href;
var _base_url = '${h.url("files_home",repo_name=c.repo_name,revision='',f_path='')}';
_base_url = _base_url.replace('//','/')
//extract rev and the f_path from url.
parts = url.split(_base_url)
if(parts.length != 2){
return false;
}
var parts2 = parts[1].split('/');
var rev = parts2.shift(); // pop the first element which is the revision
var f_path = parts2.join('/');
var title = "${_('%s files') % c.repo_name}" + " - " + f_path;
var _node_list_url = node_list_url.replace('__REV__',rev);
var _url_base = url_base.replace('__REV__',rev).replace('__FPATH__', f_path);
// Change our States and save some data for handling events
var data = {url:url,title:title, url_base:_url_base,
node_list_url:_node_list_url};
History.pushState(data, title, url);
//now we're sure that we can do ypjax things
YUE.preventDefault(e)
return false;
});
}
var callbacks = function(State){
ypjax_links();
tooltip_activate();
fileBrowserListeners(State.url, State.data.node_list_url, State.data.url_base);
// Inform Google Analytics of the change
if ( typeof window.pageTracker !== 'undefined' ) {
window.pageTracker._trackPageview(State.url);
}
}
YUE.onDOMReady(function(){
ypjax_links();
var container = 'files_data';
//Bind to StateChange Event
History.Adapter.bind(window,'statechange',function(){
var State = History.getState();
cache_key = State.url;
//check if we have this request in cache maybe ?
var _cache_obj = CACHE[cache_key];
var _cur_time = new Date().getTime();
// get from cache if it's there and not yet expired !
if(_cache_obj !== undefined && _cache_obj[0] > _cur_time){
YUD.get(container).innerHTML=_cache_obj[1];
YUD.setStyle(container,'opacity','1.0');
//callbacks after ypjax call
callbacks(State);
}
else{
ypjax(State.url,container,function(o){
//callbacks after ypjax call
callbacks(State);
if (o !== undefined){
//store our request in cache
var _expire_on = new Date().getTime()+CACHE_EXPIRE;
CACHE[cache_key] = [_expire_on, o.responseText];
}
});
}
});
// init the search filter
var _State = {
url: "${h.url.current()}",
data: {
node_list_url: node_list_url.replace('__REV__',"${c.changeset.raw_id}"),
url_base: url_base.replace('__REV__',"${c.changeset.raw_id}").replace('__FPATH__', "${h.safe_unicode(c.file.path)}")
}
}
fileBrowserListeners(_State.url, _State.data.node_list_url, _State.data.url_base);
});
</script>
</%def>
|