/[pub]/suikawiki/script/wiki.cgi
Suika

Diff of /suikawiki/script/wiki.cgi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.30 by wakaba, Wed Nov 13 08:28:15 2002 UTC revision 1.40 by wakaba, Thu Dec 19 09:50:18 2002 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl  #!/usr/bin/perl
 #!perl  
2  #  #
3  # wiki.cgi - This is YukiWiki, yet another Wiki clone.  # wiki.cgi - This is YukiWiki, yet another Wiki clone.
4  #  #
# Line 10  Line 9 
9  # This program is free software; you can redistribute it and/or  # This program is free software; you can redistribute it and/or
10  # modify it under the same terms as Perl itself.  # modify it under the same terms as Perl itself.
11  #  #
 ##############################  
 #  
12  # walwiki.cgi based on yukiwiki.cgi - Yet another WikiWikiWeb clone.  # walwiki.cgi based on yukiwiki.cgi - Yet another WikiWikiWeb clone.
 #  
 # WalWikiの現バージョンは、YukiWiki 2.0.beta1をベースにしています。  
 #  
 # * 更新内容  
 #  
 # 2.0.beta1.wal.1 on 2002/05/19,22:32:19  
 # (1) Footerの変更  
 # (2) WikiNameの拡張 : PerlCEも包含、PPMInstallは含まない  
 # (3) 別名リンク([別名 URL])に対応。  
 # (4) ISBNをアマゾン.jpのAsociateプログラムリンクに変換。  
 # (5) [[#box:InterWikiName]]でInterWikiなテキストボックス生成  
 # (6) HTMLモード対応。  
 #  
 # 旧2.0.alpha0.wal.3版までの修正の内、以下に変更があります。  
 # ・以下はYukiWiki2に実装されたため、独自コードはなくなりました。  
 #   - インラインの画像変換  
 #   - YukiWikiDB対応  
 #   - テーブル  
 #   - DB関連モジュールuseのeval化  
 #   - BracketNameによるキーからブラケットを排除  
 # ・ISBN番号への対応はWalWiki2.0より、InterWikiへのAdd-Onになりました。  
 #   [[ISBN http://www.amazon.co.jp/exec/obidos/ASIN/isbn($1)/walrdigi-22]]のように登録。  
 #  
 #=======================================  
13    
14  # Walrus add (debug) start  # Walrus add (debug) start
15  my $walrus_log;  my $walrus_log;
# Line 53  use Yuki::DiffText qw(difftext); Line 26  use Yuki::DiffText qw(difftext);
26  use Yuki::YukiWikiDB;  use Yuki::YukiWikiDB;
27  use AnyDBM_File;  use AnyDBM_File;
28  require 'jcode.pl';  require 'jcode.pl';
29  # use Jcode;  require Jcode;
30  use Fcntl;  use Fcntl;
31  my $version = '2.0.beta1.2002-05-29';  my $version = '2.0.beta1.2002-05-29';
32  my $walversion;  my $walversion;
# Line 77  my $modifier_rss_description = 'This is Line 50  my $modifier_rss_description = 'This is
50  #  #
51  # You MAY modify following variables.  # You MAY modify following variables.
52  #  #
53    $SuikaWiki::Plugin::plugin_directory = q(./SuikaWiki/Plugin/);
54  my $file_touch = "$modifier_dir_data/touched.txt";  my $file_touch = "$modifier_dir_data/touched.txt";
55  my $file_resource = "$modifier_dir_data/resource.txt";  my $file_resource = "$modifier_dir_data/resource.txt";
56  my $file_FrontPage = "$modifier_dir_data/frontpage.txt";  my $file_FrontPage = "$modifier_dir_data/frontpage.txt";
# Line 113  my $RssPage = 'RssPage'; Line 87  my $RssPage = 'RssPage';
87  my $NAME_OF_WikiPageLicense = 'WikiPageLicense';  my $NAME_OF_WikiPageLicense = 'WikiPageLicense';
88  my $AdminSpecialPage = 'Admin Special Page'; # must include spaces.  my $AdminSpecialPage = 'Admin Special Page'; # must include spaces.
89  ##############################  ##############################
 # my $wiki_name = '\b([A-Z][a-z]+([A-Z][a-z]+)+)\b';        # Walrus del (2)  
 my $wiki_name   = '\b([A-Z][a-z]+([A-Z][a-z]*)+)\b';        # Walrus add (2)  
90  my $bracket_name = '\[\[(\S+?)\]\]';  my $bracket_name = '\[\[(\S+?)\]\]';
91  my $embedded_name = '\[\[(#\S+?)\]\]';  my $embedded_name = '\[\[(#\S+?)\]\]';
92  my $interwiki_definition = '\[\[(\S+?)\ (\S+?)\]\]';  my %fmt;        ## formatter objects
 my $interwiki_name = 'i:([^:]+):([^:].*)';  
93  ##############################  ##############################
94  my $embed_comment = '[[#comment]]';  my $embed_comment = '[[#comment]]';
95  my $embed_rcomment = '[[#rcomment]]';  my $embed_rcomment = '[[#rcomment]]';
# Line 127  my $DEFAULT_embed_comment_name = '名無し Line 98  my $DEFAULT_embed_comment_name = '名無し
98  my $embed_interwiki = '^\[\[#(box|text|password):(\S+)\]\]$';    # Walrus add (5)  my $embed_interwiki = '^\[\[#(box|text|password):(\S+)\]\]$';    # Walrus add (5)
99  my %embed_command = (  my %embed_command = (
100          searched        => '^\[\[#searched:([^\]]+)\]\]$',          searched        => '^\[\[#searched:([^\]]+)\]\]$',
101        form => qw/\[\[\#form(?:\(([A-Za-z0-9-]+)\))?:'((?:[^'\\]|\\.)*)':'((?:[^'\\]|\\.)*)'(?::'((?:[^'\\]|\\.)*)')?\]\]/,
102  );  );
103  ##############################  ##############################
104  my $info_LastModified = 'LastModified';  my $info_LastModified = 'LastModified';
# Line 146  my %fixedpage = ( Line 118  my %fixedpage = (
118      $AdminChangePassword => 1,      $AdminChangePassword => 1,
119      $CompletedSuccessfully => 1,      $CompletedSuccessfully => 1,
120      #$FrontPage => 1,      #$FrontPage => 1,
121        WikiUserAgentList => 1,
122        WikiPluginInfo    => 1,
123  );  );
124  my %form;  my %form;
125  my %database;  my %database;
# Line 161  my %page_command = ( Line 135  my %page_command = (
135      $RssPage => 'rss',      $RssPage => 'rss',
136      $AdminChangePassword => 'adminchangepasswordform',      $AdminChangePassword => 'adminchangepasswordform',
137      #$FrontPage => 'FrontPage',      #$FrontPage => 'FrontPage',
138        WikiPluginInfo       => 'x_WikiPluginInfo',
139  );  );
140  my %command_do = (  my %command_do = (
141      read => \&do_read,      read => \&do_read,
# Line 181  my %command_do = ( Line 156  my %command_do = (
156      rss => \&do_rss,      rss => \&do_rss,
157      diff => \&do_diff,      diff => \&do_diff,
158      interwikibox => \&do_interwiki_box, # Walrus add (5)      interwikibox => \&do_interwiki_box, # Walrus add (5)
159        wikiform => \&do_wikiform,
160        x_WikiPluginInfo  => \&do_wikiplugininfo,
161  );  );
162  ##############################  ##############################
 my @ignore_html_page = ('FrontPage');        # Walrus add (6)  
 my @ignore_html_tags = ('a', 'br', 'img');   # Walrus add (6)  
163  my $walversion = '2.0.beta1.wal.1';          # Walrus add (1)  my $walversion = '2.0.beta1.wal.1';          # Walrus add (1)
164  ##############################  ##############################
165  # &test_convert;  # &test_convert;
166  &main;  my $UA = '';  ## User agent name
 exit(0);  
