/[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.1.1.1 by wakaba, Sun Jun 2 04:26:22 2002 UTC revision 1.35 by wakaba, Thu Dec 5 04:32:27 2002 UTC
# Line 1  Line 1 
1  #!/usr/local/bin/perl  #!/usr/bin/perl
2  #!perl  #
3  #  # wiki.cgi - This is YukiWiki, yet another Wiki clone.
4  # wiki.cgi - This is YukiWiki, yet another Wiki clone.  #
5  #  # Copyright (C) 2000-2002 by Hiroshi Yuki.
6  # Copyright (C) 2000-2002 by Hiroshi Yuki.  # <hyuki@hyuki.com>
7  # <hyuki@hyuki.com>  # http://www.hyuki.com/yukiwiki/
8  # http://www.hyuki.com/yukiwiki/  #
9  #  # This program is free software; you can redistribute it and/or
10  # This program is free software; you can redistribute it and/or  # modify it under the same terms as Perl itself.
11  # modify it under the same terms as Perl itself.  #
12  #  # walwiki.cgi based on yukiwiki.cgi - Yet another WikiWikiWeb clone.
13  ##############################  
14  #  # Walrus add (debug) start
15  # walwiki.cgi based on yukiwiki.cgi - Yet another WikiWikiWeb clone.  my $walrus_log;
16  #  my $walrus_debugging = 0;
17  # WalWikiの現バージョンは、YukiWiki 2.0.beta1をベースにしています。  # Walrus add (debug) end
18  #  
19  # * 更新内容  # Libraries.
20  #  use strict;
21  # 2.0.beta1.wal.1 on 2002/05/19,22:32:19  use lib qw(./WalWiki/lib);
22  # (1) Footerの変更  use CGI qw(:standard);
23  # (2) WikiNameの拡張 : PerlCEも包含、PPMInstallは含まない  use CGI::Carp qw(fatalsToBrowser);
24  # (3) 別名リンク([別名 URL])に対応。  use Yuki::RSS;
25  # (4) ISBNをアマゾン.jpのAsociateプログラムリンクに変換。  use Yuki::DiffText qw(difftext);
26  # (5) [[#box:InterWikiName]]でInterWikiなテキストボックス生成  use Yuki::YukiWikiDB;
27  # (6) HTMLモード対応。  use AnyDBM_File;
28  #  require 'jcode.pl';
29  # 旧2.0.alpha0.wal.3版までの修正の内、以下に変更があります。  require Jcode;
30  # ・以下はYukiWiki2に実装されたため、独自コードはなくなりました。  use Fcntl;
31  #   - インラインの画像変換  my $version = '2.0.beta1.2002-05-29';
32  #   - YukiWikiDB対応  my $walversion;
33  #   - テーブル  ##############################
34  #   - DB関連モジュールuseのeval化  #
35  #   - BracketNameによるキーからブラケットを排除  # You MUST modify following '$modifier_...' variables.
36  # ・ISBN番号への対応はWalWiki2.0より、InterWikiへのAdd-Onになりました。  #
37  #   [[ISBN http://www.amazon.co.jp/exec/obidos/ASIN/isbn($1)/walrdigi-22]]のように登録。  my $modifier_mail = 'w@suika.fam.cx';   # Your mail address, like 'walrus@digit.que.ne.jp'.
38  #  my $modifier_url  = 'http://suika.fam.cx/~wakaba/';     # Your web page, like 'http://digit.que.ne.jp/work/'.
39  #=======================================  my $modifier_name = 'マツ';       # Your name, like 'Makio Tsukamoto'.
40    # my $modifier_dbtype = 'AnyDBM_File';  # Fast, not available on some server, page size limited.
41  # Walrus add (debug) start  # my $modifier_dbtype = 'dbmopen';      # Fast, not available on some server, page size limited.
42  my $walrus_log;  my $modifier_dbtype = 'YukiWikiDB';     # Slow, available on all environment.
43  my $walrus_debugging = 0;  # my $modifier_sendmail = '/usr/sbin/sendmail -t -n'; # Your sendmail.
44  # Walrus add (debug) end  my $modifier_sendmail = ''; # If you don't need mail notification.
45    my $modifier_dir_data = './wikidata'; # Your data directory.
46  # Libraries.  my $modifier_rss_title = "SuikaWiki $walversion";
47  use strict;  my $modifier_rss_link = 'http://suika.fam.cx/~wakaba/-temp/wiki2/wiki'; # Blank is not allowed.
48  use lib qw(./WalWiki/lib);  my $modifier_rss_description = 'This is SuikaWiki';
49  use CGI qw(:standard);  ##############################
50  use CGI::Carp qw(fatalsToBrowser);  #
51  use Yuki::RSS;  # You MAY modify following variables.
52  use Yuki::DiffText qw(difftext);  #
53  use Yuki::YukiWikiDB;  $SuikaWiki::Plugin::plugin_directory = q(./SuikaWiki/Plugin/);
54  use AnyDBM_File;  my $file_touch = "$modifier_dir_data/touched.txt";
55  require 'jcode.pl';  my $file_resource = "$modifier_dir_data/resource.txt";
56  # use Jcode;  my $file_FrontPage = "$modifier_dir_data/frontpage.txt";
57  use Fcntl;  my $file_conflict = "$modifier_dir_data/conflict.txt";
58  my $version = '2.0.beta1.2002-05-29';  my $file_format = "$modifier_dir_data/format.txt";
59  ##############################  my $url_cgi = '/~wakaba/-temp/wiki/wiki';       ## MUST be started from '/'
60  #  my $url_stylesheet = $url_cgi.'?mycmd=TEXT_CSS;mypage=WikiHTMLStyle';
61  # You MUST modify following '$modifier_...' variables.  my $icontag = '<img src="/icons/folder" alt="*" width="40" height="40" />';
62  #  my $maxrecent = 50;
63  my $modifier_mail = ''; # Your mail address, like 'walrus@digit.que.ne.jp'.  my $cols = 80;
64  my $modifier_url  = ''; # Your web page, like 'http://digit.que.ne.jp/work/'.  my $rows = 20;
65  my $modifier_name = ''; # Your name, like 'Makio Tsukamoto'.  ##############################
66  # my $modifier_dbtype = 'AnyDBM_File';  # Fast, not available on some server, page size limited.  #
67  # my $modifier_dbtype = 'dbmopen';      # Fast, not available on some server, page size limited.  # You MAY, but do NOT NEED modify following variables.
68  my $modifier_dbtype = 'YukiWikiDB';     # Slow, available on all environment.  #
69  # my $modifier_sendmail = '/usr/sbin/sendmail -t -n'; # Your sendmail.  my $dataname = "$modifier_dir_data/wiki";
70  my $modifier_sendmail = ''; # If you don't need mail notification.  my $infoname = "$modifier_dir_data/info";
71  my $modifier_dir_data = './WalWiki'; # Your data directory.  my $diffname = "$modifier_dir_data/diff";
72  my $modifier_rss_title = "WalWiki $walversion";  my $editchar = '?';
73  my $modifier_rss_link = 'http://yourhost/wiki.cgi'; # Blank is not allowed.  my $subject_delimiter = ' - ';
74  my $modifier_rss_description = 'This is WalWiki, yet another Wiki clone based on YukiWiki';  my $use_autoimg = 1; # automatically convert image URL into <img> tag.
75  ##############################  my $use_exists = 0; # If you can use 'exists' method for your DB.
76  #  ##############################
77  # You MAY modify following variables.  my $InterWikiName = 'InterWikiName';
78  #  my $RecentChanges = 'RecentChanges';
79  my $file_touch = "$modifier_dir_data/touched.txt";  my $AdminChangePassword = 'AdminChangePassword';
80  my $file_resource = "$modifier_dir_data/resource.txt";  my $CompletedSuccessfully = 'CompletedSuccessfully';
81  my $file_FrontPage = "$modifier_dir_data/frontpage.txt";  my $FrontPage = 'HomePage';
82  my $file_conflict = "$modifier_dir_data/conflict.txt";  my $IndexPage = 'IndexPage';
83  my $file_format = "$modifier_dir_data/format.txt";  my $SearchPage = 'SearchPage';
84  my $url_cgi = 'wiki.cgi';  my $CreatePage = 'CreatePage';
85  my $url_stylesheet = './WalWiki/Theme/wiki.css';  my $ErrorPage = 'ErrorPage';
86  my $icontag = '<img src="./WalWiki/Theme/icon.gif" alt="*" width="40" height="40" />';  my $RssPage = 'RssPage';
87  my $maxrecent = 50;  my $NAME_OF_WikiPageLicense = 'WikiPageLicense';
88  my $cols = 80;  my $AdminSpecialPage = 'Admin Special Page'; # must include spaces.
89  my $rows = 20;  ##############################
90  ##############################  my $bracket_name = '\[\[(\S+?)\]\]';
91  #  my $embedded_name = '\[\[(#\S+?)\]\]';
92  # You MAY, but do NOT NEED modify following variables.  my %fmt;        ## formatter objects
93  #  ##############################
94  my $dataname = "$modifier_dir_data/wiki";  my $embed_comment = '[[#comment]]';
95  my $infoname = "$modifier_dir_data/info";  my $embed_rcomment = '[[#rcomment]]';
96  my $diffname = "$modifier_dir_data/diff";  my $embed_comment_Name_Prompt = 'フセチー:';
97  my $editchar = '?';  my $DEFAULT_embed_comment_name = 'フセフオ、キ、オ、';
98  my $subject_delimiter = ' - ';  my $embed_interwiki = '^\[\[#(box|text|password):(\S+)\]\]$';    # Walrus add (5)
99  my $use_autoimg = 1; # automatically convert image URL into <img> tag.  my %embed_command = (
100  my $use_exists = 0; # If you can use 'exists' method for your DB.          searched        => '^\[\[#searched:([^\]]+)\]\]$',
101  ##############################      form => qw/\[\[\#form(?:\(([A-Za-z0-9-]+)\))?:'((?:[^'\\]|\\.)*)':'((?:[^'\\]|\\.)*)'(?::'((?:[^'\\]|\\.)*)')?\]\]/,
102  my $InterWikiName = 'InterWikiName';  );
103  my $RecentChanges = 'RecentChanges';  ##############################
104  my $AdminChangePassword = 'AdminChangePassword';  my $info_LastModified = 'LastModified';
105  my $CompletedSuccessfully = 'CompletedSuccessfully';  my $info_IsFrozen = 'IsFrozen';
106  my $FrontPage = 'FrontPage';  my $info_AdminPassword = 'AdminPassword';
107  my $IndexPage = 'IndexPage';  ##############################
108  my $SearchPage = 'SearchPage';  my $kanjicode = 'euc';
109  my $CreatePage = 'CreatePage';  my $charset = 'EUC-JP';
110  my $ErrorPage = 'ErrorPage';  my $lang = 'ja';
111  my $RssPage = 'RssPage';  my %fixedpage = (
112  my $AdminSpecialPage = 'Admin Special Page'; # must include spaces.      $IndexPage => 1,
113  ##############################      $CreatePage => 1,
114  # my $wiki_name = '\b([A-Z][a-z]+([A-Z][a-z]+)+)\b';        # Walrus del (2)      $ErrorPage => 1,
115  my $wiki_name   = '\b([A-Z][a-z]+([A-Z][a-z]*)+)\b';        # Walrus add (2)      $RssPage => 1,
116  my $bracket_name = '\[\[(\S+?)\]\]';      $RecentChanges => 1,
117  my $embedded_name = '\[\[(#\S+?)\]\]';      $SearchPage => 1,
118  my $interwiki_definition = '\[\[(\S+?)\ (\S+?)\]\]';      $AdminChangePassword => 1,
119  my $interwiki_name = '([^:]+):([^:].*)';      $CompletedSuccessfully => 1,
120  ##############################      #$FrontPage => 1,
121  my $embed_comment = '[[#comment]]';      WikiUserAgentList => 1,
122  my $embed_rcomment = '[[#rcomment]]';      WikiPluginInfo    => 1,
123  my $embed_interwiki = '^\[\[#(box|text|password):(\S+)\]\]$';    # Walrus add (5)  );
124  ##############################  my %form;
125  my $info_LastModified = 'LastModified';  my %database;
126  my $info_IsFrozen = 'IsFrozen';  my %infobase;
127  my $info_AdminPassword = 'AdminPassword';  my %diffbase;
128  ##############################  my %resource;
129  my $kanjicode = 'euc';  my %interwiki;
130  my $charset = 'EUC-JP';  ##############################
131  my $lang = 'ja';  my %page_command = (
132  my %fixedpage = (      $IndexPage => 'index',
133      $IndexPage => 1,      $SearchPage => 'searchform',
134      $CreatePage => 1,      $CreatePage => 'create',
135      $ErrorPage => 1,      $RssPage => 'rss',
136      $RssPage => 1,      $AdminChangePassword => 'adminchangepasswordform',
137      $RecentChanges => 1,      #$FrontPage => 'FrontPage',
138      $SearchPage => 1,      WikiPluginInfo       => 'x_WikiPluginInfo',
139      $AdminChangePassword => 1,  );
140      $CompletedSuccessfully => 1,  my %command_do = (
141      $FrontPage => 1,      read => \&do_read,
142  );      TEXT_CSS => \&do_output_css,
143  my %form;      edit => \&do_edit,
144  my %database;      adminedit => \&do_adminedit,
145  my %infobase;      adminchangepasswordform => \&do_adminchangepasswordform,
146  my %diffbase;      adminchangepassword => \&do_adminchangepassword,
147  my %resource;      write => \&do_write,
148  my %interwiki;      index => \&do_index,
149  ##############################      searchform => \&do_searchform,
150  my %page_command = (      search => \&do_search,
151      $IndexPage => 'index',      create => \&do_create,
152      $SearchPage => 'searchform',      createresult => \&do_createresult,
153      $CreatePage => 'create',      FrontPage => \&do_FrontPage,
154      $RssPage => 'rss',      comment => \&do_comment,
155      $AdminChangePassword => 'adminchangepasswordform',      RandomJump  => \&do_random_jump,
156      $FrontPage => 'FrontPage',      rss => \&do_rss,
157  );      diff => \&do_diff,
158  my %command_do = (      interwikibox => \&do_interwiki_box, # Walrus add (5)
159      read => \&do_read,      wikiform => \&do_wikiform,
160      edit => \&do_edit,      x_WikiPluginInfo  => \&do_wikiplugininfo,
161      adminedit => \&do_adminedit,  );
162      adminchangepasswordform => \&do_adminchangepasswordform,  ##############################
163      adminchangepassword => \&do_adminchangepassword,  my $walversion = '2.0.beta1.wal.1';          # Walrus add (1)
164      write => \&do_write,  ##############################
165      index => \&do_index,  # &test_convert;
166      searchform => \&do_searchform,  my $UA = '';  ## User agent name
167      search => \&do_search,  ##############################
168      create => \&do_create,  
169      createresult => \&do_createresult,  sub main {
170      FrontPage => \&do_FrontPage,      $UA = $main::ENV{HTTP_USER_AGENT};
171      comment => \&do_comment,      &init_resource;
172      rss => \&do_rss,      &open_db;
173      diff => \&do_diff,      &init_form;
174      interwikibox => \&do_interwiki_box, # Walrus add (5)      &init_InterWikiName;
175  );      if ($command_do{$form{mycmd}}) {
176  ##############################          &{$command_do{$form{mycmd}}};
177  my @ignore_html_page = ('FrontPage');        # Walrus add (6)      } else {
178  my @ignore_html_tags = ('a', 'br', 'img');   # Walrus add (6)          &do_FrontPage;
179  my $walversion = '2.0.beta1.wal.1';          # Walrus add (1)      }
180  ##############################      &close_db;
181  # &test_convert;  }
182  &main;  
183  exit(0);  sub do_read {
184  ##############################    my $content = $database{$form{mypage}};
185      my $lm = &get_info($form{mypage}, $info_LastModified);
186  sub main {    wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER});
187      &init_resource;    wiki::useragent::add ($ENV{HTTP_USER_AGENT});
188      &open_db;    my ($r, $c) = get_search_result ($form{mypage});
189      &init_form;    my $rl = wiki::referer::list_html ($form{mypage});
190      &init_InterWikiName;    my @toc;
191      if ($command_do{$form{mycmd}}) {    push @toc, qq(-<a href="#wikipage-see-also">See Also</a>) if $c;
192          &{$command_do{$form{mycmd}}};    push @toc, qq(-<a href="#wikipage-referer">サイセネクオ</a>) if $rl;
193      } else {      my $cf = 'SuikaWiki/0.9';
194          &do_FrontPage;      ## Should be support at least:
195      }      ## - 'SuikaWiki/0.9' CRLF
196      &close_db;      ## - 'H2H/' ("0.9" / "1.0" / "1.1") CRLF
197  }      ## - "/*" 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]*)?)[\x0D\x0A]+##s;
199  sub do_read {      if ($cf =~ m!^(?:\#\?)?SuikaWiki/0.9(?:$|\s)!) {
200      &print_header($form{mypage});        &print_header ($form{mypage}, -last_modified => $lm,
201      &print_content($database{$form{mypage}});          -content_format => $cf, -noindex => $cf =~ /obsoleted="yes"/);
202      &print_footer($form{mypage});        &print_content ($content, content_format => $cf, last_modified => $lm,
203  }          -toc => \@toc);
204          print &text_to_html (q([[#comment]])) if $cf !~ /obsoleted="yes"/ && !$fixedpage{$form{mypage}};
205  sub do_edit {      } else {
206      my ($page) = &unarmor_name(&armor_name($form{mypage}));        &print_header($form{mypage}, -last_modified => $lm);
207      &print_header($page);        print "<pre>@{[&escape($content)]}</pre>";
208      if (not &is_editable($page)) {      }
209          &print_message($resource{cantchange});      if ($c) {
210      } elsif (&is_frozen($page)) {        print qq{<h2 @{[&id_and_name('wikipage-see-also')]}>See also</h2>};
211          &print_message($resource{cantchange});        print $r;
212      } else {      }
213          &print_editform($database{$page}, &get_info($page, $info_LastModified), admin=>0);      if ($rl) {
214      }        print qq(<div @{[&id_and_name('wikipage-referer')]}><h2>サイセネクオ</h2>\n$rl</div>\n);
215      &print_footer($page);      }
216  }    &print_footer($form{mypage}, $lm);
217    }
218  sub do_adminedit {  
219      my ($page) = &unarmor_name(&armor_name($form{mypage}));  sub do_output_css {
220      &print_header($page);    my $content = $database{$form{mypage}};
221      if (not &is_editable($page)) {    if ($content =~ m#^\s*/\*\s*W3C-CSS#) {
222          &print_message($resource{cantchange});      my $lm = &get_info($form{mypage}, $info_LastModified);
223      } else {      print "Content-Type: text/css; charset=$charset\n";
224          &print_message($resource{passwordneeded});      print "Last-Modified: $lm\n";
225          &print_editform($database{$page}, &get_info($page, $info_LastModified), admin=>1);      print "\n";
226      }      print $content;
227      &print_footer($page);    } else {
228  }      print "Status: 406 Unsupported Media Type\n";
229        &print_header('WikiPageIsNotCSS', -noindex => 1);
230  sub do_adminchangepasswordform {      &print_content($database{WikiPageIsNotCSS});
231      &print_header($AdminChangePassword);      &print_footer('WikiPageIsNotCSS');
232      &print_passwordform;    }
233      &print_footer($AdminChangePassword);  }
234  }  
235    sub id_and_name ($) {
236  sub do_adminchangepassword {      my $name = shift;
237      if ($form{mynewpassword} ne $form{mynewpassword2}) {      if ($UA =~ m#Mozilla/[12]\.#) {
238          &print_error($resource{passwordmismatcherror});        qq{id="$name"><a name="$name"></a};
239      }      } else {
240      my ($validpassword_crypt) = &get_info($AdminSpecialPage, $info_AdminPassword);          qq{id="$name"};
241      if ($validpassword_crypt) {      }
242          if (not &valid_password($form{myoldpassword})) {  }
243              &send_mail_to_admin(<<"EOD", "AdminChangePassword");  
244  myoldpassword=$form{myoldpassword}  sub do_edit {
245  mynewpassword=$form{mynewpassword}      my ($page) = &unarmor_name(&armor_name($form{mypage}));
246  mynewpassword2=$form{mynewpassword2}      &print_header($page, -noindex => 1);
247  EOD      if (not &is_editable($page)) {
248              &print_error($resource{passworderror});          &print_message($resource{cantchange});
249          }      } elsif (&is_frozen($page)) {
250      }          &print_message($resource{cantchange});
251      my ($sec, $min, $hour, $day, $mon, $year, $weekday) = localtime(time);      } else {
252      my (@token) = ('0'..'9', 'A'..'Z', 'a'..'z');          &print_editform($database{$page}, &get_info($page, $info_LastModified), admin=>0);
253      my $salt1 = $token[(time | $$) % scalar(@token)];      }
254      my $salt2 = $token[($sec + $min*60 + $hour*60*60) % scalar(@token)];      wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER});
255      my $crypted = crypt($form{mynewpassword}, "$salt1$salt2");      wiki::useragent::add ($ENV{HTTP_USER_AGENT});
256      &set_info($AdminSpecialPage, $info_AdminPassword, $crypted);      my ($r, $c) = get_search_result ($form{mypage});
257        my $rl = wiki::referer::list_html ($form{mypage});
258      &print_header($CompletedSuccessfully);      if ($c) {
259      &print_message($resource{passwordchanged});        print q{<h2 id="wikipage-see-also">See also</h2>};
260      &print_footer($CompletedSuccessfully);        print $r;
261  }      }
262        if ($rl) {
263  sub do_index {        print qq(<div id="wikipage-referer"><h2>サイセネクオ</h2>\n$rl</div>\n);
264      &print_header($IndexPage);      }
265      print qq(<ul>);      &print_footer($page);
266      foreach my $page (sort keys %database) {  }
267          if (&is_editable($page)) {  
268              print qq(<li><a href="$url_cgi?@{[&encode($page)]}">$page</a>@{[&escape(&get_subjectline($page))]}</li>);  sub do_adminedit {
269              # print qq(<li>@{[&get_info($page, $info_IsFrozen)]}</li>);      my ($page) = &unarmor_name(&armor_name($form{mypage}));
270              # print qq(<li>@{[0 + &is_frozen($page)]}</li>);      &print_header($page, -noindex => 1);
271          }      if (not &is_editable($page)) {
272      }          &print_message($resource{cantchange});
273      print qq(</ul>);      } else {
274      &print_footer($IndexPage);          &print_message($resource{passwordneeded});
275  }          &print_editform($database{$page}, &get_info($page, $info_LastModified), admin=>1);
276        }
277  sub do_write {      &print_footer($page);
278      if (&frozen_reject()) {  }
279          return;  
280      }  sub do_adminchangepasswordform {
281        &print_header($AdminChangePassword, -noindex => 1);
282      if (not &is_editable($form{mypage})) {      &print_passwordform;
283          &print_header($form{mypage});      &print_footer($AdminChangePassword);
284          &print_message($resource{cantchange});  }
285          &print_footer($form{mypage});  
286          return;  sub do_adminchangepassword {
287      }      if ($form{mynewpassword} ne $form{mynewpassword2}) {
288            &print_error($resource{passwordmismatcherror});
289      if (&conflict($form{mypage}, $form{mymsg})) {      }
290          return;      my ($validpassword_crypt) = &get_info($AdminSpecialPage, $info_AdminPassword);
291      }      if ($validpassword_crypt) {
292            if (not &valid_password($form{myoldpassword})) {
293      # Making diff              &send_mail_to_admin(<<"EOD", "AdminChangePassword");
294      {  myoldpassword=$form{myoldpassword}
295          &open_diff;  mynewpassword=$form{mynewpassword}
296          my @msg1 = split(/\n/, $database{$form{mypage}});  mynewpassword2=$form{mynewpassword2}
297          my @msg2 = split(/\n/, $form{mymsg});  EOD
298          $diffbase{$form{mypage}} = &difftext(\@msg1, \@msg2);              &print_error($resource{passworderror});
299          &close_diff;          }
300      }      }
301        my ($sec, $min, $hour, $day, $mon, $year, $weekday) = localtime(time);
302      if ($form{mymsg}) {      my (@token) = ('0'..'9', 'A'..'Z', 'a'..'z');
303          $database{$form{mypage}} = $form{mymsg};      my $salt1 = $token[(time | $$) % scalar(@token)];
304          &send_mail_to_admin($form{mypage}, "Modify");      my $salt2 = $token[($sec + $min*60 + $hour*60*60) % scalar(@token)];
305          if ($form{mytouch}) {      my $crypted = crypt($form{mynewpassword}, "$salt1$salt2");
306              &set_info($form{mypage}, $info_LastModified, '' . localtime);      &set_info($AdminSpecialPage, $info_AdminPassword, $crypted);
307              &update_recent_changes;  
308          }      &print_header($CompletedSuccessfully, -noindex => 1);
309          &set_info($form{mypage}, $info_IsFrozen, 0 + $form{myfrozen});      &print_message($resource{passwordchanged});
310          &print_header($CompletedSuccessfully);      &print_footer($CompletedSuccessfully);
311          &print_message($resource{saved});  }
312          &print_content("$resource{continuereading} @{[&armor_name($form{mypage})]}");  
313          &print_footer($CompletedSuccessfully);  sub do_index {
314      } else {      &print_header($IndexPage);
315          &send_mail_to_admin($form{mypage}, "Delete");      print qq(<ul>);
316          delete $database{$form{mypage}};      foreach my $page (sort keys %database) {
317          delete $infobase{$form{mypage}};          if (&is_editable($page)) {
318          if ($form{mytouch}) {              print qq(<li><a href="$url_cgi?@{[&encode($page)]}">@{[&escape($page)]}</a>@{[&escape(&get_subjectline($page))]}</li>);
319              &update_recent_changes;              # print qq(<li>@{[&get_info($page, $info_IsFrozen)]}</li>);
320          }              # print qq(<li>@{[0 + &is_frozen($page)]}</li>);
321          &print_header($form{mypage});          }
322          &print_message($resource{deleted});      }
323          &print_footer($form{mypage});      print qq(</ul>);
324      }      &print_footer($IndexPage);
325  }  }
326    
327  sub do_searchform {  sub do_write {
328      &print_header($SearchPage);      if (&frozen_reject()) {
329      &print_searchform("");          return;
330      &print_footer($SearchPage);      }
331  }  
332        if (not &is_editable($form{mypage})) {
333  sub do_search {          &print_header($form{mypage}, -noindex => 1);
334      my $word = &escape($form{mymsg});          &print_message($resource{cantchange});
335      &print_header($SearchPage);          &print_footer($form{mypage});
336      &print_searchform($word);          return;
337      my $counter = 0;      }
338      foreach my $page (sort keys %database) {  
339          next if $page =~ /^$RecentChanges$/;      if (&conflict($form{mypage}, $form{mymsg})) {
340          if ($database{$page} =~ /\Q$form{mymsg}\E/ or $page =~ /\Q$form{mymsg}\E/) {          return;
341              if ($counter == 0) {      }
342                  print qq|<ul>|;  
343              }      # Making diff
344              print qq(<li><a href ="$url_cgi?@{[&encode($page)]}">$page</a>@{[&escape(&get_subjectline($page))]}</li>);      {
345              $counter++;          &open_diff;
346          }          my @msg1 = split(/\n/, $database{$form{mypage}});
347      }          my @msg2 = split(/\n/, $form{mymsg});
348      if ($counter == 0) {          $diffbase{$form{mypage}} = &difftext(\@msg1, \@msg2);
349          &print_message($resource{notfound});          &close_diff;
350      } else {      }
351          print qq|</ul>|;  
352      }      if ($form{mymsg}) {
353      &print_footer($SearchPage);          $database{$form{mypage}} = $form{mymsg};
354  }          &send_mail_to_admin($form{mypage}, "Modify");
355            if ($form{mytouch}) {
356  sub do_create {              &set_info($form{mypage}, $info_LastModified, '' . localtime);
357      &print_header($CreatePage);              &update_recent_changes;
358      print <<"EOD";          }
359  <form action="$url_cgi" method="post">          &set_info($form{mypage}, $info_IsFrozen, 0 + $form{myfrozen});
360      <input type="hidden" name="mycmd" value="edit">          my $fragment;
361      <strong>$resource{newpagename}</strong><br>          if ($form{__comment_anchor_index}) {
362      <input type="text" name="mypage" value="" size="20">              $fragment = qq(anchor-$form{__comment_anchor_index});
363      <input type="submit" value="$resource{createbutton}"><br>          } elsif ($form{__wikiform_anchor_index}) {
364  </form>              $fragment = qq(wikiform-$form{__wikiform_anchor_index});
365  EOD          }
366      &print_footer($CreatePage);          &print_header($CompletedSuccessfully, -noindex => 1, -goto => $url_cgi.'?mycmd=read;mypage='.&encode($form{mypage}).qq(;x-param=@{[time.[0..9]->[rand 10]]}).($fragment?'#'.$fragment:''));
367  }          &print_message($resource{saved});
368            &print_content("$resource{continuereading} @{[&armor_name($form{mypage})]}");
369  sub do_FrontPage {          &print_footer($CompletedSuccessfully);
370      open(FILE, $file_FrontPage) or &print_error("($file_FrontPage)");      } else {
371      my $content = join('', <FILE>);          &send_mail_to_admin($form{mypage}, "Delete");
372      &code_convert(\$content, $kanjicode);          delete $database{$form{mypage}};
373      close(FILE);          delete $infobase{$form{mypage}};
374      &print_header($FrontPage);          if ($form{mytouch}) {
375      &print_content($content);              &update_recent_changes;
376      &print_footer($FrontPage);          }
377  }          &print_header($form{mypage}, -noindex => 1);
378            &print_message($resource{deleted});
379  sub print_error {          &print_footer($form{mypage});
380      my ($msg) = @_;      }
381      &print_header($ErrorPage);  }
382      print qq(<p><strong class="error">$msg</strong></p>);  
383      &print_footer($ErrorPage);  sub do_searchform {
384      exit(0);      &print_header($SearchPage);
385  }      &print_searchform("");
386        &print_footer($SearchPage);
387  sub print_header {  }
388      my ($page) = @_;  
389      my $bodyclass = "normal";  sub do_search {
390      my $editable = 0;      my $word = $form{mymsg};
391      my $admineditable = 0;      &print_header($SearchPage);
392      if (&is_frozen($page) and $form{mycmd} =~ /^(read|write)$/) {      &print_searchform(&escape($word));
393          $editable = 0;      print scalar get_search_result ($word, -output_not_found => 1, -match_myself => 1);
394          $admineditable = 1;      &print_footer($SearchPage);
395          $bodyclass = "frozen";  }
396      } elsif (&is_editable($page) and $form{mycmd} =~ /^(read|write)$/) {  
397          $admineditable = 1;  sub get_search_result ($;%) {
398          $editable = 1;    my $word = lc shift;
399      } else {    my %option = @_;
400          $editable = 0;    my @r;
401      }    foreach my $page (keys %database) {
402      my $cookedpage = &encode($page);      next if $page eq $RecentChanges || ($page eq $word && !$option{-match_myself});
403      print <<"EOD";      my $content = $database{$page};
404  Content-type: text/html; charset=$charset      my $cf = 'SuikaWiki/0.9';
405        $cf = $1 if $content =~ s/^\#\?([^\x0A\x0D]+)//s;
406  <!DOCTYPE html      next if $cf =~ /obsoleted="yes"/;
407      PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"      if (index (lc $page, $word) > -1) {
408      "http://www.w3.org/TR/html4/loose.dtd">        my $c = $content =~ s/\Q$word\E//gi;
409  <html lang="$lang">        push @r, [$page, $c+20];
410  <head>      } elsif (index ($word, lc $page) > -1) {
411      <meta http-equiv="Content-Language" content="$lang">        my $c = $content =~ s/\Q$word\E//gi;
412      <meta http-equiv="Content-Type" content="text/html; charset=$charset">        push @r, [$page, $c+10];
413      <title>$page @{[&escape(&get_subjectline($page))]}</title>      } elsif (my $c = $content =~ s/\Q$word\E//gi) {
414      <link rel="index" href="$url_cgi?$IndexPage">        push @r, [$page, $c];
415      <link rev="made" href="mailto:$modifier_mail">      }
416      <link rel="stylesheet" type="text/css" href="$url_stylesheet">    }
417  </head>    my $em = sub { my $s = shift; $s =~ s#(\Q$word\E)#<em>$1</em>#gi; $s };
418  <body class="$bodyclass">    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;
419  <div class="tools">    $r = qq|<ul class="search-result">$r</ul>| if $r;
420      @{[ $admineditable    get_message ($resource{notfound}) if @r == 0 && $option{-output_not_found};
421          ? qq(<a title="$resource{admineditthispage}" href="$url_cgi?mycmd=adminedit&amp;mypage=$cookedpage">$resource{admineditbutton}</a> | )    wantarray? ($r, scalar @r): $r;
422          : qq()  }
423      ]}  
424      @{[ $editable  sub do_create {
425          ? qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit&amp;mypage=$cookedpage">$resource{editbutton}</a> | )      &print_header($CreatePage);
426          : qq()      print <<"EOD";
427      ]}  <form action="$url_cgi" method="post">
428      @{[ $admineditable      <input type="hidden" name="mycmd" value="edit">
429          ? qq(<a href="$url_cgi?mycmd=diff&amp;mypage=$cookedpage">$resource{diffbutton}</a> | )      <strong>$resource{newpagename}</strong><br>
430          : qq()      <input type="text" name="mypage" value="" size="20">
431      ]}      <input type="submit" value="$resource{createbutton}"><br>
432      <a href="$url_cgi?$CreatePage">$resource{createbutton}</a> |  </form>
433      <a href="$url_cgi?$IndexPage">$resource{indexbutton}</a> |  EOD
434      <a href="$url_cgi?$RssPage">$resource{rssbutton}</a> |      &print_footer($CreatePage);
435      <a href="$url_cgi?$FrontPage">$FrontPage</a> |  }
436      <a href="$url_cgi?$SearchPage">$resource{searchbutton}</a> |  
437      <a href="$url_cgi?$RecentChanges">$resource{recentchangesbutton}</a>  sub do_random_jump {
438  </div>    my @list = keys %database;
439  <h1 class="header"><a    my $name = &encode ($list[rand @list]);
440      title="$resource{searchthispage}"    my ($scheme) = 'http';
441      href="$url_cgi?mycmd=search&amp;mymsg=$cookedpage">$page</a>@{[&escape(&get_subjectline($page))]}</h1>    $scheme = $1 if $main::ENV{SERVER_PROTOCOL} =~ m#([A-Za-z0-9+.%-]+)#;
442  EOD    print "Location: $scheme://$main::ENV{SERVER_NAME}:$main::ENV{SERVER_PORT}$url_cgi?$name\n";
443  }    print "\n";
444    }
445  sub print_footer {  
446      my ($page) = @_;  sub do_FrontPage {
447      $walrus_log = ($walrus_debugging) ? &text_to_html("----\n$walrus_log") : '';    # Walrus add (debug)      open(FILE, $file_FrontPage) or &print_error("($file_FrontPage)");
448      # Walrus mod (1) start      my $content = join('', <FILE>);
449      my $mod_info = $modifier_name ? qq(Modified by <a href="$modifier_url">$modifier_name</a>.) : '';      &code_convert(\$content, $kanjicode);
450      print <<"EOD";      close(FILE);
451  <div class="footer">      &print_header($FrontPage);
452  <hr />      &print_content($content);
453  <p>      &print_footer($FrontPage);
454  <a href="http://digit.que.ne.jp/work/">WalWiki</a> $walversion &copy; 2000-2002 by <a href="http://digit.que.ne.jp/">Makio Tsukamoto</a>.<br />  }
455  based on <a href="http://www.hyuki.com/yukiwiki/">YukiWiki</a> $version &copy; 2000-2002 by <a href="http://www.hyuki.com/">Hiroshi Yuki</a>.<br />  
456  $mod_info  sub print_error {
457  </p><p>      my ($msg) = @_;
458  <a href="http://digit.que.ne.jp/work/">$icontag</a>      &print_header($ErrorPage, -noindex => 1);
459  </p>      print qq(<p><strong class="error">$msg</strong></p>);
460  </div>      &print_footer($ErrorPage);
461  $walrus_log <!-- Walrus add (debug) -->      exit(0);
462  </body>  }
463  </html>  
464  EOD  sub print_header ($;%) {
465  #       print <<"EOD";      my ($page, %option) = @_;
466  #   <hr>      my $bodyclass = "normal";
467  #   <address class="footer">      if (&is_frozen($page) and $form{mycmd} =~ /^(read|write)$/) {
468  #       <a href="http://www.hyuki.com/yukiwiki/">YukiWiki</a> $version          $bodyclass = "frozen";
469  #       &copy; 2000-2002 by <a href="http://www.hyuki.com/">Hiroshi Yuki</a>.<br />      }
470  #       Modified by <a href="$modifier_url">$modifier_name</a>.      $bodyclass .= " wiki-page-obsoleted" if $option{-content_format} =~ /obsoleted="yes"/;
471  #   </address>      if ($option{-goto}) {
472  #   <p class="footer">        if ($UA =~ m#Mozilla/[12]\.|Opera#) {
473  #       <a href="http://www.hyuki.com/yukiwiki/">$icontag</a>            $option{-goto} =~ tr/;/&/;
474  #   </p>            print qq{Refresh: 0; url=$option{-goto}\n};
475  #   </body>            $option{-goto} = qq(<meta http-equiv="refresh" content="0; url=$option{-goto}">);
476  #   </html>        } else {
477  #   EOD            print qq{Refresh: 0; url="$option{-goto}"\n};
478      # Walrus mod (1) end            $option{-goto} = qq(<meta http-equiv="refresh" content="0; url=&quot;@{[&escape($option{-goto})]}&quot;">);
479  }        }
480        }
481  sub escape {      print qq{Last-Modified: $option{-last_modified}\n} if $option{-last_modified};
482      my $s = shift;      my $meta_ct = '';
483      $s =~ s|\r\n|\n|g;      if ($UA =~ m#Mozilla/2#) {
484      $s =~ s|\&|&amp;|g;          $meta_ct = qq{text/html; charset=@{[&x_charset($charset)]}};
485      $s =~ s|<|&lt;|g;          print qq{Content-Type: $meta_ct\n};
486      $s =~ s|>|&gt;|g;          $meta_ct = qq{<meta http-equiv="content-type" content="$meta_ct">};
487      $s =~ s|"|&quot;|g;      } else {
488      return $s;          print qq{Content-Type: text/html; charset=$charset\n};
489  }      }
490        my $cookedpage = &encode($page);
491  sub unescape {      my $escapedpage = &escape($page);
492      my $s = shift;      print <<"EOD";
493      # $s =~ s|\n|\r\n|g;  Content-Language: $lang
494      $s =~ s|\&amp;|\&|g;  Content-Style-Type: text/css
495      $s =~ s|\&lt;|\<|g;  
496      $s =~ s|\&gt;|\>|g;  <!--
497      $s =~ s|\&quot;|\"|g;  <!DOCTYPE html
498      return $s;      PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
499  }      "http://www.w3.org/TR/html4/loose.dtd"> + RUBY -->
500    <html lang="$lang">
501  sub print_content {  <head>
502      my ($rawcontent) = @_;      $meta_ct$option{-goto}
503      print &text_to_html($rawcontent, toc=>1);      <title>$escapedpage</title>
504  }      <link rel="index" href="$url_cgi?$IndexPage">
505        <link rel="help" href="$url_cgi?WikiHelp">
506  sub text_to_html {      <link rel="copyright" href="$url_cgi?$NAME_OF_WikiPageLicense">
507      my ($txt, %option) = @_;      <link rel="stylesheet" type="text/css" href="@{[&escape($url_stylesheet)]}">
508      my (@txt) = split(/\n/, $txt);      @{[$option{-noindex} ? q(<meta name="ROBOTS" content="NOINDEX">) : '']}
509      my (@toc);  </head>
510      my $tocnum = 0;  <body class="$bodyclass">
511      my (@saved, @result);  EOD
512      unshift(@saved, "</p>");    &print_navigate_links ($page);
513      push(@result, "<p>");    print <<EOD;
514      foreach (@txt) {  <h1 class="header">@{[&escape($page)]}</h1>
515          chomp;  EOD
516          # Walrus mod (6) start  }
517          if ($saved[0] eq '</html>') {  
518              if (/<\/html>/i) { splice(@saved); }  sub x_charset ($) {
519              else { push (@result, &html_to_ignored_html($_)); }      my $charset = lc shift;
520          } elsif (/^<html>/i and &is_ignore_html($form{mypage})) {      if ($charset eq 'euc-jp') {
521              push(@result, splice(@saved));          $charset = 'x-euc-jp';
522              push(@saved, '</html>');      } elsif ($charset eq 'shift_jis') {
523          } elsif (/^\*\*(.*)/) {          $charset = 'x-sjis';
524          # if (/^\*\*(.*)/) {      }
525          # Walrus mod (6) end      $charset;
526              push(@toc, qq(-- <a href="#i$tocnum">@{[&escape($1)]}</a>\n));  }
527              push(@result, splice(@saved), qq(<h3><a name="i$tocnum"> </a>) . &inline($1) . '</h3>');  
528              $tocnum++;  sub print_navigate_links (@) {
529          } elsif (/^\*(.*)/) {    my ($page) = @_;
530              push(@toc, qq(- <a href="#i$tocnum">@{[&escape($1)]}</a>\n));      my $editable = 0;
531              push(@result, splice(@saved), qq(<h2><a name="i$tocnum"> </a>) . &inline($1) . '</h2>');      my $admineditable = 0;
532              $tocnum++;      if (&is_frozen($page) and $form{mycmd} =~ /^(read|write)$/) {
533          } elsif (/^----/) {          $editable = 0;
534              push(@result, splice(@saved), '<hr>');          #$admineditable = 1;
535          } elsif (/^(-{1,3})(.*)/) {      } elsif (&is_editable($page) and $form{mycmd} =~ /^(read|write)$/) {
536              &back_push('ul', length($1), \@saved, \@result);          #$admineditable = 1;
537              push(@result, '<li>' . &inline($2) . '</li>');          $editable = 1;
538          } elsif (/^:([^:]+):(.*)/) {      } else {
539              &back_push('dl', 1, \@saved, \@result);          $editable = 0;
540              push(@result, '<dt>' . &inline($1) . '</dt>', '<dd>' . &inline($2) . '</dd>');      }
541          } elsif (/^(>{1,3})(.*)/) {      my $cookedpage = &encode($page);
542              &back_push('blockquote', length($1), \@saved, \@result);    print <<EOH;
543              push(@result, &inline($2));  <div class="tools">
544          } elsif (/^\s*$/) {      @{[ $admineditable
545              push(@result, splice(@saved));          ? qq(<a title="$resource{admineditthispage}" href="$url_cgi?mycmd=adminedit;mypage=$cookedpage">$resource{admineditbutton}</a> | )
546              unshift(@saved, "</p>");          : qq()
547              push(@result, "<p>");      ]}
548          } elsif (/^(\s+.*)$/) {      @{[ $editable
549              &back_push('pre', 1, \@saved, \@result);          ? #qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedpage" accesskey="E">$resource{editbutton} <kbd>E</kbd></a> | )
550              push(@result, &escape($1)); # Not &inline, but &escape          qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedpage" accesskey="E">ハヤスク</a> | )
551  #       } elsif (/^\,(.*)$/) {             # Walrus del (BF)          : qq()
552          } elsif (/^\,(.*?)[\x0D\x0A]*$/) { # Walrus add (BF)      ]}
553              &back_push('table', 1, \@saved, \@result, ' border="1"');      <a href="$url_cgi?mycmd=read;mypage=$cookedpage;x-param=@{[time.[0..9]->[rand 10]]}">ノスシィ</a> |
554              #######      @{[ $admineditable
555              # This part is taken from Mr. Ohzaki's Perl Memo and Makio Tsukamoto's WalWiki.          ? qq(<a href="$url_cgi?mycmd=diff;mypage=$cookedpage">$resource{diffbutton}</a> | )
556              # XXXXX          : qq()
557              my $tmp = "$1,";      ]}
558              my @value = map {/^"(.*)"$/ ? scalar($_ = $1, s/""/"/g, $_) : $_} ($tmp =~ /("[^"]*(?:""[^"]*)*"|[^,]*),/g);      <a href="$url_cgi?$CreatePage" class="wiki">ソキオャ</a> |
559              my @align = map {(s/^\s+//) ? ((s/\s+$//) ? ' align="center"' : ' align="right"') : ''} @value;      <a href="$url_cgi?$IndexPage" class="wiki">$resource{indexbutton}</a> |
560              my @colspan = map {($_ eq '==') ? 0 : 1} @value;      <a href="$url_cgi?$FrontPage" class="wiki">シハヌ</a> |
561              for (my $i = 0; $i < @value; $i++) {      <a href="$url_cgi?$SearchPage" class="wiki">$resource{searchbutton}</a> |
562                  if ($colspan[$i]) {      <a href="$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki randomlink">、ノ、ウ、ォ</a> |
563                      while ($i + $colspan[$i] < @value and $value[$i + $colspan[$i]] eq '==') {      <a href="$url_cgi?$RecentChanges" class="wiki">コヌソキ</a>
564                          $colspan[$i]++;  </div>
565                      }  EOH
566                      $colspan[$i] = ($colspan[$i] > 1) ? sprintf(' colspan="%d"', $colspan[$i]) : '';  <<EOH;  ## temp
567                      $value[$i] = sprintf('<td%s%s>%s</td>', $align[$i], $colspan[$i], &inline($value[$i]));      <a href="$url_cgi?$CreatePage" class="wiki">$resource{createbutton}</a> |
568                  } else {      <a href="$url_cgi?$IndexPage" class="wiki">$resource{indexbutton}</a> |
569                      $value[$i] = '';  <!--    <a href="$url_cgi?$RssPage" class="wiki">$resource{rssbutton}</a> | -->
570                  }      <a href="$url_cgi?$FrontPage" class="wiki">$FrontPage</a> |
571              }      <a href="$url_cgi?$SearchPage" class="wiki">$resource{searchbutton}</a> |
572              push(@result, join('', '<tr>', @value, '</tr>'));      <a href="$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki randomlink">、ノ、ウ、ォ</a> |
573              # XXXXX      <a href="$url_cgi?$RecentChanges" class="wiki">$resource{recentchangesbutton}</a>
574              #######  </div>
575          } else {  EOH
576              push(@result, &inline($_));  }
577          }  
578      }  sub print_footer {
579      push(@result, splice(@saved));      my ($page, $lm) = @_;
580        my $epage = &encode ($page);
581      if ($option{toc}) {      $walrus_log = ($walrus_debugging) ? &text_to_html("----\n$walrus_log") : '';    # Walrus add (debug)
582          # Convert @toc (table of contents) to HTML.      # Walrus mod (1) start
583          # This part is taken from Makio Tsukamoto's WalWiki.    my $cvslog1 = q$Revision$;
584          my (@tocsaved, @tocresult);    my $cvslog2 = q$Date$;
585          foreach (@toc) {    print_navigate_links ($page);
586              if (/^(-{1,3})(.*)/) {    print <<"EOD";
587                  &back_push('ul', length($1), \@tocsaved, \@tocresult);  @{[ $lm ? qq(<div id="wikipage-last-modified">Last modified: $lm</div>) : '' ]}
588                  push(@tocresult, '<li>' . $2 . '</li>');  <div class="footer">
589              }  <a href="http://www.hyuki.com/yukiwiki/" title="$version &copy; 2000-2002 by Hiroshi Yuki">YukiWiki</a> <a href="http://digit.que.ne.jp/work/" title="$walversion &copy; 2000-2002 by Makio Tsukamoto">WalWiki</a>
590          }  <a href="/gate/cvs/wakaba/wiki/" title="CVS Repository of this script ($cvslog2)">SuikaWiki $cvslog1</a>
591          push(@tocresult, splice(@tocsaved));  <div class="navigation">
592          return join("\n", @tocresult, @result);  [<a href="/" title="、ウ、ホ・オ。シ・ミ。シ、ホシハヌ">/</a>
593      } else {  <a href="/map" title="、ウ、ホ・オ。シ・ミ。シ、ホーニニ">テマゾ</a>
594          return join("\n", @result);  <a href="/search/" title="、ウ、ホ・オ。シ・ミ。シ、ホク。コ">ク。コ</a>]
595      }  </div>
596  }  <div class="myuri">
597        &lt;<a href="$url_cgi?$epage">$url_cgi?$epage</a>&gt;
598  sub back_push {  </div>
599      my ($tag, $level, $savedref, $resultref, $attr) = @_;  </div>
600      while (@$savedref > $level) {  $walrus_log
601          push(@$resultref, shift(@$savedref));  </body>
602      }  </html>
603      if ($savedref->[0] ne "</$tag>") {  EOD
604          push(@$resultref, splice(@$savedref));  }
605      }  
606      while (@$savedref < $level) {  sub escape {
607          unshift(@$savedref, "</$tag>");      my $s = shift;
608          push(@$resultref, "<$tag$attr>");      $s =~ s|\r\n|\n|g;
609      }      $s =~ s|&|&amp;|g;
610  }      $s =~ s|<|&lt;|g;
611        $s =~ s|>|&gt;|g;
612  sub inline {      $s =~ s|"|&quot;|g;
613      my ($line) = @_;      return $s;
614      $line = &escape($line);  }
615      $line =~ s|'''([^']+?)'''|<i>$1</i>|g;  # Italic  
616      $line =~ s|''([^']+?)''|<b>$1</b>|g;    # Bold  sub unescape {
617      $line =~ s|(\d\d\d\d-\d\d-\d\d \(\w\w\w\) \d\d:\d\d:\d\d)|<span class="date">$1</span>|g;   # Date      my $s = shift;
618      $line =~ s!      # $s =~ s|\n|\r\n|g;
619                  (      $s =~ s|&lt;|<|g;
620                      ((mailto|http|https|ftp):([^\x00-\x20()<>\x7F-\xFF])*)  # Direct http://...      $s =~ s|&gt;|>|g;
621                          |      $s =~ s|&quot;|"|g;
622                      ($bracket_name)             # [[likethis]], [[#comment]], [[Friend:remotelink]]      $s =~ s|&amp;|&|g;
623                          |      return $s;
624                      ($interwiki_definition)     # [[Friend http://somewhere/?q=sjis($1)]]  }
625                          |  
626                      ($wiki_name)                # LocalLinkLikeThis  sub print_content ($;$) {
627                  )      my ($rawcontent, %option) = @_;
628              !      print &text_to_html($rawcontent, toc=>1, %option);
629                  &make_link($1)  }
630              !gex;  
631      return $line;  sub text_to_html {
632  }      my ($txt, %option) = @_;
633        my (@txt) = split(/\n/, $txt);
634  sub make_link {      my @toc;
635      my $chunk = shift;      my @toc2 = @{$option{-toc}||[]};
636      # Walrus add (3) start      my $tocnum = 0;
637      my $name  = $chunk;      my (@saved, @result);
638      if ($chunk =~ /^\[\[([^ ]+?) ([^ ]+?)\]\]$/ and $form{mypage} ne $InterWikiName) {      unshift(@saved, "</p>");
639          ($name, $chunk) = ($1, $2);      push(@result, "<p>");
640      } elsif ($chunk =~ /^mailto:(.*)$/) {      foreach (@txt) {
641          $name = $1;          chomp;
642      }          if (/^\*\*\*\*\*([^\x0D\x0A]*)/) {
643      if ($use_autoimg and $name =~ /^(http|https|ftp|):.+\.(png|gif|jpe?g)/) {              push(@toc, qq(----- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));
644          $name = qq(<img src="$name">) ;              push(@result, splice(@saved), qq(<h6 id="i$tocnum">) . &inline($1) . '</h6>');
645      }              $tocnum++;
646      $name = &unarmor_name($name);          } elsif (/^\*\*\*\*([^\x0D\x0A]*)/) {
647      # Walrus add (3) end              push(@toc, qq(---- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));
648      if ($chunk =~ /^(http|https|ftp):/) {              push(@result, splice(@saved), qq(<h5 id="i$tocnum">) . &inline($1) . '</h5>');
649          # Walrus mod (3) start              $tocnum++;
650  #       if ($use_autoimg and $chunk =~ /\.(gif|png|jpeg|jpg)$/) {          } elsif (/^\*\*\*([^\x0D\x0A]*)/) {
651  #           return qq(<a href="$chunk"><img src="$chunk"></a>);              push(@toc, qq(--- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));
652  #       } else {              push(@result, splice(@saved), qq(<h4 id="i$tocnum">) . &inline($1) . '</h4>');
653  #           return qq(<a href="$chunk">$chunk</a>);              $tocnum++;
654  #       }          } elsif (/^\*\*([^\x0D\x0A]*)/) {
655          return qq(<a href="$chunk">$name</a>);          # if (/^\*\*(.*)/) {
656          # Walrus mod (3) end          # Walrus mod (6) end
657      } elsif ($chunk =~ /^(mailto):(.*)/) {              push(@toc, qq(-- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));
658  #       return qq(<a href="$chunk">$2</a>);                 # Walrus del (3)              push(@result, splice(@saved), qq(<h3><a name="i$tocnum"> </a>) . &inline($1) . '</h3>');
659          return qq(<a href="$chunk">$name</a>);              # Walrus add (3)              $tocnum++;
660      } elsif ($chunk =~ /^$interwiki_definition$/) {          } elsif (/^\*([^\x0D\x0A]*)/) {
661  #       return qq(<span class="InterWiki">$chunk</span>);   # Walrus del (3)              push(@toc, qq(- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n));
662          return qq(<span class="InterWiki">$name</span>);    # Walrus add (3)              push(@result, splice(@saved), qq(<h2><a name="i$tocnum"> </a>) . &inline($1) . '</h2>');
663      } elsif ($chunk =~ /^$embedded_name$/) {              $tocnum++;
664          return &embedded_to_html($chunk);          } elsif (/^(={1,6})(.*)/) {
665      } else {              &back_push('ol', length($1), \@saved, \@result);
666          $chunk = &unarmor_name($chunk);              push(@result, '<li>' . &inline($2) . '</li>');
667          $chunk = &unescape($chunk); # To treat '&' or '>' or '<' correctly.          } elsif (/^(-{1,6})(.*)/) {
668          my $cookedchunk = &encode($chunk);            &back_push('ul', length($1), \@saved, \@result);
669          if ($chunk =~ /^$interwiki_name$/) {            my ($pf, $l) = ('', $2);
670              my ($intername, $localname) = ($1, $2);            if (!$main::_EMBEDED && $l =~ s/^\s*\[([0-9]+)\]//) {
671              my $remoteurl = $interwiki{$intername};              my $num = 0+$1;
672              if ($remoteurl) {              $pf = qq(<a name="anchor-$num" id="anchor-$num" class="anchor">[$num]</a>);
673  #               $remoteurl =~ s/\b(euc|sjis|ykwk|asis)\(\$1\)/&interwiki_convert($1, $localname)/e;      # Walrus del (4)            }
674                  $remoteurl =~ s/\b(euc|sjis|ykwk|asis|isbn)\(\$1\)/&interwiki_convert($1, $localname)/e; # Walrus add (4)            push(@result, '<li>' . $pf . &inline ($l) . '</li>');
675  #               return qq(<a href="$remoteurl">$chunk</a>); # Walrus del (3)          } elsif (/^:([^:]+):(.*)/) {
676                  return qq(<a href="$remoteurl">$name</a>);  # Walrus add (3)              &back_push('dl', 1, \@saved, \@result);
677              } else {              push(@result, '<dt>' . &inline($1) . '</dt>', '<dd>' . &inline($2) . '</dd>');
678  #               return $chunk;                              # Walrus del (3)          } elsif (/^(?!>>\d)(>{1,5})(.*)/) {
679                  return $name;                               # Walrus add (3)              &back_push('blockquote', length($1), \@saved, \@result);
680              }              push @result, "<p>";
681          } elsif ($database{$chunk}) {              push(@result, &inline($2));
682              my $subject = &escape(&get_subjectline($chunk, delimiter => ''));              unshift @saved, "</p>";
683  #           return qq(<a title="$subject" href="$url_cgi?$cookedchunk">$chunk</a>);  # Walrus del (3)          } elsif (/^\s*$/) {
684              return qq(<a title="$subject" href="$url_cgi?$cookedchunk">$name</a>);   # Walrus add (3)              push(@result, splice(@saved));
685          } elsif ($page_command{$chunk}) {              push(@result, "<p>");
686  #           return qq(<a title="$chunk" href="$url_cgi?$cookedchunk">$chunk</a>);    # Walrus del (3)              unshift(@saved, "</p>");
687              return qq(<a title="$chunk" href="$url_cgi?$cookedchunk">$name</a>);     # Walrus add (3)          } elsif (/^(\s+.*)$/) {
688          } else {              &back_push('pre', 1, \@saved, \@result);
689  #           return qq($chunk<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit&amp;mypage=$cookedchunk">$editchar</a>); # Walrus del (3)              #push(@result, &escape($1)); # Not &inline, but &escape
690              return qq($name<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit&amp;mypage=$cookedchunk">$editchar</a>);  # Walrus add (3)              push(@result, &inline($1));
691          }  #       } elsif (/^\,(.*)$/) {             # Walrus del (BF)
692      }          } elsif (/^\,(.*?)[\x0D\x0A]*$/) { # Walrus add (BF)
693  }              &back_push('table', 1, \@saved, \@result, ' border="1"');
694                #######
695  # Walrus add (6) start              # This part is taken from Mr. Ohzaki's Perl Memo and Makio Tsukamoto's WalWiki.
696  sub is_ignore_html {              # XXXXX
697      my ($pagename) = @_;              my $tmp = "$1,";
698      foreach (@ignore_html_page) {              my @value = map {/^"(.*)"$/ ? scalar($_ = $1, s/""/"/g, $_) : $_} ($tmp =~ /("[^"]*(?:""[^"]*)*"|[^,]*),/g);
699          return 1 if ($pagename eq $_);              my @align = map {(s/^\s+//) ? ((s/\s+$//) ? ' align="center"' : ' align="right"') : ''} @value;
700      }              my @colspan = map {($_ eq '==') ? 0 : 1} @value;
701      return 0;              for (my $i = 0; $i < @value; $i++) {
702  }                  if ($colspan[$i]) {
703  # Walrus add (6) end                      while ($i + $colspan[$i] < @value and $value[$i + $colspan[$i]] eq '==') {
704                            $colspan[$i]++;
705  # Walrus add (6) start                      }
706  sub html_to_ignored_html {                      $colspan[$i] = ($colspan[$i] > 1) ? sprintf(' colspan="%d"', $colspan[$i]) : '';
707      my $str = shift(@_);                      $value[$i] = sprintf('<td%s%s>%s</td>', $align[$i], $colspan[$i], &inline($value[$i]));
708      my $text_regex        = q{[^<]*};                  } else {
709      my $tag_regex_        = q{[^"'<>]*(?:"[^"]*"[^"'<>]*|'[^']*'[^"'<>]*)*(?:>|(?=<)|$(?!\n))}; #'}}}}                      $value[$i] = '';
710      my $comment_tag_regex = '<!(?:--[^-]*-(?:[^-]+-)*?-(?:[^>-]*(?:-[^>-]+)*?)??)*(?:>|$(?!\n)|--.*$)';                  }
711      my $tag_regex         = qq{$comment_tag_regex|<$tag_regex_};              }
712      my $ignored           = join('|', @ignore_html_tags);              push(@result, join('', '<tr>', @value, '</tr>'));
713      my $result = '';              # XXXXX
714      while ($str =~ /($text_regex)($tag_regex)?/gso) {              #######
715        last if $1 eq '' and $2 eq '';          } elsif (/^\[(INS|DEL|PRE)\[\s*$/) {
716        $result .= $1;              push @result, splice (@saved), '<'.lc($1).'>';
717        my $tag_tmp = $2;              unshift @saved, "</p>";
718        $result .= ($tag_tmp =~ /^<\/?($ignored)(?![0-9A-Za-z])/i) ? $tag_tmp : &escape($tag_tmp);              push @result, "<p>";
719        if ($tag_tmp =~ /^<(XMP|PLAINTEXT|SCRIPT)(?![0-9A-Za-z])/i) {          } elsif (/^\](INS|DEL|PRE)\]\s*$/) {
720          $str =~ /(.*?)(?:<\/$1(?![0-9A-Za-z])$tag_regex_|$)/gsi;              push @result, splice (@saved), '</'.lc($1).'>';
721          $result .= &escape($1);          } elsif (/^\[([0-9]+)\](.*)$/ && !$main::_EMBEDED) {
722        }            my $num = 0+$1;
723      }            push @result, qq(<a name="anchor-$num" id="anchor-$num" class="anchor">[$num]</a>);
724      return $result;            push @result, &inline ($2);
725  }          } else {
726  # Walrus add (6) end              push(@result, &inline($_));
727            }
728  sub print_message {      }
729      my ($msg) = @_;      push(@result, splice(@saved));
730      print qq(<p><strong>$msg</strong></p>);      
731  }      my $toc = '';
732        if ($option{toc}) {
733  sub init_form {          # Convert @toc (table of contents) to HTML.
734      if (param()) {          # This part is taken from Makio Tsukamoto's WalWiki.
735          foreach my $var (param()) {          my (@tocsaved, @tocresult);
736              $form{$var} = param($var);          foreach (@toc,@toc2) {
737          }              if (/^(-{1,6})(.*)$/) {
738      } else {                  &back_push('ul', length($1), \@tocsaved, \@tocresult);
739          $ENV{QUERY_STRING} = $FrontPage;                  push(@tocresult, '<li>' . $2 . '</li>');
740      }              }
741            }
742      my $query = &decode($ENV{QUERY_STRING});          push(@tocresult, splice(@tocsaved));
743      if ($page_command{$query}) {          $toc = join("\n", @tocresult);
744          $form{mycmd} = $page_command{$query};          $toc = $toc ? qq(<div id="wikipage-toc">$toc</div>) : '';
745          $form{mypage} = $query;      }
746      } elsif ($query =~ /^($wiki_name)$/) {      $toc .= join("\n", @result);
747          $form{mycmd} = 'read';      $toc =~ s#<p>\n</p>##g;
748          $form{mypage} = $1;      $toc =~ s#[\x0D\x0A]+</#</#g;
749      } elsif ($database{$query}) {      $toc =~ s#<pre>\n#<pre>#g;
750          $form{mycmd} = 'read';      $toc;
751          $form{mypage} = $query;  }
752      }  
753    sub back_push {
754      # mypreview_edit        -> do_edit, with preview.      my ($tag, $level, $savedref, $resultref, $attr) = @_;
755      # mypreview_adminedit   -> do_adminedit, with preview.      while (@$savedref > $level) {
756      # mypreview_write       -> do_write, without preview.          push(@$resultref, shift(@$savedref));
757      foreach (keys %form) {      }
758          if (/^mypreview_(.*)$/) {      if ($savedref->[0] ne "</$tag>") {
759              $form{mycmd} = $1;          push(@$resultref, splice(@$savedref));
760              $form{mypreview} = 1;      }
761          }      while (@$savedref < $level) {
762      }          unshift(@$savedref, "</$tag>");
763            push(@$resultref, "<$tag$attr>");
764      #      }
765      # $form{mycmd} is frozen here.  }
766      #  
767    sub inline {
768      $form{mymsg} = &code_convert(\$form{mymsg}, $kanjicode);      my ($line) = @_;
769      $form{myname} = &code_convert(\$form{myname}, $kanjicode);      $line = &escape($line);
770  }      $line =~ s{$embed_command{form}}{&make_custom_form ($1, $2, $3, $4)}ge;
771        $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;
772  sub update_recent_changes {      $line =~ s:\[(WEAK)\[(.+?)\]\]:<span class="@{[lc $1]}">$2</span>:g;
773      my $update = "- @{[&get_now]} @{[&armor_name($form{mypage})]} @{[&get_subjectline($form{mypage})]}";      $line =~ s:\[ABBR\[([^]]+)\] \[([^]]+)\]\]:<acronym title="$2">$1</acronym>:g;
774      my @oldupdates = split(/\r?\n/, $database{$RecentChanges});      $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;
775      my @updates;      $line =~ s:\[RUBY\[([^]]+)\] \[([^]]+)\]\]:<ruby><rb>$1</rb><rp>(</rp><rt>$2</rt><rp>)</rp></ruby>:g;
776      foreach (@oldupdates) {      $line =~ s:\[RUBYB\[([^]]+)\] \[([^]]+)\]\]:<span class="ruby"><span class="rb">$1</span><span class="rp"> (</span><span class="rt-below">$2</span><span class="rp">) </span></span>:g;
777          /^\- \d\d\d\d\-\d\d\-\d\d \(...\) \d\d:\d\d:\d\d (\S+)/;    # date format.      $line =~ s%\[Q\[([^]]+)\](?: \[&lt;([\x21-\x5A\x5E-\x7E]+)&gt;\])?\]%。ヨ<q@{[$2?qq( cite="$2"):'']}>$1</q>。ラ%g;
778          my $name = &unarmor_name($1);      $line =~ s|'''([^']+)'''|<strong>$1</strong>|g;
779          if (&is_exist_page($name) and ($name ne $form{mypage})) {      $line =~ s|''([^']+)''|<em>$1</em>|g;
780              push(@updates, $_);      $line =~ s{
781          }        ((?:$bracket_name))       # [[likethis]], [[#comment]], [[Friend:remotelink]]
782      }        |\[\[([^[]+?)]&gt;&gt;([0-9]+)]   # [[WikiName]>>1]
783      if (&is_exist_page($form{mypage})) {        |&gt;&gt;([0-9]+)
784          unshift(@updates, $update);        |&lt;([A-Za-z0-9%]+:(?:(?!&gt;).)+)&gt;
785      }      }{
786      splice(@updates, $maxrecent + 1);        my ($l, $page,$anchor, $anum, $uri) = ($1, $3,$4, 0+$5, $6);
787      $database{$RecentChanges} = join("\n", @updates);        if ($l) {
788      if ($file_touch) {          &make_link($l)
789          open(FILE, "> $file_touch");        } elsif (defined $page) {
790          print FILE localtime() . "\n";          &make_wikilink ($page, anchor => 0+$anchor);
791          close(FILE);        } elsif ($anum) {
792      }          qq(<a href="#anchor-$anum" class="wiki-anchor">&gt;&gt;$anum</a>);
793  }        } elsif ($uri) {
794            &make_urilink ($uri);
795  sub get_subjectline {        }
796      my ($page, %option) = @_;      }gex;
797      if (not &is_editable($page)) {      return $line;
798          return "";  }
799      } else {  
800          # Delimiter check.  sub make_wikilink ($%) {
801          my $delim = $subject_delimiter;    my ($ename, %option) = @_;
802          if (defined($option{delimiter})) {    my $name = &unescape ($ename);
803              $delim = $option{delimiter};    if ($database{$name}) {
804          }      my $subject = &escape (&get_subjectline ($name, delimiter => ''));
805        if ($option{anchor}) {
806          # Get the subject of the page.        return qq(<a title="$subject" href="$url_cgi?@{[&encode($name)]}#anchor-$option{anchor}" class="wiki">$ename&gt;&gt;$option{anchor}</a>);
807          my $subject = $database{$page};      } else {
808          $subject =~ s/\r?\n.*//s;        return qq(<a title="$subject" href="$url_cgi?@{[&encode($name)]}" class="wiki">$ename</a>);
809          return "$delim$subject";      }
810      }    } else {
811  }      return qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=@{[&escape($name)]}" class="wiki not-exist">$ename<span class="mark">$editchar</span></a>);
812      }
813  sub send_mail_to_admin {  }
814      my ($page, $mode) = @_;  
815      return unless $modifier_sendmail;  sub make_urilink ($;%) {
816      my $message = <<"EOD";    require URI;
817  To: $modifier_mail    my $uri = shift;
818  From: $modifier_mail    if ($uri =~ s/^IW://) {       ## InterWiki (not URI)
819  Subject: [Wiki]      $uri = &unescape ($uri);
820  MIME-Version: 1.0      if ($uri =~ /^([^\x00-\x2F\x3A-\x40\x5B-\x60\x7B-\x7F]+|"(?:\\.|[^"\\])+"):([^\x00-\x2F\x3A-\x40\x5B-\x60\x7B-\x7F]+|"(?:\\.|[^"\\])+")$/) {
821  Content-Type: text/plain; charset=ISO-2022-JP        my ($site, $name) = ($1, $2);
822  Content-Transfer-Encoding: 7bit        for ($site, $name) {
823            if (s/^"//) { s/"$//; s/\\(.)/$1/g }
824  --------        }
825  MODE = $mode        if ($interwiki{$site}) {
826  REMOTE_ADDR = $ENV{REMOTE_ADDR}          my $uri = &escape ($fmt{interwiki}->replace ($interwiki{$site} => {site => $site, name => $name}));
827  REMOTE_HOST = $ENV{REMOTE_HOST}          $site = &escape ($site); $name = &escape ($name);
828  --------          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;);
829  $page        } else {
830  --------          qq(&lt;フ、ナミマソ、ホ <a href="$url_cgi?InterWikiName" class="wiki">InterWikiName</a>: @{[&escape ($site)]}>);
831  $database{$page}        }
832  --------      } else {
833  EOD        qq(&lt;ノヤタオ、ハ <a href="$url_cgi?InterWikiName" class="wiki">InterWikiName</a>: @{[&escape($uri)]}>);
834      &code_convert(\$message, 'jis');      }
835      open(MAIL, "| $modifier_sendmail");    } elsif ($uri =~ /^urn:/) {   ## URN
836      print MAIL $message;      my $uri2 = &escape (URI->new ('/uri-res/N2L?'.&unescape ($uri), 'http')->canonical);
837      close(MAIL);      qq(&lt;<a href="$uri2" title="URI: &lt;$uri&gt; (via &lt;$uri2&gt;)" class="out-of-wiki urn">$uri</a>&gt;);
838  }    } elsif ($uri =~ s/^MAIL://) {        ## mail address (not URI)
839        my $uri2 = &escape (URI->new ('mailto:'.&unescape ($uri))->canonical);
840  sub open_db {      qq(&lt;<a href="$uri2" class="out-of-wiki mail">$uri</a>&gt;);
841      if ($modifier_dbtype eq 'dbmopen') {    } elsif ($uri =~ s/^IMG(?:\([^)]+\))?://) {   ## image (not URI itself)
842          dbmopen(%database, $dataname, 0666) or &print_error("(dbmopen) $dataname");      my $uri2 = &escape (URI->new (&unescape ($uri))->canonical);
843          dbmopen(%infobase, $infoname, 0666) or &print_error("(dbmopen) $infoname");      qq(<img src="$uri2" alt="" title="URI: &lt;$uri2&gt;" class="out-of-wiki">);
844      } elsif ($modifier_dbtype eq 'AnyDBM_File') {    } else {      ## misc. URI
845          tie(%database, "AnyDBM_File", $dataname, O_RDWR|O_CREAT, 0666) or &print_error("(tie AnyDBM_File) $dataname");      CGI::Carp::warningsToBrowser (0);
846          tie(%infobase, "AnyDBM_File", $infoname, O_RDWR|O_CREAT, 0666) or &print_error("(tie AnyDBM_File) $infoname");      my $uri2 = &escape (URI->new (&unescape ($uri))->canonical);
847      } else {      CGI::Carp::warningsToBrowser (1);
848          tie(%database, "Yuki::YukiWikiDB", $dataname) or &print_error("(tie Yuki::YukiWikiDB) $dataname");      qq(&lt;<a href="$uri2" title="URI: &lt;$uri2&gt;" class="out-of-wiki">$uri</a>&gt;);
849          tie(%infobase, "Yuki::YukiWikiDB", $infoname) or &print_error("(tie Yuki::YukiWikiDB) $infoname");    }
850      }  }
851  }  
852    my $FormIndex = 0;
853  sub close_db {  sub make_custom_form ($$$$) {
854      if ($modifier_dbtype eq 'dbmopen') {      my ($wfname, $definition, $template, $option) = @_;
855          dbmclose(%database);      ## $template and $option is currently not used in this procedure.
856          dbmclose(%infobase);      unless ($main::_EMBEDED) {
857      } elsif ($modifier_dbtype eq 'AnyDBM_File') {          $FormIndex++;
858          untie(%database);          if (length $definition) {
859          untie(%infobase);              my $param = bless {}, 'SuikaWiki::Plugin';
860      } else {              my $lastmodified = &get_info($form{mypage}, $info_LastModified);
861          untie(%database);              &load_formatter (qw/form_input form_option/);
862          untie(%infobase);              $definition = &unescape ($definition);
863      }              $definition =~ s/\\(.)/$1/g;
864  }              $definition .= ' %submit;' if $definition !~ /%submit/;
865                $option = &unescape ($option);
866  sub open_diff {              $option =~ s/\\(.)/$1/g;
867      if ($modifier_dbtype eq 'dbmopen') {              $fmt{form_option}->replace ($option, $param);
868          dbmopen(%diffbase, $diffname, 0666) or &print_error("(dbmopen) $diffname");              my $target_page = $param->{output}->{page} || $form{mypage};
869      } elsif ($modifier_dbtype eq 'AnyDBM_File') {              $param->{form_disabled} = 1 if $fixedpage{$target_page};
870          tie(%diffbase, "AnyDBM_File", $diffname, O_RDWR|O_CREAT, 0666) or &print_error("(tie AnyDBM_File) $diffname");              my $target_form = $param->{output}->{id};
871      } else {              my $r = <<EOH;
872          tie(%diffbase, "Yuki::YukiWikiDB", $diffname) or &print_error("(tie Yuki::YukiWikiDB) $diffname");  <form method="post" action="$url_cgi" id="wikiform-$FormIndex" class="wikiform">
873      }    <input type="hidden" name="mycmd" value="@{[$param->{form_disabled}?'read':'wikiform']}">
874  }    <input type="hidden" name="mypage" value="@{[&escape($target_page)]}">
875      <input type="hidden" name="myLastModified" value="$lastmodified">
876  sub close_diff {    <input type="hidden" name="mytouch" value="on">
877      if ($modifier_dbtype eq 'dbmopen') {    <input type="hidden" name="@{[$target_form? qq(wikiform_targetform" value="@{[&escape($target_form)]}) : qq(wikiform_index" value="$FormIndex)]}">
878          dbmclose(%diffbase);  EOH
879      } elsif ($modifier_dbtype eq 'AnyDBM_File') {              $r .= qq(<a name="wikiform-$FormIndex"></a>) if $UA =~ m#Mozilla/[12]\.#;
880          untie(%diffbase);              $r .= $fmt{form_input}->replace ($definition, $param);
881      } else {              $r .= <<EOH;
882          untie(%diffbase);  </form>
883      }  EOH
884  }              $r;
885           } else {  ## No input-interface WikiForm
886  sub print_searchform {             qq(<a id="wikiform-$FormIndex" name="wikiform-$FormIndex"><!-- #form --></a>);
887      my ($word) = @_;         }
888      print <<"EOD";      } else {
889  <form action="$url_cgi" method="get">          q(<ins class="wiki-error"><strong>Warning</strong>: form in embeded page is currently not supported.</ins>);
890      <input type="hidden" name="mycmd" value="search">      }
891      <input type="text" name="mymsg" value="$word" size="20">  }
892      <input type="submit" value="$resource{searchbutton}">  
893  </form>  ## to be obsoleted
894  EOD  sub make_link {
895  }      my $chunk = shift;
896        # Walrus add (3) start
897  sub print_editform {      $chunk =~ s/^&lt;(.*)&gt;$/$1/;
898      my ($mymsg, $lastmodified, %mode) = @_;      my $name  = $chunk;
899      my $frozen = &is_frozen($form{mypage});      $name = &unarmor_name($name);
900        # Walrus add (3) end
901      if ($form{mypreview}) {      if ($chunk =~ /^$embedded_name$/) {
902          if ($form{mymsg}) {          return &embedded_to_html($chunk);
903              unless ($mode{conflict}) {      } else {
904                  print qq(<h3>$resource{previewtitle}</h3>\n);          $chunk = &unarmor_name($chunk);
905                  print qq($resource{previewnotice}\n);          $chunk = &unescape($chunk); # To treat '&' or '>' or '<' correctly.
906                  print qq(<div class="preview">\n);          my $cookedchunk = &encode($chunk);
907                  &print_content($form{mymsg});          if ($database{$chunk}) {
908                  print qq(</div>\n);              my $subject = &escape(&get_subjectline($chunk, delimiter => ''));
909              }  #           return qq(<a title="$subject" href="$url_cgi?$cookedchunk">$chunk</a>);  # Walrus del (3)
910          } else {              return qq(<a title="$subject" href="$url_cgi?$cookedchunk" class="wiki">@{[&escape($name)]}</a>);   # Walrus add (3)
911              print qq($resource{previewempty});          } elsif ($page_command{$chunk}) {
912          }  #           return qq(<a title="$chunk" href="$url_cgi?$cookedchunk">$chunk</a>);    # Walrus del (3)
913          $mymsg = &escape($form{mymsg});              return qq(<a title="$chunk" href="$url_cgi?$cookedchunk" class="wiki">@{[&escape($name)]}</a>);     # Walrus add (3)
914      } else {          } else {
915          $mymsg = &escape($mymsg);              return qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedchunk" class="wiki">@{[&escape($name)]}<span class="mark">$editchar</span></a>);
916      }          }
917        }
918      my $edit = $mode{admin} ? 'adminedit' : 'edit';  }
919    
920      print <<"EOD";  sub print_message {
921  <form action="$url_cgi" method="post">      my ($msg) = @_;
922      @{[ $mode{admin} ? qq($resource{frozenpassword} <input type="password" name="mypassword" value="$form{mypassword}" size="10"><br>) : "" ]}      print qq(<p><strong>$msg</strong></p>);
923      <input type="hidden" name="myLastModified" value="$lastmodified">  }
924      <input type="hidden" name="mypage" value="$form{mypage}">  
925      <textarea cols="$cols" rows="$rows" name="mymsg" wrap="off">$mymsg</textarea><br>  sub get_message {
926  @{[      my ($msg) = @_;
927      $mode{admin} ?      qq(<p><strong>$msg</strong></p>);
928      qq(  }
929      <input type="radio" name="myfrozen" value="1" @{[$frozen ? qq(checked="checked") : ""]}>$resource{frozenbutton}  
930      <input type="radio" name="myfrozen" value="0" @{[$frozen ? "" : qq(checked="checked")]}>$resource{notfrozenbutton}<br>)  sub init_form {
931      : ""      if (param()) {
932  ]}          foreach my $var (param()) {
933  @{[              $form{$var} = param($var);
934      $mode{conflict} ? "" :        }
935      qq(      }
936          <input type="checkbox" name="mytouch" value="on" checked="checked">$resource{touch}<br>      $form{mypage} = &code_convert(\$form{mypage}, $kanjicode);
937          <input type="submit" name="mypreview_$edit" value="$resource{previewbutton}">      if ($main::ENV{QUERY_STRING} && $main::ENV{QUERY_STRING} !~ /[&;=]/) {
938          <input type="submit" name="mypreview_write" value="$resource{savebutton}"><br>        my $query = &decode($main::ENV{QUERY_STRING});
939      )        $query = &code_convert(\$query, $kanjicode);
940  ]}        if ($page_command{$query}) {
941  </form>          $form{mycmd} = $page_command{$query};
942  EOD          $form{mypage} = $query;
943      unless ($mode{conflict}) {        } else {
944          # Show the format rule.          $form{mypage} = $query;
945          open(FILE, $file_format) or &print_error("($file_format)");          $form{mycmd} = $database{$form{mypage}} ? 'read' : 'edit';
946          my $content = join('', <FILE>);        }
947          &code_convert(\$content, $kanjicode);      }
948          close(FILE);      $form{mypage} ||= 'HomePage';
949          print &text_to_html($content, toc=>0);      $form{mycmd} ||= 'read';
950      }  
951  }      # mypreview_edit        -> do_edit, with preview.
952        # mypreview_adminedit   -> do_adminedit, with preview.
953  sub print_passwordform {      # mypreview_write       -> do_write, without preview.
954          print <<"EOD";      foreach (keys %form) {
955  <form action="$url_cgi" method="post">          if (/^mypreview_(.*)$/) {
956      <input type="hidden" name="mycmd" value="adminchangepassword">              $form{mycmd} = $1;
957      $resource{oldpassword} <input type="password" name="myoldpassword" size="10"><br>              $form{mypreview} = 1;
958      $resource{newpassword} <input type="password" name="mynewpassword" size="10"><br>          }
959      $resource{newpassword2} <input type="password" name="mynewpassword2" size="10"><br>      }
960      <input type="submit" value="$resource{changepasswordbutton}"><br>  
961  </form>      #
962  EOD      # $form{mycmd} is frozen here.
963  }      #
964    
965  sub is_editable {      for (grep /^wikiform__/, keys %form) {
966      my ($page) = @_;          $form{$_} = &code_convert (\$form{$_}, $kanjicode);
967      if (&is_bracket_name($page)) {      }
968          return 0;      $form{mymsg} = &code_convert(\$form{mymsg}, $kanjicode);
969      } elsif ($fixedpage{$page}) {      $form{myname} = &code_convert(\$form{myname}, $kanjicode);
970          return 0;  }
971      } elsif ($page =~ /\s/) {  
972          return 0;  sub update_recent_changes {
973      } elsif ($page =~ /^\#/) {      my $update = "- @{[&get_now]} [[@{[&escape($form{mypage})]}]] @{[&get_subjectline($form{mypage})]}";
974          return 0;      my @oldupdates = split(/\r?\n/, $database{$RecentChanges});
975      } elsif ($page =~ /^$interwiki_name$/) {      shift (@oldupdates); ## '#?' magic line
976          return 0;      my @updates;
977      } else {      foreach (@oldupdates) {
978          return 1;          /^\- \d\d\d\d\-\d\d\-\d\d \([^)]+\) \d\d:\d\d \[\[(\S+?)\]\]/;
979      }          my $name = $1;
980  }          if ($name ne $form{mypage}) {
981                push @updates, $_;
982  # armor_name:          }
983  #   WikiName -> WikiName      }
984  #   not_wiki_name -> [[not_wiki_name]]      if (&is_exist_page($form{mypage})) {
985  sub armor_name {        unshift @updates, $update;
986      my ($name) = @_;      }
987      if ($name =~ /^$wiki_name$/) {      splice(@updates, $maxrecent + 1);
988          return $name;      $database{$RecentChanges} = "#?SuikaWiki/0.9\n" . join("\n", @updates);
989      } else {      if ($file_touch) {
990          return "[[$name]]";          open(FILE, "> $file_touch");
991      }          print FILE localtime() . "\n";
992  }          close(FILE);
993        }
994  # unarmor_name:  }
995  #   [[bracket_name]] -> bracket_name  
996  #   WikiName -> WikiName  sub get_subjectline {
997  sub unarmor_name {      my ($page, %option) = @_;
998      my ($name) = @_;      if (not &is_editable($page)) {
999      if ($name =~ /^$bracket_name$/) {          return "";
1000          return $1;      } else {
1001      } else {          # Delimiter check.
1002          return $name;          my $delim = $subject_delimiter;
1003      }          if (defined($option{delimiter})) {
1004  }              $delim = $option{delimiter};
1005            }
1006  sub is_bracket_name {  
1007      my ($name) = @_;          # Get the subject of the page.
1008      if ($name =~ /^$bracket_name$/) {          my $subject = $database{$page};
1009          return 1;          $subject =~ s#^(?:\#\?)?SuikaWiki/0.9[^\x0D\x0A]*[\x0D\x0A]+##s;
1010      } else {          $subject =~ s/\r?\n.*//s;
1011          return 0;          return "$delim$subject".$option{tail};
1012      }      }
1013  }  }
1014    
1015  sub decode {  sub send_mail_to_admin {
1016      my ($s) = @_;      my ($page, $mode) = @_;
1017      $s =~ tr/+/ /;      return unless $modifier_sendmail;
1018      $s =~ s/%([A-Fa-f0-9][A-Fa-f0-9])/pack("C", hex($1))/eg;      my $message = <<"EOD";
1019      return $s;  To: $modifier_mail
1020  }  From: $modifier_mail
1021    Subject: [Wiki]
1022  sub encode {  MIME-Version: 1.0
1023      my ($s) = @_;  Content-Type: text/plain; charset=ISO-2022-JP
1024      my $encoded = '';  Content-Transfer-Encoding: 7bit
1025      foreach my $ch (split(//, $s)) {  
1026          if ($ch =~ /[A-Za-z0-9_]/) {  --------
1027              $encoded .= $ch;  MODE = $mode
1028          } else {  REMOTE_ADDR = $ENV{REMOTE_ADDR}
1029              $encoded .= '%' . sprintf("%02X", ord($ch));  REMOTE_HOST = $ENV{REMOTE_HOST}
1030          }  --------
1031      }  $page
1032      return $encoded;  --------
1033  }  $database{$page}
1034    --------
1035  sub init_resource {  EOD
1036      open(FILE, $file_resource) or &print_error("(resource)");      &code_convert(\$message, 'jis');
1037      while (<FILE>) {      open(MAIL, "| $modifier_sendmail");
1038          chomp;      print MAIL $message;
1039          next if /^#/;      close(MAIL);
1040          my ($key, $value) = split(/=/, $_, 2);  }
1041          $resource{$key} = &code_convert(\$value, $kanjicode);  
1042      }  sub open_db {
1043      close(FILE);      if ($modifier_dbtype eq 'dbmopen') {
1044  }          dbmopen(%database, $dataname, 0666) or &print_error("(dbmopen) $dataname");
1045            dbmopen(%infobase, $infoname, 0666) or &print_error("(dbmopen) $infoname");
1046  sub conflict {      } elsif ($modifier_dbtype eq 'AnyDBM_File') {
1047      my ($page, $rawmsg) = @_;          tie(%database, "AnyDBM_File", $dataname, O_RDWR|O_CREAT, 0666) or &print_error("(tie AnyDBM_File) $dataname");
1048      if ($form{myLastModified} eq &get_info($page, $info_LastModified)) {          tie(%infobase, "AnyDBM_File", $infoname, O_RDWR|O_CREAT, 0666) or &print_error("(tie AnyDBM_File) $infoname");
1049          return 0;      } else {
1050      }          tie(%database, "Yuki::YukiWikiDB", $dataname) or &print_error("(tie Yuki::YukiWikiDB) $dataname");
1051      open(FILE, $file_conflict) or &print_error("(conflict)");          tie(%infobase, "Yuki::YukiWikiDB", $infoname) or &print_error("(tie Yuki::YukiWikiDB) $infoname");
1052      my $content = join('', <FILE>);      }
1053      &code_convert(\$content, $kanjicode);  }
1054      close(FILE);  
1055      &print_header($page);  sub close_db {
1056      &print_content($content);      if ($modifier_dbtype eq 'dbmopen') {
1057      &print_editform($rawmsg, $form{myLastModified}, frozen=>0, conflict=>1);          dbmclose(%database);
1058      &print_footer($page);          dbmclose(%infobase);
1059      return 1;      } elsif ($modifier_dbtype eq 'AnyDBM_File') {
1060  }          untie(%database);
1061            untie(%infobase);
1062  sub get_now {      } else {
1063      my (@week) = qw(Sun Mon Tue Wed Thu Fri Sat);          untie(%database);
1064      my ($sec, $min, $hour, $day, $mon, $year, $weekday) = localtime(time);          untie(%infobase);
1065      $year += 1900;      }
1066      $mon++;  }
1067      $mon = "0$mon" if $mon < 10;  
1068      $day = "0$day" if $day < 10;  sub open_diff {
1069      $hour = "0$hour" if $hour < 10;      if ($modifier_dbtype eq 'dbmopen') {
1070      $min = "0$min" if $min < 10;          dbmopen(%diffbase, $diffname, 0666) or &print_error("(dbmopen) $diffname");
1071      $sec = "0$sec" if $sec < 10;      } elsif ($modifier_dbtype eq 'AnyDBM_File') {
1072      $weekday = $week[$weekday];          tie(%diffbase, "AnyDBM_File", $diffname, O_RDWR|O_CREAT, 0666) or &print_error("(tie AnyDBM_File) $diffname");
1073      return "$year-$mon-$day ($weekday) $hour:$min:$sec";      } else {
1074  }          tie(%diffbase, "Yuki::YukiWikiDB", $diffname) or &print_error("(tie Yuki::YukiWikiDB) $diffname");
1075        }
1076  # [[YukiWiki http://www.hyuki.com/yukiwiki/wiki.cgi?euc($1)]]  }
1077  sub init_InterWikiName {  
1078      my $content = $database{$InterWikiName};  sub close_diff {
1079      while ($content =~ /\[\[(\S+) +(\S+)\]\]/g) {      if ($modifier_dbtype eq 'dbmopen') {
1080          my ($name, $url) = ($1, $2);          dbmclose(%diffbase);
1081          $interwiki{$name} = $url;      } elsif ($modifier_dbtype eq 'AnyDBM_File') {
1082      }          untie(%diffbase);
1083  }      } else {
1084            untie(%diffbase);
1085  sub interwiki_convert {      }
1086      my ($type, $localname) = @_;  }
1087      if ($type eq 'sjis' or $type eq 'euc') {  
1088          &code_convert(\$localname, $type);  sub print_searchform {
1089          return &encode($localname);      my ($word) = @_;
1090      } elsif ($type eq 'ykwk') {      print <<"EOD";
1091          # for YukiWiki1  <form action="$url_cgi" method="get">
1092          if ($localname =~ /^$wiki_name$/) {      <input type="hidden" name="mycmd" value="read">
1093              return $localname;      <input type="text" name="mypage" value="$word" size="20">
1094          } else {      <input type="submit" value="$resource{searchbutton}">
1095              &code_convert(\$localname, 'sjis');  </form>
1096              return &encode("[[" . $localname . "]]");  EOD
1097          }  }
1098      } elsif ($type eq 'asis') {  
1099          return $localname;  sub print_editform {
1100      # Walrus add (4) start      my ($mymsg, $lastmodified, %mode) = @_;
1101      } elsif ($type eq 'isbn') {      my $frozen = &is_frozen($form{mypage});
1102          $localname = join('', ($localname =~ /[0-9x]/g)) if ($localname =~ /^(\d-?){9}[\dx]$/);  
1103          return $localname;      if ($form{mypreview}) {
1104      # Walrus add (4) end          if ($form{mymsg}) {
1105      } else {              unless ($mode{conflict}) {
1106          return $localname;                  print qq(<h3>$resource{previewtitle}</h3>\n);
1107      }                  print qq($resource{previewnotice}\n);
1108  }                  print qq(<div class="preview">\n);
1109                    &print_content($form{mymsg});
1110  sub get_info {                  print qq(</div>\n);
1111      my ($page, $key) = @_;              }
1112      my %info = map { split(/=/, $_, 2) } split(/\n/, $infobase{$page});          } else {
1113      return $info{$key};              print qq($resource{previewempty});
1114  }          }
1115            $mymsg = &escape($form{mymsg});
1116  sub set_info {      } else {
1117      my ($page, $key, $value) = @_;          $mymsg = &escape($mymsg || $database{NewPageTemplate});
1118      my %info = map { split(/=/, $_, 2) } split(/\n/, $infobase{$page});      }
1119      $info{$key} = $value;  
1120      my $s = '';      my $edit = $mode{admin} ? 'adminedit' : 'edit';
1121      for (keys %info) {      my $escapedmypage = &escape($form{mypage});
1122          $s .= "$_=$info{$_}\n";      my $escapedmypassword = &escape($form{mypassword});
1123      }  
1124      $infobase{$page} = $s;      print <<"EOD";
1125  }  <form action="$url_cgi" method="post">
1126    <h2>$escapedmypage、ホハヤスク</h2>
1127  sub frozen_reject {      @{[ $mode{admin} ? qq($resource{frozenpassword} <input type="password" name="mypassword" value="$escapedmypassword" size="10"><br>) : "" ]}
1128      my ($isfrozen) = &get_info($form{mypage}, $info_IsFrozen);      <input type="hidden" name="myLastModified" value="$lastmodified">
1129      my ($willbefrozen) = $form{myfrozen};      <input type="hidden" name="mypage" value="$escapedmypage">
1130      if (not $isfrozen and not $willbefrozen) {      <textarea cols="$cols" rows="$rows" name="mymsg" tabindex="1">$mymsg</textarea><br>
1131          # You need no check.  @{[
1132          return 0;      $mode{admin} ?
1133      } elsif (valid_password($form{mypassword})) {      qq(
1134          # You are admin.      <input type="radio" name="myfrozen" value="1" @{[$frozen ? qq(checked="checked") : ""]}>$resource{frozenbutton}
1135          return 0;      <input type="radio" name="myfrozen" value="0" @{[$frozen ? "" : qq(checked="checked")]}>$resource{notfrozenbutton}<br>)
1136      } else {      : ""
1137          &print_error($resource{passworderror});  ]}
1138          return 1;  @{[
1139      }      $mode{conflict} ? "" :
1140  }      qq(
1141            <input type="checkbox" name="mytouch" value="on" checked="checked">$resource{touch}<br>
1142  sub valid_password {          <input type="submit" name="mypreview_$edit" value="$resource{previewbutton}">
1143      my ($givenpassword) = @_;          <input type="submit" name="mypreview_write" value="$resource{savebutton}" accesskey="S"><kbd>S</kbd>
1144      my ($validpassword_crypt) = &get_info($AdminSpecialPage, $info_AdminPassword);          [@{[do {my $n = 0;
1145      if (crypt($givenpassword, $validpassword_crypt) eq $validpassword_crypt) {                 $mymsg =~ s/(?:-+\s)?\[([0-9]+)\]/$n = $1 if $1 > $n; $&/mge;
1146          return 1;                 ++$n}]}]<br>
1147      } else {      )
1148          return 0;  ]}
1149      }  </form>
1150  }  EOD
1151        unless ($mode{conflict}) {
1152  sub is_frozen {          # Show the format rule.
1153      my ($page) = @_;          my $help = $database{'WikiEditHelp'};
1154      if (&get_info($page, $info_IsFrozen)) {          $help =~ s!^\#\?([A-Z][A-Za-z0-9-]+/[0-9.]+(?:[^0-9.\x0D\x0A][^\x0D\x0A]*)?)[\x0D\x0A]+!!s;
1155          return 1;          print &text_to_html ($help, toc => 0);
1156      } else {      #    open(FILE, $file_format) or &print_error("($file_format)");
1157          return 0;      #    my $content = join('', <FILE>);
1158      }      #    &code_convert(\$content, $kanjicode);
1159  }      #    close(FILE);
1160        #    print &text_to_html($content, toc=>0);
1161  sub do_comment {      }
1162      my ($content) = $database{$form{mypage}};  }
1163      my $datestr = &get_now;  
1164      my $namestr = $form{myname} ? " ''[[$form{myname}]]'' : " : " ";  sub print_passwordform {
1165      if ($content =~ s/(\Q$embed_comment\E)/- $datestr$namestr$form{mymsg}\n$1/) {          print <<"EOD";
1166          ;  <form action="$url_cgi" method="post">
1167      } else {      <input type="hidden" name="mycmd" value="adminchangepassword">
1168          $content =~ s/(\Q$embed_rcomment\E)/$1\n- $datestr$namestr$form{mymsg}/;      $resource{oldpassword} <input type="password" name="myoldpassword" size="10"><br>
1169      }      $resource{newpassword} <input type="password" name="mynewpassword" size="10"><br>
1170      if ($form{mymsg}) {      $resource{newpassword2} <input type="password" name="mynewpassword2" size="10"><br>
1171          $form{mymsg} = $content;      <input type="submit" value="$resource{changepasswordbutton}"><br>
1172          $form{mytouch} = 'on';  </form>
1173          &do_write;  EOD
1174      } else {  }
1175          $form{mycmd} = 'read';  
1176          &do_read;  sub is_editable {
1177      }      my ($page) = @_;
1178  }      if ($fixedpage{$page} || $page =~ /\s/ || $page =~ /^\#/) {
1179            return 0;
1180  sub embedded_to_html {      } else {
1181      my ($embedded) = @_;          return 1;
1182      if ($embedded eq $embed_comment or $embedded eq $embed_rcomment) {      }
1183          my $lastmodified = &get_info($form{mypage}, $info_LastModified);  }
1184          return <<"EOD";  
1185  <form action="$url_cgi" method="post">  # armor_name:
1186      <input type="hidden" name="mycmd" value="comment">  #   WikiName -> WikiName
1187      <input type="hidden" name="mypage" value="$form{mypage}">  #   not_wiki_name -> [[not_wiki_name]]
1188      <input type="hidden" name="myLastModified" value="$lastmodified">  sub armor_name { qq([[$_[0]]]) }
1189      <input type="hidden" name="mytouch" value="on">  
1190      $resource{yourname}  # unarmor_name:
1191      <input type="text" name="myname" value="" size="10">  #   [[bracket_name]] -> bracket_name
1192      <input type="text" name="mymsg" value="" size="40">  #   WikiName -> WikiName
1193      <input type="submit" value="$resource{commentbutton}">  sub unarmor_name {
1194  </form>      my ($name) = @_;
1195  EOD      if ($name =~ /^$bracket_name$/) {
1196      # Walrus add (5) start          return $1;
1197      } elsif ($embedded =~ /$embed_interwiki/ and my $remoteurl = $interwiki{$2}) {      } else {
1198          $_ = &make_interwiki_box($1, $2);          return $name;
1199          return ($_) ? $_ : $embedded;      }
1200      # Walrus add (5) end  }
1201      } else {  
1202          return $embedded;  sub decode {
1203      }      my ($s) = @_;
1204  }      $s =~ tr/+/ /;
1205        $s =~ s/%([A-Fa-f0-9][A-Fa-f0-9])/pack("C", hex($1))/eg;
1206  # Walrus add (5) start      return $s;
1207  sub do_interwiki_box {  }
1208      my $remoteurl = $interwiki{$form{'myintername'}};  
1209      if ($remoteurl) {  sub encode {
1210          $remoteurl =~ s/\b(euc|sjis|ykwk|asis|isbn)\(\$1\)/&interwiki_convert($1, $form{'mylocalname'})/e;      my ($s) = @_;
1211          print "Location: $remoteurl\n\n";      my $encoded = '';
1212          exit(1);      foreach my $ch (split(//, $s)) {
1213      } else {          if ($ch =~ /[A-Za-z0-9_]/) {
1214          &do_read;              $encoded .= $ch;
1215      }          } else {
1216  }              $encoded .= '%' . sprintf("%02X", ord($ch));
1217  # Walrus add (5) end          }
1218        }
1219  # Walrus add (5) start      return $encoded;
1220  sub make_interwiki_box {  }
1221      my ($localname, $intername) = @_;  
1222      my %ignoretype = (  sub init_resource {
1223          'box'      => 'text',      open(FILE, $file_resource) or &print_error("(resource)");
1224          'text'     => 'text',      while (<FILE>) {
1225          'pass'     => 'password',          chomp;
1226          'password' => 'password'          next if /^#/;
1227      );          my ($key, $value) = split(/=/, $_, 2);
1228      my $converted = ($ignoretype{$localname}) ? <<EOD : undef;          $resource{$key} = &code_convert(\$value, $kanjicode);
1229  <form action="$url_cgi" method="post">      }
1230      <input type="hidden" name="mycmd" value="interwikibox">      close(FILE);
1231      <input type="hidden" name="mypage" value="$form{mypage}">  }
1232      <input type="hidden" name="myintername" value="$intername">  
1233      $intername:  sub conflict {
1234      <input type="$ignoretype{$localname}" name="mylocalname" value="" size="10">      my ($page, $rawmsg) = @_;
1235      <input type="submit" value="Submit">      if ($form{myLastModified} eq &get_info($page, $info_LastModified)) {
1236  </form>          return 0;
1237  EOD      }
1238  }      open(FILE, $file_conflict) or &print_error("(conflict)");
1239  # Walrus add (5) end      my $content = join('', <FILE>);
1240        &code_convert(\$content, $kanjicode);
1241  sub code_convert {      close(FILE);
1242      my ($contentref, $kanjicode) = @_;      &print_header($page, -noindex => 1);
1243  #   &Jcode::convert($contentref, $kanjicode);       # for Jcode.pm      &print_content($content);
1244      &jcode::convert($contentref, $kanjicode);       # for jcode.pl      &print_editform($rawmsg, $form{myLastModified}, frozen=>0, conflict=>1);
1245      return $$contentref;      &print_footer($page);
1246  }      return 1;
1247    }
1248  sub test_convert {  
1249      my $txt = &text_to_html(<<"EOD", toc=>1);  sub get_now {
1250  *HEADER1      my (@week) = qw(Sun Mon Tue Wed Thu Fri Sat);
1251  **HEADER1-1      my (@week) = qw(ニ キ イミ ソ フレ カ ナレ);
1252  -ITEM1      my ($sec, $min, $hour, $day, $mon, $year, $weekday) = localtime(time);
1253  -ITEM2      $year += 1900;
1254  -ITEM3      $mon++;
1255  PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1      $mon = "0$mon" if $mon < 10;
1256  PAR1PAR1PAR1PAR1PAR1PAR1''BOLD''PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1      $day = "0$day" if $day < 10;
1257  PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1      $hour = "0$hour" if $hour < 10;
1258        $min = "0$min" if $min < 10;
1259  PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2      #$sec = "0$sec" if $sec < 10;
1260  PAR2PAR2PAR2PAR2PAR2PAR2'''ITALIC'''PAR2PAR2PAR2PAR2PAR2PAR2PAR2      $weekday = $week[$weekday];
1261  PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2      return "$year-$mon-$day ($weekday) $hour:$min";
1262  **HEADER1-2  }
1263  :TERM1:DESCRIPTION1 AND ''BOLD''  
1264  PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1  sub init_InterWikiName {
1265  PAR1PAR1PAR1PAR1PAR1PAR1''BOLD''PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1    my @content = split /\n/, $database{$InterWikiName};
1266  PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1    for (@content) {
1267  :TERM2:DESCRIPTION2      if (/^([^#]\S*)\s+(\S[^\x0A\x0D]+)/) {
1268  :TERM3:DESCRIPTION3        $interwiki{$1} = $2;
1269  ----      }
1270  *HEADER2    }
1271  **HEADER2-1    require Message::Util::Formatter;
1272  http://www.hyuki.com/    $fmt{interwiki} = Message::Util::Formatter->new;
1273  **HEADER2-2    $fmt{interwiki}->{encoded} = sub {
1274        my ($o, $p) = @_;
1275  [[YukiWiki2]]      if ($o->{except}) {
1276          $o->{except} =~ tr/\x00-\x20\x22\x23%\x2D<>^[\x5C]`{|}\x7F-\xFF//d;
1277  PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1      }
1278  PAR1PAR1PAR1PAR1PAR1PAR1'''''BOLD ITALIC'''''PAR1PAR1PAR1PAR1PAR1      my $s = &code_convert (\$p->{name}, $o->{charset} || 'iso-2022-7bit');
1279  PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1      $s =~ s/([^$o->{except}A-Za-z0-9_-])/sprintf '%%%02X', unpack 'C', $1/ge;
1280  >PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2      $s;
1281  >PAR2PAR2PAR2PAR2PAR2PAR2'''ITALIC'''PAR2PAR2PAR2PAR2PAR2PAR2PAR2    };
1282  >PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2    $fmt{interwiki}->{ykwk} = sub {       ## YukiWiki1
1283        my ($o, $p) = @_;
1284  LEVEL0LEVEL0LEVEL0LEVEL0LEVEL0LEVEL0LEVEL0      my $s = $p->{name};
1285        $s = qq([[$s]]) if $s !~ /^[A-Z][a-z]+(?:[A-Z][a-z]+)+$/;
1286  >LEVEL1      &encode (&code_convert (\$p->{name}, $o->{charset} || 'shift_jis'));
1287  >LEVEL1    };
1288  >LEVEL1  }
1289  >>LEVEL2  
1290  >>LEVEL2  
1291  >>LEVEL2  sub get_info {
1292  >>>LEVEL3      my ($page, $key) = @_;
1293  -HELLO-1      my %info = map { split(/=/, $_, 2) } split(/\n/, $infobase{$page});
1294  --HELLO-2      return $info{$key};
1295  (HELLO-2, HELLO-2, HELLO-2)  }
1296  ---HELLO-3  
1297  (HELLO-3, HELLO-3, HELLO-3)  sub set_info {
1298  --HELLO-2      my ($page, $key, $value) = @_;
1299  ---HELLO-3      my %info = map { split(/=/, $_, 2) } split(/\n/, $infobase{$page});
1300  --HELLO-2      $info{$key} = $value;
1301  ---HELLO-3      my $s = '';
1302  >>>LEVEL3      for (keys %info) {
1303  >>>LEVEL3          $s .= "$_=$info{$_}\n";
1304  >>>LEVEL3      }
1305  >>>LEVEL3      $infobase{$page} = $s;
1306  EOD  }
1307      print $txt;  
1308      exit;  sub frozen_reject {
1309  }      my ($isfrozen) = &get_info($form{mypage}, $info_IsFrozen);
1310        my ($willbefrozen) = $form{myfrozen};
1311  sub do_diff {      if (not $isfrozen and not $willbefrozen) {
1312      if (not &is_editable($form{mypage})) {          # You need no check.
1313          &do_read;          return 0;
1314          return;      } elsif (valid_password($form{mypassword})) {
1315      }          # You are admin.
1316      &open_diff;          return 0;
1317      my $title = $form{mypage};      } else {
1318      &print_header($title);          &print_error($resource{passworderror});
1319      $_ = &escape($diffbase{$form{mypage}});          return 1;
1320      &close_diff;      }
1321      print qq(<h3>$resource{difftitle}</h3>);  }
1322      print qq($resource{diffnotice});  
1323      print qq(<pre class="diff">);  sub valid_password {
1324      foreach (split(/\n/, $_)) {      my ($givenpassword) = @_;
1325          if (/^\+(.*)/) {      my ($validpassword_crypt) = &get_info($AdminSpecialPage, $info_AdminPassword);
1326              print qq(<b class="added">$1</b>\n);      if (crypt($givenpassword, $validpassword_crypt) eq $validpassword_crypt) {
1327          } elsif (/^\-(.*)/) {          return 1;
1328              print qq(<s class="deleted">$1</s>\n);      } else {
1329          } elsif (/^\=(.*)/) {          return 0;
1330              print qq(<span class="same">$1</span>\n);      }
1331          } else {  }
1332              print qq|??? $_\n|;  
1333          }  sub is_frozen {
1334      }      my ($page) = @_;
1335      print qq(</pre>);      if (&get_info($page, $info_IsFrozen)) {
1336      print qq(<hr>);          return 1;
1337      &print_footer($title);      } else {
1338  }          return 0;
1339        }
1340  sub do_rss {  }
1341      my $rss = new Yuki::RSS(  
1342          version => '1.0',  sub do_comment {
1343          encoding => $charset,      my ($content) = $database{$form{mypage}};
1344      );      my $default_name;   ## this code does not strict.
1345      $rss->channel(      $default_name = $1 if $content =~ /default-name="([^"]+)"/;
1346          title => $modifier_rss_title,      my $datestr = '[WEAK['.&get_now.']]';
1347          link  => $modifier_rss_link,      my $namestr = $form{myname} || $default_name || $DEFAULT_embed_comment_name;
1348          description => $modifier_rss_description,      ($namestr = '', $datestr = '') if $form{myname} eq 'nodate';
1349      );      if ($namestr =~ /^(?:>>)?[0-9]/) {
1350      my $recentchanges = $database{$RecentChanges};        $namestr = qq( ''$namestr'': );
1351      my $count = 0;      } elsif (length $namestr) {
1352      foreach (split(/\n/, $recentchanges)) {        $namestr = qq( ''[[$namestr]]'': );
1353          last if ($count >= 15);      }
1354          /^\- \d\d\d\d\-\d\d\-\d\d \(...\) \d\d:\d\d:\d\d (\S+)/;    # date format.      my $anchor = &get_new_anchor_index ($content);
1355          my $title = &unarmor_name($1);      my $i = 1;  my $o = 0;
1356          my $escaped_title = &escape($title);      $content =~ s{(\Q$embed_comment\E|\Q$embed_rcomment\E)}{
1357          my $link = $modifier_rss_link . '?' . &encode($title);        my $embed = $1;
1358          my $description = $escaped_title . &escape(&get_subjectline($title));        if ($i == $form{comment_index}) {
1359          $rss->add_item(          if ($embed eq $embed_comment) {
1360              title => $escaped_title,            $embed = "- [$anchor] $datestr$namestr$form{mymsg}\n$embed";  $o = 1;
1361              link  => $link,          } else {
1362              description => $description,            $embed .= "\n- [$anchor] $datestr$namestr$form{mymsg}";  $o = 1;
1363          );          }
1364          $count++;        }
1365      }        $i++; $embed;
1366      # print RSS information (as XML).      }ge;
1367      print <<"EOD"      unless ($o) {
1368  Content-type: text/xml        $content = "#?SuikaWiki/0.9\n\n" unless $content;
1369          $content .= "\n" unless $content =~ /\n$/s;
1370  @{[$rss->as_string]}        $content .= "- [$anchor] $datestr$namestr$form{mymsg}\n";
1371  EOD      }
1372  }      $form{__comment_anchor_index} = $anchor;
1373        if ($form{mymsg} || $form{myname}) {
1374  sub is_exist_page {          $form{mymsg} = $content;
1375      my ($name) = @_;          $form{mytouch} = 'on';
1376      if ($use_exists) {          &do_write;
1377          return exists($database{$name});      } else {
1378      } else {          $form{mycmd} = 'read';
1379          return $database{$name};          &do_read;
1380      }      }
1381  }  }
1382    
1383  1;  sub get_new_anchor_index ($) {
1384  __END__      my $content = shift;
1385  =head1 NAME      my $anchor = 0;
1386        $content =~ s/^(?:[-=]+\s*)?\[([0-9]+)\]/$anchor = $1 if $1 > $anchor; $&/mge;
1387  wiki.cgi - This is YukiWiki, yet another Wiki clone.      $anchor + 1;
1388    }
1389  =head1 DESCRIPTION  
1390    my $CommentIndex = 0;
1391  YukiWiki is yet another Wiki clone.  sub embedded_to_html {
1392        my ($embedded) = @_;
1393  YukiWiki can treat Japanese WikiNames (enclosed with [[ and ]]).      if ($embedded eq $embed_comment or $embedded eq $embed_rcomment) {
1394  YukiWiki provides 'InterWiki' feature, RDF Site Summary (RSS),        unless ($main::_EMBEDED) {
1395  and some embedded commands (such as [[#comment]] to add comments).          my $lastmodified = &get_info($form{mypage}, $info_LastModified);
1396            return <<"EOD";
1397  Read F<readme_en.txt> (English) or F<readme_ja.txt> (Japanese) in more detail.  <form action="$url_cgi" method="post" id="x-comment-@{[++$CommentIndex]}" class="comment"><p>
1398        <input type="hidden" name="mycmd" value="comment">
1399  =head1 AUTHOR      <input type="hidden" name="mypage" value="$form{mypage}">
1400        <input type="hidden" name="myLastModified" value="$lastmodified">
1401  Hiroshi Yuki <hyuki@hyuki.com> http://www.hyuki.com/yukiwiki/      <input type="hidden" name="mytouch" value="on">
1402        <input type="hidden" name="comment_index" value="$CommentIndex">
1403  =head1 LICENSE      $embed_comment_Name_Prompt
1404        <input type="text" name="myname" value="" size="10" class="comment-name">
1405  Copyright (C) 2000-2002 by Hiroshi Yuki.      <input type="text" name="mymsg" value="" size="60" class="comment-msg">
1406        <input type="submit" value="$resource{commentbutton}" class="comment-submit">
1407  This program is free software; you can redistribute it and/or  </p></form>
1408  modify it under the same terms as Perl itself.  EOD
1409         } else {
1410  =cut          return <<"EOD";
1411    <del><form action="$url_cgi" method="get">
1412        <input type="hidden" name="mycmd" value="read">
1413        <input type="hidden" name="mypage" value="$form{mypage}">
1414        $embed_comment_Name_Prompt
1415        <input type="text" name="myname" value="" size="10" disabled="disabled">
1416        <input type="text" name="mymsg" value="" size="60" disabled="disabled">
1417        <input type="submit" value="$resource{commentbutton}" disabled="disabled">
1418    </form></del>
1419    EOD
1420        }
1421      } elsif ($embedded =~ /$embed_command{searched}/) {
1422        return get_search_result ($1, -match_myself => 1);
1423        # Walrus add (5) start
1424        } elsif ($embedded =~ /$embed_interwiki/ and my $remoteurl = $interwiki{$2}) {
1425            $_ = &make_interwiki_box($1, $2);
1426            return ($_) ? $_ : $embedded;
1427        # Walrus add (5) end
1428      } elsif ($embedded =~ /^\[\[\#embed:(.+)\]\]$/) {
1429        my ($name, $r) = ($1, '');
1430        if ($main::_EMBEDED != 1) {
1431          my ($content, $cf) = ($database{$name}, 'SuikaWiki/0.9');
1432          $cf = $1 if $content =~ s!^(?:[\#<]\?|/\*\s*)?([A-Z][A-Za-z0-9-]+/[0-9.]+(?:[^0-9.][^\x0D\x0A]*)?)[\x0D\x0A]+!!s;
1433          if ($cf =~ m!^(?:\#\?)?SuikaWiki/0.9(?:$|\s)!) {
1434            $main::_EMBEDED = 1;
1435            $r = &text_to_html ($content, content_format => $cf);
1436            $main::_EMBEDED = 0;
1437          } elsif (length $content) {
1438            $r = "<pre>@{[&escape ($content)]}</pre>";
1439          } else {
1440            $r = &text_to_html ("[INS[\nヒ荀盪、゙、、ニ、、、 [[$name]] 、マ、゙、タス、ォ、、ニ、、、゙、サ、。」\n]INS]\n", content_format => 'SuikaWiki/0.9');
1441          }
1442        } else {    ## nested #EMBED
1443          $r = &text_to_html ("[INS[\n[[$name]] 、ホヒ荀盪、゚、マ (ニ、チネ、、ヌ、、、、ホ、ヌ) イキ隍オ、、゙、サ、、ヌ、キ、ソ。」\n]INS]\n", content_format => 'SuikaWiki/0.9');
1444        }
1445        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>);
1446      } elsif ($embedded =~ /^\[\[\#randomlink:(.+)\]\]$/) {
1447        return qq(<a href="$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki randomlink">$1</a>);
1448      } else {
1449        return $embedded;
1450      }
1451    }
1452    
1453    sub load_formatter (@) {
1454        for my $t (@_) {
1455            unless ($fmt{$t}) {
1456                $fmt{$t} = Message::Util::Formatter->new;
1457                for (@{$SuikaWiki::Plugin::List{'wiki'.$t}||[]}) {
1458                    $_->load_formatter ($fmt{$t}, type => 'wiki'.$t);
1459                }
1460            }
1461        }
1462    }
1463    
1464    sub do_wikiform {
1465        my $content = $database{$form{mypage}};
1466        my $anchor = &get_new_anchor_index ($content);
1467        &load_formatter (qw/form_template form_option/);
1468        my $write = 0;
1469        my $i = 1;
1470        $content =~ s{$embed_command{form}}{
1471            my ($embed, $wfname, $template, $option) = ($&, $1, $3, $4);
1472            if (($wfname && $wfname eq $form{wikiform_targetform})
1473                || $i == $form{wikiform_index}) {
1474                $template =~ s/\\(.)/$1/g;
1475                $option =~ s/\\(.)/$1/g;
1476                my $param = bless {}, 'SuikaWiki::Plugin';
1477                $param->{page} = $form{mypage};
1478                $param->{form_index} = $i;
1479                $param->{form_name} = $wfname;
1480                $param->{anchor_index} = $anchor;
1481                $param->{argv} = \%form;
1482                $param->{default_name} = $1 if $content =~ /default-name="([^"]+)"/;
1483                $param->{default_name} ||= $DEFAULT_embed_comment_name;
1484                $fmt{form_option}->replace ($option, $param);
1485                my $t = 1;
1486                for (@{$param->{require}||[]}) {
1487                  (undef $t, last) unless length $param->{argv}->{'wikiform__'.$_};
1488                }
1489                $t = $fmt{form_template}->replace ($template, $param) if $t;
1490                if (length $t) {
1491                    if ($param->{output}->{reverse}) {
1492                        $embed .= "\n" . $t;
1493                    } else {
1494                        $embed = $t . "\n" . $embed;
1495                    }
1496                    $write = 1;
1497                    $form{__comment_anchor_index} = $anchor
1498                      if $param->{anchor_index_};  ## $anchor is used!
1499                }
1500                $form{__wikiform_anchor_index} = $i;
1501                undef $form{wikiform_targetform};  ## make sure never to match
1502                undef $form{wikiform_index};       ## with WikiForm in rest of page
1503            }
1504            $i++; $embed;
1505        }ge;
1506        unless ($write) {
1507          #$content = "#?SuikaWiki/0.9\n\n" unless $content;
1508          #$content .= "\n" unless $content =~ /\n$/s;
1509          #
1510        }
1511        if ($write) {
1512            $form{mymsg} = $content;
1513            $form{mytouch} = 'on';
1514            &do_write;
1515        } else {
1516            $form{mycmd} = 'read';
1517            &do_read;
1518        }
1519    }
1520    
1521    
1522    # Walrus add (5) start
1523    sub do_interwiki_box {
1524        my $remoteurl = $interwiki{$form{'myintername'}};
1525        if ($remoteurl) {
1526            $remoteurl =~ s/\b(euc|sjis|ykwk|asis|isbn)\(\$1\)/&interwiki_convert($1, $form{'mylocalname'})/e;
1527            print "Location: $remoteurl\n\n";
1528            exit(1);
1529        } else {
1530            &do_read;
1531        }
1532    }
1533    # Walrus add (5) end
1534    
1535    # Walrus add (5) start
1536    sub make_interwiki_box {
1537        my ($localname, $intername) = @_;
1538        my %ignoretype = (
1539            'box'      => 'text',
1540            'text'     => 'text',
1541            'pass'     => 'password',
1542            'password' => 'password'
1543        );
1544        my $converted = ($ignoretype{$localname}) ? <<EOD : undef;
1545    <form action="$url_cgi" method="post">
1546        <input type="hidden" name="mycmd" value="interwikibox">
1547        <input type="hidden" name="mypage" value="$form{mypage}">
1548        <input type="hidden" name="myintername" value="$intername">
1549        $intername:
1550        <input type="$ignoretype{$localname}" name="mylocalname" value="" size="10">
1551        <input type="submit" value="Submit">
1552    </form>
1553    EOD
1554    }
1555    # Walrus add (5) end
1556    
1557    sub code_convert {
1558        my ($contentref, $code) = (shift, shift || $kanjicode);
1559        $code = 'jis' if $code =~ /iso/;
1560        $code = 'euc' if $code =~ /euc/;
1561        $code = 'sjis' if $code =~ /shift/;
1562        $code = 'utf8' if $code =~ /utf/;
1563        &Jcode::convert($contentref, $code);       # for Jcode.pm
1564    #    &jcode::convert($contentref, $code);       # for jcode.pl
1565        &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';
1566        return $$contentref;
1567    }
1568    
1569    sub test_convert {
1570        my $txt = &text_to_html(<<"EOD", toc=>1);
1571    *HEADER1
1572    **HEADER1-1
1573    -ITEM1
1574    -ITEM2
1575    -ITEM3
1576    PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1
1577    PAR1PAR1PAR1PAR1PAR1PAR1''BOLD''PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1
1578    PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1
1579    
1580    PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2
1581    PAR2PAR2PAR2PAR2PAR2PAR2'''ITALIC'''PAR2PAR2PAR2PAR2PAR2PAR2PAR2
1582    PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2
1583    **HEADER1-2
1584    :TERM1:DESCRIPTION1 AND ''BOLD''
1585    PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1
1586    PAR1PAR1PAR1PAR1PAR1PAR1''BOLD''PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1
1587    PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1
1588    :TERM2:DESCRIPTION2
1589    :TERM3:DESCRIPTION3
1590    ----
1591    *HEADER2
1592    **HEADER2-1
1593    http://www.hyuki.com/
1594    **HEADER2-2
1595    
1596    [[YukiWiki2]]
1597    
1598    PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1
1599    PAR1PAR1PAR1PAR1PAR1PAR1'''''BOLD ITALIC'''''PAR1PAR1PAR1PAR1PAR1
1600    PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1PAR1
1601    >PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2
1602    >PAR2PAR2PAR2PAR2PAR2PAR2'''ITALIC'''PAR2PAR2PAR2PAR2PAR2PAR2PAR2
1603    >PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2PAR2
1604    
1605    LEVEL0LEVEL0LEVEL0LEVEL0LEVEL0LEVEL0LEVEL0
1606    
1607    >LEVEL1
1608    >LEVEL1
1609    >LEVEL1
1610    >>LEVEL2
1611    >>LEVEL2
1612    >>LEVEL2
1613    >>>LEVEL3
1614    -HELLO-1
1615    --HELLO-2
1616    (HELLO-2, HELLO-2, HELLO-2)
1617    ---HELLO-3
1618    (HELLO-3, HELLO-3, HELLO-3)
1619    --HELLO-2
1620    ---HELLO-3
1621    --HELLO-2
1622    ---HELLO-3
1623    >>>LEVEL3
1624    >>>LEVEL3
1625    >>>LEVEL3
1626    >>>LEVEL3
1627    EOD
1628        print $txt;
1629        exit;
1630    }
1631    
1632    sub do_diff {
1633        if (not &is_editable($form{mypage})) {
1634            &do_read;
1635            return;
1636        }
1637        &open_diff;
1638        my $title = $form{mypage};
1639        &print_header($title, -noindex => 1);
1640        $_ = &escape($diffbase{$form{mypage}});
1641        &close_diff;
1642        print qq(<h3>$resource{difftitle}</h3>);
1643        print qq($resource{diffnotice});
1644        print qq(<pre class="diff">);
1645        foreach (split(/\n/, $_)) {
1646            if (/^\+(.*)/) {
1647                print qq(<b class="added">$1</b>\n);
1648            } elsif (/^\-(.*)/) {
1649                print qq(<s class="deleted">$1</s>\n);
1650            } elsif (/^\=(.*)/) {
1651                print qq(<span class="same">$1</span>\n);
1652            } else {
1653                print qq|??? $_\n|;
1654            }
1655        }
1656        print qq(</pre>);
1657        print qq(<hr>);
1658        &print_footer($title);
1659    }
1660    
1661    sub do_rss {
1662        my $rss = new Yuki::RSS(
1663            version => '1.0',
1664            encoding => $charset,
1665        );
1666        $rss->channel(
1667            title => $modifier_rss_title,
1668            link  => $modifier_rss_link,
1669            description => $modifier_rss_description,
1670        );
1671        my $recentchanges = $database{$RecentChanges};
1672        my $count = 0;
1673        foreach (split(/\n/, $recentchanges)) {
1674            last if ($count >= 15);
1675            /^\- \d\d\d\d\-\d\d\-\d\d \([^)]+\) \d\d:\d\d:\d\d (\S+)/;    # date format.
1676            my $title = &unarmor_name($1);
1677            my $escaped_title = &escape($title);
1678            my $link = $modifier_rss_link . '?' . &encode($title);
1679            my $description = $escaped_title . &escape(&get_subjectline($title));
1680            $rss->add_item(
1681                title => $escaped_title,
1682                link  => $link,
1683                description => $description,
1684            );
1685            $count++;
1686        }
1687        # print RSS information (as XML).
1688        print <<"EOD"
1689    Content-type: text/xml
1690    
1691    @{[$rss->as_string]}
1692    EOD
1693    }
1694    
1695    sub is_exist_page {
1696        my ($name) = @_;
1697        if ($use_exists) {
1698            return exists($database{$name});
1699        } else {
1700            return $database{$name};
1701        }
1702    }
1703    
1704    sub __get_database ($) { $database{ $_[0] } }
1705    sub __set_database ($$) { $database{ $_[0] } = $_[1] }
1706    
1707    sub do_wikiplugininfo {
1708        &print_header (q(WikiPluginInfo));
1709        print text_to_html (&SuikaWiki::Plugin::make_info_page);
1710        &print_footer (q(WikiPluginInfo));
1711    }
1712    
1713    package wiki::referer;
1714    sub add ($$) {
1715      my $page = shift;
1716      my $uri = shift;
1717      unless (ref $uri) {
1718        require URI;
1719        $uri = URI->new ($uri);
1720        ## Some schemes do not have query part.
1721        eval q{ $uri->query (undef) if $uri->query =~ /^[0-9]{6,8}$/ };
1722        $uri->fragment (undef);
1723      }
1724      $uri = $uri->canonical;
1725      return unless $uri;
1726      for my $regex (&get_dont_record) {
1727        return if $uri =~ /$regex/;
1728      }
1729      my %list = get ($page);
1730      $list{ $uri }++;
1731      set ($page, \%list);
1732    }
1733    sub get ($) {
1734      my $page = shift;
1735      split /"/, main::get_info ($page, 'Referer');
1736    }
1737    sub set ($%) {
1738      my $page = shift;
1739      my $list = shift;
1740      main::set_info ($page, Referer => join '"', %$list);
1741    }
1742    
1743    sub get_dont_record () {
1744      map {s/\$/\\\$/g; s/\@/\\\@/g; $_}
1745      grep !/^#/,
1746      split /[\x0D\x0A]+/, &main::__get_database ('RefererDontRecord');
1747    }
1748    sub get_site_name () {
1749      my @lines = grep /[^#]/, split /[\x0D\x0A]+/, &main::__get_database('RefererSiteName');
1750      my @item;
1751      for (@lines) {
1752        next if /^#/;
1753        my ($uri, $name) = split /\s+/, $_, 2;
1754        $uri =~ s/\$/\\\$/g;  $uri =~ s/\@/\\\@/g;  $uri =~ s/\//\\\//g;
1755        $name =~ s!([()/\\])!\\$1!g;  $name =~ s/\$([0-9]+)/).__decode (\${$1}).q(/g;
1756        push @item, [$uri, qq(q($name))];
1757      }
1758      @item;
1759    }
1760    
1761    sub list_html ($) {
1762      my $page = shift;
1763      my %list = get ($page);
1764      my $r = '';
1765      my @name = get_site_name;
1766      for my $uri (sort keys %list) {
1767        my $title;
1768        for my $item (@name) {
1769          if ($uri =~ /$item->[0]/) {
1770            $title = $uri;
1771            eval qq{\$title =~ s/^.*$item->[0].*\$/$item->[1]/e}
1772              or die $@ ;#. qq{\$title =~ s/^.*$item->[0].*\$/$item->[1]/e};
1773            last;
1774          }
1775        }
1776        my $euri = main::escape ($uri);
1777        if ($title) {
1778          $r .= qq(<li>[$list{$uri}] <a href="$euri" title="URI: &lt;$euri>">@{[main::escape ($title)]}</a></li>\n);
1779        } else {
1780          $r .= qq(<li>[$list{$uri}] &lt;<a href="$euri">$euri</a>&gt;</li>\n);
1781        }
1782      }
1783      $r ? qq(<ul>$r</ul>\n) : '';
1784    }
1785    
1786    sub __decode ($) {
1787      my $s = shift;
1788      $s =~ tr/+/ /;
1789      $s =~ s/%([0-9A-Fa-f][0-9A-Fa-f])/chr hex $1/ge;
1790      main::code_convert (\$s);
1791    }
1792    
1793    package wiki::useragent;
1794    
1795    sub add ($) {
1796      my $s = shift;
1797      return unless length $s;
1798      $s =~ s/([\x00-\x08\x0A-\x1F\x25\x7F-\xFF])/sprintf '%%%02X', unpack 'C', $1/g;
1799      my %ua;
1800      for (split /\n/, &main::__get_database('WikiUserAgentList')) {
1801        if (/^-\[(\d+)\] (.+)$/) {
1802          my ($t, $n) = ($1, $2);
1803          $n =~ tr/\x0A\x0D//d;
1804          $ua{$n} = $t;
1805        }
1806      }
1807      $ua{$s}++;
1808      my $s = qq(#?SuikaWiki/0.9\n);
1809      for (sort {$ua{$a} <=> $ua{$b}} keys %ua) {
1810        $s .= sprintf qq(-[%d] %s\n), $ua{$_}, $_;
1811      }
1812      &main::__set_database ('WikiUserAgentList' => $s);
1813    }
1814    
1815    package SuikaWiki::Plugin;
1816      our $plugin_directory;  # defined in top of this file.
1817      our %List;
1818    
1819    sub escape ($$) { main::escape ($_[1]) }
1820    sub unescape ($$) { main::unescape ($_[1]) }
1821    sub encode ($$) { main::encode ($_[1]) }
1822    sub decode ($$) { main::decode ($_[1]) }
1823    sub __get_datetime ($) { main::get_now () }
1824    
1825    sub regist ($@) {
1826        my $pack = shift;
1827        for (@_) {
1828            push @{$List{$_}}, $pack;
1829        }
1830    }
1831    
1832    sub import_plugins () {
1833        opendir PDIR, $plugin_directory;
1834        my @plugin = grep {s/\.pm$//} readdir (PDIR);
1835        closedir PDIR;
1836        for (@plugin) {
1837            eval qq{ use SuikaWiki::Plugin::$_ } unless /[^A-Za-z0-9_]/;
1838            push @{$List{_all}}, qq(SuikaWiki::Plugin::$_);
1839        }
1840    }
1841    
1842    sub make_info_page () {
1843        my $r = <<EOH;
1844    EOH
1845        unless ($List{_all}) {
1846            $r .= qq('''No plugin is installed!'''\n);
1847        } else {
1848            my $index = 0;
1849            for my $package (sort @{$List{_all}}) {
1850                $index++;
1851                my $prop = $package->property ();
1852                $r .= <<EOH;
1853    *$package
1854    
1855    [$index] '''$prop->{name}''' (Version $prop->{version})
1856    <$prop->{uri}>
1857    
1858    Provide:
1859    @{[do{my $t = ''; for my $f (@{$prop->{provide}||[]}) {
1860        $t .= qq(-''$f''\n);
1861        for (sort grep m#^\Q$f\E/#, keys %{$prop->{partinfo}}) {
1862             $t .= qq(--''$_'' -- $prop->{partinfo}->{$_}\n);
1863        }
1864    }$t}]}
1865    
1866    EOH
1867            }
1868        }
1869        $r;
1870    }
1871    
1872    &import_plugins ();
1873    
1874    package main;
1875    &main;
1876    exit 0;
1877    
1878    1;
1879    __END__
1880    =head1 NAME
1881    
1882    wiki.cgi - This is YukiWiki, yet another Wiki clone.
1883    
1884    =head1 DESCRIPTION
1885    
1886    YukiWiki is yet another Wiki clone.
1887    
1888    YukiWiki can treat Japanese WikiNames (enclosed with [[ and ]]).
1889    YukiWiki provides 'InterWiki' feature, RDF Site Summary (RSS),
1890    and some embedded commands (such as [[#comment]] to add comments).
1891    
1892    Read F<readme_en.txt> (English) or F<readme_ja.txt> (Japanese) in more detail.
1893    
1894    =head1 AUTHOR
1895    
1896    Hiroshi Yuki <hyuki@hyuki.com> http://www.hyuki.com/yukiwiki/
1897    
1898    =head1 LICENSE
1899    
1900    Copyright (C) 2000-2002 by Hiroshi Yuki.
1901    
1902    This program is free software; you can redistribute it and/or
1903    modify it under the same terms as Perl itself.
1904    
1905    =cut

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.35

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24