summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/inline.pm
blob: 715a3d6523cfcee4e57c125425d19cfdab110298 (plain)
  1. #!/usr/bin/perl
  2. # Page inlining and blogging.
  3. package IkiWiki::Plugin::inline;
  4. use warnings;
  5. use strict;
  6. use Encode;
  7. use IkiWiki 3.00;
  8. use URI;
  9. my %knownfeeds;
  10. my %page_numfeeds;
  11. my @inline;
  12. my $nested=0;
  13. sub import {
  14. hook(type => "getopt", id => "inline", call => \&getopt);
  15. hook(type => "getsetup", id => "inline", call => \&getsetup);
  16. hook(type => "checkconfig", id => "inline", call => \&checkconfig);
  17. hook(type => "sessioncgi", id => "inline", call => \&sessioncgi);
  18. hook(type => "preprocess", id => "inline",
  19. call => \&IkiWiki::preprocess_inline);
  20. hook(type => "pagetemplate", id => "inline",
  21. call => \&IkiWiki::pagetemplate_inline);
  22. hook(type => "format", id => "inline", call => \&format, first => 1);
  23. # Hook to change to do pinging since it's called late.
  24. # This ensures each page only pings once and prevents slow
  25. # pings interrupting page builds.
  26. hook(type => "change", id => "inline", call => \&IkiWiki::pingurl);
  27. }
  28. sub getopt () {
  29. eval q{use Getopt::Long};
  30. error($@) if $@;
  31. Getopt::Long::Configure('pass_through');
  32. GetOptions(
  33. "rss!" => \$config{rss},
  34. "atom!" => \$config{atom},
  35. "allowrss!" => \$config{allowrss},
  36. "allowatom!" => \$config{allowatom},
  37. "pingurl=s" => sub {
  38. push @{$config{pingurl}}, $_[1];
  39. },
  40. );
  41. }
  42. sub getsetup () {
  43. return
  44. plugin => {
  45. safe => 1,
  46. rebuild => undef,
  47. section => "core",
  48. },
  49. rss => {
  50. type => "boolean",
  51. example => 0,
  52. description => "enable rss feeds by default?",
  53. safe => 1,
  54. rebuild => 1,
  55. },
  56. atom => {
  57. type => "boolean",
  58. example => 0,
  59. description => "enable atom feeds by default?",
  60. safe => 1,
  61. rebuild => 1,
  62. },
  63. allowrss => {
  64. type => "boolean",
  65. example => 0,
  66. description => "allow rss feeds to be used?",
  67. safe => 1,
  68. rebuild => 1,
  69. },
  70. allowatom => {
  71. type => "boolean",
  72. example => 0,
  73. description => "allow atom feeds to be used?",
  74. safe => 1,
  75. rebuild => 1,
  76. },
  77. pingurl => {
  78. type => "string",
  79. example => "http://rpc.technorati.com/rpc/ping",
  80. description => "urls to ping (using XML-RPC) on feed update",
  81. safe => 1,
  82. rebuild => 0,
  83. },
  84. }
  85. sub checkconfig () {
  86. if (($config{rss} || $config{atom}) && ! length $config{url}) {
  87. error(gettext("Must specify url to wiki with --url when using --rss or --atom"));
  88. }
  89. if ($config{rss}) {
  90. push @{$config{wiki_file_prune_regexps}}, qr/\.rss$/;
  91. }
  92. if ($config{atom}) {
  93. push @{$config{wiki_file_prune_regexps}}, qr/\.atom$/;
  94. }
  95. if (! exists $config{pingurl}) {
  96. $config{pingurl}=[];
  97. }
  98. }
  99. sub format (@) {
  100. my %params=@_;
  101. # Fill in the inline content generated earlier. This is actually an
  102. # optimisation.
  103. $params{content}=~s{<div class="inline" id="([^"]+)"></div>}{
  104. delete @inline[$1,]
  105. }eg;
  106. return $params{content};
  107. }
  108. sub sessioncgi ($$) {
  109. my $q=shift;
  110. my $session=shift;
  111. if ($q->param('do') eq 'blog') {
  112. my $page=titlepage(decode_utf8($q->param('title')));
  113. $page=~s/(\/)/"__".ord($1)."__"/eg; # don't create subdirs
  114. # if the page already exists, munge it to be unique
  115. my $from=$q->param('from');
  116. my $add="";
  117. while (exists $IkiWiki::pagecase{lc($from."/".$page.$add)}) {
  118. $add=1 unless length $add;
  119. $add++;
  120. }
  121. $q->param('page', $page.$add);
  122. # now go create the page
  123. $q->param('do', 'create');
  124. # make sure the editpage plugin in loaded
  125. if (IkiWiki->can("cgi_editpage")) {
  126. IkiWiki::cgi_editpage($q, $session);
  127. }
  128. else {
  129. error(gettext("page editing not allowed"));
  130. }
  131. exit;
  132. }
  133. }
  134. # Back to ikiwiki namespace for the rest, this code is very much
  135. # internal to ikiwiki even though it's separated into a plugin.
  136. package IkiWiki;
  137. my %toping;
  138. my %feedlinks;
  139. sub preprocess_inline (@) {
  140. my %params=@_;
  141. if (! exists $params{pages} && ! exists $params{pagenames}) {
  142. error gettext("missing pages parameter");
  143. }
  144. my $raw=yesno($params{raw});
  145. my $archive=yesno($params{archive});
  146. my $rss=(($config{rss} || $config{allowrss}) && exists $params{rss}) ? yesno($params{rss}) : $config{rss};
  147. my $atom=(($config{atom} || $config{allowatom}) && exists $params{atom}) ? yesno($params{atom}) : $config{atom};
  148. my $quick=exists $params{quick} ? yesno($params{quick}) : 0;
  149. my $feeds=! $nested && (exists $params{feeds} ? yesno($params{feeds}) : !$quick && ! $raw);
  150. my $emptyfeeds=exists $params{emptyfeeds} ? yesno($params{emptyfeeds}) : 1;
  151. my $feedonly=yesno($params{feedonly});
  152. if (! exists $params{show} && ! $archive) {
  153. $params{show}=10;
  154. }
  155. if (! exists $params{feedshow} && exists $params{show}) {
  156. $params{feedshow}=$params{show};
  157. }
  158. my $desc;
  159. if (exists $params{description}) {
  160. $desc = $params{description}
  161. }
  162. else {
  163. $desc = $config{wikiname};
  164. }
  165. my $actions=yesno($params{actions});
  166. if (exists $params{template}) {
  167. $params{template}=~s/[^-_a-zA-Z0-9]+//g;
  168. }
  169. else {
  170. $params{template} = $archive ? "archivepage" : "inlinepage";
  171. }
  172. my @list;
  173. if (exists $params{pagenames}) {
  174. foreach my $p (qw(sort pages)) {
  175. if (exists $params{$p}) {
  176. error sprintf(gettext("the %s and %s parameters cannot be used together"),
  177. "pagenames", $p);
  178. }
  179. }
  180. @list = map { bestlink($params{page}, $_) }
  181. split ' ', $params{pagenames};
  182. if (yesno($params{reverse})) {
  183. @list=reverse(@list);
  184. }
  185. foreach my $p (@list) {
  186. add_depends($params{page}, $p, deptype($quick ? "presence" : "content"));
  187. }
  188. }
  189. else {
  190. my $num=0;
  191. if ($params{show}) {
  192. $num=$params{show};
  193. }
  194. if ($params{feedshow} && $num < $params{feedshow} && $num > 0) {
  195. $num=$params{feedshow};
  196. }
  197. if ($params{skip} && $num) {
  198. $num+=$params{skip};
  199. }
  200. @list = pagespec_match_list($params{page}, $params{pages},
  201. deptype => deptype($quick ? "presence" : "content"),
  202. filter => sub { $_[0] eq $params{page} },
  203. sort => exists $params{sort} ? $params{sort} : "age",
  204. reverse => yesno($params{reverse}),
  205. ($num ? (num => $num) : ()),
  206. );
  207. }
  208. if (exists $params{skip}) {
  209. @list=@list[$params{skip} .. $#list];
  210. }
  211. my @feedlist;
  212. if ($feeds) {
  213. if (exists $params{feedshow} &&
  214. $params{feedshow} && @list > $params{feedshow}) {
  215. @feedlist=@list[0..$params{feedshow} - 1];
  216. }
  217. else {
  218. @feedlist=@list;
  219. }
  220. }
  221. if ($params{show} && @list > $params{show}) {
  222. @list=@list[0..$params{show} - 1];
  223. }
  224. if ($feeds && exists $params{feedpages}) {
  225. @feedlist = pagespec_match_list(
  226. $params{page}, "($params{pages}) and ($params{feedpages})",
  227. deptype => deptype($quick ? "presence" : "content"),
  228. list => \@feedlist,
  229. );
  230. }
  231. my ($feedbase, $feednum);
  232. if ($feeds) {
  233. # Ensure that multiple feeds on a page go to unique files.
  234. # Feedfile can lead to conflicts if usedirs is not enabled,
  235. # so avoid supporting it in that case.
  236. delete $params{feedfile} if ! $config{usedirs};
  237. # Tight limits on legal feedfiles, to avoid security issues
  238. # and conflicts.
  239. if (defined $params{feedfile}) {
  240. if ($params{feedfile} =~ /\// ||
  241. $params{feedfile} !~ /$config{wiki_file_regexp}/) {
  242. error("illegal feedfile");
  243. }
  244. $params{feedfile}=possibly_foolish_untaint($params{feedfile});
  245. }
  246. $feedbase=targetpage($params{destpage}, "", $params{feedfile});
  247. my $feedid=join("\0", $feedbase, map { $_."\0".$params{$_} } sort keys %params);
  248. if (exists $knownfeeds{$feedid}) {
  249. $feednum=$knownfeeds{$feedid};
  250. }
  251. else {
  252. if (exists $page_numfeeds{$params{destpage}}{$feedbase}) {
  253. if ($feeds) {
  254. $feednum=$knownfeeds{$feedid}=++$page_numfeeds{$params{destpage}}{$feedbase};
  255. }
  256. }
  257. else {
  258. $feednum=$knownfeeds{$feedid}="";
  259. if ($feeds) {
  260. $page_numfeeds{$params{destpage}}{$feedbase}=1;
  261. }
  262. }
  263. }
  264. }
  265. my $rssurl=abs2rel($feedbase."rss".$feednum, dirname(htmlpage($params{destpage}))) if $feeds && $rss;
  266. my $atomurl=abs2rel($feedbase."atom".$feednum, dirname(htmlpage($params{destpage}))) if $feeds && $atom;
  267. my $ret="";
  268. if (length $config{cgiurl} && ! $params{preview} && (exists $params{rootpage} ||
  269. (exists $params{postform} && yesno($params{postform}))) &&
  270. IkiWiki->can("cgi_editpage")) {
  271. # Add a blog post form, with feed buttons.
  272. my $formtemplate=template_depends("blogpost.tmpl", $params{page}, blind_cache => 1);
  273. $formtemplate->param(cgiurl => $config{cgiurl});
  274. $formtemplate->param(rootpage => rootpage(%params));
  275. $formtemplate->param(rssurl => $rssurl) if $feeds && $rss;
  276. $formtemplate->param(atomurl => $atomurl) if $feeds && $atom;
  277. if (exists $params{postformtext}) {
  278. $formtemplate->param(postformtext =>
  279. $params{postformtext});
  280. }
  281. else {
  282. $formtemplate->param(postformtext =>
  283. gettext("Add a new post titled:"));
  284. }
  285. $ret.=$formtemplate->output;
  286. # The post form includes the feed buttons, so
  287. # emptyfeeds cannot be hidden.
  288. $emptyfeeds=1;
  289. }
  290. elsif ($feeds && !$params{preview} && ($emptyfeeds || @feedlist)) {
  291. # Add feed buttons.
  292. my $linktemplate=template_depends("feedlink.tmpl", $params{page}, blind_cache => 1);
  293. $linktemplate->param(rssurl => $rssurl) if $rss;
  294. $linktemplate->param(atomurl => $atomurl) if $atom;
  295. $ret.=$linktemplate->output;
  296. }
  297. if (! $feedonly) {
  298. my $template;
  299. if (! $raw) {
  300. # cannot use wiki pages as templates; template not sanitized due to
  301. # format hook hack
  302. eval {
  303. $template=template_depends($params{template}.".tmpl", $params{page},
  304. blind_cache => 1);
  305. };
  306. if ($@) {
  307. error gettext("failed to process template:")." $@";
  308. }
  309. if (! $template) {
  310. error sprintf(gettext("template %s not found"), $params{template}.".tmpl");
  311. }
  312. }
  313. my $needcontent=$raw || (!($archive && $quick) && $template->query(name => 'content'));
  314. foreach my $page (@list) {
  315. my $file = $pagesources{$page};
  316. my $type = pagetype($file);
  317. if (! $raw) {
  318. if ($needcontent) {
  319. # Get the content before populating the
  320. # template, since getting the content uses
  321. # the same template if inlines are nested.
  322. my $content=get_inline_content($page, $params{destpage});
  323. $template->param(content => $content);
  324. }
  325. $template->param(pageurl => urlto($page, $params{destpage}));
  326. $template->param(inlinepage => $page);
  327. $template->param(title => pagetitle(basename($page)));
  328. $template->param(ctime => displaytime($pagectime{$page}, $params{timeformat}, 1));
  329. $template->param(mtime => displaytime($pagemtime{$page}, $params{timeformat}));
  330. $template->param(first => 1) if $page eq $list[0];
  331. $template->param(last => 1) if $page eq $list[$#list];
  332. $template->param(html5 => $config{html5});
  333. if ($actions) {
  334. my $file = $pagesources{$page};
  335. my $type = pagetype($file);
  336. if ($config{discussion}) {
  337. if ($page !~ /.*\/\Q$config{discussionpage}\E$/i &&
  338. (length $config{cgiurl} ||
  339. exists $pagesources{$page."/".lc($config{discussionpage})})) {
  340. $template->param(have_actions => 1);
  341. $template->param(discussionlink =>
  342. htmllink($page,
  343. $params{destpage},
  344. $config{discussionpage},
  345. noimageinline => 1,
  346. forcesubpage => 1));
  347. }
  348. }
  349. if (length $config{cgiurl} &&
  350. defined $type &&
  351. IkiWiki->can("cgi_editpage")) {
  352. $template->param(have_actions => 1);
  353. $template->param(editurl => cgiurl(do => "edit", page => $page));
  354. }
  355. }
  356. run_hooks(pagetemplate => sub {
  357. shift->(page => $page, destpage => $params{destpage},
  358. template => $template,);
  359. });
  360. $ret.=$template->output;
  361. $template->clear_params;
  362. }
  363. else {
  364. if (defined $type) {
  365. $ret.="\n".
  366. linkify($page, $params{destpage},
  367. preprocess($page, $params{destpage},
  368. filter($page, $params{destpage},
  369. readfile(srcfile($file)))));
  370. }
  371. else {
  372. $ret.="\n".
  373. readfile(srcfile($file));
  374. }
  375. }
  376. }
  377. }
  378. if ($feeds && ($emptyfeeds || @feedlist)) {
  379. if ($rss) {
  380. my $rssp=$feedbase."rss".$feednum;
  381. will_render($params{destpage}, $rssp);
  382. if (! $params{preview}) {
  383. writefile($rssp, $config{destdir},
  384. genfeed("rss",
  385. $config{url}."/".$rssp, $desc, $params{guid}, $params{destpage}, @feedlist));
  386. $toping{$params{destpage}}=1 unless $config{rebuild};
  387. $feedlinks{$params{destpage}}.=qq{<link rel="alternate" type="application/rss+xml" title="$desc (RSS)" href="$rssurl" />};
  388. }
  389. }
  390. if ($atom) {
  391. my $atomp=$feedbase."atom".$feednum;
  392. will_render($params{destpage}, $atomp);
  393. if (! $params{preview}) {
  394. writefile($atomp, $config{destdir},
  395. genfeed("atom", $config{url}."/".$atomp, $desc, $params{guid}, $params{destpage}, @feedlist));
  396. $toping{$params{destpage}}=1 unless $config{rebuild};
  397. $feedlinks{$params{destpage}}.=qq{<link rel="alternate" type="application/atom+xml" title="$desc (Atom)" href="$atomurl" />};
  398. }
  399. }
  400. }
  401. clear_inline_content_cache();
  402. return $ret if $raw || $nested;
  403. push @inline, $ret;
  404. return "<div class=\"inline\" id=\"$#inline\"></div>\n\n";
  405. }
  406. sub pagetemplate_inline (@) {
  407. my %params=@_;
  408. my $page=$params{page};
  409. my $template=$params{template};
  410. $template->param(feedlinks => $feedlinks{$page})
  411. if exists $feedlinks{$page} && $template->query(name => "feedlinks");
  412. }
  413. {
  414. my %inline_content;
  415. my $cached_destpage="";
  416. sub get_inline_content ($$) {
  417. my $page=shift;
  418. my $destpage=shift;
  419. if (exists $inline_content{$page} && $cached_destpage eq $destpage) {
  420. return $inline_content{$page};
  421. }
  422. my $file=$pagesources{$page};
  423. my $type=pagetype($file);
  424. my $ret="";
  425. if (defined $type) {
  426. $nested++;
  427. $ret=htmlize($page, $destpage, $type,
  428. linkify($page, $destpage,
  429. preprocess($page, $destpage,
  430. filter($page, $destpage,
  431. readfile(srcfile($file))))));
  432. $nested--;
  433. if (isinternal($page)) {
  434. # make inlined text of internal pages searchable
  435. run_hooks(indexhtml => sub {
  436. shift->(page => $page, destpage => $page,
  437. content => $ret);
  438. });
  439. }
  440. }
  441. if ($cached_destpage ne $destpage) {
  442. clear_inline_content_cache();
  443. $cached_destpage=$destpage;
  444. }
  445. return $inline_content{$page}=$ret;
  446. }
  447. sub clear_inline_content_cache () {
  448. %inline_content=();
  449. }
  450. }
  451. sub date_822 ($) {
  452. my $time=shift;
  453. my $lc_time=POSIX::setlocale(&POSIX::LC_TIME);
  454. POSIX::setlocale(&POSIX::LC_TIME, "C");
  455. my $ret=POSIX::strftime("%a, %d %b %Y %H:%M:%S %z", localtime($time));
  456. POSIX::setlocale(&POSIX::LC_TIME, $lc_time);
  457. return $ret;
  458. }
  459. sub absolute_urls ($$) {
  460. # sucky sub because rss sucks
  461. my $content=shift;
  462. my $baseurl=shift;
  463. my $url=$baseurl;
  464. $url=~s/[^\/]+$//;
  465. # what is the non path part of the url?
  466. my $top_uri = URI->new($url);
  467. $top_uri->path_query(""); # reset the path
  468. my $urltop = $top_uri->as_string;
  469. $content=~s/(<a(?:\s+(?:class|id)\s*="?\w+"?)?)\s+href=\s*"(#[^"]+)"/$1 href="$baseurl$2"/mig;
  470. # relative to another wiki page
  471. $content=~s/(<a(?:\s+(?:class|id)\s*="?\w+"?)?)\s+href=\s*"(?!\w+:)([^\/][^"]*)"/$1 href="$url$2"/mig;
  472. $content=~s/(<img(?:\s+(?:class|id|width|height)\s*="?\w+"?)*)\s+src=\s*"(?!\w+:)([^\/][^"]*)"/$1 src="$url$2"/mig;
  473. # relative to the top of the site
  474. $content=~s/(<a(?:\s+(?:class|id)\s*="?\w+"?)?)\s+href=\s*"(?!\w+:)(\/[^"]*)"/$1 href="$urltop$2"/mig;
  475. $content=~s/(<img(?:\s+(?:class|id|width|height)\s*="?\w+"?)*)\s+src=\s*"(?!\w+:)(\/[^"]*)"/$1 src="$urltop$2"/mig;
  476. return $content;
  477. }
  478. sub genfeed ($$$$$@) {
  479. my $feedtype=shift;
  480. my $feedurl=shift;
  481. my $feeddesc=shift;
  482. my $guid=shift;
  483. my $page=shift;
  484. my @pages=@_;
  485. my $url=URI->new(encode_utf8(urlto($page,"",1)));
  486. my $itemtemplate=template_depends($feedtype."item.tmpl", $page, blind_cache => 1);
  487. my $content="";
  488. my $lasttime = 0;
  489. foreach my $p (@pages) {
  490. my $u=URI->new(encode_utf8(urlto($p, "", 1)));
  491. my $pcontent = absolute_urls(get_inline_content($p, $page), $url);
  492. $itemtemplate->param(
  493. title => pagetitle(basename($p)),
  494. url => $u,
  495. permalink => $u,
  496. cdate_822 => date_822($pagectime{$p}),
  497. mdate_822 => date_822($pagemtime{$p}),
  498. cdate_3339 => date_3339($pagectime{$p}),
  499. mdate_3339 => date_3339($pagemtime{$p}),
  500. );
  501. if (exists $pagestate{$p}) {
  502. if (exists $pagestate{$p}{meta}{guid}) {
  503. eval q{use HTML::Entities};
  504. $itemtemplate->param(guid => HTML::Entities::encode_numeric($pagestate{$p}{meta}{guid}));
  505. }
  506. if (exists $pagestate{$p}{meta}{updated}) {
  507. $itemtemplate->param(mdate_822 => date_822($pagestate{$p}{meta}{updated}));
  508. $itemtemplate->param(mdate_3339 => date_3339($pagestate{$p}{meta}{updated}));
  509. }
  510. }
  511. if ($itemtemplate->query(name => "enclosure")) {
  512. my $file=$pagesources{$p};
  513. my $type=pagetype($file);
  514. if (defined $type) {
  515. $itemtemplate->param(content => $pcontent);
  516. }
  517. else {
  518. my $size=(srcfile_stat($file))[8];
  519. my $mime="unknown";
  520. eval q{use File::MimeInfo};
  521. if (! $@) {
  522. $mime = mimetype($file);
  523. }
  524. $itemtemplate->param(
  525. enclosure => $u,
  526. type => $mime,
  527. length => $size,
  528. );
  529. }
  530. }
  531. else {
  532. $itemtemplate->param(content => $pcontent);
  533. }
  534. run_hooks(pagetemplate => sub {
  535. shift->(page => $p, destpage => $page,
  536. template => $itemtemplate);
  537. });
  538. $content.=$itemtemplate->output;
  539. $itemtemplate->clear_params;
  540. $lasttime = $pagemtime{$p} if $pagemtime{$p} > $lasttime;
  541. }
  542. my $template=template_depends($feedtype."page.tmpl", $page, blind_cache => 1);
  543. $template->param(
  544. title => $page ne "index" ? pagetitle($page) : $config{wikiname},
  545. wikiname => $config{wikiname},
  546. pageurl => $url,
  547. content => $content,
  548. feeddesc => $feeddesc,
  549. guid => $guid,
  550. feeddate => date_3339($lasttime),
  551. feedurl => $feedurl,
  552. version => $IkiWiki::version,
  553. );
  554. run_hooks(pagetemplate => sub {
  555. shift->(page => $page, destpage => $page,
  556. template => $template);
  557. });
  558. return $template->output;
  559. }
  560. sub pingurl (@) {
  561. return unless @{$config{pingurl}} && %toping;
  562. eval q{require RPC::XML::Client};
  563. if ($@) {
  564. debug(gettext("RPC::XML::Client not found, not pinging"));
  565. return;
  566. }
  567. # daemonize here so slow pings don't slow down wiki updates
  568. defined(my $pid = fork) or error("Can't fork: $!");
  569. return if $pid;
  570. chdir '/';
  571. POSIX::setsid() or error("Can't start a new session: $!");
  572. open STDIN, '/dev/null';
  573. open STDOUT, '>/dev/null';
  574. open STDERR, '>&STDOUT' or error("Can't dup stdout: $!");
  575. # Don't need to keep a lock on the wiki as a daemon.
  576. IkiWiki::unlockwiki();
  577. foreach my $page (keys %toping) {
  578. my $title=pagetitle(basename($page), 0);
  579. my $url=urlto($page, "", 1);
  580. foreach my $pingurl (@{$config{pingurl}}) {
  581. debug("Pinging $pingurl for $page");
  582. eval {
  583. my $client = RPC::XML::Client->new($pingurl);
  584. my $req = RPC::XML::request->new('weblogUpdates.ping',
  585. $title, $url);
  586. my $res = $client->send_request($req);
  587. if (! ref $res) {
  588. error("Did not receive response to ping");
  589. }
  590. my $r=$res->value;
  591. if (! exists $r->{flerror} || $r->{flerror}) {
  592. error("Ping rejected: ".(exists $r->{message} ? $r->{message} : "[unknown reason]"));
  593. }
  594. };
  595. if ($@) {
  596. error "Ping failed: $@";
  597. }
  598. }
  599. }
  600. exit 0; # daemon done
  601. }
  602. sub rootpage (@) {
  603. my %params=@_;
  604. my $rootpage;
  605. if (exists $params{rootpage}) {
  606. $rootpage=bestlink($params{page}, $params{rootpage});
  607. if (!length $rootpage) {
  608. $rootpage=$params{rootpage};
  609. }
  610. }
  611. else {
  612. $rootpage=$params{page};
  613. }
  614. return $rootpage;
  615. }
  616. 1