A few fixes to get the JSON test working.
[catagits/Gitalist.git] / root / static / js / site.js
CommitLineData
feb6e881 1function findPos(obj) {
2 var curleft = curtop = 0;
3 if (obj.offsetParent) {
7546a03c 4 do {
5 curleft += obj.offsetLeft;
6 curtop += obj.offsetTop;
7 }
8 while (obj = obj.offsetParent);
9 return [curleft,curtop];
feb6e881 10 }
11}
12
13function setNavClass(el){
14 var link_el = document.getElementById("actions_nav_link");
15 var offsetAry = findPos(link_el);
16 // set position of list
17 el.style.left = offsetAry[0]+"px";
18 el.style.top = offsetAry[1]+30 +"px";
19 el.className+=" actions_nav_list_over";
20}
21
22// handles hover sub menus in IE
23function startList() {
24 if(!document.getElementById("actions_nav_link"))
25 return;
26 var navList = document.getElementById("actions_nav_list");
27 var navLink = document.getElementById("actions_nav_link");
28 // assign event handlers to each element
29 navLink.onmouseover=function() {
30 setNavClass(navList);
31 };
32 navList.onmouseover=function() {
33 setNavClass(navList);
34 };
35 navList.onmouseout=function() {
36 navList.className=navList.className.replace(" actions_nav_list_over", "");
37 };
38 navLink.onmouseout=function() {
39 navList.className=navList.className.replace(" actions_nav_list_over", "");
40 };
41}
42
43function uriFor(action, sha1) {
44 return jQuery('#' + action + '-uri').text().replace(/\bHEAD\b/, sha1);
45}
46
47function switchBranch() {
48 var branch = jQuery('#branch-list').val();
49 document.location.href = uriFor('current', branch);
50}
51
52function compareDiffs(){
53 var path = jQuery('#compare-path').text(),
54 baseSha1 = jQuery('#compare-form input[name=sha1_a]:checked').val(),
55 compSha1 = jQuery('#compare-form input[name=sha1_b]:checked').val(),
56 diffUri = uriFor('diff', baseSha1);
d5fd80f5 57 document.location.href = diffUri + '/' + compSha1 + (path ? '/' + encodeURIComponent(path) : '');
feb6e881 58 return false;
59}
60
7546a03c 61function _loadCommitInfo(cells) {
62 var cell = jQuery(cells.shift());
63 var filename = cell.find('.js-data').text();
64 jQuery.getJSON(uriFor('file_commit_info') + '/' + filename, {}, function(commitInfo) {
65 cell.empty();
66 cell.html('<a href="'+uriFor('commit', commitInfo.sha1)+'">'+commitInfo.comment+'</a> '+commitInfo.age);
67 if(cells.length > 0)
68 _loadCommitInfo(cells);
feb6e881 69 });
70}
71
7546a03c 72function loadCommitInfo() {
73 _loadCommitInfo( jQuery('#commit-tree .message').get() );
74}
75
feb6e881 76jQuery(function() {
77 // Provide sub-nav dropdowns (I think).
78 startList();
79
80 // JS up any Compare links
81 jQuery('a.compare-link').click(compareDiffs);
82 // Change the URL when a branch is selected
83 jQuery('#branch-list').change(switchBranch);
84 // Wait for image requests to come back first
85 jQuery(window).load(loadCommitInfo);
86});