1 |
#!/usr/bin/perl |
#!/usr/bin/perl |
|
#!perl |
|
2 |
# |
# |
3 |
# wiki.cgi - This is YukiWiki, yet another Wiki clone. |
# wiki.cgi - This is YukiWiki, yet another Wiki clone. |
4 |
# |
# |
9 |
# This program is free software; you can redistribute it and/or |
# This program is free software; you can redistribute it and/or |
10 |
# modify it under the same terms as Perl itself. |
# modify it under the same terms as Perl itself. |
11 |
# |
# |
|
############################## |
|
|
# |
|
12 |
# walwiki.cgi based on yukiwiki.cgi - Yet another WikiWikiWeb clone. |
# walwiki.cgi based on yukiwiki.cgi - Yet another WikiWikiWeb clone. |
|
# |
|
|
# WalWikiの現バージョンは、YukiWiki 2.0.beta1をベースにしています。 |
|
|
# |
|
|
# * 更新内容 |
|
|
# |
|
|
# 2.0.beta1.wal.1 on 2002/05/19,22:32:19 |
|
|
# (1) Footerの変更 |
|
|
# (2) WikiNameの拡張 : PerlCEも包含、PPMInstallは含まない |
|
|
# (3) 別名リンク([別名 URL])に対応。 |
|
|
# (4) ISBNをアマゾン.jpのAsociateプログラムリンクに変換。 |
|
|
# (5) [[#box:InterWikiName]]でInterWikiなテキストボックス生成 |
|
|
# (6) HTMLモード対応。 |
|
|
# |
|
|
# 旧2.0.alpha0.wal.3版までの修正の内、以下に変更があります。 |
|
|
# ・以下はYukiWiki2に実装されたため、独自コードはなくなりました。 |
|
|
# - インラインの画像変換 |
|
|
# - YukiWikiDB対応 |
|
|
# - テーブル |
|
|
# - DB関連モジュールuseのeval化 |
|
|
# - BracketNameによるキーからブラケットを排除 |
|
|
# ・ISBN番号への対応はWalWiki2.0より、InterWikiへのAdd-Onになりました。 |
|
|
# [[ISBN http://www.amazon.co.jp/exec/obidos/ASIN/isbn($1)/walrdigi-22]]のように登録。 |
|
|
# |
|
|
#======================================= |
|
13 |
|
|
14 |
# Walrus add (debug) start |
# Walrus add (debug) start |
15 |
my $walrus_log; |
my $walrus_log; |
26 |
use Yuki::YukiWikiDB; |
use Yuki::YukiWikiDB; |
27 |
use AnyDBM_File; |
use AnyDBM_File; |
28 |
require 'jcode.pl'; |
require 'jcode.pl'; |
29 |
# use Jcode; |
require Jcode; |
30 |
use Fcntl; |
use Fcntl; |
31 |
my $version = '2.0.beta1.2002-05-29'; |
my $version = '2.0.beta1.2002-05-29'; |
32 |
my $walversion; |
my $walversion; |
43 |
# my $modifier_sendmail = '/usr/sbin/sendmail -t -n'; # Your sendmail. |
# my $modifier_sendmail = '/usr/sbin/sendmail -t -n'; # Your sendmail. |
44 |
my $modifier_sendmail = ''; # If you don't need mail notification. |
my $modifier_sendmail = ''; # If you don't need mail notification. |
45 |
my $modifier_dir_data = './wikidata'; # Your data directory. |
my $modifier_dir_data = './wikidata'; # Your data directory. |
46 |
my $modifier_rss_title = "WalWiki $walversion"; |
my $modifier_rss_title = "SuikaWiki $walversion"; |
47 |
my $modifier_rss_link = 'http://suika.fam.cx/~wakaba/-temp/wiki2/wiki'; # Blank is not allowed. |
my $modifier_rss_link = 'http://suika.fam.cx/~wakaba/-temp/wiki2/wiki'; # Blank is not allowed. |
48 |
my $modifier_rss_description = 'This is WalWiki, yet another Wiki clone based on YukiWiki'; |
my $modifier_rss_description = 'This is SuikaWiki'; |
49 |
############################## |
############################## |
50 |
# |
# |
51 |
# You MAY modify following variables. |
# You MAY modify following variables. |
52 |
# |
# |
53 |
|
$SuikaWiki::Plugin::plugin_directory = q(./SuikaWiki/Plugin/); |
54 |
my $file_touch = "$modifier_dir_data/touched.txt"; |
my $file_touch = "$modifier_dir_data/touched.txt"; |
55 |
my $file_resource = "$modifier_dir_data/resource.txt"; |
my $file_resource = "$modifier_dir_data/resource.txt"; |
56 |
my $file_FrontPage = "$modifier_dir_data/frontpage.txt"; |
my $file_FrontPage = "$modifier_dir_data/frontpage.txt"; |
57 |
my $file_conflict = "$modifier_dir_data/conflict.txt"; |
my $file_conflict = "$modifier_dir_data/conflict.txt"; |
58 |
my $file_format = "$modifier_dir_data/format.txt"; |
my $file_format = "$modifier_dir_data/format.txt"; |
59 |
my $url_cgi = 'wiki'; |
my $url_cgi = '/~wakaba/-temp/wiki/wiki'; ## MUST be started from '/' |
60 |
my $url_stylesheet = 'wiki-style.css'; |
my $url_stylesheet = $url_cgi.'?mycmd=TEXT_CSS;mypage=WikiHTMLStyle'; |
61 |
my $icontag = '<img src="/icons/folder" alt="*" width="40" height="40" />'; |
my $icontag = '<img src="/icons/folder" alt="*" width="40" height="40" />'; |
62 |
my $maxrecent = 50; |
my $maxrecent = 50; |
63 |
my $cols = 80; |
my $cols = 80; |
84 |
my $CreatePage = 'CreatePage'; |
my $CreatePage = 'CreatePage'; |
85 |
my $ErrorPage = 'ErrorPage'; |
my $ErrorPage = 'ErrorPage'; |
86 |
my $RssPage = 'RssPage'; |
my $RssPage = 'RssPage'; |
87 |
|
my $NAME_OF_WikiPageLicense = 'WikiPageLicense'; |
88 |
my $AdminSpecialPage = 'Admin Special Page'; # must include spaces. |
my $AdminSpecialPage = 'Admin Special Page'; # must include spaces. |
89 |
############################## |
############################## |
|
# my $wiki_name = '\b([A-Z][a-z]+([A-Z][a-z]+)+)\b'; # Walrus del (2) |
|
|
my $wiki_name = '\b([A-Z][a-z]+([A-Z][a-z]*)+)\b'; # Walrus add (2) |
|
90 |
my $bracket_name = '\[\[(\S+?)\]\]'; |
my $bracket_name = '\[\[(\S+?)\]\]'; |
91 |
my $embedded_name = '\[\[(#\S+?)\]\]'; |
my $embedded_name = '\[\[(#\S+?)\]\]'; |
92 |
my $interwiki_definition = '\[\[(\S+?)\ (\S+?)\]\]'; |
my %fmt; ## formatter objects |
|
my $interwiki_name = '([^:]+):i:([^:].*)'; |
|
93 |
############################## |
############################## |
94 |
my $embed_comment = '[[#comment]]'; |
my $embed_comment = '[[#comment]]'; |
95 |
my $embed_rcomment = '[[#rcomment]]'; |
my $embed_rcomment = '[[#rcomment]]'; |
96 |
|
my $embed_comment_Name_Prompt = '名前:'; |
97 |
|
my $DEFAULT_embed_comment_name = '名無しさん'; |
98 |
my $embed_interwiki = '^\[\[#(box|text|password):(\S+)\]\]$'; # Walrus add (5) |
my $embed_interwiki = '^\[\[#(box|text|password):(\S+)\]\]$'; # Walrus add (5) |
99 |
my %embed_command = ( |
my %embed_command = ( |
100 |
searched => '^\[\[#searched:([^\]]+)\]\]$', |
searched => '^\[\[#searched:([^\]]+)\]\]$', |
101 |
|
form => qw/\[\[\#form(?:\(([A-Za-z0-9-]+)\))?:'((?:[^'\\]|\\.)*)':'((?:[^'\\]|\\.)*)'(?::'((?:[^'\\]|\\.)*)')?\]\]/, |
102 |
); |
); |
103 |
############################## |
############################## |
104 |
my $info_LastModified = 'LastModified'; |
my $info_LastModified = 'LastModified'; |
118 |
$AdminChangePassword => 1, |
$AdminChangePassword => 1, |
119 |
$CompletedSuccessfully => 1, |
$CompletedSuccessfully => 1, |
120 |
#$FrontPage => 1, |
#$FrontPage => 1, |
121 |
|
WikiUserAgentList => 1, |
122 |
|
WikiPluginInfo => 1, |
123 |
); |
); |
124 |
my %form; |
my %form; |
125 |
my %database; |
my %database; |
135 |
$RssPage => 'rss', |
$RssPage => 'rss', |
136 |
$AdminChangePassword => 'adminchangepasswordform', |
$AdminChangePassword => 'adminchangepasswordform', |
137 |
#$FrontPage => 'FrontPage', |
#$FrontPage => 'FrontPage', |
138 |
|
WikiPluginInfo => 'x_WikiPluginInfo', |
139 |
); |
); |
140 |
my %command_do = ( |
my %command_do = ( |
141 |
read => \&do_read, |
read => \&do_read, |
142 |
|
TEXT_CSS => \&do_output_css, |
143 |
edit => \&do_edit, |
edit => \&do_edit, |
144 |
adminedit => \&do_adminedit, |
adminedit => \&do_adminedit, |
145 |
adminchangepasswordform => \&do_adminchangepasswordform, |
adminchangepasswordform => \&do_adminchangepasswordform, |
152 |
createresult => \&do_createresult, |
createresult => \&do_createresult, |
153 |
FrontPage => \&do_FrontPage, |
FrontPage => \&do_FrontPage, |
154 |
comment => \&do_comment, |
comment => \&do_comment, |
155 |
|
RandomJump => \&do_random_jump, |
156 |
rss => \&do_rss, |
rss => \&do_rss, |
157 |
diff => \&do_diff, |
diff => \&do_diff, |
158 |
interwikibox => \&do_interwiki_box, # Walrus add (5) |
interwikibox => \&do_interwiki_box, # Walrus add (5) |
159 |
|
wikiform => \&do_wikiform, |
160 |
|
x_WikiPluginInfo => \&do_wikiplugininfo, |
161 |
); |
); |
162 |
############################## |
############################## |
|
my @ignore_html_page = ('FrontPage'); # Walrus add (6) |
|
|
my @ignore_html_tags = ('a', 'br', 'img'); # Walrus add (6) |
|
163 |
my $walversion = '2.0.beta1.wal.1'; # Walrus add (1) |
my $walversion = '2.0.beta1.wal.1'; # Walrus add (1) |
164 |
############################## |
############################## |
165 |
# &test_convert; |
# &test_convert; |
166 |
&main; |
my $UA = ''; ## User agent name |
|
exit(0); |
|
167 |
############################## |
############################## |
168 |
|
|
169 |
sub main { |
sub main { |
170 |
|
$UA = $main::ENV{HTTP_USER_AGENT}; |
171 |
&init_resource; |
&init_resource; |
172 |
&open_db; |
&open_db; |
173 |
&init_form; |
&init_form; |
181 |
} |
} |
182 |
|
|
183 |
sub do_read { |
sub do_read { |
184 |
&print_header($form{mypage}); |
my $content = $database{$form{mypage}}; |
185 |
&print_content($database{$form{mypage}}); |
my $lm = &get_info($form{mypage}, $info_LastModified); |
186 |
my ($r, $c) = get_search_result ($form{mypage}); |
wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER}); |
187 |
|
wiki::useragent::add ($ENV{HTTP_USER_AGENT}); |
188 |
|
my ($r, $c) = get_search_result ($form{mypage}); |
189 |
|
my $rl = wiki::referer::list_html ($form{mypage}); |
190 |
|
my @toc; |
191 |
|
push @toc, qq(-<a href="#wikipage-see-also">See Also</a>) if $c; |
192 |
|
push @toc, qq(-<a href="#wikipage-referer">参照元</a>) if $rl; |
193 |
|
my $cf = 'SuikaWiki/0.9'; |
194 |
|
## Should be support at least: |
195 |
|
## - 'SuikaWiki/0.9' CRLF |
196 |
|
## - '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 |
|
if ($cf =~ m!^(?:\#\?)?SuikaWiki/0.9(?:$|\s)!) { |
200 |
|
&print_header ($form{mypage}, -last_modified => $lm, |
201 |
|
-content_format => $cf, -noindex => $cf =~ /obsoleted="yes"/); |
202 |
|
&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 |
|
} else { |
206 |
|
&print_header($form{mypage}, -last_modified => $lm); |
207 |
|
print "<pre>@{[&escape($content)]}</pre>"; |
208 |
|
} |
209 |
if ($c) { |
if ($c) { |
210 |
print q{<h2>See also</h2>}; |
print qq{<h2 @{[&id_and_name('wikipage-see-also')]}>See also</h2>}; |
211 |
print $r; |
print $r; |
212 |
} |
} |
213 |
&print_footer($form{mypage}); |
if ($rl) { |
214 |
|
print qq(<div @{[&id_and_name('wikipage-referer')]}><h2>参照元</h2>\n$rl</div>\n); |
215 |
|
} |
216 |
|
&print_footer($form{mypage}, $lm); |
217 |
|
} |
218 |
|
|
219 |
|
sub do_output_css { |
220 |
|
wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER}); |
221 |
|
wiki::useragent::add ($ENV{HTTP_USER_AGENT}); |
222 |
|
my $content = $database{$form{mypage}}; |
223 |
|
if ($content =~ m#^\s*/\*\s*W3C-CSS#) { |
224 |
|
my $lm = &get_info($form{mypage}, $info_LastModified); |
225 |
|
print scalar make_navigate_links ($form{mypage}); |
226 |
|
print "Content-Type: text/css; charset=$charset\n"; |
227 |
|
print "Last-Modified: $lm\n"; |
228 |
|
print "\n"; |
229 |
|
print $content; |
230 |
|
} else { |
231 |
|
print "Status: 406 Unsupported Media Type\n"; |
232 |
|
&print_header('WikiPageIsNotCSS', -noindex => 1); |
233 |
|
&print_content($database{WikiPageIsNotCSS}); |
234 |
|
&print_footer('WikiPageIsNotCSS'); |
235 |
|
} |
236 |
|
} |
237 |
|
|
238 |
|
sub id_and_name ($) { |
239 |
|
my $name = shift; |
240 |
|
if ($UA =~ m#Mozilla/[12]\.|Microsoft Internet Explorer#) { |
241 |
|
qq{id="$name"><a name="$name"></a}; |
242 |
|
} else { |
243 |
|
qq{id="$name"}; |
244 |
|
} |
245 |
} |
} |
246 |
|
|
247 |
sub do_edit { |
sub do_edit { |
248 |
my ($page) = &unarmor_name(&armor_name($form{mypage})); |
my ($page) = &unarmor_name(&armor_name($form{mypage})); |
249 |
&print_header($page); |
&print_header($page, -noindex => 1); |
250 |
if (not &is_editable($page)) { |
if (not &is_editable($page)) { |
251 |
&print_message($resource{cantchange}); |
&print_message($resource{cantchange}); |
252 |
} elsif (&is_frozen($page)) { |
} elsif (&is_frozen($page)) { |
254 |
} else { |
} else { |
255 |
&print_editform($database{$page}, &get_info($page, $info_LastModified), admin=>0); |
&print_editform($database{$page}, &get_info($page, $info_LastModified), admin=>0); |
256 |
} |
} |
257 |
|
wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER}); |
258 |
|
wiki::useragent::add ($ENV{HTTP_USER_AGENT}); |
259 |
|
my ($r, $c) = get_search_result ($form{mypage}); |
260 |
|
my $rl = wiki::referer::list_html ($form{mypage}); |
261 |
|
if ($c) { |
262 |
|
print q{<h2 id="wikipage-see-also">See also</h2>}; |
263 |
|
print $r; |
264 |
|
} |
265 |
|
if ($rl) { |
266 |
|
print qq(<div id="wikipage-referer"><h2>参照元</h2>\n$rl</div>\n); |
267 |
|
} |
268 |
&print_footer($page); |
&print_footer($page); |
269 |
} |
} |
270 |
|
|
271 |
sub do_adminedit { |
sub do_adminedit { |
272 |
my ($page) = &unarmor_name(&armor_name($form{mypage})); |
my ($page) = &unarmor_name(&armor_name($form{mypage})); |
273 |
&print_header($page); |
&print_header($page, -noindex => 1); |
274 |
if (not &is_editable($page)) { |
if (not &is_editable($page)) { |
275 |
&print_message($resource{cantchange}); |
&print_message($resource{cantchange}); |
276 |
} else { |
} else { |
281 |
} |
} |
282 |
|
|
283 |
sub do_adminchangepasswordform { |
sub do_adminchangepasswordform { |
284 |
&print_header($AdminChangePassword); |
&print_header($AdminChangePassword, -noindex => 1); |
285 |
&print_passwordform; |
&print_passwordform; |
286 |
&print_footer($AdminChangePassword); |
&print_footer($AdminChangePassword); |
287 |
} |
} |
308 |
my $crypted = crypt($form{mynewpassword}, "$salt1$salt2"); |
my $crypted = crypt($form{mynewpassword}, "$salt1$salt2"); |
309 |
&set_info($AdminSpecialPage, $info_AdminPassword, $crypted); |
&set_info($AdminSpecialPage, $info_AdminPassword, $crypted); |
310 |
|
|
311 |
&print_header($CompletedSuccessfully); |
&print_header($CompletedSuccessfully, -noindex => 1); |
312 |
&print_message($resource{passwordchanged}); |
&print_message($resource{passwordchanged}); |
313 |
&print_footer($CompletedSuccessfully); |
&print_footer($CompletedSuccessfully); |
314 |
} |
} |
315 |
|
|
316 |
sub do_index { |
sub do_index { |
317 |
|
wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER}); |
318 |
|
wiki::useragent::add ($ENV{HTTP_USER_AGENT}); |
319 |
&print_header($IndexPage); |
&print_header($IndexPage); |
320 |
print qq(<ul>); |
print qq(<ul>); |
321 |
foreach my $page (sort keys %database) { |
foreach my $page (sort keys %database) { |
322 |
if (&is_editable($page)) { |
if (&is_editable($page)) { |
323 |
print qq(<li><a href="$url_cgi?@{[&encode($page)]}">$page</a>@{[&escape(&get_subjectline($page))]}</li>); |
print qq(<li><a href="$url_cgi?@{[&encode($page)]}">@{[&escape($page)]}</a>@{[&escape(&get_subjectline($page))]}</li>); |
324 |
# print qq(<li>@{[&get_info($page, $info_IsFrozen)]}</li>); |
# print qq(<li>@{[&get_info($page, $info_IsFrozen)]}</li>); |
325 |
# print qq(<li>@{[0 + &is_frozen($page)]}</li>); |
# print qq(<li>@{[0 + &is_frozen($page)]}</li>); |
326 |
} |
} |
327 |
} |
} |
328 |
print qq(</ul>); |
print qq(</ul>); |
329 |
|
my ($r, $c) = get_search_result ($form{mypage}); |
330 |
|
if ($c) { |
331 |
|
print qq{<h2 @{[&id_and_name('wikipage-see-also')]}>See also</h2>}; |
332 |
|
print $r; |
333 |
|
} |
334 |
|
my $rl = wiki::referer::list_html ($form{mypage}); |
335 |
|
if ($rl) { |
336 |
|
print qq(<div @{[&id_and_name('wikipage-referer')]}><h2>??????</h2>\n$rl</div>\n); |
337 |
|
} |
338 |
&print_footer($IndexPage); |
&print_footer($IndexPage); |
339 |
} |
} |
340 |
|
|
344 |
} |
} |
345 |
|
|
346 |
if (not &is_editable($form{mypage})) { |
if (not &is_editable($form{mypage})) { |
347 |
&print_header($form{mypage}); |
&print_header($form{mypage}, -noindex => 1); |
348 |
&print_message($resource{cantchange}); |
&print_message($resource{cantchange}); |
349 |
&print_footer($form{mypage}); |
&print_footer($form{mypage}); |
350 |
return; |
return; |
371 |
&update_recent_changes; |
&update_recent_changes; |
372 |
} |
} |
373 |
&set_info($form{mypage}, $info_IsFrozen, 0 + $form{myfrozen}); |
&set_info($form{mypage}, $info_IsFrozen, 0 + $form{myfrozen}); |
374 |
&print_header($CompletedSuccessfully, -goto => $url_cgi.'?'.&encode($form{mypage})); |
my $fragment = ''; |
375 |
|
$fragment .= qq(;after_edit_cmd=@{[&encode($form{after_edit_cmd})]}) if $form{after_edit_cmd}; |
376 |
|
if ($form{__comment_anchor_index}) { |
377 |
|
$fragment .= qq(#anchor-$form{__comment_anchor_index}); |
378 |
|
} elsif ($form{__wikiform_anchor_index}) { |
379 |
|
$fragment .= qq(#wikiform-$form{__wikiform_anchor_index}); |
380 |
|
} |
381 |
|
&print_header($CompletedSuccessfully, -noindex => 1, -goto => $url_cgi.'?mycmd='.&encode($form{after_edit_cmd}||'read').';mypage='.&encode($form{mypage}).qq(;x-param=@{[time.[0..9]->[rand 10]]}$fragment)); |
382 |
&print_message($resource{saved}); |
&print_message($resource{saved}); |
383 |
&print_content("$resource{continuereading} @{[&armor_name($form{mypage})]}"); |
&print_content("$resource{continuereading} @{[&armor_name($form{mypage})]}"); |
384 |
&print_footer($CompletedSuccessfully); |
&print_footer($CompletedSuccessfully); |
389 |
if ($form{mytouch}) { |
if ($form{mytouch}) { |
390 |
&update_recent_changes; |
&update_recent_changes; |
391 |
} |
} |
392 |
&print_header($form{mypage}); |
&print_header($form{mypage}, -noindex => 1); |
393 |
&print_message($resource{deleted}); |
&print_message($resource{deleted}); |
394 |
&print_footer($form{mypage}); |
&print_footer($form{mypage}); |
395 |
} |
} |
405 |
my $word = $form{mymsg}; |
my $word = $form{mymsg}; |
406 |
&print_header($SearchPage); |
&print_header($SearchPage); |
407 |
&print_searchform(&escape($word)); |
&print_searchform(&escape($word)); |
408 |
print get_search_result ($word, -output_not_found => 1); |
print scalar get_search_result ($word, -output_not_found => 1, -match_myself => 1); |
409 |
&print_footer($SearchPage); |
&print_footer($SearchPage); |
410 |
} |
} |
411 |
|
|
412 |
sub get_search_result ($;%) { |
sub get_search_result ($;%) { |
413 |
my $word = shift; |
my $word = lc shift; |
414 |
my %option = @_; |
my %option = @_; |
415 |
my $counter = 0; |
my @r; |
416 |
my $r = ''; |
foreach my $page (keys %database) { |
417 |
foreach my $page (sort keys %database) { |
next if $page eq $RecentChanges || ($page eq $word && !$option{-match_myself}); |
418 |
next if $page eq $RecentChanges; |
my $content = $database{$page}; |
419 |
if ( index ($database{$page}, $word) > 0 |
my $cf = 'SuikaWiki/0.9'; |
420 |
|| index ($page, $word) > 0 |
$cf = $1 if $content =~ s/^\#\?([^\x0A\x0D]+)//s; |
421 |
|| index ($word, $page) > 0 |
next if $cf =~ /obsoleted="yes"/; |
422 |
) { |
if (index (lc $page, $word) > -1) { |
423 |
$r .= qq(<li><a href ="$url_cgi?@{[&encode($page)]}">$page</a>@{[&escape(&get_subjectline($page))]}</li>); |
my $c = $content =~ s/\Q$word\E//gi; |
424 |
$counter++; |
push @r, [$page, $c+20]; |
425 |
|
} elsif (index ($word, lc $page) > -1) { |
426 |
|
my $c = $content =~ s/\Q$word\E//gi; |
427 |
|
push @r, [$page, $c+10]; |
428 |
|
} elsif (my $c = $content =~ s/\Q$word\E//gi) { |
429 |
|
push @r, [$page, $c]; |
430 |
} |
} |
431 |
} |
} |
432 |
$r = qq|<ul>$r</ul>| if $r; |
my $em = sub { my $s = shift; $s =~ s#(\Q$word\E)#<em>$1</em>#gi; $s }; |
433 |
get_message ($resource{notfound}) |
my $r = join "\n", map {qq(<li>[$_->[1]] <a href ="$url_cgi?@{[&encode($_->[0])]}" class="wiki">@{[&$em(&escape($_->[0]))]}</a> <span class="wikipage-summary">@{[&$em(&escape(&get_subjectline($_->[0])))]}</span></li>)} sort {$b->[1] <=> $a->[1] || $a->[0] cmp $b->[0]} @r; |
434 |
if $counter == 0 && $option{-output_not_found}; |
$r = qq|<ul class="search-result">$r</ul>| if $r; |
435 |
wantarray? ($r, $counter): $r; |
get_message ($resource{notfound}) if @r == 0 && $option{-output_not_found}; |
436 |
|
wantarray? ($r, scalar @r): $r; |
437 |
} |
} |
438 |
|
|
439 |
sub do_create { |
sub do_create { |
449 |
&print_footer($CreatePage); |
&print_footer($CreatePage); |
450 |
} |
} |
451 |
|
|
452 |
|
sub do_random_jump { |
453 |
|
my @list = keys %database; |
454 |
|
my $name = &encode ($list[rand @list]); |
455 |
|
my ($scheme) = 'http'; |
456 |
|
$scheme = $1 if $main::ENV{SERVER_PROTOCOL} =~ m#([A-Za-z0-9+.%-]+)#; |
457 |
|
print "Location: $scheme://$main::ENV{SERVER_NAME}:$main::ENV{SERVER_PORT}$url_cgi?$name\n"; |
458 |
|
print "\n"; |
459 |
|
} |
460 |
|
|
461 |
sub do_FrontPage { |
sub do_FrontPage { |
462 |
open(FILE, $file_FrontPage) or &print_error("($file_FrontPage)"); |
open(FILE, $file_FrontPage) or &print_error("($file_FrontPage)"); |
463 |
my $content = join('', <FILE>); |
my $content = join('', <FILE>); |
470 |
|
|
471 |
sub print_error { |
sub print_error { |
472 |
my ($msg) = @_; |
my ($msg) = @_; |
473 |
&print_header($ErrorPage); |
&print_header($ErrorPage, -noindex => 1); |
474 |
print qq(<p><strong class="error">$msg</strong></p>); |
print qq(<p><strong class="error">$msg</strong></p>); |
475 |
&print_footer($ErrorPage); |
&print_footer($ErrorPage); |
476 |
exit(0); |
exit(0); |
477 |
} |
} |
478 |
|
|
479 |
sub print_header { |
sub print_header ($;%) { |
480 |
my ($page,%option) = @_; |
my ($page, %option) = @_; |
481 |
my $bodyclass = "normal"; |
my $bodyclass = "normal"; |
482 |
if (&is_frozen($page) and $form{mycmd} =~ /^(read|write)$/) { |
if (&is_frozen($page) and $form{mycmd} =~ /^(read|write)$/) { |
483 |
$bodyclass = "frozen"; |
$bodyclass = "frozen"; |
484 |
} |
} |
485 |
|
$bodyclass .= " wiki-page-obsoleted" if $option{-content_format} =~ /obsoleted="yes"/; |
486 |
if ($option{-goto}) { |
if ($option{-goto}) { |
487 |
print qq{Refresh: 0; url="$option{-goto}"\n}; |
if ($UA =~ m#Opera|MSIE 2\.#) { |
488 |
|
$option{-goto} =~ tr/;/&/ if $UA =~ m#Opera#; |
489 |
|
print qq{Refresh: 0; url=$option{-goto}\n}; |
490 |
|
$option{-goto} = qq(<meta http-equiv="refresh" content="0; url=$option{-goto}">); |
491 |
|
} else { |
492 |
|
$option{-goto} =~ tr/;/&/ if $UA =~ m#Mozilla/[1-4]\.#; |
493 |
|
print qq{Refresh: 0; url="$option{-goto}"\n}; |
494 |
|
$option{-goto} = qq(<meta http-equiv="refresh" content="0; url="@{[&escape($option{-goto})]}"">); |
495 |
|
} |
496 |
|
} |
497 |
|
print qq{Last-Modified: $option{-last_modified}\n} if $option{-last_modified}; |
498 |
|
my $meta_ct = ''; |
499 |
|
if ($UA =~ m#Mozilla/2#) { |
500 |
|
$meta_ct = qq{text/html; charset=@{[&x_charset($charset)]}}; |
501 |
|
print qq{Content-Type: $meta_ct\n}; |
502 |
|
$meta_ct = qq{<meta http-equiv="content-type" content="$meta_ct">}; |
503 |
|
} elsif ($UA =~ m#Infomosaic#) { |
504 |
|
print qq{Content-Type: text/html\n}; |
505 |
|
} else { |
506 |
|
print qq{Content-Type: text/html; charset=$charset\n}; |
507 |
} |
} |
508 |
my $cookedpage = &encode($page); |
my $cookedpage = &encode($page); |
509 |
|
my $escapedpage = &escape($page); |
510 |
|
my ($Links, $links) = &make_navigate_links ($page); |
511 |
|
print $Links; |
512 |
print <<"EOD"; |
print <<"EOD"; |
|
Content-type: text/html; charset=$charset |
|
513 |
Content-Language: $lang |
Content-Language: $lang |
514 |
Content-Style-Type: text/css |
Content-Style-Type: text/css |
515 |
|
|
516 |
|
<!-- |
517 |
<!DOCTYPE html |
<!DOCTYPE html |
518 |
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
519 |
"http://www.w3.org/TR/html4/loose.dtd"> |
"http://www.w3.org/TR/html4/loose.dtd"> + RUBY --> |
520 |
<html lang="$lang"> |
<html lang="$lang"> |
521 |
<head> |
<head profile="http://suika.fam.cx/~wakaba/-temp/wiki/wiki?WikiHTMLMetaProfile"> |
522 |
<title>$page @{[&escape(&get_subjectline($page))]}</title> |
$meta_ct$option{-goto} |
523 |
<link rel="index" href="$url_cgi?$IndexPage"> |
<title>$escapedpage</title> |
524 |
<link rev="made" href="mailto:$modifier_mail"> |
@{[($UA !~ m#Mozilla/[1-4]\.# || $UA =~ m#MSIE (?:[4-9]\.|\d\d)#) ? qq(<link rel="stylesheet" type="text/css" href="@{[&escape($url_stylesheet)]}">) : '']} |
525 |
<link rel="stylesheet" type="text/css" href="$url_stylesheet"> |
@{[$option{-noindex} ? q(<meta name="ROBOTS" content="NOINDEX">) : '']} |
526 |
|
$links |
527 |
</head> |
</head> |
528 |
<body class="$bodyclass"> |
<body class="$bodyclass"> |
529 |
EOD |
EOD |
530 |
&print_navigate_links ($page); |
&print_navigate_links ($page); |
531 |
print <<EOD; |
print <<EOD; |
532 |
<h1 class="header"><a |
<h1 class="header">@{[&escape($page)]}</h1> |
|
title="$resource{searchthispage}" |
|
|
href="$url_cgi?mycmd=search;mymsg=$cookedpage">$page</a>@{[&escape(&get_subjectline($page))]}</h1> |
|
533 |
EOD |
EOD |
534 |
} |
} |
535 |
|
|
536 |
|
sub x_charset ($) { |
537 |
|
my $charset = lc shift; |
538 |
|
if ($charset eq 'euc-jp') { |
539 |
|
$charset = 'x-euc-jp'; |
540 |
|
} elsif ($charset eq 'shift_jis') { |
541 |
|
$charset = 'x-sjis'; |
542 |
|
} |
543 |
|
$charset; |
544 |
|
} |
545 |
|
|
546 |
sub print_navigate_links (@) { |
sub print_navigate_links (@) { |
547 |
my ($page) = @_; |
my ($page) = @_; |
548 |
my $editable = 0; |
my $editable = 0; |
549 |
my $admineditable = 0; |
my $admineditable = 0; |
550 |
if (&is_frozen($page) and $form{mycmd} =~ /^(read|write)$/) { |
if (&is_frozen($page) and $form{mycmd} =~ /^(read|write)$/) { |
551 |
$editable = 0; |
$editable = 0; |
552 |
$admineditable = 1; |
#$admineditable = 1; |
553 |
} elsif (&is_editable($page) and $form{mycmd} =~ /^(read|write)$/) { |
} elsif (&is_editable($page) and $form{mycmd} =~ /^(read|write)$/) { |
554 |
$admineditable = 1; |
#$admineditable = 1; |
555 |
$editable = 1; |
$editable = 1; |
556 |
} else { |
} else { |
557 |
$editable = 0; |
$editable = 0; |
560 |
print <<EOH; |
print <<EOH; |
561 |
<div class="tools"> |
<div class="tools"> |
562 |
@{[ $admineditable |
@{[ $admineditable |
563 |
? qq(<a title="$resource{admineditthispage}" href="$url_cgi?mycmd=adminedit;mypage=$cookedpage">$resource{admineditbutton}</a> | ) |
? qq(<a title="$resource{admineditthispage}" href="$url_cgi?mycmd=adminedit;mypage=$cookedpage" class="wiki-cmd">$resource{admineditbutton}</a> | ) |
564 |
: qq() |
: qq() |
565 |
]} |
]} |
566 |
@{[ $editable |
@{[ $editable |
567 |
? qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedpage" accesskey="E">$resource{editbutton} <kbd>E</kbd></a> | ) |
? #qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedpage" accesskey="E">$resource{editbutton} <kbd>E</kbd></a> | ) |
568 |
|
qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedpage" accesskey="E" class="wiki-cmd">編集</a> | ) |
569 |
: qq() |
: qq() |
570 |
]} |
]} |
571 |
|
<a href="$url_cgi?mycmd=read;mypage=$cookedpage;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki-cmd">表示</a> | |
572 |
@{[ $admineditable |
@{[ $admineditable |
573 |
? qq(<a href="$url_cgi?mycmd=diff;mypage=$cookedpage">$resource{diffbutton}</a> | ) |
? qq(<a href="$url_cgi?mycmd=diff;mypage=$cookedpage" class="wiki-cmd">$resource{diffbutton}</a> | ) |
574 |
: qq() |
: qq() |
575 |
]} |
]} |
576 |
<a href="$url_cgi?$CreatePage">$resource{createbutton}</a> | |
<a href="$url_cgi?$CreatePage" class="wiki">新規</a> | |
577 |
<a href="$url_cgi?$IndexPage">$resource{indexbutton}</a> | |
<a href="$url_cgi?$IndexPage" class="wiki">$resource{indexbutton}</a> | |
578 |
<a href="$url_cgi?$RssPage">$resource{rssbutton}</a> | |
<a href="$url_cgi?$FrontPage" class="wiki">首頁</a> | |
579 |
<a href="$url_cgi?$FrontPage">$FrontPage</a> | |
<a href="$url_cgi?$SearchPage" class="wiki">$resource{searchbutton}</a> | |
580 |
<a href="$url_cgi?$SearchPage">$resource{searchbutton}</a> | |
<a href="$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki randomlink">どこか</a> | |
581 |
<a href="$url_cgi?$RecentChanges">$resource{recentchangesbutton}</a> |
<a href="$url_cgi?$RecentChanges" class="wiki">最新</a> |
582 |
</div> |
</div> |
583 |
EOH |
EOH |
584 |
} |
} |
585 |
|
|
586 |
|
sub make_navigate_links ($) { |
587 |
|
my $page = shift; |
588 |
|
my @link; |
589 |
|
push @link, {rel=>'edit', href=>"$url_cgi?mycmd=edit;mypage=@{[&encode($page)]}", class=>"wiki-command", title=>$resource{editbutton}} if &is_editable ($page) && !&is_frozen ($page); |
590 |
|
push @link, {rel=>'edit', href=>"$url_cgi?mycmd=adminedit;mypage=@{[&encode($page)]}", class=>"wiki-command", title=>$resource{admineditbutton}} if &is_editable ($page) || &is_frozen ($page); |
591 |
|
push @link, {rel=>'view', href=>"$url_cgi?mycmd=read;mypage=@{[&encode($page)]};x-p=@{[time.[0..9]->[rand 10]]}", class=>'wiki-command', title=>'View latest version of this page'}; |
592 |
|
push @link, {rel=>'myself', href=>"$url_cgi?@{[&encode($page)]}", class=>'wiki'}; |
593 |
|
push @link, {rel=>'index', href=>"$url_cgi?$IndexPage", class=>'wiki', title=>$resource{indexbutton}}; |
594 |
|
push @link, {rel=>'home', href=>"$url_cgi?$FrontPage", class=>'wiki', title=>$FrontPage}; |
595 |
|
push @link, {rel=>'News', href=>"$url_cgi?WikiNews", class=>'wiki', title=>'News on this wiki'}; |
596 |
|
push @link, {rel=>'News', href=>"$url_cgi?$RecentChanges", class=>"wiki", title=>$resource{recentchangesbutton}}; |
597 |
|
push @link, {rel=>'News', href=>"$url_cgi?$RssPage", class=>"wiki", title=>$resource{rssbutton}, type=>'application/xml'}; |
598 |
|
push @link, {rel=>'search', href=>"$url_cgi?$SearchPage", class=>'wiki', title=>$resource{searchbutton}}; |
599 |
|
push @link, {rel=>'help', href=>"$url_cgi?WikiHelp", class=>'wiki'}; |
600 |
|
push @link, {rel=>'copyright', href=>"$url_cgi?WikiPageLicense", class=>'wiki'}; |
601 |
|
my ($Links, $links) = ('', ''); |
602 |
|
for my $e (@link) { |
603 |
|
$links .= qq(<link); |
604 |
|
$Links .= qq(Link: <$e->{href}>); |
605 |
|
for my $attr (qw/rel rev href title class type hreflang charset/) { |
606 |
|
$links .= qq( $attr="@{[&escape($e->{$attr})]}") if $e->{$attr}; |
607 |
|
} |
608 |
|
for my $attr (qw/rel rev title/) { |
609 |
|
$Links .= qq(; $attr="@{[do{$e->{$attr} =~ s/([\\\"])/\\$1/g; $e->{$attr}}]}") if $e->{$attr}; |
610 |
|
} |
611 |
|
$links .= qq(>\n); |
612 |
|
$Links .= qq(\n); |
613 |
|
} |
614 |
|
wantarray ? ($Links, $links) : $Links; |
615 |
|
} |
616 |
|
|
617 |
sub print_footer { |
sub print_footer { |
618 |
my ($page) = @_; |
my ($page, $lm) = @_; |
619 |
|
my $epage = &encode ($page); |
620 |
$walrus_log = ($walrus_debugging) ? &text_to_html("----\n$walrus_log") : ''; # Walrus add (debug) |
$walrus_log = ($walrus_debugging) ? &text_to_html("----\n$walrus_log") : ''; # Walrus add (debug) |
621 |
# Walrus mod (1) start |
# Walrus mod (1) start |
622 |
my $cvslog = '$Revision$ $Date$'; |
my $cvslog1 = q$Revision$; |
623 |
|
my $cvslog2 = q$Date$; |
624 |
print_navigate_links ($page); |
print_navigate_links ($page); |
625 |
print <<"EOD"; |
print <<"EOD"; |
626 |
|
@{[ $lm ? qq(<div id="wikipage-last-modified">Last modified: $lm</div>) : '' ]} |
627 |
<div class="footer"> |
<div class="footer"> |
628 |
<p> |
<a href="http://www.hyuki.com/yukiwiki/" title="$version © 2000-2002 by Hiroshi Yuki">YukiWiki</a> <a href="http://digit.que.ne.jp/work/" title="$walversion © 2000-2002 by Makio Tsukamoto">WalWiki</a> |
629 |
<a href="http://digit.que.ne.jp/work/">WalWiki</a> $walversion © 2000-2002 by <a href="http://digit.que.ne.jp/">Makio Tsukamoto</a>.<br /> |
<a href="/gate/cvs/wakaba/wiki/" title="CVS Repository of this script ($cvslog2)">SuikaWiki $cvslog1</a> |
|
based on <a href="http://www.hyuki.com/yukiwiki/">YukiWiki</a> $version © 2000-2002 by <a href="http://www.hyuki.com/">Hiroshi Yuki</a>.<br /> |
|
|
<a href="/gate/cvs/wakaba/wiki/" title="CVS Repository"> |
|
|
$cvslog |
|
|
</a> |
|
|
</p> |
|
630 |
<div class="navigation"> |
<div class="navigation"> |
631 |
[<a href="/" title="このサーバーの首頁">/</a> |
[<a href="/" title="このサーバーの首頁">/</a> |
632 |
<a href="/map" title="このサーバーの案内">地図</a> |
<a href="/map" title="このサーバーの案内">地図</a> |
633 |
<a href="/search/" title="このサーバーの検索">検索</a>] |
<a href="/search/" title="このサーバーの検索">検索</a>] |
634 |
</div> |
</div> |
635 |
|
<div class="myuri"> |
636 |
|
<<a href="$url_cgi?$epage">$url_cgi?$epage</a>> |
637 |
|
</div> |
638 |
</div> |
</div> |
639 |
$walrus_log |
$walrus_log |
640 |
</body> |
</body> |
641 |
</html> |
</html> |
642 |
EOD |
EOD |
|
# print <<"EOD"; |
|
|
# <hr> |
|
|
# <address class="footer"> |
|
|
# <a href="http://www.hyuki.com/yukiwiki/">YukiWiki</a> $version |
|
|
# © 2000-2002 by <a href="http://www.hyuki.com/">Hiroshi Yuki</a>.<br /> |
|
|
# Modified by <a href="$modifier_url">$modifier_name</a>. |
|
|
# </address> |
|
|
# <p class="footer"> |
|
|
# <a href="http://www.hyuki.com/yukiwiki/">$icontag</a> |
|
|
# </p> |
|
|
# </body> |
|
|
# </html> |
|
|
# EOD |
|
|
# Walrus mod (1) end |
|
643 |
} |
} |
644 |
|
|
645 |
sub escape { |
sub escape { |
646 |
my $s = shift; |
my $s = shift; |
647 |
$s =~ s|\r\n|\n|g; |
$s =~ s|\r\n|\n|g; |
648 |
$s =~ s|\&|&|g; |
$s =~ s|&|&|g; |
649 |
$s =~ s|<|<|g; |
$s =~ s|<|<|g; |
650 |
$s =~ s|>|>|g; |
$s =~ s|>|>|g; |
651 |
$s =~ s|"|"|g; |
$s =~ s|"|"|g; |
655 |
sub unescape { |
sub unescape { |
656 |
my $s = shift; |
my $s = shift; |
657 |
# $s =~ s|\n|\r\n|g; |
# $s =~ s|\n|\r\n|g; |
658 |
$s =~ s|\&|\&|g; |
$s =~ s|<|<|g; |
659 |
$s =~ s|\<|\<|g; |
$s =~ s|>|>|g; |
660 |
$s =~ s|\>|\>|g; |
$s =~ s|"|"|g; |
661 |
$s =~ s|\"|\"|g; |
$s =~ s|&|&|g; |
662 |
return $s; |
return $s; |
663 |
} |
} |
664 |
|
|
665 |
sub print_content { |
sub print_content ($;$) { |
666 |
my ($rawcontent) = @_; |
my ($rawcontent, %option) = @_; |
667 |
print &text_to_html($rawcontent, toc=>1); |
print &text_to_html($rawcontent, toc=>1, %option); |
668 |
} |
} |
669 |
|
|
670 |
sub text_to_html { |
sub text_to_html { |
671 |
my ($txt, %option) = @_; |
my ($txt, %option) = @_; |
672 |
my (@txt) = split(/\n/, $txt); |
my (@txt) = split(/\n/, $txt); |
673 |
my (@toc); |
my @toc; |
674 |
|
my @toc2 = @{$option{-toc}||[]}; |
675 |
my $tocnum = 0; |
my $tocnum = 0; |
676 |
my (@saved, @result); |
my (@saved, @result); |
677 |
unshift(@saved, "</p>"); |
unshift(@saved, "</p>"); |
678 |
push(@result, "<p>"); |
push(@result, "<p>"); |
679 |
foreach (@txt) { |
foreach (@txt) { |
680 |
chomp; |
chomp; |
681 |
# Walrus mod (6) start |
if (/^\*\*\*\*\*([^\x0D\x0A]*)/) { |
682 |
#if ($saved[0] eq '</html>') { |
push(@toc, qq(----- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n)); |
683 |
# if (/<\/html>/i) { splice(@saved); } |
push(@result, splice(@saved), qq(<h6 @{[&id_and_name("i$tocnum")]}>) . &inline($1) . '</h6>'); |
|
# else { push (@result, &html_to_ignored_html($_)); } |
|
|
#} elsif (/^<html>/i and &is_ignore_html($form{mypage})) { |
|
|
# push(@result, splice(@saved)); |
|
|
# push(@saved, '</html>'); |
|
|
#} els |
|
|
if (/^\*\*\*\*\*(.*)/) { |
|
|
push(@toc, qq(-- <a href="#i$tocnum">@{[&escape($1)]}</a>\n)); |
|
|
push(@result, splice(@saved), qq(<h6 id="i$tocnum">) . &inline($1) . '</h6>'); |
|
684 |
$tocnum++; |
$tocnum++; |
685 |
} elsif (/^\*\*\*\*(.*)/) { |
} elsif (/^\*\*\*\*([^\x0D\x0A]*)/) { |
686 |
push(@toc, qq(-- <a href="#i$tocnum">@{[&escape($1)]}</a>\n)); |
push(@toc, qq(---- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n)); |
687 |
push(@result, splice(@saved), qq(<h5 id="i$tocnum">) . &inline($1) . '</h5>'); |
push(@result, splice(@saved), qq(<h5 @{[&id_and_name("i$tocnum")]}>) . &inline($1) . '</h5>'); |
688 |
$tocnum++; |
$tocnum++; |
689 |
} elsif (/^\*\*\*(.*)/) { |
} elsif (/^\*\*\*([^\x0D\x0A]*)/) { |
690 |
push(@toc, qq(-- <a href="#i$tocnum">@{[&escape($1)]}</a>\n)); |
push(@toc, qq(--- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n)); |
691 |
push(@result, splice(@saved), qq(<h4 id="i$tocnum">) . &inline($1) . '</h4>'); |
push(@result, splice(@saved), qq(<h4 @{[&id_and_name("i$tocnum")]}>) . &inline($1) . '</h4>'); |
692 |
$tocnum++; |
$tocnum++; |
693 |
} elsif (/^\*\*(.*)/) { |
} elsif (/^\*\*([^\x0D\x0A]*)/) { |
694 |
# if (/^\*\*(.*)/) { |
# if (/^\*\*(.*)/) { |
695 |
# Walrus mod (6) end |
# Walrus mod (6) end |
696 |
push(@toc, qq(-- <a href="#i$tocnum">@{[&escape($1)]}</a>\n)); |
push(@toc, qq(-- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n)); |
697 |
push(@result, splice(@saved), qq(<h3><a name="i$tocnum"> </a>) . &inline($1) . '</h3>'); |
push(@result, splice(@saved), qq(<h3 @{[&id_and_name("i$tocnum")]}>) . &inline($1) . '</h3>'); |
698 |
$tocnum++; |
$tocnum++; |
699 |
} elsif (/^\*(.*)/) { |
} elsif (/^\*([^\x0D\x0A]*)/) { |
700 |
push(@toc, qq(- <a href="#i$tocnum">@{[&escape($1)]}</a>\n)); |
push(@toc, qq(- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n)); |
701 |
push(@result, splice(@saved), qq(<h2><a name="i$tocnum"> </a>) . &inline($1) . '</h2>'); |
push(@result, splice(@saved), qq(<h2 @{[&id_and_name("i$tocnum")]}>) . &inline($1) . '</h2>'); |
702 |
$tocnum++; |
$tocnum++; |
703 |
#} elsif (/^----/) { |
} elsif (/^(={1,6})(.*)/) { |
|
# push(@result, splice(@saved), '<hr>'); |
|
|
} elsif (/^(={1,5})(.*)/) { |
|
704 |
&back_push('ol', length($1), \@saved, \@result); |
&back_push('ol', length($1), \@saved, \@result); |
705 |
push(@result, '<li>' . &inline($2) . '</li>'); |
push(@result, '<li>' . &inline($2) . '</li>'); |
706 |
} elsif (/^(-{1,5})(.*)/) { |
} elsif (/^(-{1,6})(.*)/) { |
707 |
&back_push('ul', length($1), \@saved, \@result); |
&back_push('ul', length($1), \@saved, \@result); |
708 |
push(@result, '<li>' . &inline($2) . '</li>'); |
my ($pf, $l) = ('', $2); |
709 |
|
if (!$main::_EMBEDED && $l =~ s/^\s*\[([0-9]+)\]//) { |
710 |
|
my $num = 0+$1; |
711 |
|
$pf = qq(<a name="anchor-$num" id="anchor-$num" class="anchor">[$num]</a>); |
712 |
|
} |
713 |
|
push(@result, '<li>' . $pf . &inline ($l) . '</li>'); |
714 |
} elsif (/^:([^:]+):(.*)/) { |
} elsif (/^:([^:]+):(.*)/) { |
715 |
&back_push('dl', 1, \@saved, \@result); |
&back_push('dl', 1, \@saved, \@result); |
716 |
push(@result, '<dt>' . &inline($1) . '</dt>', '<dd>' . &inline($2) . '</dd>'); |
push(@result, '<dt>' . &inline($1) . '</dt>', '<dd>' . &inline($2) . '</dd>'); |
717 |
} elsif (/^(>{1,5})(.*)/) { |
} elsif (/^(?!>>\d)(>{1,5})(.*)/) { |
718 |
&back_push('blockquote', length($1), \@saved, \@result); |
&back_push('blockquote', length($1), \@saved, \@result); |
719 |
|
push @result, "<p>"; |
720 |
push(@result, &inline($2)); |
push(@result, &inline($2)); |
721 |
|
unshift @saved, "</p>"; |
722 |
} elsif (/^\s*$/) { |
} elsif (/^\s*$/) { |
723 |
push(@result, splice(@saved)); |
push(@result, splice(@saved)); |
|
unshift(@saved, "</p>"); |
|
724 |
push(@result, "<p>"); |
push(@result, "<p>"); |
725 |
|
unshift(@saved, "</p>"); |
726 |
} elsif (/^(\s+.*)$/) { |
} elsif (/^(\s+.*)$/) { |
727 |
&back_push('pre', 1, \@saved, \@result); |
&back_push('pre', 1, \@saved, \@result); |
728 |
#push(@result, &escape($1)); # Not &inline, but &escape |
#push(@result, &escape($1)); # Not &inline, but &escape |
729 |
push(@result, &inline($1)); # Not &inline, but &escape |
push(@result, &inline($1)); |
730 |
# } elsif (/^\,(.*)$/) { # Walrus del (BF) |
# } elsif (/^\,(.*)$/) { # Walrus del (BF) |
731 |
} elsif (/^\,(.*?)[\x0D\x0A]*$/) { # Walrus add (BF) |
} elsif (/^\,(.*?)[\x0D\x0A]*$/) { # Walrus add (BF) |
732 |
&back_push('table', 1, \@saved, \@result, ' border="1"'); |
&back_push('table', 1, \@saved, \@result, ' border="1"'); |
751 |
push(@result, join('', '<tr>', @value, '</tr>')); |
push(@result, join('', '<tr>', @value, '</tr>')); |
752 |
# XXXXX |
# XXXXX |
753 |
####### |
####### |
754 |
|
} elsif (/^\[(INS|DEL|PRE)\[\s*$/) { |
755 |
|
push @result, splice (@saved), '<'.lc($1).'>'; |
756 |
|
unshift @saved, "</p>"; |
757 |
|
push @result, "<p>"; |
758 |
|
} elsif (/^\](INS|DEL|PRE)\]\s*$/) { |
759 |
|
push @result, splice (@saved), '</'.lc($1).'>'; |
760 |
|
} elsif (/^\[([0-9]+)\](.*)$/ && !$main::_EMBEDED) { |
761 |
|
my $num = 0+$1; |
762 |
|
push @result, qq(<a name="anchor-$num" id="anchor-$num" class="anchor">[$num]</a>); |
763 |
|
push @result, &inline ($2); |
764 |
} else { |
} else { |
765 |
push(@result, &inline($_)); |
push(@result, &inline($_)); |
766 |
} |
} |
767 |
} |
} |
768 |
push(@result, splice(@saved)); |
push(@result, splice(@saved)); |
769 |
|
|
770 |
|
my $toc = ''; |
771 |
if ($option{toc}) { |
if ($option{toc}) { |
772 |
# Convert @toc (table of contents) to HTML. |
# Convert @toc (table of contents) to HTML. |
773 |
# This part is taken from Makio Tsukamoto's WalWiki. |
# This part is taken from Makio Tsukamoto's WalWiki. |
774 |
my (@tocsaved, @tocresult); |
my (@tocsaved, @tocresult); |
775 |
foreach (@toc) { |
foreach (@toc,@toc2) { |
776 |
if (/^(-{1,3})(.*)/) { |
if (/^(-{1,6})(.*)$/) { |
777 |
&back_push('ul', length($1), \@tocsaved, \@tocresult); |
&back_push('ul', length($1), \@tocsaved, \@tocresult); |
778 |
push(@tocresult, '<li>' . $2 . '</li>'); |
push(@tocresult, '<li>' . $2 . '</li>'); |
779 |
} |
} |
780 |
} |
} |
781 |
push(@tocresult, splice(@tocsaved)); |
push(@tocresult, splice(@tocsaved)); |
782 |
return join("\n", @tocresult, @result); |
$toc = join("\n", @tocresult); |
783 |
} else { |
$toc = $toc ? qq(<div id="wikipage-toc">$toc</div>) : ''; |
|
return join("\n", @result); |
|
784 |
} |
} |
785 |
|
$toc .= join("\n", @result); |
786 |
|
$toc =~ s#<p>\n</p>##g; |
787 |
|
$toc =~ s#[\x0D\x0A]+</#</#g; |
788 |
|
$toc =~ s#<pre>\n#<pre>#g; |
789 |
|
$toc; |
790 |
} |
} |
791 |
|
|
792 |
sub back_push { |
sub back_push { |
806 |
sub inline { |
sub inline { |
807 |
my ($line) = @_; |
my ($line) = @_; |
808 |
$line = &escape($line); |
$line = &escape($line); |
809 |
$line =~ s|'''([^']+?)'''|<strong>$1</strong>|g; |
$line =~ s{$embed_command{form}}{&make_custom_form ($1, $2, $3, $4)}ge; |
810 |
$line =~ s|''([^']+?)''|<em>$1</em>|g; |
$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; |
811 |
$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 |
$line =~ s:\[(WEAK)\[(.+?)\]\]:<span class="@{[lc $1]}">$2</span>:g; |
812 |
$line =~ s! |
$line =~ s:\[ABBR\[([^]]+)\] \[([^]]+)\]\]:<acronym title="$2">$1</acronym>:g; |
813 |
( |
$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; |
814 |
(?:<(?:mailto|http|https|ftp|urn):[\x21-\x7E]*)> |
$line =~ s:\[RUBY\[([^]]+)\] \[([^]]+)\]\]:<ruby><rb>$1</rb><rp>(</rp><rt>$2</rt><rp>)</rp></ruby>:g; |
815 |
| |
$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; |
816 |
($bracket_name) # [[likethis]], [[#comment]], [[Friend:remotelink]] |
$line =~ s%\[Q\[([^]]+)\](?: \[<([\x21-\x5A\x5E-\x7E]+)>\])?\]%「<q@{[$2?qq( cite="$2"):'']}>$1</q>」%g; |
817 |
| |
$line =~ s|'''([^']+)'''|<strong>$1</strong>|g; |
818 |
($interwiki_definition) # [[Friend http://somewhere/?q=sjis($1)]] |
$line =~ s|''([^']+)''|<em>$1</em>|g; |
819 |
#| |
$line =~ s{ |
820 |
# ($wiki_name) |
((?:$bracket_name)) # [[likethis]], [[#comment]], [[Friend:remotelink]] |
821 |
) |
|\[\[([^[]+?)]>>([0-9]+)] # [[WikiName]>>1] |
822 |
! |
|>>([0-9]+) |
823 |
&make_link($1) |
|<([A-Za-z0-9%]+:(?:(?!>).)+)> |
824 |
!gex; |
}{ |
825 |
|
my ($l, $page,$anchor, $anum, $uri) = ($1, $3,$4, 0+$5, $6); |
826 |
|
if ($l) { |
827 |
|
&make_link($l) |
828 |
|
} elsif (defined $page) { |
829 |
|
&make_wikilink ($page, anchor => 0+$anchor); |
830 |
|
} elsif ($anum) { |
831 |
|
qq(<a href="#anchor-$anum" class="wiki-anchor">>>$anum</a>); |
832 |
|
} elsif ($uri) { |
833 |
|
&make_urilink ($uri); |
834 |
|
} |
835 |
|
}gex; |
836 |
return $line; |
return $line; |
837 |
} |
} |
838 |
|
|
839 |
|
sub make_wikilink ($%) { |
840 |
|
my ($ename, %option) = @_; |
841 |
|
my $name = &unescape ($ename); |
842 |
|
if ($database{$name}) { |
843 |
|
my $subject = &escape (&get_subjectline ($name, delimiter => '')); |
844 |
|
if ($option{anchor}) { |
845 |
|
return qq(<a title="$subject" href="$url_cgi?@{[&encode($name)]}#anchor-$option{anchor}" class="wiki">$ename>>$option{anchor}</a>); |
846 |
|
} else { |
847 |
|
return qq(<a title="$subject" href="$url_cgi?@{[&encode($name)]}" class="wiki">$ename</a>); |
848 |
|
} |
849 |
|
} else { |
850 |
|
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>); |
851 |
|
} |
852 |
|
} |
853 |
|
|
854 |
|
sub make_urilink ($;%) { |
855 |
|
require URI; |
856 |
|
my $uri = shift; |
857 |
|
if ($uri =~ s/^IW://) { ## InterWiki (not URI) |
858 |
|
$uri = &unescape ($uri); |
859 |
|
if ($uri =~ /^([^\x00-\x2F\x3A-\x40\x5B-\x60\x7B-\x7F]+|"(?:\\.|[^"\\])+"):([^\x00-\x2F\x3A-\x40\x5B-\x60\x7B-\x7F]+|"(?:\\.|[^"\\])+")$/) { |
860 |
|
my ($site, $name) = ($1, $2); |
861 |
|
for ($site, $name) { |
862 |
|
if (s/^"//) { s/"$//; s/\\(.)/$1/g } |
863 |
|
} |
864 |
|
if ($interwiki{$site}) { |
865 |
|
my $uri = &escape ($fmt{interwiki}->replace ($interwiki{$site} => {site => $site, name => $name})); |
866 |
|
$site = &escape ($site); $name = &escape ($name); |
867 |
|
qq(<<a href="$uri" class="out-of-wiki interwiki" title="$name ($site); URI: <$uri>"><span class="interwiki-site">$site:</span><span class="interwiki-name">$name</span></a>>); |
868 |
|
} else { |
869 |
|
qq(<未登録の <a href="$url_cgi?InterWikiName" class="wiki">InterWikiName</a>: @{[&escape ($site)]}>); |
870 |
|
} |
871 |
|
} else { |
872 |
|
qq(<不正な <a href="$url_cgi?InterWikiName" class="wiki">InterWikiName</a>: @{[&escape($uri)]}>); |
873 |
|
} |
874 |
|
} elsif ($uri =~ /^urn:/) { ## URN |
875 |
|
my $uri2 = &escape (URI->new ('/uri-res/N2L?'.&unescape ($uri), 'http')->canonical); |
876 |
|
qq(<<a href="$uri2" title="URI: <$uri> (via <$uri2>)" class="out-of-wiki urn">$uri</a>>); |
877 |
|
} elsif ($uri =~ s/^MAIL://) { ## mail address (not URI) |
878 |
|
my $uri2 = &escape (URI->new ('mailto:'.&unescape ($uri))->canonical); |
879 |
|
qq(<<a href="$uri2" class="out-of-wiki mail">$uri</a>>); |
880 |
|
} elsif ($uri =~ s/^IMG(?:\([^)]+\))?://) { ## image (not URI itself) |
881 |
|
my $uri2 = &escape (URI->new (&unescape ($uri))->canonical); |
882 |
|
qq(<img src="$uri2" alt="" title="URI: <$uri2>" class="out-of-wiki">); |
883 |
|
} else { ## misc. URI |
884 |
|
CGI::Carp::warningsToBrowser (0); |
885 |
|
my $uri2 = &escape (URI->new (&unescape ($uri))->canonical); |
886 |
|
CGI::Carp::warningsToBrowser (1); |
887 |
|
qq(<<a href="$uri2" title="URI: <$uri2>" class="out-of-wiki">$uri</a>>); |
888 |
|
} |
889 |
|
} |
890 |
|
|
891 |
|
my $FormIndex = 0; |
892 |
|
sub make_custom_form ($$$$) { |
893 |
|
my ($wfname, $definition, $template, $option) = @_; |
894 |
|
## $template and $option is currently not used in this procedure. |
895 |
|
unless ($main::_EMBEDED) { |
896 |
|
$FormIndex++; |
897 |
|
if (length $definition) { |
898 |
|
my $param = bless {}, 'SuikaWiki::Plugin'; |
899 |
|
my $lastmodified = &get_info($form{mypage}, $info_LastModified); |
900 |
|
&load_formatter (qw/form_input form_option/); |
901 |
|
$definition = &unescape ($definition); |
902 |
|
$definition =~ s/\\(.)/$1/g; |
903 |
|
$definition .= ' %submit;' if $definition !~ /%submit/; |
904 |
|
$option = &unescape ($option); |
905 |
|
$option =~ s/\\(.)/$1/g; |
906 |
|
$fmt{form_option}->replace ($option, $param); |
907 |
|
my $target_page = $param->{output}->{page} || $form{mypage}; |
908 |
|
$param->{form_disabled} = 1 if $fixedpage{$target_page}; |
909 |
|
my $target_form = $param->{output}->{id}; |
910 |
|
my $r = <<EOH; |
911 |
|
<form method="post" action="$url_cgi" id="wikiform-$FormIndex" class="wikiform"> |
912 |
|
<input type="hidden" name="mycmd" value="@{[$param->{form_disabled}?'read':'wikiform']}"> |
913 |
|
<input type="hidden" name="mypage" value="@{[&escape($target_page)]}"> |
914 |
|
<input type="hidden" name="myLastModified" value="$lastmodified"> |
915 |
|
<input type="hidden" name="mytouch" value="on"> |
916 |
|
<input type="hidden" name="@{[$target_form? qq(wikiform_targetform" value="@{[&escape($target_form)]}) : qq(wikiform_index" value="$FormIndex)]}"> |
917 |
|
EOH |
918 |
|
$r .= qq(<a name="wikiform-$FormIndex"></a>) if $UA =~ m#Mozilla/[12]\.#; |
919 |
|
$r .= $fmt{form_input}->replace ($definition, $param); |
920 |
|
$r .= <<EOH; |
921 |
|
</form> |
922 |
|
EOH |
923 |
|
$r; |
924 |
|
} else { ## No input-interface WikiForm |
925 |
|
qq(<a id="wikiform-$FormIndex" name="wikiform-$FormIndex"><!-- #form --></a>); |
926 |
|
} |
927 |
|
} else { |
928 |
|
q(<ins class="wiki-error"><strong>Warning</strong>: form in embeded page is currently not supported.</ins>); |
929 |
|
} |
930 |
|
} |
931 |
|
|
932 |
|
## to be obsoleted |
933 |
sub make_link { |
sub make_link { |
934 |
my $chunk = shift; |
my $chunk = shift; |
935 |
# Walrus add (3) start |
# Walrus add (3) start |
936 |
$chunk =~ s/^<(.*)>$/$1/; |
$chunk =~ s/^<(.*)>$/$1/; |
937 |
my $name = $chunk; |
my $name = $chunk; |
|
if ($chunk =~ /^\[\[([^ ]+?) ([^ ]+?)\]\]$/ and $form{mypage} ne $InterWikiName) { |
|
|
($name, $chunk) = ($1, $2); |
|
|
} elsif ($chunk =~ /^mailto:(.*)$/) { |
|
|
$name = $1; |
|
|
} |
|
|
if ($use_autoimg and $name =~ /^(http|https|ftp|):.+\.(png|gif|jpe?g)/) { |
|
|
$name = qq(<img src="$name">) ; |
|
|
} |
|
938 |
$name = &unarmor_name($name); |
$name = &unarmor_name($name); |
939 |
# Walrus add (3) end |
# Walrus add (3) end |
940 |
if ($chunk =~ /^(http|https|ftp):/) { |
if ($chunk =~ /^$embedded_name$/) { |
|
# Walrus mod (3) start |
|
|
# if ($use_autoimg and $chunk =~ /\.(gif|png|jpeg|jpg)$/) { |
|
|
# return qq(<a href="$chunk"><img src="$chunk"></a>); |
|
|
# } else { |
|
|
# return qq(<a href="$chunk">$chunk</a>); |
|
|
# } |
|
|
return qq(<<a href="$chunk">$name</a>>); |
|
|
# Walrus mod (3) end |
|
|
} elsif ($chunk =~ m#^urn:[0-9A-Za-z_:;/.-]+#) { |
|
|
return qq|<<a href="/uri-res/N2L?${name}">$name</a>>|; |
|
|
} elsif ($chunk =~ /^mailto:(.*)/) { |
|
|
# return qq(<a href="$chunk">$2</a>); # Walrus del (3) |
|
|
return qq(<<a href="$chunk">$name</a>>); # Walrus add (3) |
|
|
} elsif ($chunk =~ /^$interwiki_definition$/) { |
|
|
# return qq(<span class="InterWiki">$chunk</span>); # Walrus del (3) |
|
|
return qq(<span class="InterWiki">$name</span>); # Walrus add (3) |
|
|
} elsif ($chunk =~ /^$embedded_name$/) { |
|
941 |
return &embedded_to_html($chunk); |
return &embedded_to_html($chunk); |
942 |
} else { |
} else { |
943 |
$chunk = &unarmor_name($chunk); |
$chunk = &unarmor_name($chunk); |
944 |
$chunk = &unescape($chunk); # To treat '&' or '>' or '<' correctly. |
$chunk = &unescape($chunk); # To treat '&' or '>' or '<' correctly. |
945 |
my $cookedchunk = &encode($chunk); |
my $cookedchunk = &encode($chunk); |
946 |
if ($chunk =~ /^$interwiki_name$/) { |
if ($database{$chunk}) { |
|
my ($intername, $localname) = ($1, $2); |
|
|
my $remoteurl = $interwiki{$intername}; |
|
|
if ($remoteurl) { |
|
|
# $remoteurl =~ s/\b(euc|sjis|ykwk|asis)\(\$1\)/&interwiki_convert($1, $localname)/e; # Walrus del (4) |
|
|
$remoteurl =~ s/\b(euc|sjis|ykwk|asis|isbn)\(\$1\)/&interwiki_convert($1, $localname)/e; # Walrus add (4) |
|
|
# return qq(<a href="$remoteurl">$chunk</a>); # Walrus del (3) |
|
|
return qq(<a href="$remoteurl">$name</a>); # Walrus add (3) |
|
|
} else { |
|
|
# return $chunk; # Walrus del (3) |
|
|
return $name; # Walrus add (3) |
|
|
} |
|
|
} elsif ($database{$chunk}) { |
|
947 |
my $subject = &escape(&get_subjectline($chunk, delimiter => '')); |
my $subject = &escape(&get_subjectline($chunk, delimiter => '')); |
948 |
# return qq(<a title="$subject" href="$url_cgi?$cookedchunk">$chunk</a>); # Walrus del (3) |
# return qq(<a title="$subject" href="$url_cgi?$cookedchunk">$chunk</a>); # Walrus del (3) |
949 |
return qq(<a title="$subject" href="$url_cgi?$cookedchunk">$name</a>); # Walrus add (3) |
return qq(<a title="$subject" href="$url_cgi?$cookedchunk" class="wiki">@{[&escape($name)]}</a>); # Walrus add (3) |
950 |
} elsif ($page_command{$chunk}) { |
} elsif ($page_command{$chunk}) { |
951 |
# return qq(<a title="$chunk" href="$url_cgi?$cookedchunk">$chunk</a>); # Walrus del (3) |
# return qq(<a title="$chunk" href="$url_cgi?$cookedchunk">$chunk</a>); # Walrus del (3) |
952 |
return qq(<a title="$chunk" href="$url_cgi?$cookedchunk" class="wiki">$name</a>); # Walrus add (3) |
return qq(<a title="$chunk" href="$url_cgi?$cookedchunk" class="wiki">@{[&escape($name)]}</a>); # Walrus add (3) |
953 |
} else { |
} else { |
954 |
return qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedchunk" class="wiki">$name<span class="mark">$editchar</span></a>); |
return qq(<a title="$resource{editthispage}" href="$url_cgi?mycmd=edit;mypage=$cookedchunk" class="wiki">@{[&escape($name)]}<span class="mark">$editchar</span></a>); |
955 |
} |
} |
956 |
} |
} |
957 |
} |
} |
958 |
|
|
|
# Walrus add (6) start |
|
|
sub is_ignore_html { |
|
|
my ($pagename) = @_; |
|
|
foreach (@ignore_html_page) { |
|
|
return 1 if ($pagename eq $_); |
|
|
} |
|
|
return 0; |
|
|
} |
|
|
# Walrus add (6) end |
|
|
|
|
|
# Walrus add (6) start |
|
|
sub html_to_ignored_html { |
|
|
my $str = shift(@_); |
|
|
my $text_regex = q{[^<]*}; |
|
|
my $tag_regex_ = q{[^"'<>]*(?:"[^"]*"[^"'<>]*|'[^']*'[^"'<>]*)*(?:>|(?=<)|$(?!\n))}; #'}}}} |
|
|
my $comment_tag_regex = '<!(?:--[^-]*-(?:[^-]+-)*?-(?:[^>-]*(?:-[^>-]+)*?)??)*(?:>|$(?!\n)|--.*$)'; |
|
|
my $tag_regex = qq{$comment_tag_regex|<$tag_regex_}; |
|
|
my $ignored = join('|', @ignore_html_tags); |
|
|
my $result = ''; |
|
|
while ($str =~ /($text_regex)($tag_regex)?/gso) { |
|
|
last if $1 eq '' and $2 eq ''; |
|
|
$result .= $1; |
|
|
my $tag_tmp = $2; |
|
|
$result .= ($tag_tmp =~ /^<\/?($ignored)(?![0-9A-Za-z])/i) ? $tag_tmp : &escape($tag_tmp); |
|
|
if ($tag_tmp =~ /^<(XMP|PLAINTEXT|SCRIPT)(?![0-9A-Za-z])/i) { |
|
|
$str =~ /(.*?)(?:<\/$1(?![0-9A-Za-z])$tag_regex_|$)/gsi; |
|
|
$result .= &escape($1); |
|
|
} |
|
|
} |
|
|
return $result; |
|
|
} |
|
|
# Walrus add (6) end |
|
|
|
|
959 |
sub print_message { |
sub print_message { |
960 |
my ($msg) = @_; |
my ($msg) = @_; |
961 |
print qq(<p><strong>$msg</strong></p>); |
print qq(<p><strong>$msg</strong></p>); |
970 |
if (param()) { |
if (param()) { |
971 |
foreach my $var (param()) { |
foreach my $var (param()) { |
972 |
$form{$var} = param($var); |
$form{$var} = param($var); |
973 |
} |
} |
|
} else { |
|
|
$ENV{QUERY_STRING} = $FrontPage; |
|
974 |
} |
} |
975 |
|
$form{mypage} = &code_convert(\$form{mypage}, $kanjicode); |
976 |
my $query = &decode($ENV{QUERY_STRING}); |
if ($main::ENV{QUERY_STRING} && $main::ENV{QUERY_STRING} !~ /[&;=]/) { |
977 |
if ($page_command{$query}) { |
my $query = &decode($main::ENV{QUERY_STRING}); |
978 |
|
$query = &code_convert(\$query, $kanjicode); |
979 |
|
if ($page_command{$query}) { |
980 |
$form{mycmd} = $page_command{$query}; |
$form{mycmd} = $page_command{$query}; |
981 |
$form{mypage} = $query; |
$form{mypage} = $query; |
982 |
} elsif ($query =~ /^($wiki_name)$/) { |
} else { |
|
$form{mycmd} = 'read'; |
|
|
$form{mypage} = $1; |
|
|
} elsif ($database{$query}) { |
|
|
$form{mycmd} = 'read'; |
|
983 |
$form{mypage} = $query; |
$form{mypage} = $query; |
984 |
|
$form{mycmd} = $database{$form{mypage}} ? 'read' : 'edit'; |
985 |
|
} |
986 |
} |
} |
987 |
|
$form{mypage} ||= 'HomePage'; |
988 |
|
$form{mycmd} ||= 'read'; |
989 |
|
|
990 |
# mypreview_edit -> do_edit, with preview. |
# mypreview_edit -> do_edit, with preview. |
991 |
# mypreview_adminedit -> do_adminedit, with preview. |
# mypreview_adminedit -> do_adminedit, with preview. |
997 |
} |
} |
998 |
} |
} |
999 |
|
|
1000 |
# |
# |
1001 |
# $form{mycmd} is frozen here. |
# $form{mycmd} is frozen here. |
1002 |
# |
# |
1003 |
|
|
1004 |
|
for (grep /^wikiform__/, keys %form) { |
1005 |
|
$form{$_} = &code_convert (\$form{$_}, $kanjicode); |
1006 |
|
} |
1007 |
$form{mymsg} = &code_convert(\$form{mymsg}, $kanjicode); |
$form{mymsg} = &code_convert(\$form{mymsg}, $kanjicode); |
1008 |
$form{myname} = &code_convert(\$form{myname}, $kanjicode); |
$form{myname} = &code_convert(\$form{myname}, $kanjicode); |
1009 |
} |
} |
1010 |
|
|
1011 |
sub update_recent_changes { |
sub update_recent_changes { |
1012 |
my $update = "- @{[&get_now]} @{[&armor_name($form{mypage})]} @{[&get_subjectline($form{mypage})]}"; |
my $update = "- @{[&get_now]} [[@{[&escape($form{mypage})]}]] @{[&get_subjectline($form{mypage})]}"; |
1013 |
my @oldupdates = split(/\r?\n/, $database{$RecentChanges}); |
my @oldupdates = split(/\r?\n/, $database{$RecentChanges}); |
1014 |
|
shift (@oldupdates); ## '#?' magic line |
1015 |
my @updates; |
my @updates; |
1016 |
foreach (@oldupdates) { |
foreach (@oldupdates) { |
1017 |
/^\- \d\d\d\d\-\d\d\-\d\d \(...\) \d\d:\d\d:\d\d (\S+)/; # date format. |
/^\- \d\d\d\d\-\d\d\-\d\d \([^)]+\) \d\d:\d\d \[\[(\S+?)\]\]/; |
1018 |
my $name = &unarmor_name($1); |
my $name = $1; |
1019 |
if (&is_exist_page($name) and ($name ne $form{mypage})) { |
if ($name ne $form{mypage}) { |
1020 |
push(@updates, $_); |
push @updates, $_; |
1021 |
} |
} |
1022 |
} |
} |
1023 |
if (&is_exist_page($form{mypage})) { |
if (&is_exist_page($form{mypage})) { |
1024 |
unshift(@updates, $update); |
unshift @updates, $update; |
1025 |
} |
} |
1026 |
splice(@updates, $maxrecent + 1); |
splice(@updates, $maxrecent + 1); |
1027 |
$database{$RecentChanges} = join("\n", @updates); |
$database{$RecentChanges} = "#?SuikaWiki/0.9\n" . join("\n", @updates); |
1028 |
if ($file_touch) { |
if ($file_touch) { |
1029 |
open(FILE, "> $file_touch"); |
open(FILE, "> $file_touch"); |
1030 |
print FILE localtime() . "\n"; |
print FILE localtime() . "\n"; |
1045 |
|
|
1046 |
# Get the subject of the page. |
# Get the subject of the page. |
1047 |
my $subject = $database{$page}; |
my $subject = $database{$page}; |
1048 |
|
$subject =~ s#^(?:\#\?)?SuikaWiki/0.9[^\x0D\x0A]*[\x0D\x0A]+##s; |
1049 |
$subject =~ s/\r?\n.*//s; |
$subject =~ s/\r?\n.*//s; |
1050 |
return "$delim$subject"; |
return "$delim$subject".$option{tail}; |
1051 |
} |
} |
1052 |
} |
} |
1053 |
|
|
1128 |
my ($word) = @_; |
my ($word) = @_; |
1129 |
print <<"EOD"; |
print <<"EOD"; |
1130 |
<form action="$url_cgi" method="get"> |
<form action="$url_cgi" method="get"> |
1131 |
<input type="hidden" name="mycmd" value="search"> |
<input type="hidden" name="mycmd" value="read"> |
1132 |
<input type="text" name="mymsg" value="$word" size="20"> |
<input type="text" name="mypage" value="$word" size="20"> |
1133 |
<input type="submit" value="$resource{searchbutton}"> |
<input type="submit" value="$resource{searchbutton}"> |
1134 |
</form> |
</form> |
1135 |
EOD |
EOD |
1153 |
} |
} |
1154 |
$mymsg = &escape($form{mymsg}); |
$mymsg = &escape($form{mymsg}); |
1155 |
} else { |
} else { |
1156 |
$mymsg = &escape($mymsg); |
$mymsg = &escape($mymsg || $database{NewPageTemplate}); |
1157 |
} |
} |
1158 |
|
my $magic = ''; |
1159 |
|
$magic = $1 if $mymsg =~ m/^([^\x0A\x0D]+)/s; |
1160 |
|
|
1161 |
my $edit = $mode{admin} ? 'adminedit' : 'edit'; |
my $edit = $mode{admin} ? 'adminedit' : 'edit'; |
1162 |
|
my $escapedmypage = &escape($form{mypage}); |
1163 |
|
my $escapedmypassword = &escape($form{mypassword}); |
1164 |
|
my $selected = 'read'; |
1165 |
|
if ($form{after_edit_cmd}) { |
1166 |
|
$selected = $form{after_edit_cmd}; |
1167 |
|
} elsif ($magic =~ /Config/ || $magic =~ /CSS/) { |
1168 |
|
$selected = 'edit'; |
1169 |
|
} |
1170 |
|
my $afteredit = <<EOH; |
1171 |
|
<select name="after_edit_cmd"> |
1172 |
|
<option value="read" label="View changed page"@{[$selected eq 'read' ? ' selected="selected"':'']}>read</option> |
1173 |
|
<option value="edit" label="Edit changed page"@{[$selected eq 'edit' ? ' selected="selected"':'']}>edit</option> |
1174 |
|
</select> |
1175 |
|
EOH |
1176 |
|
|
1177 |
print <<"EOD"; |
print <<"EOD"; |
1178 |
<form action="$url_cgi" method="post"> |
<form action="$url_cgi" method="post"> |
1179 |
@{[ $mode{admin} ? qq($resource{frozenpassword} <input type="password" name="mypassword" value="$form{mypassword}" size="10"><br>) : "" ]} |
<h2>$escapedmypageの編集</h2> |
1180 |
|
@{[ $mode{conflict} ? '' : qq(<input type="submit" name="mypreview_write" value="$resource{savebutton}"><kbd>S</kbd>) ]} |
1181 |
|
@{[ $mode{admin} ? qq($resource{frozenpassword} <input type="password" name="mypassword" value="$escapedmypassword" size="10">) : "" ]} [@{[do {my $n = 0; |
1182 |
|
$mymsg =~ s/(?:-+\s)?\[([0-9]+)\]/$n = $1 if $1 > $n; $&/mge; |
1183 |
|
++$n}]}]<br> |
1184 |
<input type="hidden" name="myLastModified" value="$lastmodified"> |
<input type="hidden" name="myLastModified" value="$lastmodified"> |
1185 |
<input type="hidden" name="mypage" value="$form{mypage}"> |
<input type="hidden" name="mypage" value="$escapedmypage"> |
1186 |
<textarea cols="$cols" rows="$rows" name="mymsg" wrap="off" tabindex="1">$mymsg</textarea><br> |
<textarea cols="$cols" rows="$rows" name="mymsg" tabindex="1">$mymsg</textarea><br> |
1187 |
@{[ |
@{[ |
1188 |
$mode{admin} ? |
$mode{admin} ? |
1189 |
qq( |
qq( |
1196 |
qq( |
qq( |
1197 |
<input type="checkbox" name="mytouch" value="on" checked="checked">$resource{touch}<br> |
<input type="checkbox" name="mytouch" value="on" checked="checked">$resource{touch}<br> |
1198 |
<input type="submit" name="mypreview_$edit" value="$resource{previewbutton}"> |
<input type="submit" name="mypreview_$edit" value="$resource{previewbutton}"> |
1199 |
<input type="submit" name="mypreview_write" value="$resource{savebutton}" accesskey="S"><kbd>S</kbd><br> |
<input type="submit" name="mypreview_write" value="$resource{savebutton}" accesskey="S"><kbd>S</kbd> |
1200 |
|
$afteredit |
1201 |
|
<br> |
1202 |
) |
) |
1203 |
]} |
]} |
1204 |
</form> |
</form> |
1205 |
EOD |
EOD |
1206 |
unless ($mode{conflict}) { |
unless ($mode{conflict}) { |
1207 |
# Show the format rule. |
# Show the format rule. |
1208 |
open(FILE, $file_format) or &print_error("($file_format)"); |
my $help = $database{'WikiEditHelp'}; |
1209 |
my $content = join('', <FILE>); |
$help =~ s!^\#\?([A-Z][A-Za-z0-9-]+/[0-9.]+(?:[^0-9.\x0D\x0A][^\x0D\x0A]*)?)[\x0D\x0A]+!!s; |
1210 |
&code_convert(\$content, $kanjicode); |
print &text_to_html ($help, toc => 0); |
1211 |
close(FILE); |
# open(FILE, $file_format) or &print_error("($file_format)"); |
1212 |
print &text_to_html($content, toc=>0); |
# my $content = join('', <FILE>); |
1213 |
|
# &code_convert(\$content, $kanjicode); |
1214 |
|
# close(FILE); |
1215 |
|
# print &text_to_html($content, toc=>0); |
1216 |
} |
} |
1217 |
} |
} |
1218 |
|
|
1230 |
|
|
1231 |
sub is_editable { |
sub is_editable { |
1232 |
my ($page) = @_; |
my ($page) = @_; |
1233 |
if (&is_bracket_name($page)) { |
if ($fixedpage{$page} || $page =~ /\s/ || $page =~ /^\#/) { |
|
return 0; |
|
|
} elsif ($fixedpage{$page}) { |
|
|
return 0; |
|
|
} elsif ($page =~ /\s/) { |
|
|
return 0; |
|
|
} elsif ($page =~ /^\#/) { |
|
|
return 0; |
|
|
} elsif ($page =~ /^$interwiki_name$/) { |
|
1234 |
return 0; |
return 0; |
1235 |
} else { |
} else { |
1236 |
return 1; |
return 1; |
1240 |
# armor_name: |
# armor_name: |
1241 |
# WikiName -> WikiName |
# WikiName -> WikiName |
1242 |
# not_wiki_name -> [[not_wiki_name]] |
# not_wiki_name -> [[not_wiki_name]] |
1243 |
sub armor_name { |
sub armor_name { qq([[$_[0]]]) } |
|
my ($name) = @_; |
|
|
if ($name =~ /^$wiki_name$/) { |
|
|
return $name; |
|
|
} else { |
|
|
return "[[$name]]"; |
|
|
} |
|
|
} |
|
1244 |
|
|
1245 |
# unarmor_name: |
# unarmor_name: |
1246 |
# [[bracket_name]] -> bracket_name |
# [[bracket_name]] -> bracket_name |
1254 |
} |
} |
1255 |
} |
} |
1256 |
|
|
|
sub is_bracket_name { |
|
|
my ($name) = @_; |
|
|
if ($name =~ /^$bracket_name$/) { |
|
|
return 1; |
|
|
} else { |
|
|
return 0; |
|
|
} |
|
|
} |
|
|
|
|
1257 |
sub decode { |
sub decode { |
1258 |
my ($s) = @_; |
my ($s) = @_; |
1259 |
$s =~ tr/+/ /; |
$s =~ tr/+/ /; |
1277 |
sub init_resource { |
sub init_resource { |
1278 |
open(FILE, $file_resource) or &print_error("(resource)"); |
open(FILE, $file_resource) or &print_error("(resource)"); |
1279 |
while (<FILE>) { |
while (<FILE>) { |
1280 |
chomp; |
s/[\x0A\x0D]+$//g; |
1281 |
next if /^#/; |
next if /^#/; |
1282 |
my ($key, $value) = split(/=/, $_, 2); |
my ($key, $value) = split(/=/, $_, 2); |
1283 |
$resource{$key} = &code_convert(\$value, $kanjicode); |
$resource{$key} = &code_convert(\$value, $kanjicode); |
1294 |
my $content = join('', <FILE>); |
my $content = join('', <FILE>); |
1295 |
&code_convert(\$content, $kanjicode); |
&code_convert(\$content, $kanjicode); |
1296 |
close(FILE); |
close(FILE); |
1297 |
&print_header($page); |
&print_header($page, -noindex => 1); |
1298 |
&print_content($content); |
&print_content($content); |
1299 |
&print_editform($rawmsg, $form{myLastModified}, frozen=>0, conflict=>1); |
&print_editform($rawmsg, $form{myLastModified}, frozen=>0, conflict=>1); |
1300 |
&print_footer($page); |
&print_footer($page); |
1303 |
|
|
1304 |
sub get_now { |
sub get_now { |
1305 |
my (@week) = qw(Sun Mon Tue Wed Thu Fri Sat); |
my (@week) = qw(Sun Mon Tue Wed Thu Fri Sat); |
1306 |
|
my (@week) = qw(日 月 火 水 木 金 土); |
1307 |
my ($sec, $min, $hour, $day, $mon, $year, $weekday) = localtime(time); |
my ($sec, $min, $hour, $day, $mon, $year, $weekday) = localtime(time); |
1308 |
$year += 1900; |
$year += 1900; |
1309 |
$mon++; |
$mon++; |
1311 |
$day = "0$day" if $day < 10; |
$day = "0$day" if $day < 10; |
1312 |
$hour = "0$hour" if $hour < 10; |
$hour = "0$hour" if $hour < 10; |
1313 |
$min = "0$min" if $min < 10; |
$min = "0$min" if $min < 10; |
1314 |
$sec = "0$sec" if $sec < 10; |
#$sec = "0$sec" if $sec < 10; |
1315 |
$weekday = $week[$weekday]; |
$weekday = $week[$weekday]; |
1316 |
return "$year-$mon-$day ($weekday) $hour:$min:$sec"; |
return "$year-$mon-$day ($weekday) $hour:$min"; |
1317 |
} |
} |
1318 |
|
|
|
# [[YukiWiki http://www.hyuki.com/yukiwiki/wiki.cgi?euc($1)]] |
|
1319 |
sub init_InterWikiName { |
sub init_InterWikiName { |
1320 |
my $content = $database{$InterWikiName}; |
my @content = split /\n/, $database{$InterWikiName}; |
1321 |
while ($content =~ /\[\[(\S+) +(\S+)\]\]/g) { |
for (@content) { |
1322 |
my ($name, $url) = ($1, $2); |
if (/^([^#]\S*)\s+(\S[^\x0A\x0D]+)/) { |
1323 |
$interwiki{$name} = $url; |
$interwiki{$1} = $2; |
1324 |
} |
} |
1325 |
|
} |
1326 |
|
require Message::Util::Formatter; |
1327 |
|
$fmt{interwiki} = Message::Util::Formatter->new; |
1328 |
|
$fmt{interwiki}->{encoded} = sub { |
1329 |
|
my ($o, $p) = @_; |
1330 |
|
if ($o->{except}) { |
1331 |
|
$o->{except} =~ tr/\x00-\x20\x22\x23%\x2D<>^[\x5C]`{|}\x7F-\xFF//d; |
1332 |
|
} |
1333 |
|
my $s = &code_convert (\$p->{name}, $o->{charset} || 'iso-2022-7bit'); |
1334 |
|
$s =~ s/([^$o->{except}A-Za-z0-9_-])/sprintf '%%%02X', unpack 'C', $1/ge; |
1335 |
|
$s; |
1336 |
|
}; |
1337 |
|
$fmt{interwiki}->{ykwk} = sub { ## YukiWiki1 |
1338 |
|
my ($o, $p) = @_; |
1339 |
|
my $s = $p->{name}; |
1340 |
|
$s = qq([[$s]]) if $s !~ /^[A-Z][a-z]+(?:[A-Z][a-z]+)+$/; |
1341 |
|
&encode (&code_convert (\$p->{name}, $o->{charset} || 'shift_jis')); |
1342 |
|
}; |
1343 |
} |
} |
1344 |
|
|
|
sub interwiki_convert { |
|
|
my ($type, $localname) = @_; |
|
|
if ($type eq 'sjis' or $type eq 'euc') { |
|
|
&code_convert(\$localname, $type); |
|
|
return &encode($localname); |
|
|
} elsif ($type eq 'ykwk') { |
|
|
# for YukiWiki1 |
|
|
if ($localname =~ /^$wiki_name$/) { |
|
|
return $localname; |
|
|
} else { |
|
|
&code_convert(\$localname, 'sjis'); |
|
|
return &encode("[[" . $localname . "]]"); |
|
|
} |
|
|
} elsif ($type eq 'asis') { |
|
|
return $localname; |
|
|
# Walrus add (4) start |
|
|
} elsif ($type eq 'isbn') { |
|
|
$localname = join('', ($localname =~ /[0-9x]/g)) if ($localname =~ /^(\d-?){9}[\dx]$/); |
|
|
return $localname; |
|
|
# Walrus add (4) end |
|
|
} else { |
|
|
return $localname; |
|
|
} |
|
|
} |
|
1345 |
|
|
1346 |
sub get_info { |
sub get_info { |
1347 |
my ($page, $key) = @_; |
my ($page, $key) = @_; |
1396 |
|
|
1397 |
sub do_comment { |
sub do_comment { |
1398 |
my ($content) = $database{$form{mypage}}; |
my ($content) = $database{$form{mypage}}; |
1399 |
my $datestr = &get_now; |
my $default_name; ## this code does not strict. |
1400 |
my $namestr = $form{myname} ? " ''[[$form{myname}]]'' : " : " "; |
$default_name = $1 if $content =~ /default-name="([^"]+)"/; |
1401 |
if ($content =~ s/(\Q$embed_comment\E)/- $datestr$namestr$form{mymsg}\n$1/) { |
my $datestr = '[WEAK['.&get_now.']]'; |
1402 |
; |
my $namestr = $form{myname} || $default_name || $DEFAULT_embed_comment_name; |
1403 |
} else { |
($namestr = '', $datestr = '') if $form{myname} eq 'nodate'; |
1404 |
$content =~ s/(\Q$embed_rcomment\E)/$1\n- $datestr$namestr$form{mymsg}/; |
if ($namestr =~ /^(?:>>)?[0-9]/) { |
1405 |
|
$namestr = qq( ''$namestr'': ); |
1406 |
|
} elsif (length $namestr) { |
1407 |
|
$namestr = qq( ''[[$namestr]]'': ); |
1408 |
|
} |
1409 |
|
my $anchor = &get_new_anchor_index ($content); |
1410 |
|
my $i = 1; my $o = 0; |
1411 |
|
$content =~ s{(\Q$embed_comment\E|\Q$embed_rcomment\E)}{ |
1412 |
|
my $embed = $1; |
1413 |
|
if ($i == $form{comment_index}) { |
1414 |
|
if ($embed eq $embed_comment) { |
1415 |
|
$embed = "- [$anchor] $datestr$namestr$form{mymsg}\n$embed"; $o = 1; |
1416 |
|
} else { |
1417 |
|
$embed .= "\n- [$anchor] $datestr$namestr$form{mymsg}"; $o = 1; |
1418 |
|
} |
1419 |
|
} |
1420 |
|
$i++; $embed; |
1421 |
|
}ge; |
1422 |
|
unless ($o) { |
1423 |
|
$content = "#?SuikaWiki/0.9\n\n" unless $content; |
1424 |
|
$content .= "\n" unless $content =~ /\n$/s; |
1425 |
|
$content .= "- [$anchor] $datestr$namestr$form{mymsg}\n"; |
1426 |
} |
} |
1427 |
if ($form{mymsg}) { |
$form{__comment_anchor_index} = $anchor; |
1428 |
|
if ($form{mymsg} || $form{myname}) { |
1429 |
$form{mymsg} = $content; |
$form{mymsg} = $content; |
1430 |
$form{mytouch} = 'on'; |
$form{mytouch} = 'on'; |
1431 |
&do_write; |
&do_write; |
1435 |
} |
} |
1436 |
} |
} |
1437 |
|
|
1438 |
|
sub get_new_anchor_index ($) { |
1439 |
|
my $content = shift; |
1440 |
|
my $anchor = 0; |
1441 |
|
$content =~ s/^(?:[-=]+\s*)?\[([0-9]+)\]/$anchor = $1 if $1 > $anchor; $&/mge; |
1442 |
|
$anchor + 1; |
1443 |
|
} |
1444 |
|
|
1445 |
|
my $CommentIndex = 0; |
1446 |
sub embedded_to_html { |
sub embedded_to_html { |
1447 |
my ($embedded) = @_; |
my ($embedded) = @_; |
1448 |
if ($embedded eq $embed_comment or $embedded eq $embed_rcomment) { |
if ($embedded eq $embed_comment or $embedded eq $embed_rcomment) { |
1449 |
|
unless ($main::_EMBEDED) { |
1450 |
my $lastmodified = &get_info($form{mypage}, $info_LastModified); |
my $lastmodified = &get_info($form{mypage}, $info_LastModified); |
1451 |
return <<"EOD"; |
return <<"EOD"; |
1452 |
<form action="$url_cgi" method="post"> |
<form action="$url_cgi" method="post" id="x-comment-@{[++$CommentIndex]}" class="comment"><p> |
1453 |
<input type="hidden" name="mycmd" value="comment"> |
<input type="hidden" name="mycmd" value="comment"> |
1454 |
<input type="hidden" name="mypage" value="$form{mypage}"> |
<input type="hidden" name="mypage" value="$form{mypage}"> |
1455 |
<input type="hidden" name="myLastModified" value="$lastmodified"> |
<input type="hidden" name="myLastModified" value="$lastmodified"> |
1456 |
<input type="hidden" name="mytouch" value="on"> |
<input type="hidden" name="mytouch" value="on"> |
1457 |
$resource{yourname} |
<input type="hidden" name="comment_index" value="$CommentIndex"> |
1458 |
<input type="text" name="myname" value="" size="10"> |
$embed_comment_Name_Prompt |
1459 |
<input type="text" name="mymsg" value="" size="40"> |
<input type="text" name="myname" value="" size="10" class="comment-name"> |
1460 |
<input type="submit" value="$resource{commentbutton}"> |
<input type="text" name="mymsg" value="" size="60" class="comment-msg"> |
1461 |
</form> |
<input type="submit" value="$resource{commentbutton}" class="comment-submit"> |
1462 |
|
</p></form> |
1463 |
EOD |
EOD |
1464 |
|
} else { |
1465 |
|
return <<"EOD"; |
1466 |
|
<del><form action="$url_cgi" method="get"> |
1467 |
|
<input type="hidden" name="mycmd" value="read"> |
1468 |
|
<input type="hidden" name="mypage" value="$form{mypage}"> |
1469 |
|
$embed_comment_Name_Prompt |
1470 |
|
<input type="text" name="myname" value="" size="10" disabled="disabled"> |
1471 |
|
<input type="text" name="mymsg" value="" size="60" disabled="disabled"> |
1472 |
|
<input type="submit" value="$resource{commentbutton}" disabled="disabled"> |
1473 |
|
</form></del> |
1474 |
|
EOD |
1475 |
|
} |
1476 |
} elsif ($embedded =~ /$embed_command{searched}/) { |
} elsif ($embedded =~ /$embed_command{searched}/) { |
1477 |
return get_search_result ($1); |
return get_search_result ($1, -match_myself => 1); |
1478 |
# Walrus add (5) start |
# Walrus add (5) start |
1479 |
} elsif ($embedded =~ /$embed_interwiki/ and my $remoteurl = $interwiki{$2}) { |
} elsif ($embedded =~ /$embed_interwiki/ and my $remoteurl = $interwiki{$2}) { |
1480 |
$_ = &make_interwiki_box($1, $2); |
$_ = &make_interwiki_box($1, $2); |
1481 |
return ($_) ? $_ : $embedded; |
return ($_) ? $_ : $embedded; |
1482 |
# Walrus add (5) end |
# Walrus add (5) end |
1483 |
|
} elsif ($embedded =~ /^\[\[\#embed:(.+)\]\]$/) { |
1484 |
|
my ($name, $r) = ($1, ''); |
1485 |
|
if ($main::_EMBEDED != 1) { |
1486 |
|
my ($content, $cf) = ($database{$name}, 'SuikaWiki/0.9'); |
1487 |
|
$cf = $1 if $content =~ s!^(?:[\#<]\?|/\*\s*)?([A-Z][A-Za-z0-9-]+/[0-9.]+(?:[^0-9.][^\x0D\x0A]*)?)[\x0D\x0A]+!!s; |
1488 |
|
if ($cf =~ m!^(?:\#\?)?SuikaWiki/0.9(?:$|\s)!) { |
1489 |
|
$main::_EMBEDED = 1; |
1490 |
|
$r = &text_to_html ($content, content_format => $cf); |
1491 |
|
$main::_EMBEDED = 0; |
1492 |
|
} elsif (length $content) { |
1493 |
|
$r = "<pre>@{[&escape ($content)]}</pre>"; |
1494 |
|
} else { |
1495 |
|
$r = &text_to_html ("[INS[\n埋め込まれている [[$name]] はまだ書かれていません。\n]INS]\n", content_format => 'SuikaWiki/0.9'); |
1496 |
|
} |
1497 |
|
} else { ## nested #EMBED |
1498 |
|
$r = &text_to_html ("[INS[\n[[$name]] の埋め込みは (入り組んでいるので) 解決されませんでした。\n]INS]\n", content_format => 'SuikaWiki/0.9'); |
1499 |
|
} |
1500 |
|
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>); |
1501 |
|
} elsif ($embedded =~ /^\[\[\#randomlink:(.+)\]\]$/) { |
1502 |
|
return qq(<a href="$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki randomlink">$1</a>); |
1503 |
|
} else { |
1504 |
|
return $embedded; |
1505 |
|
} |
1506 |
|
} |
1507 |
|
|
1508 |
|
sub load_formatter (@) { |
1509 |
|
for my $t (@_) { |
1510 |
|
unless ($fmt{$t}) { |
1511 |
|
$fmt{$t} = Message::Util::Formatter->new; |
1512 |
|
for (@{$SuikaWiki::Plugin::List{'wiki'.$t}||[]}) { |
1513 |
|
$_->load_formatter ($fmt{$t}, type => 'wiki'.$t); |
1514 |
|
} |
1515 |
|
} |
1516 |
|
} |
1517 |
|
} |
1518 |
|
|
1519 |
|
sub do_wikiform { |
1520 |
|
my $content = $database{$form{mypage}}; |
1521 |
|
my $anchor = &get_new_anchor_index ($content); |
1522 |
|
&load_formatter (qw/form_template form_option/); |
1523 |
|
my $write = 0; |
1524 |
|
my $i = 1; |
1525 |
|
$content =~ s{$embed_command{form}}{ |
1526 |
|
my ($embed, $wfname, $template, $option) = ($&, $1, $3, $4); |
1527 |
|
if (($wfname && $wfname eq $form{wikiform_targetform}) |
1528 |
|
|| $i == $form{wikiform_index}) { |
1529 |
|
$template =~ s/\\(.)/$1/g; |
1530 |
|
$option =~ s/\\(.)/$1/g; |
1531 |
|
my $param = bless {}, 'SuikaWiki::Plugin'; |
1532 |
|
$param->{page} = $form{mypage}; |
1533 |
|
$param->{form_index} = $i; |
1534 |
|
$param->{form_name} = $wfname; |
1535 |
|
$param->{anchor_index} = $anchor; |
1536 |
|
$param->{argv} = \%form; |
1537 |
|
$param->{default_name} = $1 if $content =~ /default-name="([^"]+)"/; |
1538 |
|
$param->{default_name} ||= $DEFAULT_embed_comment_name; |
1539 |
|
$fmt{form_option}->replace ($option, $param); |
1540 |
|
my $t = 1; |
1541 |
|
for (@{$param->{require}||[]}) { |
1542 |
|
(undef $t, last) unless length $param->{argv}->{'wikiform__'.$_}; |
1543 |
|
} |
1544 |
|
$t = $fmt{form_template}->replace ($template, $param) if $t; |
1545 |
|
if (length $t) { |
1546 |
|
if ($param->{output}->{reverse}) { |
1547 |
|
$embed .= "\n" . $t; |
1548 |
|
} else { |
1549 |
|
$embed = $t . "\n" . $embed; |
1550 |
|
} |
1551 |
|
$write = 1; |
1552 |
|
$form{__comment_anchor_index} = $anchor |
1553 |
|
if $param->{anchor_index_}; ## $anchor is used! |
1554 |
|
} |
1555 |
|
$form{__wikiform_anchor_index} = $i; |
1556 |
|
undef $form{wikiform_targetform}; ## make sure never to match |
1557 |
|
undef $form{wikiform_index}; ## with WikiForm in rest of page |
1558 |
|
} |
1559 |
|
$i++; $embed; |
1560 |
|
}ge; |
1561 |
|
unless ($write) { |
1562 |
|
#$content = "#?SuikaWiki/0.9\n\n" unless $content; |
1563 |
|
#$content .= "\n" unless $content =~ /\n$/s; |
1564 |
|
# |
1565 |
|
} |
1566 |
|
if ($write) { |
1567 |
|
$form{mymsg} = $content; |
1568 |
|
$form{mytouch} = 'on'; |
1569 |
|
&do_write; |
1570 |
} else { |
} else { |
1571 |
return $embedded; |
$form{mycmd} = 'read'; |
1572 |
|
&do_read; |
1573 |
} |
} |
1574 |
} |
} |
1575 |
|
|
1576 |
|
|
1577 |
# Walrus add (5) start |
# Walrus add (5) start |
1578 |
sub do_interwiki_box { |
sub do_interwiki_box { |
1579 |
my $remoteurl = $interwiki{$form{'myintername'}}; |
my $remoteurl = $interwiki{$form{'myintername'}}; |
1610 |
# Walrus add (5) end |
# Walrus add (5) end |
1611 |
|
|
1612 |
sub code_convert { |
sub code_convert { |
1613 |
my ($contentref, $kanjicode) = @_; |
my ($contentref, $code) = (shift, shift || $kanjicode); |
1614 |
# &Jcode::convert($contentref, $kanjicode); # for Jcode.pm |
$code = 'jis' if $code =~ /iso/; |
1615 |
&jcode::convert($contentref, $kanjicode); # for jcode.pl |
$code = 'euc' if $code =~ /euc/; |
1616 |
|
$code = 'sjis' if $code =~ /shift/; |
1617 |
|
$code = 'utf8' if $code =~ /utf/; |
1618 |
|
&Jcode::convert($contentref, $code); # for Jcode.pm |
1619 |
|
# &jcode::convert($contentref, $code); # for jcode.pl |
1620 |
|
&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'; |
1621 |
return $$contentref; |
return $$contentref; |
1622 |
} |
} |
1623 |
|
|
1691 |
} |
} |
1692 |
&open_diff; |
&open_diff; |
1693 |
my $title = $form{mypage}; |
my $title = $form{mypage}; |
1694 |
&print_header($title); |
&print_header($title, -noindex => 1); |
1695 |
$_ = &escape($diffbase{$form{mypage}}); |
$_ = &escape($diffbase{$form{mypage}}); |
1696 |
&close_diff; |
&close_diff; |
1697 |
print qq(<h3>$resource{difftitle}</h3>); |
print qq(<h3>$resource{difftitle}</h3>); |
1727 |
my $count = 0; |
my $count = 0; |
1728 |
foreach (split(/\n/, $recentchanges)) { |
foreach (split(/\n/, $recentchanges)) { |
1729 |
last if ($count >= 15); |
last if ($count >= 15); |
1730 |
/^\- \d\d\d\d\-\d\d\-\d\d \(...\) \d\d:\d\d:\d\d (\S+)/; # date format. |
/^\- \d\d\d\d\-\d\d\-\d\d \([^)]+\) \d\d:\d\d:\d\d (\S+)/; # date format. |
1731 |
my $title = &unarmor_name($1); |
my $title = &unarmor_name($1); |
1732 |
my $escaped_title = &escape($title); |
my $escaped_title = &escape($title); |
1733 |
my $link = $modifier_rss_link . '?' . &encode($title); |
my $link = $modifier_rss_link . '?' . &encode($title); |
1740 |
$count++; |
$count++; |
1741 |
} |
} |
1742 |
# print RSS information (as XML). |
# print RSS information (as XML). |
1743 |
|
print scalar &make_navigate_links ('RssPage'); |
1744 |
print <<"EOD" |
print <<"EOD" |
1745 |
Content-type: text/xml |
Content-type: application/xml |
1746 |
|
|
1747 |
@{[$rss->as_string]} |
@{[$rss->as_string]} |
1748 |
EOD |
EOD |
1757 |
} |
} |
1758 |
} |
} |
1759 |
|
|
1760 |
|
sub __get_database ($) { $database{ $_[0] } } |
1761 |
|
sub __set_database ($$) { $database{ $_[0] } = $_[1] } |
1762 |
|
|
1763 |
|
sub do_wikiplugininfo { |
1764 |
|
&print_header (q(WikiPluginInfo)); |
1765 |
|
print text_to_html (&SuikaWiki::Plugin::make_info_page); |
1766 |
|
&print_footer (q(WikiPluginInfo)); |
1767 |
|
} |
1768 |
|
|
1769 |
|
package wiki::referer; |
1770 |
|
sub add ($$) { |
1771 |
|
my $page = shift; |
1772 |
|
my $uri = shift; |
1773 |
|
unless (ref $uri) { |
1774 |
|
require URI; |
1775 |
|
$uri = URI->new ($uri); |
1776 |
|
## Some schemes do not have query part. |
1777 |
|
eval q{ $uri->query (undef) if $uri->query =~ /^[0-9]{6,8}$/ }; |
1778 |
|
$uri->fragment (undef); |
1779 |
|
} |
1780 |
|
$uri = $uri->canonical; |
1781 |
|
return unless $uri; |
1782 |
|
for my $regex (&get_dont_record) { |
1783 |
|
return if $uri =~ /$regex/; |
1784 |
|
} |
1785 |
|
my %list = get ($page); |
1786 |
|
$list{ $uri }++; |
1787 |
|
set ($page, \%list); |
1788 |
|
} |
1789 |
|
sub get ($) { |
1790 |
|
my $page = shift; |
1791 |
|
split /"/, main::get_info ($page, 'Referer'); |
1792 |
|
} |
1793 |
|
sub set ($%) { |
1794 |
|
my $page = shift; |
1795 |
|
my $list = shift; |
1796 |
|
main::set_info ($page, Referer => join '"', %$list); |
1797 |
|
} |
1798 |
|
|
1799 |
|
sub get_dont_record () { |
1800 |
|
map {s/\$/\\\$/g; s/\@/\\\@/g; $_} |
1801 |
|
grep !/^#/, |
1802 |
|
split /[\x0D\x0A]+/, &main::__get_database ('RefererDontRecord'); |
1803 |
|
} |
1804 |
|
sub get_site_name () { |
1805 |
|
my @lines = grep /[^#]/, split /[\x0D\x0A]+/, &main::__get_database('RefererSiteName'); |
1806 |
|
my @item; |
1807 |
|
for (@lines) { |
1808 |
|
next if /^#/; |
1809 |
|
my ($uri, $name) = split /\s+/, $_, 2; |
1810 |
|
$uri =~ s/\$/\\\$/g; $uri =~ s/\@/\\\@/g; $uri =~ s/\//\\\//g; |
1811 |
|
$name =~ s!([()/\\])!\\$1!g; $name =~ s/\$([0-9]+)/).__decode (\${$1}).q(/g; |
1812 |
|
push @item, [$uri, qq(q($name))]; |
1813 |
|
} |
1814 |
|
@item; |
1815 |
|
} |
1816 |
|
|
1817 |
|
sub list_html ($) { |
1818 |
|
my $page = shift; |
1819 |
|
my %list = get ($page); |
1820 |
|
my $r = ''; |
1821 |
|
my @name = get_site_name; |
1822 |
|
for my $uri (sort keys %list) { |
1823 |
|
my $title; |
1824 |
|
for my $item (@name) { |
1825 |
|
if ($uri =~ /$item->[0]/) { |
1826 |
|
$title = $uri; |
1827 |
|
eval qq{\$title =~ s/^.*$item->[0].*\$/$item->[1]/e} |
1828 |
|
or die $@ ;#. qq{\$title =~ s/^.*$item->[0].*\$/$item->[1]/e}; |
1829 |
|
last; |
1830 |
|
} |
1831 |
|
} |
1832 |
|
my $euri = main::escape ($uri); |
1833 |
|
if ($title) { |
1834 |
|
$r .= qq(<li>[$list{$uri}] <a href="$euri" title="URI: <$euri>">@{[main::escape ($title)]}</a></li>\n); |
1835 |
|
} else { |
1836 |
|
$r .= qq(<li>[$list{$uri}] <<a href="$euri">$euri</a>></li>\n); |
1837 |
|
} |
1838 |
|
} |
1839 |
|
$r ? qq(<ul>$r</ul>\n) : ''; |
1840 |
|
} |
1841 |
|
|
1842 |
|
sub __decode ($) { |
1843 |
|
my $s = shift; |
1844 |
|
$s =~ tr/+/ /; |
1845 |
|
$s =~ s/%([0-9A-Fa-f][0-9A-Fa-f])/chr hex $1/ge; |
1846 |
|
main::code_convert (\$s); |
1847 |
|
} |
1848 |
|
|
1849 |
|
package wiki::useragent; |
1850 |
|
|
1851 |
|
sub add ($) { |
1852 |
|
my $s = shift; |
1853 |
|
return unless length $s; |
1854 |
|
$s =~ s/([\x00-\x08\x0A-\x1F\x25\x7F-\xFF])/sprintf '%%%02X', unpack 'C', $1/g; |
1855 |
|
my %ua; |
1856 |
|
for (split /\n/, &main::__get_database('WikiUserAgentList')) { |
1857 |
|
if (/^-\[(\d+)\] (.+)$/) { |
1858 |
|
my ($t, $n) = ($1, $2); |
1859 |
|
$n =~ tr/\x0A\x0D//d; |
1860 |
|
$ua{$n} = $t; |
1861 |
|
} |
1862 |
|
} |
1863 |
|
$ua{$s}++; |
1864 |
|
my $s = qq(#?SuikaWiki/0.9\n); |
1865 |
|
for (sort {$ua{$a} <=> $ua{$b}} keys %ua) { |
1866 |
|
$s .= sprintf qq(-[%d] %s\n), $ua{$_}, $_; |
1867 |
|
} |
1868 |
|
&main::__set_database ('WikiUserAgentList' => $s); |
1869 |
|
} |
1870 |
|
|
1871 |
|
package SuikaWiki::Plugin; |
1872 |
|
our $plugin_directory; # defined in top of this file. |
1873 |
|
our %List; |
1874 |
|
|
1875 |
|
sub escape ($$) { main::escape ($_[1]) } |
1876 |
|
sub unescape ($$) { main::unescape ($_[1]) } |
1877 |
|
sub encode ($$) { main::encode ($_[1]) } |
1878 |
|
sub decode ($$) { main::decode ($_[1]) } |
1879 |
|
sub __get_datetime ($) { main::get_now () } |
1880 |
|
|
1881 |
|
sub regist ($@) { |
1882 |
|
my $pack = shift; |
1883 |
|
for (@_) { |
1884 |
|
push @{$List{$_}}, $pack; |
1885 |
|
} |
1886 |
|
} |
1887 |
|
|
1888 |
|
sub import_plugins () { |
1889 |
|
opendir PDIR, $plugin_directory; |
1890 |
|
my @plugin = grep {s/\.pm$//} readdir (PDIR); |
1891 |
|
closedir PDIR; |
1892 |
|
for (@plugin) { |
1893 |
|
eval qq{ use SuikaWiki::Plugin::$_ } unless /[^A-Za-z0-9_]/; |
1894 |
|
push @{$List{_all}}, qq(SuikaWiki::Plugin::$_); |
1895 |
|
} |
1896 |
|
} |
1897 |
|
|
1898 |
|
sub make_info_page () { |
1899 |
|
my $r = <<EOH; |
1900 |
|
EOH |
1901 |
|
unless ($List{_all}) { |
1902 |
|
$r .= qq('''No plugin is installed!'''\n); |
1903 |
|
} else { |
1904 |
|
my $index = 0; |
1905 |
|
for my $package (sort @{$List{_all}}) { |
1906 |
|
$index++; |
1907 |
|
my $prop = $package->property (); |
1908 |
|
$r .= <<EOH; |
1909 |
|
*$package |
1910 |
|
|
1911 |
|
[$index] '''$prop->{name}''' (Version $prop->{version}) |
1912 |
|
<$prop->{uri}> |
1913 |
|
|
1914 |
|
Provide: |
1915 |
|
@{[do{my $t = ''; for my $f (@{$prop->{provide}||[]}) { |
1916 |
|
$t .= qq(-''$f''\n); |
1917 |
|
for (sort grep m#^\Q$f\E/#, keys %{$prop->{partinfo}}) { |
1918 |
|
$t .= qq(--''$_'' -- $prop->{partinfo}->{$_}\n); |
1919 |
|
} |
1920 |
|
}$t}]} |
1921 |
|
|
1922 |
|
EOH |
1923 |
|
} |
1924 |
|
} |
1925 |
|
$r; |
1926 |
|
} |
1927 |
|
|
1928 |
|
&import_plugins (); |
1929 |
|
|
1930 |
|
package main; |
1931 |
|
&main; |
1932 |
|
exit 0; |
1933 |
|
|
1934 |
1; |
1; |
1935 |
__END__ |
__END__ |
1936 |
=head1 NAME |
=head1 NAME |