]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki.pm
hail UB313!
[ikiwiki.git] / IkiWiki.pm
index 1cbe975c058cc7a455dc4127067d1bf943776651..a3f907770cdd69ff3664785911088d0620995b80 100644 (file)
@@ -13,7 +13,9 @@ use vars qw{%config %links %oldlinks %oldpagemtime %pagectime %pagecase
 use Exporter q{import};
 our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match
                  bestlink htmllink readfile writefile pagetype srcfile pagename
+                 displaytime
                  %config %links %renderedfiles %pagesources);
+our $VERSION = 1.00;
 
 # Optimisation.
 use Memoize;
@@ -319,7 +321,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;