This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require "rubygems" | |
require "integrity" | |
class Refresher | |
JS = <<-EOS | |
<script type="text/javascript"> | |
//<![CDATA[ | |
setTimeout('location.reload()', %s * 1000) | |
//]]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function () { | |
var toc = $("<ul>").css("margin-bottom", "20px !important"); | |
$("div.main div.wikistyle h2").each(function() { | |
var id = $(this).text().replace(/\s+/g, "_").replace(/[^0-9a-zA-Z_.-]/g, "") | |
$(this).attr("id", id) | |
toc.append( | |
$("<li>").append($("<b>").append($("<a>").attr("href", "#" + id).text($(this).text()))) | |
) | |
}); | |
$("div.wikistyle").prepend(toc).prepend($("<h2>").text("Table of Contents")); |