X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/dae0f48e91304afcb6ebe0936360e51b22a56548..1705e6246ece4d75541f7feb42abef512ba3a3be:/IkiWiki.pm diff --git a/IkiWiki.pm b/IkiWiki.pm index 1cbe975c0..d63b02dff 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -14,6 +14,7 @@ use Exporter q{import}; our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match bestlink htmllink readfile writefile pagetype srcfile pagename %config %links %renderedfiles %pagesources); +our $VERSION = 1.00; # Optimisation. use Memoize; @@ -319,7 +320,7 @@ sub baseurl (;$) { #{{{ sub abs2rel ($$) { #{{{ # Work around very innefficient behavior in File::Spec if abs2rel # is passed two relative paths. It's much faster if paths are - # absolute! + # absolute! (Debian bug #376658) my $path="/".shift; my $base="/".shift;