7 sub linkify ($$) { #{{{
11 $content =~ s{(\\?)$config{wiki_link_regexp}}{
12 $1 ? "[[$2]]" : htmllink($page, $2)
18 sub htmlize ($$) { #{{{
22 if (! $INC{"/usr/bin/markdown"}) {
24 $blosxom::version="is a proper perl module too much to ask?";
26 do "/usr/bin/markdown";
29 if ($type eq '.mdwn') {
30 return Markdown::Markdown($content);
33 error("htmlization of $type not supported");
37 sub backlinks ($) { #{{{
41 foreach my $p (keys %links) {
42 next if bestlink($page, $p) eq $page;
43 if (grep { length $_ && bestlink($p, $_) eq $page } @{$links{$p}}) {
44 my $href=File::Spec->abs2rel(htmlpage($p), dirname($page));
46 # Trim common dir prefixes from both pages.
48 my $page_trimmed=$page;
50 1 while (($dir)=$page_trimmed=~m!^([^/]+/)!) &&
52 $p_trimmed=~s/^\Q$dir\E// &&
53 $page_trimmed=~s/^\Q$dir\E//;
55 push @links, { url => $href, page => $p_trimmed };
59 return sort { $a->{page} cmp $b->{page} } @links;
62 sub parentlinks ($) { #{{{
69 foreach my $dir (reverse split("/", $page)) {
72 unshift @ret, { url => "$path$dir.html", page => $dir };
78 unshift @ret, { url => length $path ? $path : ".", page => $config{wikiname} };
82 sub rsspage ($) { #{{{
88 sub postprocess { #{{{
89 # Takes content to postprocess followed by a list of postprocessor
90 # commands and subroutine references to run for the commands.
100 "[[$command $params]]";
102 elsif (exists $commands{$command}) {
104 while ($params =~ /(\w+)=\"([^"]+)"(\s+|$)/g) {
107 $commands{$command}->($page, %params);
110 "[[bad directive $command]]";
114 $content =~ s{(\\?)$config{wiki_processor_regexp}}{$handle->($1, $2, $3)}eg;
118 sub blog_list ($$) { #{{{
123 foreach my $page (keys %pagesources) {
124 if (globlist_match($page, $globlist)) {
129 @list=sort { $pagectime{$b} <=> $pagectime{$a} } @list;
130 return @list if ! $maxitems || @list <= $maxitems;
131 return @list[0..$maxitems - 1];
134 sub get_inline_content ($$) { #{{{
135 my $parentpage=shift;
138 my $file=$pagesources{$page};
139 my $type=pagetype($file);
140 if ($type ne 'unknown') {
141 return htmlize($type, linkify(readfile("$config{srcdir}/$file"), $parentpage));
148 sub postprocess_html_inline { #{{{
149 my $parentpage=shift;
152 if (! exists $params{pages}) {
155 if (! exists $params{archive}) {
156 $params{archive}="no";
158 if (! exists $params{show} && $params{archive} eq "no") {
161 $inlinepages{$parentpage}=$params{pages};
163 my $template=HTML::Template->new(blind_cache => 1,
164 filename => (($params{archive} eq "no")
165 ? "$config{templatedir}/inlinepage.tmpl"
166 : "$config{templatedir}/inlinepagetitle.tmpl"));
169 foreach my $page (blog_list($params{pages}, $params{show})) {
170 next if $page eq $parentpage;
171 $template->param(pagelink => htmllink($parentpage, $page));
172 $template->param(content => get_inline_content($parentpage, $page))
173 if $params{archive} eq "no";
174 $template->param(ctime => scalar(gmtime($pagectime{$page})));
175 $ret.=$template->output;
181 sub genpage ($$$) { #{{{
186 $content = postprocess($page, $content, inline => \&postprocess_html_inline);
188 my $title=pagetitle(basename($page));
190 my $template=HTML::Template->new(blind_cache => 1,
191 filename => "$config{templatedir}/page.tmpl");
193 if (length $config{cgiurl}) {
194 $template->param(editurl => "$config{cgiurl}?do=edit&page=$page");
195 $template->param(prefsurl => "$config{cgiurl}?do=prefs");
197 $template->param(recentchangesurl => "$config{cgiurl}?do=recentchanges");
201 if (length $config{historyurl}) {
202 my $u=$config{historyurl};
203 $u=~s/\[\[file\]\]/$pagesources{$page}/g;
204 $template->param(historyurl => $u);
207 if ($config{rss} && $inlinepages{$page}) {
208 $template->param(rssurl => rsspage($page));
213 wikiname => $config{wikiname},
214 parentlinks => [parentlinks($page)],
216 backlinks => [backlinks($page)],
217 discussionlink => htmllink($page, "Discussion", 1, 1),
218 mtime => scalar(gmtime($mtime)),
221 return $template->output;
224 sub date_822 ($) { #{{{
228 return POSIX::strftime("%a, %d %b %Y %H:%M:%S %z", localtime($time));
231 sub absolute_urls ($$) { #{{{
232 # sucky sub because rss sucks
238 $content=~s/<a\s+href="(?!http:\/\/)([^"]+)"/<a href="$url$1"/ig;
239 $content=~s/<img\s+src="(?!http:\/\/)([^"]+)"/<img src="$url$1"/ig;
243 sub genrss ($$$) { #{{{
248 my $url="$config{url}/".htmlpage($page);
250 my $template=HTML::Template->new(blind_cache => 1,
251 filename => "$config{templatedir}/rsspage.tmpl");
256 my $parentpage=shift;
259 return "" if exists $params{archive} && $params{archive} eq 'yes';
261 if (! exists $params{show}) {
264 if (! exists $params{pages}) {
269 foreach my $page (blog_list($params{pages}, $params{show})) {
270 next if $page eq $parentpage;
272 itemtitle => pagetitle(basename($page)),
273 itemurl => "$config{url}/$renderedfiles{$page}",
274 itempubdate => date_822($pagectime{$page}),
275 itemcontent => absolute_urls(get_inline_content($parentpage, $page), $url),
276 } if exists $renderedfiles{$page};
282 $content = postprocess($page, $content, inline => $gen_blog);
285 title => $config{wikiname},
290 return $template->output;
293 sub check_overwrite ($$) { #{{{
294 # Important security check. Make sure to call this before saving
295 # any files to the source directory.
299 if (! exists $renderedfiles{$src} && -e $dest && ! $config{rebuild}) {
300 error("$dest already exists and was rendered from ".
301 join(" ",(grep { $renderedfiles{$_} eq $dest } keys
303 ", before, so not rendering from $src");
310 return (stat($page))[9];
313 sub findlinks ($$) { #{{{
318 while ($content =~ /(?<!\\)$config{wiki_link_regexp}/g) {
321 # Discussion links are a special case since they're not in the text
322 # of the page, but on its template.
323 return @links, "$page/discussion";
326 sub render ($) { #{{{
329 my $type=pagetype($file);
330 my $content=readfile("$config{srcdir}/$file");
331 if ($type ne 'unknown') {
332 my $page=pagename($file);
334 $links{$page}=[findlinks($content, $page)];
335 delete $inlinepages{$page};
337 $content=linkify($content, $page);
338 $content=htmlize($type, $content);
340 check_overwrite("$config{destdir}/".htmlpage($page), $page);
341 writefile("$config{destdir}/".htmlpage($page),
342 genpage($content, $page, mtime("$config{srcdir}/$file")));
343 $oldpagemtime{$page}=time;
344 $renderedfiles{$page}=htmlpage($page);
346 # TODO: should really add this to renderedfiles and call
347 # check_overwrite, as above, but currently renderedfiles
348 # only supports listing one file per page.
349 if ($config{rss} && exists $inlinepages{$page}) {
350 writefile("$config{destdir}/".rsspage($page),
351 genrss($content, $page, mtime("$config{srcdir}/$file")));
356 check_overwrite("$config{destdir}/$file", $file);
357 writefile("$config{destdir}/$file", $content);
358 $oldpagemtime{$file}=time;
359 $renderedfiles{$file}=$file;
367 my $dir=dirname($file);
368 while (rmdir($dir)) {
373 sub refresh () { #{{{
374 # find existing pages
377 eval q{use File::Find};
381 if (/$config{wiki_file_prune_regexp}/) {
383 $File::Find::prune=1;
386 elsif (! -d $_ && ! -l $_) {
387 my ($f)=/$config{wiki_file_regexp}/; # untaint
389 warn("skipping bad filename $_\n");
392 $f=~s/^\Q$config{srcdir}\E\/?//;
394 $exists{pagename($f)}=1;
402 # check for added or removed pages
404 foreach my $file (@files) {
405 my $page=pagename($file);
406 if (! $oldpagemtime{$page}) {
407 debug("new page $page") unless exists $pagectime{$page};
410 $pagesources{$page}=$file;
411 $pagectime{$page}=time unless exists $pagectime{$page};
415 foreach my $page (keys %oldpagemtime) {
416 if (! $exists{$page}) {
417 debug("removing old page $page");
418 push @del, $pagesources{$page};
419 prune($config{destdir}."/".$renderedfiles{$page});
420 delete $renderedfiles{$page};
421 $oldpagemtime{$page}=0;
422 delete $pagesources{$page};
426 # render any updated files
427 foreach my $file (@files) {
428 my $page=pagename($file);
430 if (! exists $oldpagemtime{$page} ||
431 mtime("$config{srcdir}/$file") > $oldpagemtime{$page}) {
432 debug("rendering changed file $file");
438 # if any files were added or removed, check to see if each page
439 # needs an update due to linking to them or inlining them.
440 # TODO: inefficient; pages may get rendered above and again here;
441 # problem is the bestlink may have changed and we won't know until
444 FILE: foreach my $file (@files) {
445 my $page=pagename($file);
446 foreach my $f (@add, @del) {
448 foreach my $link (@{$links{$page}}) {
449 if (bestlink($page, $link) eq $p) {
450 debug("rendering $file, which links to $p");
460 # Handle backlinks; if a page has added/removed links, update the
461 # pages it links to. Also handle inlining here.
462 # TODO: inefficient; pages may get rendered above and again here;
463 # problem is the backlinks could be wrong in the first pass render
465 if (%rendered || @del) {
466 foreach my $f (@files) {
468 if (exists $inlinepages{$p}) {
469 foreach my $file (keys %rendered, @del) {
470 my $page=pagename($file);
471 if (globlist_match($page, $inlinepages{$p})) {
472 debug("rendering $f, which inlines $page");
481 foreach my $file (keys %rendered, @del) {
482 my $page=pagename($file);
484 if (exists $links{$page}) {
485 foreach my $link (map { bestlink($page, $_) } @{$links{$page}}) {
487 ! exists $oldlinks{$page} ||
488 ! grep { $_ eq $link } @{$oldlinks{$page}}) {
489 $linkchanged{$link}=1;
493 if (exists $oldlinks{$page}) {
494 foreach my $link (map { bestlink($page, $_) } @{$oldlinks{$page}}) {
496 ! exists $links{$page} ||
497 ! grep { $_ eq $link } @{$links{$page}}) {
498 $linkchanged{$link}=1;
503 foreach my $link (keys %linkchanged) {
504 my $linkfile=$pagesources{$link};
505 if (defined $linkfile) {
506 debug("rendering $linkfile, to update its backlinks");