Fixed a couple of URI escaping related bugs.
[catagits/Gitalist.git] / root / static / js / site.js
1 function findPos(obj) {
2         var curleft = curtop = 0;
3         if (obj.offsetParent) {
4         do {
5                 curleft += obj.offsetLeft;
6                 curtop += obj.offsetTop;
7         } 
8         while (obj = obj.offsetParent);
9         return [curleft,curtop];
10         }
11 }
12
13 function 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
23 function 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
43 function uriFor(action, sha1) {
44     return jQuery('#' + action + '-uri').text().replace(/\bHEAD\b/, sha1);
45 }
46
47 function switchBranch() {
48     var branch = jQuery('#branch-list').val();
49     document.location.href = uriFor('current', branch);
50 }
51
52 function 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);
57     document.location.href = diffUri + '/' + compSha1 + (path ? '/' + encodeURIComponent(path) : '');
58     return false;
59 }
60
61 function loadCommitInfo() {
62   jQuery('#commit-tree .message').each(function() {
63     var cell     = jQuery(this);
64     var filename = cell.find('.js-data').text();
65     jQuery.getJSON(uriFor('file_commit_info') + '/' + filename, {}, function(commitInfo) {
66       cell.empty();
67       cell.html('<a href="'+uriFor('commit', commitInfo.sha1)+'">'+commitInfo.comment+'</a> '+commitInfo.age);
68     });
69   });
70 }
71
72 jQuery(function() {
73     // Provide sub-nav dropdowns (I think).
74     startList();
75
76     // JS up any Compare links
77     jQuery('a.compare-link').click(compareDiffs);
78     // Change the URL when a branch is selected
79     jQuery('#branch-list').change(switchBranch);
80     // Wait for image requests to come back first
81     jQuery(window).load(loadCommitInfo);
82 });