xmlsitemap.xsl.js 823 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // $Id: xmlsitemap.xsl.js,v 1.4 2009/12/23 07:34:46 davereid Exp $
  2. (function($){
  3. $.tablesorter.addParser({
  4. // set a unique id
  5. id: 'changefreq',
  6. is: function(s) {
  7. return false;
  8. },
  9. format: function(s) {
  10. switch (s) {
  11. case 'always':
  12. return 0;
  13. case 'hourly':
  14. return 1;
  15. case 'daily':
  16. return 2;
  17. case 'weekly':
  18. return 3;
  19. case 'monthly':
  20. return 4;
  21. case 'yearly':
  22. return 5;
  23. default:
  24. return 6;
  25. }
  26. },
  27. type: 'numeric'
  28. });
  29. $(document).ready(function() {
  30. // Set some location variales.
  31. $('h1').append(': ' + location);
  32. document.title += ': ' + location;
  33. $('table').tablesorter({
  34. sortList: [[0,0]],
  35. headers: {
  36. 2: { sorter: 'changefreq' }
  37. },
  38. widgets: ['zebra']
  39. });
  40. });
  41. })(jQuery);