167  ##############################  ##############################
168    
169  sub main {  sub main {
170        $UA = $main::ENV{HTTP_USER_AGENT};
171      &init_resource;      &init_resource;
172      &open_db;      &open_db;
173      &init_form;      &init_form;
# Line 209  sub do_read { Line 184  sub do_read {
184    my $content = $database{$form{mypage}};    my $content = $database{$form{mypage}};
185    my $lm = &get_info($form{mypage}, $info_LastModified);    my $lm = &get_info($form{mypage}, $info_LastModified);
186    wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER});    wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER});
187      wiki::useragent::add ($ENV{HTTP_USER_AGENT});
188    my ($r, $c) = get_search_result ($form{mypage});    my ($r, $c) = get_search_result ($form{mypage});
189    my $rl = wiki::referer::list_html ($form{mypage});    my $rl = wiki::referer::list_html ($form{mypage});
190    my @toc;    my @toc;
# Line 219  sub do_read { Line 195  sub do_read {
195      ## - 'SuikaWiki/0.9' CRLF      ## - 'SuikaWiki/0.9' CRLF
196      ## - 'H2H/' ("0.9" / "1.0" / "1.1") CRLF      ## - 'H2H/' ("0.9" / "1.0" / "1.1") CRLF
197      ## - "/*" WSP* 'W3C-CSS/' ("1.0" / "2.0") "*/" CRLF      ## - "/*" WSP* 'W3C-CSS/' ("1.0" / "2.0") "*/" CRLF
198      $cf = $1 if $content =~ s#^(?:/\*\s*|[\#<]\?)?([A-Z][A-Za-z0-9-]+/[0-9.]+(?:[^0-9.][^\x0D\x0A]*)?)[\x0D\x0A]+##s;      $cf = $1 if $content =~ s#^(?:/\*\s*|[\#<]\?)?([A-Z][A-Za-z0-9-]+/[0-9.]+(?:[^0-9.\x0D\x0A][^\x0D\x0A]*)?)[\x0D\x0A]+##s;
199      if ($cf =~ m!^(?:\#\?)?SuikaWiki/0.9(?:$|\s)!) {      if ($cf =~ m!^(?:\#\?)?SuikaWiki/0.9(?:$|\s)!) {
200        &print_header ($form{mypage}, -last_modified => $lm,        &print_header ($form{mypage}, -last_modified => $lm,
201          -content_format => $cf, -noindex => $cf =~ /obsoleted="yes"/);          -content_format => $cf, -noindex => $cf =~ /obsoleted="yes"/);
202        &print_content ($content, content_format => $cf, last_modified => $lm,        &print_content ($content, content_format => $cf, last_modified => $lm,
203          -toc => \@toc);          -toc => \@toc);
204        print &text_to_html (q([[#comment]])) unless $cf =~ /obsoleted="yes"/;        print &text_to_html (q([[#comment]])) if $cf !~ /obsoleted="yes"/ && !$fixedpage{$form{mypage}};
205      } else {      } else {
206        &print_header($form{mypage}, -last_modified => $lm);        &print_header($form{mypage}, -last_modified => $lm);
207        print "<pre>@{[&escape($content)]}</pre>";        print "<pre>@{[&escape($content)]}</pre>";
208      }      }
209      if ($c) {      if ($c) {
210        print q{<h2 id="wikipage-see-also">See also</h2>};        print qq{<h2 @{[&id_and_name('wikipage-see-also')]}>See also</h2>};
211        print $r;        print $r;
212      }      }
213      if ($rl) {      if ($rl) {
214        print qq(<div id="wikipage-referer"><h2>参照元</h2>\n$rl</div>\n);        print qq(<div @{[&id_and_name('wikipage-referer')]}><h2>参照元</h2>\n$rl</div>\n);
215      }      }
216    &print_footer($form{mypage}, $lm);    &print_footer($form{mypage}, $lm);
217  }  }
218    
219  sub do_output_css {  sub do_output_css {
220      wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER});
221      wiki::useragent::add ($ENV{HTTP_USER_AGENT});
222    my $content = $database{$form{mypage}};    my $content = $database{$form{mypage}};
223    if ($content =~ m#^\s*/\*\s*W3C-CSS#) {    if ($content =~ m#^\s*/\*\s*W3C-CSS#) {
224      my $lm = &get_info($form{mypage}, $info_LastModified);      my $lm = &get_info($form{mypage}, $info_LastModified);
225          print scalar make_navigate_links ($form{mypage});
226      print "Content-Type: text/css; charset=$charset\n";      print "Content-Type: text/css; charset=$charset\n";
227      print "Last-Modified: $lm\n";      print "Last-Modified: $lm\n";
228      print "\n";      print "\n";
# Line 256  sub do_output_css { Line 235  sub do_output_css {
235    }    }
236  }  }
237    
238    sub id_and_name ($) {
239        my $name = shift;
240        if ($UA =~ m#Mozilla/[12]\.|Microsoft Internet Explorer#) {
241          qq{id="$name"><a name="$name"></a};
242        } else {
243            qq{id="$name"};
244        }
245    }
246    
247  sub do_edit {  sub do_edit {
248      my ($page) = &unarmor_name(&armor_name($form{mypage}));      my ($page) = &unarmor_name(&armor_name($form{mypage}));
249      &print_header($page, -noindex => 1);      &print_header($page, -noindex => 1);
# Line 267  sub do_edit { Line 255  sub do_edit {
255          &print_editform($database{$page}, &get_info($page, $info_LastModified), admin=>0);          &print_editform($database{$page}, &get_info($page, $info_LastModified), admin=>0);
256      }      }
257      wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER});      wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER});
258        wiki::useragent::add ($ENV{HTTP_USER_AGENT});
259      my ($r, $c) = get_search_result ($form{mypage});      my ($r, $c) = get_search_result ($form{mypage});
260      my $rl = wiki::referer::list_html ($form{mypage});      my $rl = wiki::referer::list_html ($form{mypage});
261      if ($c) {      if ($c) {
# Line 325  EOD Line 314  EOD
314  }  }
315    
316  sub do_index {  sub do_index {
317      wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER});
318      wiki::useragent::add ($ENV{HTTP_USER_AGENT});
319      &print_header($IndexPage);      &print_header($IndexPage);
320      print qq(<ul>);      print qq(<ul>);
321      foreach my $page (sort keys %database) {      foreach my $page (sort keys %database) {
# Line 335  sub do_index { Line 326  sub do_index {
326          }          }
327      }      }
328      print qq(</ul>);      print qq(</ul>);
329        my ($r, $c) = get_search_result ($form{mypage});
330        if ($c) {
331          print qq{<h2 @{[&id_and_name('wikipage-see-also')]}>See also</h2>};
332          print $r;
333        }
334        my $rl = wiki::referer::list_html ($form{mypage});
335        if ($rl) {
336            print qq(<div @{[&id_and_name('wikipage-referer')]}><h2>??????</h2>\n$rl</div>\n);
337        }
338      &print_footer($IndexPage);      &print_footer($IndexPage);
339  }  }
340    
# Line 371  sub do_write { Line 371  sub do_write {
371              &update_recent_changes;              &update_recent_changes;
372          }          }
373          &set_info($form{mypage}, $info_IsFrozen, 0 + $form{myfrozen});          &set_info($form{mypage}, $info_IsFrozen, 0 + $form{myfrozen});
374          &print_header($CompletedSuccessfully, -noindex => 1, -goto => $url_cgi.'?'.&encode($form{mypage}).($form{__comment_anchor_index}?"#anchor-$form{__comment_anchor_index}":''));          my $fragment = '';
375            $fragment .= qq(;after_edit_cmd=@{[&encode($form{after_edit_cmd})]}) if $form{after_edit_cmd};
376            if ($form{__comment_anchor_index}) {
377                $fragment .= qq(#anchor-$form{__comment_anchor_index});
378            } elsif ($form{__wikiform_anchor_index}) {
379                $fragment .= qq(#wikiform-$form{__wikiform_anchor_index});
380            }
381            &print_header($CompletedSuccessfully, -noindex => 1, -goto => $url_cgi.'?mycmd='.&encode($form{after_edit_cmd}||'read').';mypage='.&encode($form{mypage}).qq(;x-param=@{[time.[0..9]->[rand 10]]}$fragment));
382          &print_message($resource{saved});          &print_message($resource{saved});
383          &print_content("$resource{continuereading} @{[&armor_name($form{mypage})]}");          &print_content("$resource{continuereading} @{[&armor_name($form{mypage})]}");
384          &print_footer($CompletedSuccessfully);          &print_footer($CompletedSuccessfully);
# Line 403  sub do_search { Line 410  sub do_search {
410  }  }
411    
412  sub get_search_result ($;%) {  sub get_search_result ($;%) {
413    my $word = shift;    my $word = lc shift;
414    my %option = @_;    my %option = @_;
415    my @r;    my @r;
416    foreach my $page (keys %database) {    foreach my $page (keys %database) {
# Line 412  sub get_search_result ($;%) { Line 419  sub get_search_result ($;%) {
419      my $cf = 'SuikaWiki/0.9';      my $cf = 'SuikaWiki/0.9';
420      $cf = $1 if $content =~ s/^\#\?([^\x0A\x0D]+)//s;      $cf = $1 if $content =~ s/^\#\?([^\x0A\x0D]+)//s;
421      next if $cf =~ /obsoleted="yes"/;      next if $cf =~ /obsoleted="yes"/;
422      if (index ($page, $word) > -1) {      if (index (lc $page, $word) > -1) {
423        my $c = $content =~ s/\Q$word\E/$word/g;        my $c = $content =~ s/\Q$word\E//gi;
424        push @r, [$page, $c+20];        push @r, [$page, $c+20];
425      } elsif (index ($word, $page) > -1) {      } elsif (index ($word, lc $page) > -1) {
426        my $c = $content =~ s/\Q$word\E/$word/g;        my $c = $content =~ s/\Q$word\E//gi;
427        push @r, [$page, $c+10];        push @r, [$page, $c+10];
428      } elsif (my $c = $content =~ s/\Q$word\E/$word/g) {      } elsif (my $c = $content =~ s/\Q$word\E//gi) {
429        push @r, [$page, $c];        push @r, [$page, $c];
430      }      }
431    }    }
432    my $em = sub { my $s = shift; $s =~ s#(\Q$word\E)#<em>$1</em>#g; $s };    my $em = sub { my $s = shift; $s =~ s#(\Q$word\E)#<em>$1</em>#gi; $s };
433    my $r = join "\n", map {qq(<li>[$_->[1]] <a href ="$url_cgi?@{[&encode($_->[0])]}" class="wiki">@{[&$em(&escape($_->[0]))]}</a> <span class="wikipage-summary">@{[&$em(&escape(&get_subjectline($_->[0])))]}</span></li>)} sort {$b->[1] <=> $a->[1] || $a->[0] cmp $b->[0]} @r;    my $r = join "\n", map {qq(<li>[$_->[1]] <a href ="$url_cgi?@{[&encode($_->[0])]}" class="wiki">@{[&$em(&escape($_->[0]))]}</a> <span class="wikipage-summary">@{[&$em(&escape(&get_subjectline($_->[0])))]}</span></li>)} sort {$b->[1] <=> $a->[1] || $a->[0] cmp $b->[0]} @r;
434    $r = qq|<ul class="search-result">$r</ul>| if $r;    $r = qq|<ul class="search-result">$r</ul>| if $r;
435    get_message ($resource{notfound}) if @r == 0 && $option{-output_not_found};    get_message ($resource{notfound}) if @r == 0 && $option{-output_not_found};
# Line 476  sub print_header ($;%) { Line 483  sub print_header ($;%) {
483          $bodyclass = "frozen";          $bodyclass = "frozen";
484      }      }
485      $bodyclass .= " wiki-page-obsoleted" if $option{-content_format} =~ /obsoleted="yes"/;      $bodyclass .= " wiki-page-obsoleted" if $option{-content_format} =~ /obsoleted="yes"/;
486      print qq{Refresh: 0; url="$option{-goto}"\n} if $option{-goto};      if ($option{-goto}) {
487          if ($UA =~ m#Opera|MSIE 2\.#) {
488              $option{-goto} =~ tr/;/&/ if $UA =~ m#Opera#;
489              print qq{Refresh: 0; url=$option{-goto}\n};
490              $option{-goto} = qq(<meta http-equiv="refresh" content="0; url=$option{-goto}">);
491          } else {
492              $option{-goto} =~ tr/;/&/ if $UA =~ m#Mozilla/[1-4]\.#;
493              print qq{Refresh: 0; url="$option{-goto}"\n};
494              $option{-goto} = qq(<meta http-equiv="refresh" content="0; url=&quot;@{[&escape($option{-goto})]}&quot;">);
495          }
496        }
497      print qq{Last-Modified: $option{-last_modified}\n} if $option{-last_modified};      print qq{Last-Modified: $option{-last_modified}\n} if $option{-last_modified};
498        my $meta_ct = '';
499        if ($UA =~ m#Mozilla/2#) {
500            $meta_ct = qq{text/html; charset=@{[&x_charset($charset)]}};
501            print qq{Content-Type: $meta_ct\n};
502            $meta_ct = qq{<meta http-equiv="content-type" content="$meta_ct">};
503        } elsif ($UA =~ m#Infomosaic#) {
504            print qq{Content-Type: text/html\n};
505        } else {
506            print qq{Content-Type: text/html; charset=$charset\n};
507        }
508      my $cookedpage = &encode($page);      my $cookedpage = &encode($page);
509      my $escapedpage = &escape($page);      my $escapedpage = &escape($page);
510        my ($Links, $links) = &make_navigate_links ($page);
511        print $Links;
512      print <<"EOD";      print <<"EOD";
 Content-type: text/html; charset=$charset  
513  Content-Language: $lang  Content-Language: $lang
514  Content-Style-Type: text/css  Content-Style-Type: text/css
515    
# Line 490  Content-Style-Type: text/css Line 518  Content-Style-Type: text/css
518      PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"      PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
519      "http://www.w3.org/TR/html4/loose.dtd"> + RUBY -->      "http://www.w3.org/TR/html4/loose.dtd"> + RUBY -->
520  <html lang="$lang">  <html lang="$lang">
521  <head>  <head profile="http://suika.fam.cx/~wakaba/-temp/wiki/wiki?WikiHTMLMetaProfile">
522        $meta_ct$option{-goto}
523      <title>$escapedpage</title>      <title>$escapedpage</title>
524      <link rel="index" href="$url_cgi?$IndexPage">      @{[($UA !~ m#Mozilla/[1-4]\.# || $UA =~ m#MSIE (?:[4-9]\.|\d\d)#) ? qq(<link rel="stylesheet" type="text/css" href="@{[&escape($url_stylesheet)]}">) : '']}
     <link rel="help" href="$url_cgi?WikiHelp">  
     <link rel="copyright" href="$url_cgi?$NAME_OF_WikiPageLicense">  
     <link rel="stylesheet" type="text/css" href="@{[&escape($url_stylesheet)]}">  
525      @{[$option{-noindex} ? q(<meta name="ROBOTS" content="NOINDEX">) : '']}      @{[$option{-noindex} ? q(<meta name="ROBOTS" content="NOINDEX">) : '']}
526    $links
527  </head>  </head>
528  <body class="$bodyclass">  <body class="$bodyclass">
529  EOD  EOD
# Line 506  EOD Line 533  EOD
533  EOD  EOD
534  }  }
535    
536    sub x_charset ($) {
537        my $charset = lc shift;
538        if ($charset eq 'euc-jp') {
539            $charset = 'x-euc-jp';
540        } elsif ($charset eq 'shift_jis') {
541            $charset = 'x-sjis';
542        }
543        $charset;
544    }
545    
546  sub print_navigate_links (@) {  sub print_navigate_links (@) {
547    my ($page) = @_;    my ($page) = @_;
548      my $editable = 0;      my $editable = 0;
# Line 523  sub print_navigate_links (@) { Line 560  sub print_navigate_links (@) {
560    print <<EOH;    print <<EOH;
561  <div class="tools">  <div class="tools">
562      @{[ $admineditable      @{[ $admineditable
563          ? qq(<a title="$resource{admineditthispage}" href="$url_cgi?mycmd=adminedit;mypage=$cookedpage">$resource{admineditbutton}</a> | )          ? qq(<a title="$resource{admineditthispage}" href="$url_cgi?mycmd=adminedit;mypage=$cookedpage" class="wiki-cmd">$resource{admineditbutton}</a> | )
564          : qq()          : qq()
565      ]}      ]}
566      @{[ $editable      @{[ $editable
567          ? #qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedpage" accesskey="E">$resource{editbutton} <kbd>E</kbd></a> | )          ? #qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedpage" accesskey="E">$resource{editbutton} <kbd>E</kbd></a> | )
568          qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedpage" accesskey="E">編集</a> | )          qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedpage" accesskey="E" class="wiki-cmd">編集</a> | )
569          : qq()          : qq()
570      ]}      ]}
571        <a href="$url_cgi?mycmd=read;mypage=$cookedpage;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki-cmd">表示</a> |
572      @{[ $admineditable      @{[ $admineditable
573          ? qq(<a href="$url_cgi?mycmd=diff;mypage=$cookedpage">$resource{diffbutton}</a> | )          ? qq(<a href="$url_cgi?mycmd=diff;mypage=$cookedpage" class="wiki-cmd">$resource{diffbutton}</a> | )
574          : qq()          : qq()
575      ]}      ]}
576      <a href="$url_cgi?$CreatePage" class="wiki">新規</a> |      <a href="$url_cgi?$CreatePage" class="wiki">新規</a> |
# Line 543  sub print_navigate_links (@) { Line 581  sub print_navigate_links (@) {
581      <a href="$url_cgi?$RecentChanges" class="wiki">最新</a>      <a href="$url_cgi?$RecentChanges" class="wiki">最新</a>
582  </div>  </div>
583  EOH  EOH
584  <<EOH;  ## temp  }
585      <a href="$url_cgi?$CreatePage" class="wiki">$resource{createbutton}</a> |  
586      <a href="$url_cgi?$IndexPage" class="wiki">$resource{indexbutton}</a> |  sub make_navigate_links ($) {
587  <!--    <a href="$url_cgi?$RssPage" class="wiki">$resource{rssbutton}</a> | -->      my $page = shift;
588      <a href="$url_cgi?$FrontPage" class="wiki">$FrontPage</a> |      my @link;
589      <a href="$url_cgi?$SearchPage" class="wiki">$resource{searchbutton}</a> |      push @link, {rel=>'edit', href=>"$url_cgi?mycmd=edit;mypage=@{[&encode($page)]}", class=>"wiki-command", title=>$resource{editbutton}} if &is_editable ($page) && !&is_frozen ($page);
590      <a href="$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki randomlink">どこか</a> |      push @link, {rel=>'edit', href=>"$url_cgi?mycmd=adminedit;mypage=@{[&encode($page)]}", class=>"wiki-command", title=>$resource{admineditbutton}} if &is_editable ($page) || &is_frozen ($page);
591      <a href="$url_cgi?$RecentChanges" class="wiki">$resource{recentchangesbutton}</a>      push @link, {rel=>'view', href=>"$url_cgi?mycmd=read;mypage=@{[&encode($page)]};x-p=@{[time.[0..9]->[rand 10]]}", class=>'wiki-command', title=>'View latest version of this page'};
592  </div>      push @link, {rel=>'myself', href=>"$url_cgi?@{[&encode($page)]}", class=>'wiki'};
593  EOH      push @link, {rel=>'index', href=>"$url_cgi?$IndexPage", class=>'wiki', title=>$resource{indexbutton}};
594        push @link, {rel=>'home', href=>"$url_cgi?$FrontPage", class=>'wiki', title=>$FrontPage};
595        push @link, {rel=>'News', href=>"$url_cgi?WikiNews", class=>'wiki', title=>'News on this wiki'};
596        push @link, {rel=>'News', href=>"$url_cgi?$RecentChanges", class=>"wiki", title=>$resource{recentchangesbutton}};
597        push @link, {rel=>'News', href=>"$url_cgi?$RssPage", class=>"wiki", title=>$resource{rssbutton}, type=>'application/xml'};
598        push @link, {rel=>'search', href=>"$url_cgi?$SearchPage", class=>'wiki', title=>$resource{searchbutton}};
599        push @link, {rel=>'help', href=>"$url_cgi?WikiHelp", class=>'wiki'};
600        push @link, {rel=>'copyright', href=>"$url_cgi?WikiPageLicense", class=>'wiki'};
601        push @link, {rel=>'jump', href=>q(javascript:var%20WikiName=prompt('Please%20input%20the%20WikiName:','','Jump%20to%20SuikaWiki');if(WikiName)%7B_content.location.href='http://suika.fam.cx/%7Ewakaba/-temp/wiki/wiki%3F'+encodeURIComponent(WikiName)%7D), class=>'wiki-cmd', title=>'Jump to...'};
602        push @link, {rel=>'jump', href=>q(javascript:var%20WikiName=prompt('Please%20input%20the%20WikiName:','','Jump%20to%20SuikaWiki');if(WikiName)%7B_content.location.href='http://suika.fam.cx/%7Ewakaba/-temp/wiki/wiki%3Fmycmd=edit;mypage='+encodeURIComponent(WikiName)%7D), class=>'wiki-cmd', title=>'Jump to (edit)...'};
603        push @link, {rel=>'lucky', href=>"$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}", class=>'wiki randomlink', title=>'Somewhere'};
604        my ($Links, $links) = ('', '');
605        for my $e (@link) {
606            $links .= qq(<link);
607            $Links .= qq(Link: <$e->{href}>);
608            for my $attr (qw/rel rev href title class type hreflang charset/) {
609                $links .= qq( $attr="@{[&escape($e->{$attr})]}") if $e->{$attr};
610            }
611            for my $attr (qw/rel rev title/) {
612                $Links .= qq(; $attr="@{[do{$e->{$attr} =~ s/([\\\"])/\\$1/g; $e->{$attr}}]}") if $e->{$attr};
613            }
614            $links .= qq(>\n);
615            $Links .= qq(\n);
616        }
617        wantarray ? ($Links, $links) : $Links;
618  }  }
619    
620  sub print_footer {  sub print_footer {
621      my ($page, $lm) = @_;      my ($page, $lm) = @_;
622        my $epage = &encode ($page);
623      $walrus_log = ($walrus_debugging) ? &text_to_html("----\n$walrus_log") : '';    # Walrus add (debug)      $walrus_log = ($walrus_debugging) ? &text_to_html("----\n$walrus_log") : '';    # Walrus add (debug)
624      # Walrus mod (1) start      # Walrus mod (1) start
625    my $cvslog1 = q$Revision$;    my $cvslog1 = q$Revision$;
# Line 572  sub print_footer { Line 635  sub print_footer {
635  <a href="/map" title="このサーバーの案内">地図</a>  <a href="/map" title="このサーバーの案内">地図</a>
636  <a href="/search/" title="このサーバーの検索">検索</a>]  <a href="/search/" title="このサーバーの検索">検索</a>]
637  </div>  </div>
638    <div class="myuri">
639        &lt;<a href="$url_cgi?$epage">$url_cgi?$epage</a>&gt;
640    </div>
641  </div>  </div>
642  $walrus_log  $walrus_log
643  </body>  </body>
644  </html>  </html>
645  EOD  EOD
 #       print <<"EOD";  
 #   <hr>  
 #   <address class="footer">  
 #       <a href="http://www.hyuki.com/yukiwiki/">YukiWiki</a> $version  
 #       &copy; 2000-2002 by <a href="http://www.hyuki.com/">Hiroshi Yuki</a>.<br />  
 #       Modified by <a href="$modifier_url">$modifier_name</a>.  
 #   </address>  
 #   <p class="footer">  
 #       <a href="http://www.hyuki.com/yukiwiki/">$icontag</a>  
 #   </p>  
 #   </body>  
 #   </html>  
 #   EOD  
     # Walrus mod (1) end  
646  }  }
647    
648  sub escape {  sub escape {
# Line 631  sub text_to_html { Line 683  sub text_to_html {
683          chomp;          chomp;
684          if (/^\*\*\*\*\*([^\x0D\x0A]*)/) {          if (/^\*\*\*\*\*([^\x0D\x0A]*)/) {
685              push(@toc, qq(----- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));              push(@toc, qq(----- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));
686              push(@result, splice(@saved), qq(<h6 id="i$tocnum">) . &inline($1) . '</h6>');              push(@result, splice(@saved), qq(<h6 @{[&id_and_name("i$tocnum")]}>) . &inline($1) . '</h6>');
687              $tocnum++;              $tocnum++;
688          } elsif (/^\*\*\*\*([^\x0D\x0A]*)/) {          } elsif (/^\*\*\*\*([^\x0D\x0A]*)/) {
689              push(@toc, qq(---- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));              push(@toc, qq(---- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));
690              push(@result, splice(@saved), qq(<h5 id="i$tocnum">) . &inline($1) . '</h5>');              push(@result, splice(@saved), qq(<h5 @{[&id_and_name("i$tocnum")]}>) . &inline($1) . '</h5>');
691              $tocnum++;              $tocnum++;
692          } elsif (/^\*\*\*([^\x0D\x0A]*)/) {          } elsif (/^\*\*\*([^\x0D\x0A]*)/) {
693              push(@toc, qq(--- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));              push(@toc, qq(--- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));
694              push(@result, splice(@saved), qq(<h4 id="i$tocnum">) . &inline($1) . '</h4>');              push(@result, splice(@saved), qq(<h4 @{[&id_and_name("i$tocnum")]}>) . &inline($1) . '</h4>');
695              $tocnum++;              $tocnum++;
696          } elsif (/^\*\*([^\x0D\x0A]*)/) {          } elsif (/^\*\*([^\x0D\x0A]*)/) {
697          # if (/^\*\*(.*)/) {          # if (/^\*\*(.*)/) {
698          # Walrus mod (6) end          # Walrus mod (6) end
699              push(@toc, qq(-- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));              push(@toc, qq(-- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));
700              push(@result, splice(@saved), qq(<h3><a name="i$tocnum"> </a>) . &inline($1) . '</h3>');              push(@result, splice(@saved), qq(<h3 @{[&id_and_name("i$tocnum")]}>) . &inline($1) . '</h3>');
701              $tocnum++;              $tocnum++;
702          } elsif (/^\*([^\x0D\x0A]*)/) {          } elsif (/^\*([^\x0D\x0A]*)/) {
703              push(@toc, qq(- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));              push(@toc, qq(- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));
704              push(@result, splice(@saved), qq(<h2><a name="i$tocnum"> </a>) . &inline($1) . '</h2>');              push(@result, splice(@saved), qq(<h2 @{[&id_and_name("i$tocnum")]}>) . &inline($1) . '</h2>');
705              $tocnum++;              $tocnum++;
706          } elsif (/^(={1,6})(.*)/) {          } elsif (/^(={1,6})(.*)/) {
707              &back_push('ol', length($1), \@saved, \@result);              &back_push('ol', length($1), \@saved, \@result);
# Line 757  sub back_push { Line 809  sub back_push {
809  sub inline {  sub inline {
810      my ($line) = @_;      my ($line) = @_;
811      $line = &escape($line);      $line = &escape($line);
812      $line =~ s{\[(INS|DEL|SUP|SUB|VAR|CODE|KBD)(?:\(([A-Za-z0-9\x20-]+)\))?\[(.+?)\]\]}{<@{[lc $1]}@{[$2 ? qq( class="$2") : '']}>$3</@{[lc $1]}>}g;      $line =~ s{$embed_command{form}}{&make_custom_form ($1, $2, $3, $4)}ge;
813        $line =~ s{\[(INS|DEL|SUP|SUB|VAR|CODE|KBD|SAMP|DFN)(?:\(([A-Za-z0-9\x20-]+)\))?\[(.+?)\]\]}{<@{[lc $1]}@{[$2 ? qq( class="$2") : '']}>$3</@{[lc $1]}>}g;
814      $line =~ s:\[(WEAK)\[(.+?)\]\]:<span class="@{[lc $1]}">$2</span>:g;      $line =~ s:\[(WEAK)\[(.+?)\]\]:<span class="@{[lc $1]}">$2</span>:g;
815      $line =~ s:\[ABBR\[([^]]+)\] \[([^]]+)\]\]:<acronym title="$2">$1</acronym>:g;      $line =~ s:\[ABBR\[([^]]+)\] \[([^]]+)\]\]:<acronym title="$2">$1</acronym>:g;
816      $line =~ s:\[RUBYB\[([^]]+)\] \[([^]]+)\] \[([^]]+)\]\]:<span class="ruby"><ruby class="rb"><rb>$1</rb><rp>(</rp><rt>$2</rt><rp>)</rp></ruby><span class="rp"> (</span><span class="rt-below">$3</span><span class="rp">) </span></span>:g;      $line =~ s:\[RUBYB\[([^]]+)\] \[([^]]+)\] \[([^]]+)\]\]:<span class="ruby"><ruby class="rb"><rb>$1</rb><rp>(</rp><rt>$2</rt><rp>)</rp></ruby><span class="rp"> (</span><span class="rt-below">$3</span><span class="rp">) </span></span>:g;
# Line 766  sub inline { Line 819  sub inline {
819      $line =~ s%\[Q\[([^]]+)\](?: \[&lt;([\x21-\x5A\x5E-\x7E]+)&gt;\])?\]%「<q@{[$2?qq( cite="$2"):'']}>$1</q>」%g;      $line =~ s%\[Q\[([^]]+)\](?: \[&lt;([\x21-\x5A\x5E-\x7E]+)&gt;\])?\]%「<q@{[$2?qq( cite="$2"):'']}>$1</q>」%g;
820      $line =~ s|'''([^']+)'''|<strong>$1</strong>|g;      $line =~ s|'''([^']+)'''|<strong>$1</strong>|g;
821      $line =~ s|''([^']+)''|<em>$1</em>|g;      $line =~ s|''([^']+)''|<em>$1</em>|g;
822      $line =~ s!      $line =~ s{
823        (        ((?:$bracket_name))       # [[likethis]], [[#comment]], [[Friend:remotelink]]
         (?:&lt;(?:mailto|http|https|ftp|urn|news):[\x21-\x7E]*)&gt;  
       |  
         (?:$bracket_name))      # [[likethis]], [[#comment]], [[Friend:remotelink]]  
824        |\[\[([^[]+?)]&gt;&gt;([0-9]+)]   # [[WikiName]>>1]        |\[\[([^[]+?)]&gt;&gt;([0-9]+)]   # [[WikiName]>>1]
825        |&gt;&gt;([0-9]+)        |&gt;&gt;([0-9]+)
826      !        |&lt;([A-Za-z0-9%]+:(?:(?!&gt;).)+)&gt;
827        my ($l, $page,$anchor, $anum) = ($1, $3,$4, 0+$5);      }{
828          my ($l, $page,$anchor, $anum, $uri) = ($1, $3,$4, 0+$5, $6);
829        if ($l) {        if ($l) {
830          &make_link($l)          &make_link($l)
831        } elsif (defined $page) {        } elsif (defined $page) {
832          &make_wikilink ($page, anchor => 0+$anchor);          &make_wikilink ($page, anchor => 0+$anchor);
833        } elsif ($anum) {        } elsif ($anum) {
834          qq(<a href="#anchor-$anum" class="wiki-anchor">&gt;&gt;$anum</a>);          qq(<a href="#anchor-$anum" class="wiki-anchor">&gt;&gt;$anum</a>);
835          } elsif ($uri) {
836            &make_urilink ($uri);
837        }        }
838      !gex;      }gex;
839      return $line;      return $line;
840  }  }
841    
# Line 801  sub make_wikilink ($%) { Line 854  sub make_wikilink ($%) {
854    }    }
855  }  }
856    
857    sub make_urilink ($;%) {
858      require URI;
859      my $uri = shift;
860      if ($uri =~ s/^IW://) {       ## InterWiki (not URI)
861        $uri = &unescape ($uri);
862        if ($uri =~ /^([^\x00-\x2F\x3A-\x40\x5B-\x60\x7B-\x7F]+|"(?:\\.|[^"\\])+"):([^\x00-\x2F\x3A-\x40\x5B-\x60\x7B-\x7F]+|"(?:\\.|[^"\\])+")$/) {
863          my ($site, $name) = ($1, $2);
864          for ($site, $name) {
865            if (s/^"//) { s/"$//; s/\\(.)/$1/g }
866          }
867          if ($interwiki{$site}) {
868            my $uri = &escape ($fmt{interwiki}->replace ($interwiki{$site} => {site => $site, name => $name}));
869            $site = &escape ($site); $name = &escape ($name);
870            qq(&lt;<a href="$uri" class="out-of-wiki interwiki" title="$name ($site); URI: &lt;$uri&gt;"><span class="interwiki-site">$site:</span><span class="interwiki-name">$name</span></a>&gt;);
871          } else {
872            qq(&lt;未登録の <a href="$url_cgi?InterWikiName" class="wiki">InterWikiName</a>: @{[&escape ($site)]}>);
873          }
874        } else {
875          qq(&lt;不正な <a href="$url_cgi?InterWikiName" class="wiki">InterWikiName</a>: @{[&escape($uri)]}>);
876        }
877      } elsif ($uri =~ /^urn:/) {   ## URN
878        my $uri2 = &escape (URI->new ('/uri-res/N2L?'.&unescape ($uri), 'http')->canonical);
879        qq(&lt;<a href="$uri2" title="URI: &lt;$uri&gt; (via &lt;$uri2&gt;)" class="out-of-wiki urn">$uri</a>&gt;);
880      } elsif ($uri =~ s/^MAIL://) {        ## mail address (not URI)
881        my $uri2 = &escape (URI->new ('mailto:'.&unescape ($uri))->canonical);
882        qq(&lt;<a href="$uri2" class="out-of-wiki mail">$uri</a>&gt;);
883      } elsif ($uri =~ s/^IMG(?:\([^)]+\))?://) {   ## image (not URI itself)
884        my $uri2 = &escape (URI->new (&unescape ($uri))->canonical);
885        qq(<img src="$uri2" alt="" title="URI: &lt;$uri2&gt;" class="out-of-wiki">);
886      } else {      ## misc. URI
887        CGI::Carp::warningsToBrowser (0);
888        my $uri2 = &escape (URI->new (&unescape ($uri))->canonical);
889        CGI::Carp::warningsToBrowser (1);
890        qq(&lt;<a href="$uri2" title="URI: &lt;$uri2&gt;" class="out-of-wiki">$uri</a>&gt;);
891      }
892    }
893    
894    my $FormIndex = 0;
895    sub make_custom_form ($$$$) {
896        my ($wfname, $definition, $template, $option) = @_;
897        ## $template and $option is currently not used in this procedure.
898        unless ($main::_EMBEDED) {
899            $FormIndex++;
900            if (length $definition) {
901                my $param = bless {}, 'SuikaWiki::Plugin';
902                my $lastmodified = &get_info($form{mypage}, $info_LastModified);
903                &load_formatter (qw/form_input form_option/);
904                $definition = &unescape ($definition);
905                $definition =~ s/\\(.)/$1/g;
906                $option = &unescape ($option);
907                $option =~ s/\\(.)/$1/g;
908                $fmt{form_option}->replace ($option, $param);
909                $definition .= ' %submit;' if $definition !~ /%submit/ && !$param->{output}->{nosubmit};
910                my $target_page = $param->{output}->{page} || $form{mypage};
911                $param->{form_disabled} = 1 if $fixedpage{$target_page};
912                my $target_form = $param->{output}->{id};
913                my $r = <<EOH;
914    <form method="post" action="$url_cgi" id="wikiform-$FormIndex" class="wikiform">
915      <input type="hidden" name="mycmd" value="@{[$param->{form_disabled}?'read':'wikiform']}">
916      <input type="hidden" name="mypage" value="@{[&escape($target_page)]}">
917      <input type="hidden" name="myLastModified" value="$lastmodified">
918      <input type="hidden" name="mytouch" value="on">
919      <input type="hidden" name="@{[$target_form? qq(wikiform_targetform" value="@{[&escape($target_form)]}) : qq(wikiform_index" value="$FormIndex)]}">
920    EOH
921                $r .= qq(<a name="wikiform-$FormIndex"></a>) if $UA =~ m#Mozilla/[12]\.#;
922                $r .= $fmt{form_input}->replace ($definition, $param);
923                $r .= <<EOH;
924    </form>
925    EOH
926                $r;
927           } else {  ## No input-interface WikiForm
928               qq(<a id="wikiform-$FormIndex" name="wikiform-$FormIndex"><!-- #form --></a>);
929           }
930        } else {
931            q(<ins class="wiki-error"><strong>Warning</strong>: form in embeded page is currently not supported.</ins>);
932        }
933    }
934    
935    ## to be obsoleted
936  sub make_link {  sub make_link {
937      my $chunk = shift;      my $chunk = shift;
938      # Walrus add (3) start      # Walrus add (3) start
939      $chunk =~ s/^&lt;(.*)&gt;$/$1/;      $chunk =~ s/^&lt;(.*)&gt;$/$1/;
940      my $name  = $chunk;      my $name  = $chunk;
     if ($chunk =~ /^\[\[([^ ]+?) ([^ ]+?)\]\]$/ and $form{mypage} ne $InterWikiName) {  
         ($name, $chunk) = ($1, $2);  
     } elsif ($chunk =~ /^mailto:(.*)$/) {  
         $name = $1;  
     }  
     if ($use_autoimg and $name =~ /^(http|https|ftp):.+\.(png|gif|jpe?g)/) {  
         $name = qq(<img src="$name">) ;  
     }  
941      $name = &unarmor_name($name);      $name = &unarmor_name($name);
942      # Walrus add (3) end      # Walrus add (3) end
943      if ($chunk =~ /^(http|https|ftp|news):/) {      if ($chunk =~ /^$embedded_name$/) {
         # Walrus mod (3) start  
 #       if ($use_autoimg and $chunk =~ /\.(gif|png|jpeg|jpg)$/) {  
 #           return qq(<a href="$chunk"><img src="$chunk"></a>);  
 #       } else {  
 #           return qq(<a href="$chunk">$chunk</a>);  
 #       }  
         return qq(&lt;<a href="$chunk">$name</a>&gt;);  
         # Walrus mod (3) end  
     } elsif ($chunk =~ m#^urn:[0-9A-Za-z_:;/.-]+#) {  
         return qq|&lt;<a href="/uri-res/N2L?${name}">$name</a>&gt;|;  
     } elsif ($chunk =~ /^mailto:(.*)/) {  
 #       return qq(<a href="$chunk">$2</a>);                 # Walrus del (3)  
         return qq(&lt;<a href="$chunk">$name</a>&gt;);              # Walrus add (3)  
     } elsif ($chunk =~ /^$interwiki_definition$/) {  
 #       return qq(<span class="InterWiki">$chunk</span>);   # Walrus del (3)  
         return qq(<span class="InterWiki">$name</span>);    # Walrus add (3)  
     } elsif ($chunk =~ /^$embedded_name$/) {  
944          return &embedded_to_html($chunk);          return &embedded_to_html($chunk);
945      } else {      } else {
946          $chunk = &unarmor_name($chunk);          $chunk = &unarmor_name($chunk);
947          $chunk = &unescape($chunk); # To treat '&' or '>' or '<' correctly.          $chunk = &unescape($chunk); # To treat '&' or '>' or '<' correctly.
948          my $cookedchunk = &encode($chunk);          my $cookedchunk = &encode($chunk);
949          if ($chunk =~ /^$interwiki_name$/) {          if ($database{$chunk}) {
             my ($intername, $localname) = ($1, $2);  
             my $remoteurl = $interwiki{$intername};  
             if ($remoteurl) {  
 #               $remoteurl =~ s/\b(euc|sjis|ykwk|asis)\(\$1\)/&interwiki_convert($1, $localname)/e;      # Walrus del (4)  
                 $remoteurl =~ s/\b(euc|sjis|ykwk|asis|isbn)\(\$1\)/&interwiki_convert($1, $localname)/e; # Walrus add (4)  
 #               return qq(<a href="$remoteurl">$chunk</a>); # Walrus del (3)  
                 return qq(<a href="$remoteurl">@{[&escape($name)]}</a>);  # Walrus add (3)  
             } else {  
 #               return $chunk;                              # Walrus del (3)  
                 return &escape($name);                               # Walrus add (3)  
             }  
         } elsif ($database{$chunk}) {  
950              my $subject = &escape(&get_subjectline($chunk, delimiter => ''));              my $subject = &escape(&get_subjectline($chunk, delimiter => ''));
951  #           return qq(<a title="$subject" href="$url_cgi?$cookedchunk">$chunk</a>);  # Walrus del (3)  #           return qq(<a title="$subject" href="$url_cgi?$cookedchunk">$chunk</a>);  # Walrus del (3)
952              return qq(<a title="$subject" href="$url_cgi?$cookedchunk" class="wiki">@{[&escape($name)]}</a>);   # Walrus add (3)              return qq(<a title="$subject" href="$url_cgi?$cookedchunk" class="wiki">@{[&escape($name)]}</a>);   # Walrus add (3)
# Line 880  sub init_form { Line 975  sub init_form {
975              $form{$var} = param($var);              $form{$var} = param($var);
976        }        }
977      }      }
978      if ($main::ENV{QUERY_STRING} && $main::ENV{QUERY_STRING} !~ /[&;]/) {      $form{mypage} = &code_convert(\$form{mypage}, $kanjicode);
979        if ($main::ENV{QUERY_STRING} && $main::ENV{QUERY_STRING} !~ /[&;=]/) {
980        my $query = &decode($main::ENV{QUERY_STRING});        my $query = &decode($main::ENV{QUERY_STRING});
981          $query = &code_convert(\$query, $kanjicode);
982        if ($page_command{$query}) {        if ($page_command{$query}) {
983          $form{mycmd} = $page_command{$query};          $form{mycmd} = $page_command{$query};
984          $form{mypage} = $query;          $form{mypage} = $query;
# Line 891  sub init_form { Line 988  sub init_form {
988        }        }
989      }      }
990      $form{mypage} ||= 'HomePage';      $form{mypage} ||= 'HomePage';
991        $form{mycmd} ||= 'read';
992    
993      # mypreview_edit        -> do_edit, with preview.      # mypreview_edit        -> do_edit, with preview.
994      # mypreview_adminedit   -> do_adminedit, with preview.      # mypreview_adminedit   -> do_adminedit, with preview.
# Line 906  sub init_form { Line 1004  sub init_form {
1004      # $form{mycmd} is frozen here.      # $form{mycmd} is frozen here.
1005      #      #
1006    
1007        for (grep /^wikiform__/, keys %form) {
1008            $form{$_} = &code_convert (\$form{$_}, $kanjicode);
1009        }
1010      $form{mymsg} = &code_convert(\$form{mymsg}, $kanjicode);      $form{mymsg} = &code_convert(\$form{mymsg}, $kanjicode);
1011      $form{myname} = &code_convert(\$form{myname}, $kanjicode);      $form{myname} = &code_convert(\$form{myname}, $kanjicode);
1012  }  }
# Line 913  sub init_form { Line 1014  sub init_form {
1014  sub update_recent_changes {  sub update_recent_changes {
1015      my $update = "- @{[&get_now]} [[@{[&escape($form{mypage})]}]] @{[&get_subjectline($form{mypage})]}";      my $update = "- @{[&get_now]} [[@{[&escape($form{mypage})]}]] @{[&get_subjectline($form{mypage})]}";
1016      my @oldupdates = split(/\r?\n/, $database{$RecentChanges});      my @oldupdates = split(/\r?\n/, $database{$RecentChanges});
1017        shift (@oldupdates); ## '#?' magic line
1018      my @updates;      my @updates;
1019      foreach (@oldupdates) {      foreach (@oldupdates) {
1020          /^\- \d\d\d\d\-\d\d\-\d\d \([^)]+\) \d\d:\d\d \[\[(\S+?)\]\]/;          /^\- \d\d\d\d\-\d\d\-\d\d \([^)]+\) \d\d:\d\d \[\[(\S+?)\]\]/;
# Line 925  sub update_recent_changes { Line 1027  sub update_recent_changes {
1027        unshift @updates, $update;        unshift @updates, $update;
1028      }      }
1029      splice(@updates, $maxrecent + 1);      splice(@updates, $maxrecent + 1);
1030      $database{$RecentChanges} = join("\n", @updates);      $database{$RecentChanges} = "#?SuikaWiki/0.9\n" . join("\n", @updates);
1031      if ($file_touch) {      if ($file_touch) {
1032          open(FILE, "> $file_touch");          open(FILE, "> $file_touch");
1033          print FILE localtime() . "\n";          print FILE localtime() . "\n";
# Line 1029  sub print_searchform { Line 1131  sub print_searchform {
1131      my ($word) = @_;      my ($word) = @_;
1132      print <<"EOD";      print <<"EOD";
1133  <form action="$url_cgi" method="get">  <form action="$url_cgi" method="get">
1134      <input type="hidden" name="mycmd" value="search">      <input type="hidden" name="mycmd" value="read">
1135      <input type="text" name="mymsg" value="$word" size="20">      <input type="text" name="mypage" value="$word" size="20">
1136      <input type="submit" value="$resource{searchbutton}">      <input type="submit" value="$resource{searchbutton}">
1137  </form>  </form>
1138  EOD  EOD
# Line 1056  sub print_editform { Line 1158  sub print_editform {
1158      } else {      } else {
1159          $mymsg = &escape($mymsg || $database{NewPageTemplate});          $mymsg = &escape($mymsg || $database{NewPageTemplate});
1160      }      }
1161        my $magic = '';
1162        $magic = $1 if $mymsg =~ m/^([^\x0A\x0D]+)/s;
1163    
1164      my $edit = $mode{admin} ? 'adminedit' : 'edit';      my $edit = $mode{admin} ? 'adminedit' : 'edit';
1165      my $escapedmypage = &escape($form{mypage});      my $escapedmypage = &escape($form{mypage});
1166      my $escapedmypassword = &escape($form{mypassword});      my $escapedmypassword = &escape($form{mypassword});
1167        my $selected = 'read';
1168        if ($form{after_edit_cmd}) {
1169            $selected = $form{after_edit_cmd};
1170        } elsif ($magic =~ /Config/ || $magic =~ /CSS/) {
1171            $selected = 'edit';
1172        }
1173        my $afteredit = <<EOH;
1174    <select name="after_edit_cmd">
1175    <option value="read" label="View changed page"@{[$selected eq 'read' ? ' selected="selected"':'']}>read</option>
1176    <option value="edit" label="Edit changed page"@{[$selected eq 'edit' ? ' selected="selected"':'']}>edit</option>
1177    </select>
1178    EOH
1179    
1180      print <<"EOD";      print <<"EOD";
1181  <form action="$url_cgi" method="post">  <form action="$url_cgi" method="post">
1182  <h2>$escapedmypageの編集</h2>  <h2>$escapedmypageの編集</h2>
1183      @{[ $mode{admin} ? qq($resource{frozenpassword} <input type="password" name="mypassword" value="$escapedmypassword" size="10"><br>) : "" ]}      @{[ $mode{conflict} ? '' : qq(<input type="submit" name="mypreview_write" value="$resource{savebutton}"><kbd>S</kbd>) ]}
1184        @{[ $mode{admin} ? qq($resource{frozenpassword} <input type="password" name="mypassword" value="$escapedmypassword" size="10">) : "" ]} [@{[do {my $n = 0;
1185                   $mymsg =~ s/(?:-+\s)?\[([0-9]+)\]/$n = $1 if $1 > $n; $&/mge;
1186                   ++$n}]}]<br>
1187      <input type="hidden" name="myLastModified" value="$lastmodified">      <input type="hidden" name="myLastModified" value="$lastmodified">
1188      <input type="hidden" name="mypage" value="$escapedmypage">      <input type="hidden" name="mypage" value="$escapedmypage">
1189      <textarea cols="$cols" rows="$rows" name="mymsg" tabindex="1">$mymsg</textarea><br>      <textarea cols="$cols" rows="$rows" name="mymsg" tabindex="1">$mymsg</textarea><br>
# Line 1081  sub print_editform { Line 1200  sub print_editform {
1200          <input type="checkbox" name="mytouch" value="on" checked="checked">$resource{touch}<br>          <input type="checkbox" name="mytouch" value="on" checked="checked">$resource{touch}<br>
1201          <input type="submit" name="mypreview_$edit" value="$resource{previewbutton}">          <input type="submit" name="mypreview_$edit" value="$resource{previewbutton}">
1202          <input type="submit" name="mypreview_write" value="$resource{savebutton}" accesskey="S"><kbd>S</kbd>          <input type="submit" name="mypreview_write" value="$resource{savebutton}" accesskey="S"><kbd>S</kbd>
1203          [@{[do {my $n = 0;         $afteredit
1204                 $mymsg =~ s/(?:-+\s)?\[([0-9]+)\]/$n = $1 if $1 > $n; $&/mge;         <br>
                ++$n}]}]<br>  
1205      )      )
1206  ]}  ]}
1207  </form>  </form>
# Line 1115  EOD Line 1233  EOD
1233    
1234  sub is_editable {  sub is_editable {
1235      my ($page) = @_;      my ($page) = @_;
1236      if (&is_bracket_name($page)) {      if ($fixedpage{$page} || $page =~ /\s/ || $page =~ /^\#/) {
         return 0;  
     } elsif ($fixedpage{$page}) {  
         return 0;  
     } elsif ($page =~ /\s/) {  
         return 0;  
     } elsif ($page =~ /^\#/) {  
         return 0;  
     } elsif ($page =~ /^$interwiki_name$/) {  
1237          return 0;          return 0;
1238      } else {      } else {
1239          return 1;          return 1;
# Line 1133  sub is_editable { Line 1243  sub is_editable {
1243  # armor_name:  # armor_name:
1244  #   WikiName -> WikiName  #   WikiName -> WikiName
1245  #   not_wiki_name -> [[not_wiki_name]]  #   not_wiki_name -> [[not_wiki_name]]
1246  sub armor_name {  sub armor_name { qq([[$_[0]]]) }
     my ($name) = @_;  
     #if ($name =~ /^$wiki_name$/) {  
     #    return $name;  
     #} else {  
         return "[[$name]]";  
     #}  
 }  
1247    
1248  # unarmor_name:  # unarmor_name:
1249  #   [[bracket_name]] -> bracket_name  #   [[bracket_name]] -> bracket_name
# Line 1154  sub unarmor_name { Line 1257  sub unarmor_name {
1257      }      }
1258  }  }
1259    
 sub is_bracket_name {  
     my ($name) = @_;  
     if ($name =~ /^$bracket_name$/) {  
         return 1;  
     } else {  
         return 0;  
     }  
 }  
   
