xmlsitemap.xsl.js 775 B

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