aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/otl.pm
blob: be339c88ebee44b77371422822ae4816a102cd5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/perl
# outline markup
package IkiWiki::Plugin::otl;

use warnings;
use strict;
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 (@) { #{{{
	my %params=@_;

	my $tries=10;
	while (1) {
		eval {
			open2(*IN, *OUT, 'otl2html -S /dev/null -T /dev/stdin');
		};
		last unless $@;
		$tries--;
		if ($tries < 1) {
			IkiWiki::debug("failed to run otl2html: $@");
			return $params{content};
		}
	}
	# open2 doesn't respect "use open ':utf8'"
	binmode (IN, ':utf8'); 
	binmode (OUT, ':utf8'); 
	
	print OUT $params{content};
	close OUT;

	local $/ = undef;
	my $ret=<IN>;
	$ret=~s/.*<body>//s;
	$ret=~s/<body>.*//s;
	$ret=~s/<div class="Footer">.*//s;
	return $ret;
} # }}}

1