123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- use strict;
- use v5.10;
- AddModuleDescription('faq.pl', 'FAQ Extension');
- our ($q, $bol, @MyRules);
- our ($FaqHeaderText, $FaqQuestionText, $FaqAnswerText);
- $FaqHeaderText = "Questions on this page:" unless $FaqHeaderText;
- $FaqQuestionText = "Question: " unless $FaqQuestionText;
- $FaqAnswerText = "Answer: " unless $FaqAnswerText;
- push(@MyRules, \&FaqRule);
- sub FaqRule {
- if ($bol && m/\GQ: (.+)/cg) {
- return $q->a({name=>'FAQ_' . UrlEncode($1)},'')
- . $q->div({class=>'question'}, $FaqQuestionText . $1);
- } elsif ($bol && m/\GA:[ \t]*/cg) {
- return CloseHtmlEnvironments()
- . AddHtmlEnvironment('div', "class='answer'") . $FaqAnswerText;
- }
- return;
- }
- *OldFaqGetHeader = \&GetHeader;
- *GetHeader = \&NewFaqGetHeader;
- sub NewFaqGetHeader {
- my ($id) = @_;
- my $result = OldFaqGetHeader(@_);
-
- $result .= FaqHeadings($id) if $id;
- return $result;
- }
- sub FaqHeadings {
- my $page = GetPageContent(shift);
-
-
-
- $page =~ s/<nowiki>(.*\n)*<\/nowiki>//gi;
- $page =~ s/<pre>(.*\n)*<\/pre>//gi;
- $page =~ s/<code>(.*\n)*<\/code>//gi;
- $page =~ s/\{\{\{[ \t]*\n(.*?)\n\}\}\}[ \t]*(\n|$)//gs;
- my $Headings = '';
- foreach my $line (grep(/^Q:[ \t]*(.*?)$/, split(/\n/, $page))) {
- next unless $line =~ /^Q:[ \t]*(.*?)$/;
- next unless $1;
- my $link = 'FAQ_' . UrlEncode($1);
- $Headings .= $q->li($q->a({href=>'#' . $link}, $1));
- }
- return $q->div({class=>'faq'}, $FaqHeaderText . $q->ol($Headings)) if $Headings;
- }
|