buildroot.js 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. function load_activity(feedurl, divid) {
  2. var feed = new google.feeds.Feed(feedurl);
  3. var container = document.getElementById(divid);
  4. var loaded = 0;
  5. var nb_display = 8;
  6. feed.setNumEntries(30);
  7. feed.load(function(result) {
  8. if (result.error) {
  9. return;
  10. }
  11. for (var i = 0; i < result.feed.entries.length; i++) {
  12. var entry = result.feed.entries[i];
  13. if (entry.title.indexOf("git commit") != -1)
  14. continue;
  15. loaded += 1;
  16. if (loaded > nb_display)
  17. break;
  18. var div = document.createElement("p");
  19. var link = document.createElement("a");
  20. var d = new Date(entry.publishedDate);
  21. var data = '[' + d.toLocaleDateString() + '] ' + entry.title
  22. var text = document.createTextNode(data);
  23. link.appendChild(text);
  24. link.title = entry.title;
  25. link.href = entry.link
  26. div.appendChild(link);
  27. container.appendChild(div);
  28. }
  29. var empty = nb_display - loaded;
  30. for (var i = 0; i < empty; i++) {
  31. container.appendChild(document.createElement("p"));
  32. }
  33. });
  34. }
  35. function initialize() {
  36. load_activity("http://rss.gmane.org/topics/excerpts/gmane.comp.lib.uclibc.buildroot", "mailing-list-activity");
  37. load_activity("http://git.buildroot.org/buildroot/atom/?h=master", "commit-activity");
  38. }
  39. function google_analytics() {
  40. var _gaq = _gaq || [];
  41. _gaq.push(['_setAccount', 'UA-21761074-1']);
  42. _gaq.push(['_setDomainName', 'none']);
  43. _gaq.push(['_setAllowLinker', true]);
  44. _gaq.push(['_trackPageview']);
  45. var ga = document.createElement('script');
  46. ga.type = 'text/javascript';
  47. ga.async = true;
  48. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  49. var s = document.getElementsByTagName('script')[0];
  50. s.parentNode.insertBefore(ga, s);
  51. }
  52. google.load("feeds", "1");
  53. google.setOnLoadCallback(initialize);
  54. google_analytics();
  55. jQuery(document).ready(function($) {
  56. var url = window.location.href;
  57. // Get the basename of the URL
  58. url = url.split(/[\\/]/).pop()
  59. $('.nav a[href="/' + url + '"]').parent().addClass('active');
  60. });