1260  sub decode {  sub decode {
1261      my ($s) = @_;      my ($s) = @_;
1262      $s =~ tr/+/ /;      $s =~ tr/+/ /;
# Line 1186  sub encode { Line 1280  sub encode {
1280  sub init_resource {  sub init_resource {
1281      open(FILE, $file_resource) or &print_error("(resource)");      open(FILE, $file_resource) or &print_error("(resource)");
1282      while (<FILE>) {      while (<FILE>) {
1283          chomp;          s/[\x0A\x0D]+$//g;
1284          next if /^#/;          next if /^#/;
1285          my ($key, $value) = split(/=/, $_, 2);          my ($key, $value) = split(/=/, $_, 2);
1286          $resource{$key} = &code_convert(\$value, $kanjicode);          $resource{$key} = &code_convert(\$value, $kanjicode);
# Line 1225  sub get_now { Line 1319  sub get_now {
1319      return "$year-$mon-$day ($weekday) $hour:$min";      return "$year-$mon-$day ($weekday) $hour:$min";
1320  }  }
1321    
 # [[YukiWiki http://www.hyuki.com/yukiwiki/wiki.cgi?euc($1)]]  
1322  sub init_InterWikiName {  sub init_InterWikiName {
1323      my $content = $database{$InterWikiName};    my @content = split /\n/, $database{$InterWikiName};
1324      while ($content =~ /\[\[(\S+) +(\S+)\]\]/g) {    for (@content) {
1325          my ($name, $url) = ($1, $2);      if (/^([^#]\S*)\s+(\S[^\x0A\x0D]+)/) {
1326          $interwiki{$name} = $url;        $interwiki{$1} = $2;
1327      }      }
1328      }
1329      require Message::Util::Formatter;
1330      $fmt{interwiki} = Message::Util::Formatter->new;
1331      $fmt{interwiki}->{encoded} = sub {
1332        my ($o, $p) = @_;
1333        if ($o->{except}) {
1334          $o->{except} =~ tr/\x00-\x20\x22%\x2D<>^[\x5C]`{|}\x7F-\xFF//d;
1335        }
1336        my $s = &code_convert (\$p->{name}, $o->{charset} || 'iso-2022-7bit');
1337        $s =~ s/([^$o->{except}A-Za-z0-9_-])/sprintf '%%%02X', unpack 'C', $1/ge;
1338        $s;
1339      };
1340      $fmt{interwiki}->{ykwk} = sub {       ## YukiWiki1
1341        my ($o, $p) = @_;
1342        my $s = $p->{name};
1343        $s = qq([[$s]]) if $s !~ /^[A-Z][a-z]+(?:[A-Z][a-z]+)+$/;
1344        &encode (&code_convert (\$p->{name}, $o->{charset} || 'shift_jis'));
1345      };
1346  }  }
1347    
 sub interwiki_convert {  
     my ($type, $localname) = @_;  
     if ($type eq 'sjis' or $type eq 'euc') {  
         &code_convert(\$localname, $type);  
         return &encode($localname);  
     } elsif ($type eq 'ykwk') {  
         # for YukiWiki1  
         if ($localname =~ /^$wiki_name$/) {  
             return $localname;  
         } else {  
             &code_convert(\$localname, 'sjis');  
             return &encode("[[" . $localname . "]]");  
         }  
     } elsif ($type eq 'asis') {  
         return $localname;  
     # Walrus add (4) start  
     } elsif ($type eq 'isbn') {  
         $localname = join('', ($localname =~ /[0-9x]/g)) if ($localname =~ /^(\d-?){9}[\dx]$/);  
         return $localname;  
     # Walrus add (4) end  
     } else {  
         return $localname;  
     }  
 }  
1348    
1349  sub get_info {  sub get_info {
1350      my ($page, $key) = @_;      my ($page, $key) = @_;
# Line 1322  sub do_comment { Line 1409  sub do_comment {
1409      } elsif (length $namestr) {      } elsif (length $namestr) {
1410        $namestr = qq( ''[[$namestr]]'': );        $namestr = qq( ''[[$namestr]]'': );
1411      }      }
1412      my $anchor = 0;      my $anchor = &get_new_anchor_index ($content);
     $content =~ s/(?:-+\s)?\[([0-9]+)\]/$anchor = $1 if $1 > $anchor; $&/mge;  
     $anchor++;  
1413      my $i = 1;  my $o = 0;      my $i = 1;  my $o = 0;
1414      $content =~ s{(\Q$embed_comment\E|\Q$embed_rcomment\E)}{      $content =~ s{(\Q$embed_comment\E|\Q$embed_rcomment\E)}{
1415        my $embed = $1;        my $embed = $1;
# Line 1353  sub do_comment { Line 1438  sub do_comment {
1438      }      }
1439  }  }
1440    
1441    sub get_new_anchor_index ($) {
1442        my $content = shift;
1443        my $anchor = 0;
1444        $content =~ s/^(?:[-=]+\s*)?\[([0-9]+)\]/$anchor = $1 if $1 > $anchor; $&/mge;
1445        $anchor + 1;
1446    }
1447    
1448  my $CommentIndex = 0;  my $CommentIndex = 0;
1449  sub embedded_to_html {  sub embedded_to_html {
1450      my ($embedded) = @_;      my ($embedded) = @_;
# Line 1408  EOD Line 1500  EOD
1500      } else {    ## nested #EMBED      } else {    ## nested #EMBED
1501        $r = &text_to_html ("[INS[\n[[$name]] の埋め込みは (入り組んでいるので) 解決されませんでした。\n]INS]\n", content_format => 'SuikaWiki/0.9');        $r = &text_to_html ("[INS[\n[[$name]] の埋め込みは (入り組んでいるので) 解決されませんでした。\n]INS]\n", content_format => 'SuikaWiki/0.9');
1502      }      }
1503      return qq(<blockquote title="@{[&escape($name)]}">$r<div class="cite-note">『<cite><a href="$url_cgi?@{[&encode($name)]}" class="wiki">@{[&escape($name)]}</a></cite>』</div></blockquote>);      return qq(<blockquote title="@{[&escape($name)]}" class="wiki-embed">$r<div class="cite-note">『<cite><a href="$url_cgi?@{[&encode($name)]}" class="wiki">@{[&escape($name)]}</a></cite>』</div></blockquote>);
1504    } elsif ($embedded =~ /^\[\[\#randomlink:(.+)\]\]$/) {    } elsif ($embedded =~ /^\[\[\#randomlink:(.+)\]\]$/) {
1505      return qq(<a href="$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki randomlink">$1</a>);      return qq(<a href="$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki randomlink">$1</a>);
1506    } else {    } else {
# Line 1416  EOD Line 1508  EOD
1508    }    }
1509  }  }
1510    
1511    sub load_formatter (@) {
1512        for my $t (@_) {
1513            unless ($fmt{$t}) {
1514                $fmt{$t} = Message::Util::Formatter->new;
1515                for (@{$SuikaWiki::Plugin::List{'wiki'.$t}||[]}) {
1516                    $_->load_formatter ($fmt{$t}, type => 'wiki'.$t);
1517                }
1518            }
1519        }
1520    }
1521    
1522    sub do_wikiform {
1523        my $content = $database{$form{mypage}};
1524        my $anchor = &get_new_anchor_index ($content);
1525        &load_formatter (qw/form_template form_option/);
1526        my $write = 0;
1527        my $i = 1;
1528        $content =~ s{$embed_command{form}}{
1529            my ($embed, $wfname, $template, $option) = ($&, $1, $3, $4);
1530            if (($wfname && $wfname eq $form{wikiform_targetform})
1531                || $i == $form{wikiform_index}) {
1532                $template =~ s/\\(.)/$1/g;
1533                $option =~ s/\\(.)/$1/g;
1534                my $param = bless {}, 'SuikaWiki::Plugin';
1535                $param->{page} = $form{mypage};
1536                $param->{form_index} = $i;
1537                $param->{form_name} = $wfname;
1538                $param->{anchor_index} = $anchor;
1539                $param->{argv} = \%form;
1540                $param->{default_name} = $1 if $content =~ /default-name="([^"]+)"/;
1541                $param->{default_name} ||= $DEFAULT_embed_comment_name;
1542                $fmt{form_option}->replace ($option, $param);
1543                my $t = 1;
1544                for (@{$param->{require}||[]}) {
1545                    (undef $t, last) unless length $param->{argv}->{'wikiform__'.$_};
1546                }
1547                $t = $fmt{form_template}->replace ($template, $param) if $t;
1548                if (length $t) {
1549                    if ($param->{output}->{reverse}) {
1550                        $embed .= "\n" . $t;
1551                    } else {
1552                        $embed = $t . "\n" . $embed;
1553                    }
1554                    $write = 1;
1555                    $form{__comment_anchor_index} = $anchor
1556                      if $param->{anchor_index_};  ## $anchor is used!
1557                }
1558                $form{__wikiform_anchor_index} = $i;
1559                undef $form{wikiform_targetform};  ## make sure never to match
1560                undef $form{wikiform_index};       ## with WikiForm in rest of page
1561            }
1562            $i++; $embed;
1563        }ge;
1564        unless ($write) {
1565          #$content = "#?SuikaWiki/0.9\n\n" unless $content;
1566          #$content .= "\n" unless $content =~ /\n$/s;
1567          #
1568        }
1569        if ($write) {
1570            $form{mymsg} = $content;
1571            $form{mytouch} = 'on';
1572            &do_write;
1573        } else {
1574            $form{mycmd} = 'read';
1575            &do_read;
1576        }
1577    }
1578    
1579    
1580  # Walrus add (5) start  # Walrus add (5) start
1581  sub do_interwiki_box {  sub do_interwiki_box {
1582      my $remoteurl = $interwiki{$form{'myintername'}};      my $remoteurl = $interwiki{$form{'myintername'}};
# Line 1453  EOD Line 1614  EOD
1614    
1615  sub code_convert {  sub code_convert {
1616      my ($contentref, $code) = (shift, shift || $kanjicode);      my ($contentref, $code) = (shift, shift || $kanjicode);
1617  #   &Jcode::convert($contentref, $code);       # for Jcode.pm      $code = 'jis' if $code =~ /iso/;
1618      &jcode::convert($contentref, $code);       # for jcode.pl      $code = 'euc' if $code =~ /euc/;
1619        $code = 'sjis' if $code =~ /shift/;
1620        $code = 'utf8' if $code =~ /utf/;
1621        &Jcode::convert($contentref, $code);       # for Jcode.pm
1622    #    &jcode::convert($contentref, $code);       # for jcode.pl
1623        &jcode::tr ($contentref, "\xA3\xB0-\xA3\xB9\xA3\xC1-\xA3\xDA\xA3\xE1-\xA3\xFA\xA1\xF5\xA1\xA4\xA1\xA5\xA1\xA7\xA1\xA8\xA1\xA9\xA1\xAA\xA1\xAE\xA1\xB0\xA1\xB2\xA1\xBF\xA1\xC3\xA1\xCA\xA1\xCB\xA1\xCE\xA1\xCF\xA1\xD0\xA1\xD1\xA1\xDC\xA1\xF0\xA1\xF3\xA1\xF4\xA1\xF6\xA1\xF7\xA1\xE1\xA2\xAF\xA2\xB0\xA2\xB2\xA2\xB1\xA1\xE4\xA1\xE3\xA1\xC0\xA1\xA1" => q(0-9A-Za-z&,.:;?!`^_/|()[]{}+$%#*@='"~-><\ )) if $code eq 'euc';
1624      return $$contentref;      return $$contentref;
1625  }  }
1626    
# Line 1577  sub do_rss { Line 1743  sub do_rss {
1743          $count++;          $count++;
1744      }      }
1745      # print RSS information (as XML).      # print RSS information (as XML).
1746    print scalar &make_navigate_links ('RssPage');
1747      print <<"EOD"      print <<"EOD"
1748  Content-type: text/xml  Content-type: application/xml
1749    
1750  @{[$rss->as_string]}  @{[$rss->as_string]}
1751  EOD  EOD
# Line 1594  sub is_exist_page { Line 1761  sub is_exist_page {
1761  }  }
1762    
1763  sub __get_database ($) { $database{ $_[0] } }  sub __get_database ($) { $database{ $_[0] } }
1764    sub __set_database ($$) { $database{ $_[0] } = $_[1] }
1765    
1766    sub do_wikiplugininfo {
1767        &print_header (q(WikiPluginInfo));
1768        print text_to_html (&SuikaWiki::Plugin::make_info_page);
1769        &print_footer (q(WikiPluginInfo));
1770    }
1771    
1772  package wiki::referer;  package wiki::referer;
1773  sub add ($$) {  sub add ($$) {
# Line 1660  sub list_html ($) { Line 1834  sub list_html ($) {
1834      }      }
1835      my $euri = main::escape ($uri);      my $euri = main::escape ($uri);
1836      if ($title) {      if ($title) {
1837        $r .= qq(<li>[$list{$uri}] <a href="$euri" title="URI: &lt;$euri>">@{[main::escape ($title)]}</a></li>\n);        $r .= qq(<li>[$list{$uri}] <a href="$euri" title="URI: &lt;$euri&gt;">@{[main::escape ($title)]}</a></li>\n);
1838      } else {      } else {
1839        $r .= qq(<li>[$list{$uri}] &lt;<a href="$euri">$euri</a>&gt;</li>\n);        $r .= qq(<li>[$list{$uri}] &lt;<a href="$euri">$euri</a>&gt;</li>\n);
1840      }      }
# Line 1675  sub __decode ($) { Line 1849  sub __decode ($) {
1849    main::code_convert (\$s);    main::code_convert (\$s);
1850  }  }
1851    
1852    package wiki::useragent;
1853    
1854    sub add ($) {
1855      my $s = shift;
1856      return unless length $s;
1857      $s =~ s/([\x00-\x08\x0A-\x1F\x25\x7F-\xFF])/sprintf '%%%02X', unpack 'C', $1/ge;
1858      my %ua;
1859      for (split /\n/, &main::__get_database('WikiUserAgentList')) {
1860        if (/^-\[(\d+)\] (.+)$/) {
1861          my ($t, $n) = ($1, $2);
1862          $n =~ tr/\x0A\x0D//d;
1863          $ua{$n} = $t;
1864        }
1865      }
1866      $ua{$s}++;
1867      my $s = qq(#?SuikaWiki/0.9\n);
1868      for (sort {$ua{$a} <=> $ua{$b}} keys %ua) {
1869        $s .= sprintf qq(-[%d] %s\n), $ua{$_}, $_;
1870      }
1871      &main::__set_database ('WikiUserAgentList' => $s);
1872    }
1873    
1874    package SuikaWiki::Plugin;
1875      our $plugin_directory;  # defined in top of this file.
1876      our %List;
1877    
1878    sub escape ($$) { main::escape ($_[1]) }
1879    sub unescape ($$) { main::unescape ($_[1]) }
1880    sub encode ($$) { main::encode ($_[1]) }
1881    sub decode ($$) { main::decode ($_[1]) }
1882    sub __get_datetime ($) { main::get_now () }
1883    
1884    sub regist ($@) {
1885        my $pack = shift;
1886        for (@_) {
1887            push @{$List{$_}}, $pack;
1888        }
1889    }
1890    
1891    sub import_plugins () {
1892        opendir PDIR, $plugin_directory;
1893        my @plugin = grep {s/\.pm$//} readdir (PDIR);
1894        closedir PDIR;
1895        for (@plugin) {
1896            eval qq{ use SuikaWiki::Plugin::$_ } unless /[^A-Za-z0-9_]/;
1897            push @{$List{_all}}, qq(SuikaWiki::Plugin::$_);
1898        }
1899    }
1900    
1901    sub make_info_page () {
1902        my $r = <<EOH;
1903    EOH
1904        unless ($List{_all}) {
1905            $r .= qq('''No plugin is installed!'''\n);
1906        } else {
1907            my $index = 0;
1908            for my $package (sort @{$List{_all}}) {
1909                $index++;
1910                my $prop = $package->property ();
1911                $r .= <<EOH;
1912    *$package
1913    
1914    [$index] '''$prop->{name}''' (Version $prop->{version})
1915    <$prop->{uri}>
1916    
1917    Provide:
1918    @{[do{my $t = ''; for my $f (@{$prop->{provide}||[]}) {
1919        $t .= qq(-''$f''\n);
1920        for (sort grep m#^\Q$f\E/#, keys %{$prop->{partinfo}}) {
1921             $t .= qq(--''$_'' -- $prop->{partinfo}->{$_}\n);
1922        }
1923    }$t}]}
1924    
1925    EOH
1926            }
1927        }
1928        $r;
1929    }
1930    
1931    &import_plugins ();
1932    
1933    package main;
1934    &main;
1935    exit 0;
1936    
1937  1;  1;
1938  __END__  __END__
1939  =head1 NAME  =head1 NAME

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.40

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24