]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/otl.pm
commas
[git.ikiwiki.info.git] / IkiWiki / Plugin / otl.pm
index 6406483ff576d026d57963d75d8b526d6c272e8b..0cd93a3ecc773248e82e9180f7ae8a6c319198fa 100644 (file)
@@ -8,33 +8,56 @@ use IkiWiki;
 use IPC::Open2;
 
 sub import { #{{{
+       IkiWiki::hook(type => "filter", id => "otl", call => \&filter);
        IkiWiki::hook(type => "htmlize", id => "otl", call => \&htmlize);
+
+} # }}}
+
+sub filter (@) { #{{{
+       my %params=@_;
+        
+       # Munge up check boxes to look a little bit better. This is a hack.
+       my $checked=IkiWiki::htmllink($params{page}, $params{page},
+               "smileys/star_on.png", 0);
+       my $unchecked=IkiWiki::htmllink($params{page}, $params{page},
+               "smileys/star_off.png", 0);
+       $params{content}=~s/^(\s*)\[X\]\s/${1}$checked /mg;
+       $params{content}=~s/^(\s*)\[_\]\s/${1}$unchecked /mg;
+        
+       return $params{content};
 } # }}}
 
-sub htmlize ($) { #{{{
+sub htmlize (@) { #{{{
+       my %params=@_;
+
        my $tries=10;
+       my $pid;
        while (1) {
                eval {
-                       open2(*IN, *OUT, 'otl2html -S /dev/null -T /dev/stdin');
+                       $pid=open2(*IN, *OUT, 'otl2html -S /dev/null -T /dev/stdin');
                };
                last unless $@;
                $tries--;
                if ($tries < 1) {
                        IkiWiki::debug("failed to run otl2html: $@");
-                       return shift;
+                       return $params{content};
                }
        }
        # open2 doesn't respect "use open ':utf8'"
        binmode (IN, ':utf8'); 
        binmode (OUT, ':utf8'); 
        
-       print OUT shift;
+       print OUT $params{content};
        close OUT;
 
        local $/ = undef;
        my $ret=<IN>;
+       close IN;
+       waitpid $pid, 0;
+
        $ret=~s/.*<body>//s;
        $ret=~s/<body>.*//s;
+       $ret=~s/<div class="Footer">.*//s;
        return $ret;
 } # }}}