1 |
#!/usr/bin/perl |
#!/usr/bin/perl |
2 |
use lib "../lib"; |
# wiki.cgi - This is YukiWiki, yet another Wiki clone. |
|
use CGI::Carp 'fatalsToBrowser'; |
|
|
use Algorithm::Diff qw(traverse_sequences); |
|
|
# use strict; |
|
3 |
# |
# |
4 |
# yukiwiki.cgi - Yet another WikiWikiWeb clone. |
# This program is free software; you can redistribute it and/or |
5 |
|
# modify it under the same terms as Perl itself. |
6 |
|
|
7 |
|
use strict; |
8 |
|
use lib qw(./WalWiki/lib); |
9 |
|
use CGI::Carp qw(fatalsToBrowser); |
10 |
|
use Yuki::DiffText qw(difftext); |
11 |
|
use Fcntl; |
12 |
# |
# |
13 |
# Copyright (C) 2000,2001 by Hiroshi Yuki. |
# You MUST modify following '$modifier_...' variables. |
|
# <hyuki@hyuki.com> |
|
|
# http://www.hyuki.com/yukiwiki/ |
|
14 |
# |
# |
15 |
# This program is free software; you can redistribute it and/or modify |
# my $modifier_dbtype = 'AnyDBM_File'; # Fast, not available on some server, page size limited. |
16 |
# it under the terms of the GNU General Public License as published by |
# my $modifier_dbtype = 'dbmopen'; # Fast, not available on some server, page size limited. |
17 |
# the Free Software Foundation; either version 2 of the License, or |
my $modifier_dbtype = 'YukiWikiDB'; # Slow, available on all environment. |
18 |
# (at your option) any later version. |
my $modifier_dir_data = './wikidata'; # Your data directory. |
19 |
|
our $url_cgi = '/~wakaba/-temp/wiki/wiki'; ## MUST be started by '/' |
20 |
|
############################## |
21 |
# |
# |
22 |
# This program is distributed in the hope that it will be useful, |
# You MAY modify following variables. |
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
# GNU General Public License for more details. |
|
23 |
# |
# |
24 |
# $Id$ |
$SuikaWiki::Plugin::plugin_directory = q(./SuikaWiki/Plugin/); |
25 |
############################## |
my $file_touch = "$modifier_dir_data/touched.txt"; |
26 |
my $version = "1.6.6"; |
our %uri; |
27 |
############################## |
$uri{stylesheet} = $url_cgi.'?mycmd=TEXT_CSS;mypage=WikiHTMLStyle'; |
28 |
# 単独テストのときには 1 にする。 |
$uri{cvs_wikipage} = '/gate/cvs/wakaba/suikawiki/wiki/'; |
|
my $testing = 0; |
|
|
############################## |
|
|
# 漢字ライブラリ |
|
|
my $jcodelib = 'jcode.pl'; |
|
|
############################## |
|
|
# 保存・表示の漢字コード |
|
|
my $kanjicode = 'euc'; # 'sjis' 'euc' |
|
|
my $charset = 'euc-jisx0213'; # 'Shift_JIS' 'EUC-JP' |
|
|
############################## |
|
|
# dbmopenが使えるなら1、使えないなら0 |
|
|
my $dbmopen = 0; |
|
|
############################## |
|
|
# データベース名(.pag, .dir, .dbなどは不要) |
|
|
# $dbmopen = 1のときはデータベース名、 |
|
|
# $dbmopen = 0のときはディレクトリ名になる。 |
|
|
my $dbname = './wikidata'; |
|
|
my $diffdbname = './wikidiff'; |
|
|
############################## |
|
|
# 修正者の氏名(自由に変更してください) |
|
|
my $modifier = 'suika'; |
|
|
############################## |
|
|
# 修正者のWebページ(自由に変更してください) |
|
|
my $modifierlink = 'http://suika.fam.cx/'; |
|
|
############################## |
|
|
# このページのURL |
|
|
my $thisurl = 'wiki'; |
|
|
############################## |
|
|
# 開始ページ名 |
|
|
my $toppage = 'HomePage'; |
|
|
############################## |
|
|
# 最終更新ページ名 |
|
|
my $whatsnew = 'RecentChanges'; |
|
|
############################## |
|
|
# 最終更新に掲載するページ数 |
|
|
my $maxnew = 50; |
|
|
############################## |
|
|
# アイコンファイル名(カラー版) |
|
|
my $iconfile = ''; |
|
|
############################## |
|
|
# アイコンファイル名(モノクロ版) |
|
|
# my $iconfile = ''; |
|
|
############################## |
|
|
# ページを変更したときにtouchするファイル(''なら何もしない) |
|
|
my $touchfile = 'touch.txt'; |
|
29 |
############################## |
############################## |
|
# プレビュー用の背景色 |
|
|
my $preview_color = '#FFCCCC'; |
|
|
############################## |
|
|
# 全ページのスタイル |
|
|
my $style = <<'EOD'; |
|
|
@import '/s/simpledoc'; |
|
|
pre, dl, ul, ol, p, blockquote { line-height:120%; } |
|
|
a.wiki .mark {vertical-align: sub, color: GrayText} |
|
|
a { text-decoration: none; } |
|
|
a:link { color: #0000FF; background-color: #FFFFFF; } |
|
|
a:visited { color: #9900CC; background-color: #FFFFFF; } |
|
|
a:hover { text-decoration: underline; } |
|
|
EOD |
|
|
############################## |
|
|
# テキスト入力部分の大きさ |
|
|
my $cols = 80; |
|
|
my $rows = 20; |
|
|
############################## |
|
|
my %form = (); |
|
|
my %database = (); |
|
|
my %diffbase = (); |
|
|
my $diff_text = ''; |
|
|
my @diff_added = (); |
|
|
my @diff_deleted = (); |
|
|
my $msgrefA; |
|
|
my $msgrefB; |
|
|
############################## |
|
|
# 編集不可ページ名一覧 |
|
|
my @uneditable = ( $whatsnew ); |
|
|
############################## |
|
|
# リンク用の正規表現 |
|
|
# YukiWikiのリンクは2種類ある。 |
|
|
# |
|
|
# (1) WikiName (RecentChangesとかFrontPageのようなもの) |
|
|
# (2) BracketName ([[結城浩]]とか[[トラブルシュート]]のようなもの) |
|
|
# |
|
|
# ※シフトJISの2バイト目には ']' が来うるので、 |
|
|
# 文字']'を1つ多くとるようにしている。 |
|
30 |
# |
# |
31 |
my $WikiName = '([A-Z][a-z]+([A-Z][a-z]+)+)'; |
# You MAY, but do NOT NEED modify following variables. |
32 |
my $BracketName = '\[\[([^>\x09]+?\]?)\]\]'; |
# |
33 |
|
my $dataname = "$modifier_dir_data/wiki"; |
34 |
# アイコン部分のタグ |
my $infoname = "$modifier_dir_data/info"; |
35 |
my $IconTag = ''; #<<"EOD"; |
my $diffname = "$modifier_dir_data/diff"; |
36 |
#<a href="http://www.hyuki.com/yukiwiki/"><img src="$iconfile" |
my $use_exists = 0; # If you can use 'exists' method for your DB. |
37 |
# border="0" width="80" height="80" alt="[YukiWiki]" /></a> |
############################## |
38 |
#EOD |
my $FrontPage = 'HomePage'; |
39 |
|
my $IndexPage = 'IndexPage'; |
40 |
require "$jcodelib"; |
my $SearchPage = 'SearchPage'; |
41 |
|
my $CreatePage = 'CreatePage'; |
42 |
&init_form($kanjicode); |
my $ErrorPage = 'ErrorPage'; |
43 |
|
my $RssPage = 'RssPage'; |
44 |
|
my $AdminSpecialPage = 'Admin Special Page'; # must include spaces. |
45 |
|
############################## |
46 |
|
my %fmt; ## formatter objects |
47 |
|
my %embed_command = ( |
48 |
|
searched => '^\[\[#searched:([^\]]+)\]\]$', |
49 |
|
form => qw/\[\[\#form(?:\(([A-Za-z0-9-]+)\))?:'((?:[^'\\]|\\.)*)':'((?:[^'\\]|\\.)*)'(?::'((?:[^'\\]|\\.)*)')?\]\]/, |
50 |
|
); |
51 |
|
############################## |
52 |
|
my $info_LastModified = 'LastModified'; |
53 |
|
my $info_IsFrozen = 'IsFrozen'; |
54 |
|
############################## |
55 |
|
my $kanjicode = 'euc'; |
56 |
|
my $lang = 'ja'; |
57 |
|
my %fixedpage = ( |
58 |
|
$IndexPage => 1, |
59 |
|
$CreatePage => 1, |
60 |
|
$ErrorPage => 1, |
61 |
|
$RssPage => 1, |
62 |
|
RecentChanges => 1, |
63 |
|
$SearchPage => 1, |
64 |
|
AdminChangePassword => 1, |
65 |
|
CompletedSuccessfully => 1, |
66 |
|
WikiUserAgentList => 1, |
67 |
|
WikiPluginInfo => 1, |
68 |
|
); |
69 |
|
my %form; |
70 |
|
my %database; |
71 |
|
my %infobase; |
72 |
|
my %diffbase; |
73 |
|
my %interwiki; |
74 |
|
############################## |
75 |
|
my %page_command = ( |
76 |
|
$IndexPage => 'index', |
77 |
|
$SearchPage => 'searchform', |
78 |
|
$CreatePage => 'create', |
79 |
|
$RssPage => 'rss', |
80 |
|
AdminChangePassword => 'adminchangepasswordform', |
81 |
|
WikiPluginInfo => 'x_WikiPluginInfo', |
82 |
|
); |
83 |
|
my %command_do = ( |
84 |
|
read => \&do_read, |
85 |
|
TEXT_CSS => \&do_output_css, |
86 |
|
edit => \&do_edit, |
87 |
|
adminedit => \&do_adminedit, |
88 |
|
adminchangepasswordform => \&do_adminchangepasswordform, |
89 |
|
adminchangepassword => \&do_adminchangepassword, |
90 |
|
write => \&do_write, |
91 |
|
index => \&do_index, |
92 |
|
searchform => \&do_searchform, |
93 |
|
search => \&do_search, |
94 |
|
create => \&do_create, |
95 |
|
createresult => \&do_createresult, |
96 |
|
comment => \&do_comment, |
97 |
|
RandomJump => \&do_random_jump, |
98 |
|
rss => \&do_rss, |
99 |
|
diff => \&do_diff, |
100 |
|
wikiform => \&do_wikiform, |
101 |
|
x_WikiPluginInfo => \&do_wikiplugininfo, |
102 |
|
map => \&do_map, |
103 |
|
); |
104 |
|
my $UA = ''; ## User agent name |
105 |
|
$| = 1; |
106 |
|
############################## |
107 |
|
|
108 |
if ($testing) { |
sub main { |
109 |
%form = ( |
$UA = $main::ENV{HTTP_USER_AGENT}; |
110 |
# 'mycmd' => 'write', |
&open_db; |
111 |
'mycmd' => 'read', |
&init_form; |
112 |
#'mycmd' => 'search', |
if ($command_do{$form{mycmd}}) { |
113 |
#'mycmd' => 'edit', |
&{$command_do{$form{mycmd}}}; |
114 |
'mymsg' => <<"EOD", |
} else { |
115 |
はじめまして。 |
&{$command_do{$form{read}}}; |
116 |
これからいろいろ書き込みますね。 |
} |
117 |
LinkPageも見てください。 |
&close_db; |
|
TestPageはどうでしょうか。 |
|
|
どうぞよろしく。 |
|
|
http://www.hyuki.com/ |
|
|
[[結城浩]] |
|
|
EOD |
|
|
'mypage' => '<結城浩>', |
|
|
'myword' => '結', |
|
|
# '3C8C8B8FE98D5F3E' => '', |
|
|
# 'TestPage' => '', |
|
|
); |
|
118 |
} |
} |
|
&main; |
|
|
exit(0); |
|
119 |
|
|
120 |
# メイン |
sub do_read { |
121 |
sub main { |
my $content = $database{$form{mypage}}; |
122 |
&normalize_form; |
#print "content-type:text/plain;charset=euc-jp\n\n".gmtime."Get Lastmodified\n"; |
123 |
if ($dbmopen) { |
my $lm = &get_info($form{mypage}, $info_LastModified); |
124 |
if (!dbmopen(%database, $dbname, 0666)) { |
wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER}); |
125 |
&print_error("(dbmopen) $dbname が作れません。"); |
wiki::useragent::add ($ENV{HTTP_USER_AGENT}); |
126 |
} |
#print gmtime."Search...\n"; |
127 |
|
my ($r, $c) = get_search_result ($form{mypage}); |
128 |
|
my $rl = wiki::referer::list_html ($form{mypage}); |
129 |
|
my @toc; |
130 |
|
push @toc, qq(-<a href="#wikipage-see-also">@{[&Resource('SeeAlso',escape=>1)]}</a>) if $c; |
131 |
|
push @toc, qq(-<a href="#wikipage-referer">@{[&Resource('Referers',escape=>1)]}</a>) if $rl; |
132 |
|
my $cf = 'SuikaWiki/0.9'; |
133 |
|
## Should be support at least: |
134 |
|
## - 'SuikaWiki/0.9' CRLF |
135 |
|
## - 'H2H/' ("0.9" / "1.0" / "1.1") CRLF |
136 |
|
## - "/*" WSP* 'W3C-CSS/' ("1.0" / "2.0") "*/" CRLF |
137 |
|
$cf = $1 if $content =~ s#^(?:/\*\s*|[\#<]\?)?([A-Z][A-Za-z0-9-]+/[0-9.]+(?:[^0-9.\x0D\x0A][^\x0D\x0A]*)?)[\x0D\x0A]+##s; |
138 |
|
if ($cf =~ m!^(?:\#\?)?SuikaWiki/0.9(?:$|\s)!) { |
139 |
|
#print gmtime."Header...\n"; |
140 |
|
&print_header ($form{mypage}, -last_modified => $lm, |
141 |
|
-content_format => $cf, -noindex => $cf =~ /obsoleted="yes"/); |
142 |
|
#print "\n". gmtime."Body...\n"; |
143 |
|
&print_content ($content, content_format => $cf, last_modified => $lm, |
144 |
|
-toc => \@toc); |
145 |
|
print &text_to_html (q([[#comment]])) if $cf !~ /obsoleted="yes"/ && !$fixedpage{$form{mypage}}; |
146 |
} else { |
} else { |
147 |
if (!tie(%database, "YukiWikiDB", $dbname)) { |
&print_header($form{mypage}, -last_modified => $lm); |
148 |
&print_error("(tie error)"); |
print "<pre>@{[&escape($content)]}</pre>"; |
|
} |
|
149 |
} |
} |
150 |
|
if ($c) { |
151 |
|
print qq{<h2 @{[&id_and_name('wikipage-see-also')]}>@{[&Resource('SeeAlso',escape=>1)]}</h2>}; |
152 |
|
print $r; |
153 |
|
} |
154 |
|
if ($rl) { |
155 |
|
print qq(<div @{[&id_and_name('wikipage-referer')]}><h2>@{[&Resource('Referers',escape=>1)]}</h2>\n$rl</div>\n); |
156 |
|
} |
157 |
|
#print "\n". gmtime."Footer...\n"; |
158 |
|
&print_footer($form{mypage}, $lm); |
159 |
|
#print "\n". gmtime."Fin...\n"; |
160 |
|
} |
161 |
|
|
162 |
|
sub do_output_css { |
163 |
|
wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER}); |
164 |
|
wiki::useragent::add ($ENV{HTTP_USER_AGENT}); |
165 |
|
my $content = $database{$form{mypage}}; |
166 |
|
if ($content =~ m#^\s*/\*\s*W3C-CSS#) { |
167 |
|
my $lm = gmtime &get_info($form{mypage}, $info_LastModified); |
168 |
|
print "Content-Type: text/css; charset=@{[&get_charset_name($kanjicode)]}\n"; |
169 |
|
print "Last-Modified: $lm\n"; |
170 |
|
print "\n"; |
171 |
|
print $content; |
172 |
|
} else { |
173 |
|
print "Status: 406 Unsupported Media Type\n"; |
174 |
|
&print_header('WikiPageIsNotCSS', -noindex => 1); |
175 |
|
&print_content($database{WikiPageIsNotCSS}); |
176 |
|
&print_footer('WikiPageIsNotCSS'); |
177 |
|
} |
178 |
|
} |
179 |
|
|
180 |
# myspecial対応 |
sub id_and_name ($) { |
181 |
foreach (keys %form) { |
my $name = shift; |
182 |
if (/^myspecial_(.*)/) { |
if ($UA =~ m#Mozilla/[12]\.|Microsoft Internet Explorer#) { |
183 |
$form{mycmd} = $1; |
qq{id="$name"><a name="$name"></a}; |
184 |
last; |
} else { |
185 |
} |
qq{id="$name"}; |
186 |
} |
} |
187 |
|
} |
188 |
|
|
189 |
if ($form{mycmd} eq 'read') { |
sub do_edit { |
190 |
&do_read; |
my ($page) = &unarmor_name(&armor_name($form{mypage})); |
191 |
} elsif ($form{mycmd} eq 'preview') { |
&print_header($page, -noindex => 1); |
192 |
&do_preview; |
if (not &is_editable($page)) { |
193 |
} elsif ($form{mycmd} eq 'write') { |
&print_message(&Resource('Error:ThisPageIsUneditable')); |
194 |
&do_write; |
} elsif (&is_frozen($page)) { |
195 |
} elsif ($form{mycmd} eq 'edit') { |
&print_message(&Resource('Error:ThisPageIsUneditable')); |
|
&do_edit; |
|
|
} elsif ($form{mycmd} eq 'reedit') { |
|
|
&do_reedit; |
|
|
} elsif ($form{mycmd} eq 'search') { |
|
|
&do_search; |
|
|
} elsif ($form{mycmd} eq 'list') { |
|
|
&do_list; |
|
|
} elsif ($form{mycmd} eq 'diff') { |
|
|
&do_diff; |
|
196 |
} else { |
} else { |
197 |
$form{mypage} = $toppage; |
&print_editform($database{$page}, &get_info($page, $info_LastModified), admin=>0); |
|
&do_read; |
|
198 |
} |
} |
199 |
if ($dbmopen) { |
wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER}); |
200 |
dbmclose(%database); |
wiki::useragent::add ($ENV{HTTP_USER_AGENT}); |
201 |
|
my ($r, $c) = get_search_result ($form{mypage}); |
202 |
|
my $rl = wiki::referer::list_html ($form{mypage}); |
203 |
|
if ($c) { |
204 |
|
print qq{<h2 id="wikipage-see-also">@{[&Resource('SeeAlso',escape=>1)]}</h2>}; |
205 |
|
print $r; |
206 |
|
} |
207 |
|
if ($rl) { |
208 |
|
print qq(<div id="wikipage-referer"><h2>@{[&Resource('Referers',escape=>1)]}</h2>\n$rl</div>\n); |
209 |
|
} |
210 |
|
&print_footer($page); |
211 |
|
} |
212 |
|
|
213 |
|
sub do_adminedit { |
214 |
|
my ($page) = &unarmor_name(&armor_name($form{mypage})); |
215 |
|
&print_header($page, -noindex => 1); |
216 |
|
if (not &is_editable($page)) { |
217 |
|
&print_message(&Resource('Error:ThisPageIsUneditable')); |
218 |
} else { |
} else { |
219 |
untie(%database); |
&print_message(&Resource('Error:PasswordIsNotSpecified')); |
220 |
|
&print_editform($database{$page}, &get_info($page, $info_LastModified), admin=>1); |
221 |
} |
} |
222 |
|
&print_footer($page); |
223 |
} |
} |
224 |
|
|
225 |
# ページの表示 |
sub do_adminchangepasswordform { |
226 |
sub do_read { |
&print_header('AdminChangePassword', -noindex => 1); |
227 |
my $page_name = $form{mypage}; |
&print_passwordform; |
228 |
my $percent_name = &encode_percent($page_name); |
&print_footer('AdminChangePassword'); |
|
&print_header($page_name); |
|
|
print qq|<h1>$IconTag<a href="$thisurl?mycmd=search;myword=$percent_name">$page_name</a></h1>\n|; |
|
|
&print_toolbar($page_name); |
|
|
print &convert_html(&get_page($page_name)); |
|
|
&print_footer; |
|
229 |
} |
} |
230 |
|
|
231 |
# ページの編集 |
sub do_adminchangepassword { |
232 |
sub do_edit { |
if ($form{mynewpassword} ne $form{mynewpassword2}) { |
233 |
if (not &is_editable($form{mypage})) { |
&print_error(&Resource('Error:PasswordMismatch')); |
|
# 編集不可ページは表示のみ |
|
|
&do_read; |
|
|
return; |
|
234 |
} |
} |
235 |
&editpage(&get_page($form{mypage})); |
my ($validpassword_crypt) = &get_info($AdminSpecialPage, 'AdminPassword'); |
236 |
} |
if ($validpassword_crypt) { |
237 |
|
if (not &valid_password($form{myoldpassword})) { |
238 |
# ページの再編集 |
# &send_mail_to_admin(<<"EOD", "AdminChangePassword"); |
239 |
sub do_reedit { |
#myoldpassword=$form{myoldpassword} |
240 |
if (not &is_editable($form{mypage})) { |
#mynewpassword=$form{mynewpassword} |
241 |
# 編集不可ページは表示のみ |
#mynewpassword2=$form{mynewpassword2} |
242 |
&do_read; |
#EOD |
243 |
} else { |
&print_error(&Resource('Error:PasswordIsIncorrect')); |
244 |
&editpage($form{mymsg}); |
} |
245 |
|
} |
246 |
|
my ($sec, $min, $hour, $day, $mon, $year, $weekday) = localtime(time); |
247 |
|
my (@token) = ('0'..'9', 'A'..'Z', 'a'..'z'); |
248 |
|
my $salt1 = $token[(time | $$) % scalar(@token)]; |
249 |
|
my $salt2 = $token[($sec + $min*60 + $hour*60*60) % scalar(@token)]; |
250 |
|
my $crypted = crypt($form{mynewpassword}, "$salt1$salt2"); |
251 |
|
&set_info($AdminSpecialPage, 'AdminPassword', $crypted); |
252 |
|
|
253 |
|
&print_header('CompletedSuccessfully', -noindex => 1); |
254 |
|
&print_message(&Resource('Error:PasswordIsChanged')); |
255 |
|
&print_footer('CompletedSuccessfully'); |
256 |
|
} |
257 |
|
|
258 |
|
sub do_index { |
259 |
|
wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER}); |
260 |
|
wiki::useragent::add ($ENV{HTTP_USER_AGENT}); |
261 |
|
&print_header($IndexPage); |
262 |
|
print qq(<ul>); |
263 |
|
foreach my $page (sort keys %database) { |
264 |
|
if (&is_editable($page)) { |
265 |
|
print qq(<li><a href="$url_cgi?@{[&encode($page)]}">@{[&escape($page)]}</a>@{[&escape(&get_subjectline($page))]}</li>); |
266 |
|
} |
267 |
|
} |
268 |
|
print qq(</ul>); |
269 |
|
my ($r, $c) = get_search_result ($form{mypage}); |
270 |
|
if ($c) { |
271 |
|
print qq{<h2 @{[&id_and_name('wikipage-see-also')]}>@{[&Resource('SeeAlso',escape=>1)]}</h2>}; |
272 |
|
print $r; |
273 |
|
} |
274 |
|
my $rl = wiki::referer::list_html ($form{mypage}); |
275 |
|
if ($rl) { |
276 |
|
print qq(<div @{[&id_and_name('wikipage-referer')]}><h2>@{[&Resource('Referers',escape=>1)]}</h2>\n$rl</div>\n); |
277 |
} |
} |
278 |
|
&print_footer($IndexPage); |
279 |
} |
} |
280 |
|
|
281 |
sub editpage { |
sub do_write { |
282 |
my $page_msg = shift; |
if (&frozen_reject()) { |
283 |
my $page_name = $form{mypage}; |
return; |
284 |
my $digest = &calc_message_digest($page_msg); |
} |
|
&print_header($page_name); |
|
|
print qq|<h1>$IconTag${page_name}の編集</h1>\n|; |
|
|
&print_toolbar($page_name); |
|
|
$page_msg = &escape($page_msg); |
|
|
print <<"EOD"; |
|
|
<form action="$thisurl" method="post"> |
|
|
<!--<input type="hidden" name="mycmd" value="preview">--> |
|
|
<input type="hidden" name="mypage" value="$page_name"> |
|
|
<input type="hidden" name="mydigest" value="$digest"> |
|
|
<textarea cols="$cols" rows="$rows" name="mymsg" wrap="virtual">$page_msg</textarea><br> |
|
|
<input type="submit" name="myspecial_preview" value="確認"> |
|
|
<input type="submit" name="myspecial_write" value="確認せず変更"> |
|
|
</form> |
|
|
<hr> |
|
|
<h3>テキスト整形のルール</h3> |
|
|
|
|
|
<p>通常は入力した文字がそのまま出力されますが、 |
|
|
以下のルールに従ってテキスト整形を行うことができます。</p> |
|
|
|
|
|
<ul> |
|
|
<li> |
|
|
空行は段落の区切りとなります。 |
|
|
|
|
|
<li> |
|
|
HTMLのタグは書けません。 |
|
285 |
|
|
286 |
<li> |
if (not &is_editable($form{mypage})) { |
287 |
''強調''のようにシングルクォート二つではさむと、強調になります。 |
&print_header($form{mypage}, -noindex => 1); |
288 |
|
&print_message(&Resource('Error:ThisPageIsUneditable')); |
289 |
|
&print_footer($form{mypage}); |
290 |
|
return; |
291 |
|
} |
292 |
|
|
293 |
<li> |
if (&conflict($form{mypage}, $form{mymsg})) { |
294 |
'''更に強調'''のようにシングルクォート三つではさむと、更に強調になります。 |
return; |
295 |
|
} |
296 |
|
|
297 |
<li> |
# Making diff |
298 |
----のようにマイナス4つがあると、水平線になります。 |
{ |
299 |
|
&open_diff; |
300 |
|
my @msg1 = split(/\n/, $database{$form{mypage}}); |
301 |
|
my @msg2 = split(/\n/, $form{mymsg}); |
302 |
|
$diffbase{$form{mypage}} = &difftext(\@msg1, \@msg2); |
303 |
|
&close_diff; |
304 |
|
} |
305 |
|
|
306 |
<li> |
if ($form{mymsg}) { |
307 |
*を行頭に書くと大見出しになります。 |
$database{$form{mypage}} = $form{mymsg}; |
308 |
|
#&send_mail_to_admin($form{mypage}, "Modify"); |
309 |
|
if ($form{mytouch}) { |
310 |
|
&set_info($form{mypage}, $info_LastModified, time); |
311 |
|
&update_recent_changes; |
312 |
|
} |
313 |
|
&set_info($form{mypage}, $info_IsFrozen, 0 + $form{myfrozen}); |
314 |
|
my $fragment = ''; |
315 |
|
$fragment .= qq(;after_edit_cmd=@{[&encode($form{after_edit_cmd})]}) if $form{after_edit_cmd}; |
316 |
|
if ($form{__comment_anchor_index}) { |
317 |
|
$fragment .= qq(#anchor-$form{__comment_anchor_index}); |
318 |
|
} elsif ($form{__wikiform_anchor_index}) { |
319 |
|
$fragment .= qq(#wikiform-$form{__wikiform_anchor_index}); |
320 |
|
} |
321 |
|
&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)); |
322 |
|
&print_message(&Resource('Error:SavedSuccessfully')); |
323 |
|
&print_content(&Resource('Error:ContinueReading')." @{[&armor_name($form{mypage})]}"); |
324 |
|
&print_footer('CompletedSuccessfully'); |
325 |
|
} else { |
326 |
|
#&send_mail_to_admin($form{mypage}, "Delete"); |
327 |
|
delete $database{$form{mypage}}; |
328 |
|
delete $infobase{$form{mypage}}; |
329 |
|
if ($form{mytouch}) { |
330 |
|
&update_recent_changes; |
331 |
|
} |
332 |
|
&print_header($form{mypage}, -noindex => 1); |
333 |
|
&print_message(&Resource('Error:PageIsDeletedSuccessfully')); |
334 |
|
&print_footer($form{mypage}); |
335 |
|
} |
336 |
|
} |
337 |
|
|
338 |
<li> |
sub do_searchform { |
339 |
**を行頭に書くと小見出しになります。 |
&print_header($SearchPage); |
340 |
|
&print_searchform(""); |
341 |
|
&print_footer($SearchPage); |
342 |
|
} |
343 |
|
|
344 |
<li> |
sub do_search { |
345 |
-を行頭に書くと箇条書きになります。- -- --- の3レベルがあります。 |
my $word = $form{mymsg}; |
346 |
|
&print_header($SearchPage); |
347 |
|
&print_searchform(&escape($word)); |
348 |
|
print scalar get_search_result ($word, -output_not_found => 1, -match_myself => 1); |
349 |
|
&print_footer($SearchPage); |
350 |
|
} |
351 |
|
|
352 |
|
sub get_search_result ($;%) { |
353 |
|
my $word = lc shift; |
354 |
|
my %option = @_; |
355 |
|
my @r; |
356 |
|
foreach my $page (keys %database) { |
357 |
|
next if !$option{-match_myself} && ($page eq $word); |
358 |
|
my $content = lc $database{$page}; |
359 |
|
if (index (lc $page, $word) > -1) { |
360 |
|
my $c = $content =~ s/\Q$word\E//g; |
361 |
|
push @r, [$page, $c+20]; |
362 |
|
} elsif (index ($word, lc $page) > -1) { |
363 |
|
my $c = $content =~ s/\Q$word\E//g; |
364 |
|
push @r, [$page, $c+10]; |
365 |
|
} elsif (my $c = $content =~ s/\Q$word\E//g) { |
366 |
|
push @r, [$page, $c]; |
367 |
|
} |
368 |
|
} |
369 |
|
#my $em = sub { my $s = shift; $s =~ s#(\Q$word\E)#<em>$1</em>#gi; $s }; |
370 |
|
my $r = join "\n", map {qq(<li>[$_->[1]] <a href ="$url_cgi?@{[&encode($_->[0])]}" class="wiki">@{[&escape($_->[0])]}</a> <span class="wikipage-summary">@{[&escape(&get_subjectline($_->[0]))]}</span></li>)} sort {$b->[1] <=> $a->[1] || $a->[0] cmp $b->[0]} @r; |
371 |
|
$r = qq|<ul class="search-result">$r</ul>| if $r; |
372 |
|
wantarray? ($r, scalar @r): $r; |
373 |
|
} |
374 |
|
|
375 |
<li> |
sub do_create { |
376 |
:を行頭に書くと用語と解説文が作れます。 |
&print_header($CreatePage); |
377 |
|
print <<"EOD"; |
378 |
|
<form action="$url_cgi" method="post"> |
379 |
|
<input type="hidden" name="mycmd" value="edit"> |
380 |
|
<strong>@{[&Resource('InputPageNameEdited',escape=>1)]}</strong><br> |
381 |
|
<input type="text" name="mypage" value="" size="20"> |
382 |
|
<input type="submit" value="@{[&Resource('WikiForm:Create',escape=>1)]}"><br> |
383 |
|
</form> |
384 |
|
EOD |
385 |
|
&print_footer($CreatePage); |
386 |
|
} |
387 |
|
|
388 |
<pre> |
sub do_random_jump { |
389 |
:用語1:いろいろ書いた解説文1 |
my @list = keys %database; |
390 |
:用語2:いろいろ書いた解説文2 |
my $name = &encode ($list[rand @list]); |
391 |
:用語3:いろいろ書いた解説文3 |
my $scheme = 'http'; |
392 |
</pre> |
$scheme = lc $1 if $main::ENV{SERVER_PROTOCOL} =~ m#([A-Za-z0-9+.%-]+)#; |
393 |
|
print "Location: $scheme://$main::ENV{SERVER_NAME}:$main::ENV{SERVER_PORT}$url_cgi?$name\n"; |
394 |
|
print "\n"; |
395 |
|
} |
396 |
|
|
397 |
<li> |
sub print_error { |
398 |
http://www.hyuki.com/ のようなURLは自動的にリンクになります。 |
my ($msg) = @_; |
399 |
|
&print_header($ErrorPage, -noindex => 1); |
400 |
|
print qq(<p><strong class="error">$msg</strong></p>); |
401 |
|
&print_footer($ErrorPage); |
402 |
|
exit(0); |
403 |
|
} |
404 |
|
|
405 |
<li> |
sub print_header ($;%) { |
406 |
YukiWikiのように大文字小文字を混ぜた英文字列を書くと、 |
my ($page, %option) = @_; |
407 |
YukiWikiのページ名になります。 |
my @head; |
408 |
|
$option{body_class} = &is_frozen($page) ? 'frozen' : 'normal'; |
409 |
|
$option{body_class} .= " wiki-page-obsoleted" if $option{-content_format} =~ /obsoleted="yes"/; |
410 |
|
if ($option{-goto}) { |
411 |
|
if ($UA =~ m#Opera|MSIE 2\.#) { |
412 |
|
## WARNING: This code may output unsafe HTML document if |
413 |
|
## $option{-goto} is not clean. |
414 |
|
$option{-goto} =~ tr/;/&/ if $UA =~ m#Opera#; |
415 |
|
print qq{Refresh: 0; url=$option{-goto}\n}; |
416 |
|
push @head, qq(<meta http-equiv="refresh" content="0; url=$option{-goto}">); |
417 |
|
} else { |
418 |
|
$option{-goto} =~ tr/;/&/ if $UA =~ m#Mozilla/[1-4]\.#; |
419 |
|
print qq{Refresh: 0; url="$option{-goto}"\n}; |
420 |
|
push @head, qq(<meta http-equiv="refresh" content="0; url="@{[&escape($option{-goto})]}"">); |
421 |
|
} |
422 |
|
} |
423 |
|
print qq{Last-Modified: @{[scalar gmtime $option{-last_modified}]}\n} if $option{-last_modified}; |
424 |
|
if ($UA =~ m#Mozilla/2#) { |
425 |
|
my $ct = qq{text/html; charset=@{[&get_charset_name($kanjicode,compatible=>1)]}}; |
426 |
|
print qq{Content-Type: $ct\n}; |
427 |
|
push @head, qq{<meta http-equiv="content-type" content="$ct">}; |
428 |
|
} elsif ($UA =~ m#Infomosaic#) { |
429 |
|
print qq{Content-Type: text/html\n}; |
430 |
|
} else { |
431 |
|
print qq{Content-Type: text/html; charset=@{[&get_charset_name($kanjicode)]}\n}; |
432 |
|
} |
433 |
|
push @head, qq(<title>@{[&escape($page)]}</title>); |
434 |
|
push @head, qq(<link rel="stylesheet" type="text/css" href="@{[&escape($uri{stylesheet})]}") |
435 |
|
if $UA !~ m#Mozilla/[1-4]\.# || $UA =~ m#MSIE (?:[4-9]\.|\d\d)#; |
436 |
|
push @head, q(<meta name="ROBOTS" content="NOINDEX">) if $option{-noindex}; |
437 |
|
my ($Links, $links) = &make_navigate_links ($page); |
438 |
|
#print $Links; ## Link: fields |
439 |
|
$links = join "\n", (@head, $links); |
440 |
|
print <<"EOD"; |
441 |
|
Content-Language: $lang |
442 |
|
Content-Style-Type: text/css |
443 |
|
|
444 |
<li> |
<!-- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
445 |
[[結城浩]]のように二重の大かっこ[[ ]]でくくった文字列を書くと、 |
"http://www.w3.org/TR/html4/loose.dtd"> + RUBY --> |
446 |
YukiWikiのページ名になります。 |
<html lang="$lang" class="$option{body_class}"> |
447 |
大かっこの中にはスペースを含めてはいけません。 |
<head profile="http://suika.fam.cx/~wakaba/-temp/wiki/wiki?WikiHTMLMetaProfile"> |
448 |
日本語も使えます。 |
$links |
449 |
|
</head> |
450 |
|
<body class="$option{body_class}"> |
451 |
|
EOD |
452 |
|
&print_navigate_links ($page); |
453 |
|
print <<EOD; |
454 |
|
<h1 class="header">@{[&escape($page)]}</h1> |
455 |
|
EOD |
456 |
|
} |
457 |
|
|
458 |
<li> |
sub get_charset_name ($;%) { |
459 |
行頭がスペースで始まっていると、 |
my ($charset, %option) = (lc shift, @_); |
460 |
その段落は整形済み扱われます。 |
if ($charset =~ 'euc') { |
461 |
プログラムを書き込むときに使うと便利です。 |
$charset = $option{compatible} ? 'x-euc-jp' : 'euc-jp'; |
462 |
|
} elsif ($charset =~ 'sjis' || $charset =~ 'shift') { |
463 |
|
$charset = $option{compatible} ? 'x-sjis' : 'shift_jis'; |
464 |
|
} elsif ($charset =~ 'jis') { |
465 |
|
$charset = 'iso-2022-jp'; |
466 |
|
} |
467 |
|
$charset; |
468 |
|
} |
469 |
|
|
470 |
|
sub print_navigate_links (@) { |
471 |
|
my ($page) = @_; |
472 |
|
my $editable = (&is_editable($page) && !&is_frozen($page)) ? 1 : 0; |
473 |
|
my $cookedpage = &encode($page); |
474 |
|
print <<EOH; |
475 |
|
<div class="tools"> |
476 |
|
@{[ $editable |
477 |
|
? qq(<a title="@{[&Resource('EditThisPageLong',escape=>1)]}" href="$url_cgi?mycmd=edit;mypage=$cookedpage" accesskey="E" class="wiki-cmd">@{[&Resource('EditThisPage',escape=>1)]}</a> | ) |
478 |
|
: qq() |
479 |
|
]} |
480 |
|
<a href="$url_cgi?mycmd=read;mypage=$cookedpage;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki-cmd" title="@{[&Resource('ViewThisPageLong',escape=>1)]}">@{[&Resource('ViewThisPage',escape=>1)]}</a> | |
481 |
|
<a href="$url_cgi?mycmd=map;mypage=$cookedpage" class="wiki-cmd" title="@{[&Resource('ShowMapOfThisPageLong',escape=>1)]}">@{[&Resource('ShowMapOfThisPage',escape=>1)]}</a> | |
482 |
|
<a href="$url_cgi?$CreatePage" class="wiki" title="@{[&Resource('GoToCreatePageLong',escape=>1)]}">@{[&Resource('GoToCreatePage',escape=>1)]}</a> | |
483 |
|
<a href="$url_cgi?$IndexPage" class="wiki" title="@{[&Resource('GoToIndexPageLong',escape=>1)]}">@{[&Resource('GoToIndexPage',escape=>1)]}</a> | |
484 |
|
<a href="$url_cgi?$FrontPage" class="wiki" title="@{[&Resource('GoToHomePageLong',escape=>1)]}">@{[&Resource('GoToHomePage',escape=>1)]}</a> | |
485 |
|
<a href="$url_cgi?$SearchPage" class="wiki" title="@{[&Resource('GoToSearchPageLong',escape=>1)]}">@{[&Resource('GoToSearchPage',escape=>1)]}</a> | |
486 |
|
<a href="$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki randomlink" title="@{[&Resource('GoSomewhereLong',escape=>1)]}">@{[&Resource('GoSomewhere',escape=>1)]}</a> | |
487 |
|
<a href="$url_cgi?RecentChanges" class="wiki" title="@{[&Resource('GoToRecentChangesLong',escape=>1)]}">@{[&Resource('GoToRecentChanges',escape=>1)]}</a> |
488 |
|
</div> |
489 |
|
EOH |
490 |
|
} |
491 |
|
|
492 |
<li> |
sub make_navigate_links ($) { |
493 |
> を行頭に書くと、 |
my $page = shift; |
494 |
引用文が書けます。 |
my @link; |
495 |
> の数が多いとインデントが深くなります(3レベルまで)。 |
push @link, {rel=>'edit', href=>"$url_cgi?mycmd=edit;mypage=@{[&encode($page)]}", class=>"wiki-command", title=>&Resource('EditThisPageLink')} if &is_editable ($page) && !&is_frozen ($page); |
496 |
|
push @link, {rel=>'edit', href=>"$url_cgi?mycmd=adminedit;mypage=@{[&encode($page)]}", class=>"wiki-command", title=>&Resource('AdminEditThisPageLink')} if &is_editable ($page) || &is_frozen ($page); |
497 |
|
push @link, {rel=>'view', href=>"$url_cgi?mycmd=read;mypage=@{[&encode($page)]};x-p=@{[time.[0..9]->[rand 10]]}", class=>'wiki-command', title=>&Resource('ViewThisPageLink')}; |
498 |
|
push @link, {rel=>'myself', href=>"$url_cgi?@{[&encode($page)]}", class=>'wiki', title=>&Resource('GoToMyselfLink')}; |
499 |
|
push @link, {rel=>'index', href=>"$url_cgi?$IndexPage", class=>'wiki', title=>&Resource('GoToIndexPageLink')}; |
500 |
|
push @link, {rel=>'home', href=>"$url_cgi?$FrontPage", class=>'wiki', title=>&Resource('GoToHomePageLink')}; |
501 |
|
push @link, {rel=>'News', href=>"$url_cgi?WikiNews", class=>'wiki', title=>&Resource('GoToWikiNewsLink')}; |
502 |
|
push @link, {rel=>'News', href=>"$url_cgi?RecentChanges", class=>"wiki", title=>&Resource('GoToRecentChangesLink')}; |
503 |
|
push @link, {rel=>'News', href=>"$url_cgi?$RssPage", class=>"wiki", title=>&Resource('GoToRssPageLink'), type=>'application/xml'}; |
504 |
|
push @link, {rel=>'search', href=>"$url_cgi?$SearchPage", class=>'wiki', title=>&Resource('GoToSearchPageLink')}; |
505 |
|
push @link, {rel=>'help', href=>"$url_cgi?WikiHelp", class=>'wiki', title=>&Resource('GoToWikiHelpLink')}; |
506 |
|
push @link, {rel=>'copyright', href=>"$url_cgi?WikiPageLicense", class=>'wiki', title=>&Resource('GoToWikiPageLicenseLink')}; |
507 |
|
push @link, {rel=>'jump', href=>qq(javascript:var%20WikiName=prompt('Please%20input%20the%20WikiName:','','Jump%20to%20SuikaWiki');if(WikiName)%7B_content.location.href='$url_cgi%3F'+encodeURIComponent(WikiName)%7D), class=>'wiki-cmd', title=>&Resource('JumpToLink')}; |
508 |
|
push @link, {rel=>'jump', href=>qq(javascript:var%20WikiName=prompt('Please%20input%20the%20WikiName:','','Jump%20to%20SuikaWiki');if(WikiName)%7B_content.location.href='$url_cgi%3Fmycmd=edit;mypage='+encodeURIComponent(WikiName)%7D), class=>'wiki-cmd', title=>&Resource('JumpToEditLink')}; |
509 |
|
push @link, {rel=>'lucky', href=>"$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}", class=>'wiki randomlink', title=>&Resource('GoSomewhereLink')}; |
510 |
|
push @link, {rel=>'history', href=>$uri{cvs_wikipage}.do{my $s=$page;$s=~s/(.)/sprintf '%02X', ord $1/ges;$s}.'.txt', title=>&Resource('ViewHistoryOfThisPageLink'),hreflang=>'en'} if $uri{cvs_wikipage}; |
511 |
|
push @link, {rel=>'history', href=>"$url_cgi?mycmd=diff;mypage=@{[&encode($page)]}", title=>&Resource('ViewDiffOfThisPageLink'), class=>'wiki-command'}; |
512 |
|
push @link, {rel=>'contents', href=>"$url_cgi?mycmd=map;mypage=@{[&encode($page)]}", title=>&Resource('ShowMapOfThisPageLink'), class=>'wiki-command'}; |
513 |
|
my ($Links, $links) = ('', ''); |
514 |
|
for my $e (@link) { |
515 |
|
$links .= qq(<link); |
516 |
|
$Links .= qq(Link: <$e->{href}>); |
517 |
|
for my $attr (qw/rel rev href title class type hreflang charset/) { |
518 |
|
$links .= qq( $attr="@{[&escape($e->{$attr})]}") if $e->{$attr}; |
519 |
|
} |
520 |
|
for my $attr (qw/rel rev title/) { |
521 |
|
$Links .= qq(; $attr="@{[do{$e->{$attr} =~ s/([\\\"])/\\$1/g; $e->{$attr}}]}") if $e->{$attr}; |
522 |
|
} |
523 |
|
$links .= qq(>\n); |
524 |
|
$Links .= qq(\n); |
525 |
|
} |
526 |
|
wantarray ? ($Links, $links) : $Links; |
527 |
|
} |
528 |
|
|
529 |
</ul> |
sub print_footer { |
530 |
|
my ($page, $lm) = @_; |
531 |
|
my $epage = &encode ($page); |
532 |
|
my $cvslog1 = q$Revision$; |
533 |
|
my $cvslog2 = q$Date$; |
534 |
|
print_navigate_links ($page); |
535 |
|
print <<"EOD"; |
536 |
|
@{[ $lm ? qq(<div id="wikipage-last-modified">@{[&Resource('LastModified=',escape=>1)]}@{[&_rfc3339_date ($lm)]}</div>) : '' ]} |
537 |
|
<div class="footer"> |
538 |
|
<a href="http://www.hyuki.com/yukiwiki/" title="YukiWiki 2.0.beta1.2002-05-29 © 2000-2002 by Hiroshi Yuki">@{[&Resource('About:Name:YukiWiki',escape=>1)]}</a> <a href="http://digit.que.ne.jp/work/" title="WalWiki 2.0.beta1.wal.1 © 2000-2002 by Makio Tsukamoto">@{[&Resource('About:Name:WalWiki',escape=>1)]}</a> |
539 |
|
<a href="/gate/cvs/wakaba/wiki/" title="@{[&Resource('About:SuikaWiki:JumpToCVS',escape=>1)]} ($cvslog2)">@{[&Resource('About:Name:SuikaWiki',escape=>1)]} $cvslog1</a> |
540 |
|
</div> |
541 |
|
</body> |
542 |
|
</html> |
543 |
EOD |
EOD |
|
&print_footer; |
|
544 |
} |
} |
545 |
|
|
546 |
# ページの検索 |
sub escape { |
547 |
sub do_search { |
my $s = shift; |
548 |
if ($form{myword}) { |
$s =~ s|\r\n|\n|g; |
549 |
&print_header('検索結果'); |
$s =~ s|&|&|g; |
550 |
print qq|<h1>$IconTag$form{myword}の検索結果</h1>\n|; |
$s =~ s|<|<|g; |
551 |
&print_toolbar(); |
$s =~ s|>|>|g; |
552 |
print qq|<ul>\n|; |
$s =~ s|"|"|g; |
553 |
my $count = 0; |
return $s; |
554 |
foreach my $page_name (sort keys %database) { # sortするのは無謀かな |
} |
555 |
if ($database{$page_name} =~ /\Q$form{'myword'}\E/) { |
|
556 |
my $encoded = &encode_percent($page_name); |
sub unescape { |
557 |
print qq|<li><a href="$thisurl?mycmd=read;mypage=$encoded">$page_name</a>\n|; |
my $s = shift; |
558 |
$count++; |
# $s =~ s|\n|\r\n|g; |
559 |
} |
$s =~ s|<|<|g; |
560 |
|
$s =~ s|>|>|g; |
561 |
|
$s =~ s|"|"|g; |
562 |
|
$s =~ s|&|&|g; |
563 |
|
return $s; |
564 |
|
} |
565 |
|
|
566 |
|
sub print_content ($;$) { |
567 |
|
my ($rawcontent, %option) = @_; |
568 |
|
print &text_to_html($rawcontent, toc=>1, %option); |
569 |
|
} |
570 |
|
|
571 |
|
sub text_to_html { |
572 |
|
my ($txt, %option) = @_; |
573 |
|
my @toc; |
574 |
|
my @toc2 = @{$option{-toc}||[]}; |
575 |
|
my $tocnum = 0; |
576 |
|
|
577 |
|
## Load constants |
578 |
|
my %const; |
579 |
|
if ($option{content_format} =~ /import="([^"]+)"/) { |
580 |
|
for (split /\s*,\s*/, $1) { |
581 |
|
my $wp = $database{$_}; |
582 |
|
if ($wp =~ m!^\#\?SuikaWikiConst/1.0!) { |
583 |
|
wiki::suikawikiconst::to_hash ($wp => \%const); |
584 |
} |
} |
585 |
print qq|</ul>\n|; |
} |
586 |
if ($count > 0) { |
} |
587 |
print qq|<p><strong>$form{myword}</strong>を含むページは、上に示す<strong>$count</strong> ページです。</p>\n|; |
|
588 |
|
$txt =~ s{__&&([^&]+)&&__}{defined $const{$1}?$const{$1}:qq(__&&$1&&__)}ge; |
589 |
|
my (@txt) = split(/\n/, $txt); |
590 |
|
my (@saved, @result); |
591 |
|
unshift(@saved, "</p>"); |
592 |
|
push(@result, "<p>"); |
593 |
|
foreach (@txt) { |
594 |
|
chomp; |
595 |
|
if (/^\*\*\*\*\*([^\x0D\x0A]*)/) { |
596 |
|
push(@toc, qq(----- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n)); |
597 |
|
push(@result, splice(@saved), qq(<h6 @{[&id_and_name("i$tocnum")]}>) . &inline($1, const => \%const) . '</h6>'); |
598 |
|
$tocnum++; |
599 |
|
} elsif (/^\*\*\*\*([^\x0D\x0A]*)/) { |
600 |
|
push(@toc, qq(---- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n)); |
601 |
|
push(@result, splice(@saved), qq(<h5 @{[&id_and_name("i$tocnum")]}>) . &inline($1, const => \%const) . '</h5>'); |
602 |
|
$tocnum++; |
603 |
|
} elsif (/^\*\*\*([^\x0D\x0A]*)/) { |
604 |
|
push(@toc, qq(--- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n)); |
605 |
|
push(@result, splice(@saved), qq(<h4 @{[&id_and_name("i$tocnum")]}>) . &inline($1, const => \%const) . '</h4>'); |
606 |
|
$tocnum++; |
607 |
|
} elsif (/^\*\*([^\x0D\x0A]*)/) { |
608 |
|
# if (/^\*\*(.*)/) { |
609 |
|
# Walrus mod (6) end |
610 |
|
push(@toc, qq(-- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n)); |
611 |
|
push(@result, splice(@saved), qq(<h3 @{[&id_and_name("i$tocnum")]}>) . &inline($1, const => \%const) . '</h3>'); |
612 |
|
$tocnum++; |
613 |
|
} elsif (/^\*([^\x0D\x0A]*)/) { |
614 |
|
push(@toc, qq(- <a href="#i$tocnum">@{[&escape($1)||$tocnum]}</a>\n)); |
615 |
|
push(@result, splice(@saved), qq(<h2 @{[&id_and_name("i$tocnum")]}>) . &inline($1, const => \%const) . '</h2>'); |
616 |
|
$tocnum++; |
617 |
|
} elsif (/^(={1,6})(.*)/) { |
618 |
|
&back_push('ol', length($1), \@saved, \@result); |
619 |
|
push(@result, '<li>' . &inline($2, const => \%const) . '</li>'); |
620 |
|
} elsif (/^(-{1,6})(.*)/) { |
621 |
|
&back_push('ul', length($1), \@saved, \@result); |
622 |
|
my ($pf, $l) = ('', $2); |
623 |
|
if (!$main::_EMBEDED && $l =~ s/^\s*\[([0-9]+)\]//) { |
624 |
|
my $num = 0+$1; |
625 |
|
$pf = qq(<a name="anchor-$num" id="anchor-$num" class="anchor">[$num]</a>); |
626 |
|
} |
627 |
|
push(@result, '<li>' . $pf . &inline ($l, const => \%const) . '</li>'); |
628 |
|
} elsif (/^:([^:]+):(.*)/) { |
629 |
|
&back_push('dl', 1, \@saved, \@result); |
630 |
|
push(@result, '<dt>' . &inline($1, const => \%const) . '</dt>', '<dd>' . &inline($2, const => \%const) . '</dd>'); |
631 |
|
} elsif (/^(?!>>\d)(>{1,5})(.*)/) { |
632 |
|
&back_push('blockquote', length($1), \@saved, \@result); |
633 |
|
push @result, "<p>"; |
634 |
|
push(@result, &inline($2, const => \%const)); |
635 |
|
unshift @saved, "</p>"; |
636 |
|
} elsif (/^\s*$/) { |
637 |
|
push(@result, splice(@saved)); |
638 |
|
push(@result, "<p>"); |
639 |
|
unshift(@saved, "</p>"); |
640 |
|
} elsif (/^(\s+.*)$/) { |
641 |
|
&back_push('pre', 1, \@saved, \@result); |
642 |
|
push(@result, &inline($1, const => \%const)); |
643 |
|
} elsif (/^\,(.*?)[\x0D\x0A]*$/) { |
644 |
|
&back_push('table', 1, \@saved, \@result); |
645 |
|
####### |
646 |
|
# This part is taken from Mr. Ohzaki's Perl Memo and Makio Tsukamoto's WalWiki. |
647 |
|
# XXXXX |
648 |
|
my $tmp = "$1,"; |
649 |
|
my @value = map {/^"(.*)"$/ ? scalar($_ = $1, s/""/"/g, $_) : $_} ($tmp =~ /("[^"]*(?:""[^"]*)*"|[^,]*),/g); |
650 |
|
my @align = map {(s/^\s+//) ? ((s/\s+$//) ? ' align="center"' : ' align="right"') : ''} @value; |
651 |
|
my @colspan = map {($_ eq '==') ? 0 : 1} @value; |
652 |
|
for (my $i = 0; $i < @value; $i++) { |
653 |
|
if ($colspan[$i]) { |
654 |
|
while ($i + $colspan[$i] < @value and $value[$i + $colspan[$i]] eq '==') { |
655 |
|
$colspan[$i]++; |
656 |
|
} |
657 |
|
$colspan[$i] = ($colspan[$i] > 1) ? sprintf(' colspan="%d"', $colspan[$i]) : ''; |
658 |
|
$value[$i] = sprintf('<td%s%s>%s</td>', $align[$i], $colspan[$i], &inline($value[$i], const => \%const)); |
659 |
|
} else { |
660 |
|
$value[$i] = ''; |
661 |
|
} |
662 |
|
} |
663 |
|
push(@result, join('', '<tr>', @value, '</tr>')); |
664 |
|
# XXXXX |
665 |
|
####### |
666 |
|
} elsif (/^\[(INS|DEL|PRE)\[\s*$/) { |
667 |
|
push @result, splice (@saved), '<'.lc($1).'>'; |
668 |
|
unshift @saved, "</p>"; |
669 |
|
push @result, "<p>"; |
670 |
|
} elsif (/^\](INS|DEL|PRE)\]\s*$/) { |
671 |
|
push @result, splice (@saved), '</'.lc($1).'>'; |
672 |
|
} elsif (/^\[([0-9]+)\](.*)$/ && !$main::_EMBEDED) { |
673 |
|
my $num = 0+$1; |
674 |
|
push @result, qq(<a name="anchor-$num" id="anchor-$num" class="anchor">[$num]</a>); |
675 |
|
push @result, &inline ($2, const => \%const); |
676 |
} else { |
} else { |
677 |
print qq|<p><strong>$form{myword}</strong>を含むページは見つかりません。</p>\n|; |
push(@result, &inline($_, const => \%const)); |
678 |
} |
} |
|
} else { |
|
|
&print_header('単語検索'); |
|
|
print qq|<h1>$IconTag単語検索</h1>\n|; |
|
|
&print_toolbar(); |
|
679 |
} |
} |
680 |
print <<"EOD"; |
push(@result, splice(@saved)); |
681 |
<p> |
|
682 |
<form action="$thisurl" method="post"> |
my $toc = ''; |
683 |
<input type="hidden" name="mycmd" value="search"> |
if ($option{toc}) { |
684 |
<input type="text" name="myword" size="20" value="$form{myword}"> |
# Convert @toc (table of contents) to HTML. |
685 |
<input type="submit" value="単語検索"> |
# This part is taken from Makio Tsukamoto's WalWiki. |
686 |
</form> |
my (@tocsaved, @tocresult); |
687 |
</p> |
foreach (@toc,@toc2) { |
688 |
EOD |
if (/^(-{1,6})(.*)$/) { |
689 |
&print_footer; |
&back_push('ul', length($1), \@tocsaved, \@tocresult); |
690 |
|
push(@tocresult, '<li>' . $2 . '</li>'); |
691 |
|
} |
692 |
|
} |
693 |
|
push(@tocresult, splice(@tocsaved)); |
694 |
|
$toc = join("\n", @tocresult); |
695 |
|
$toc = $toc ? qq(<div id="wikipage-toc">$toc</div>) : ''; |
696 |
|
} |
697 |
|
$toc .= join("\n", @result); |
698 |
|
$toc =~ s#<p>\n</p>##g; |
699 |
|
$toc =~ s#[\x0D\x0A]+</#</#g; |
700 |
|
$toc =~ s#<pre>\n#<pre>#g; |
701 |
|
$toc; |
702 |
} |
} |
703 |
|
|
704 |
# ページの一覧 |
sub back_push { |
705 |
sub do_list { |
my ($tag, $level, $savedref, $resultref, $attr) = @_; |
706 |
&print_header('ページ一覧'); |
while (@$savedref > $level) { |
707 |
print qq|<h1>$IconTag ページ一覧</h1>\n|; |
push(@$resultref, shift(@$savedref)); |
708 |
&print_toolbar(); |
} |
709 |
print qq|<ul>\n|; |
if ($savedref->[0] ne "</$tag>") { |
710 |
foreach my $page_name (sort keys %database) { # sortするのは無謀かな |
push(@$resultref, splice(@$savedref)); |
711 |
my $encoded = &encode_percent($page_name); |
} |
712 |
print qq|<li><a href="$thisurl?mycmd=read;mypage=$encoded">$page_name</a>\n| |
while (@$savedref < $level) { |
713 |
} |
unshift(@$savedref, "</$tag>"); |
714 |
print qq|</ul>\n|; |
push(@$resultref, "<$tag$attr>"); |
|
&print_footer; |
|
|
} |
|
|
|
|
|
# プレビュー |
|
|
sub do_preview { |
|
|
my $page_name = $form{mypage}; |
|
|
my $escapedmsg = &escape($form{mymsg}); |
|
|
&print_header($page_name); |
|
|
print qq|<h1>$IconTag${page_name}のプレビュー</h1>\n|; |
|
|
&print_toolbar($page_name); |
|
|
# local $percent_name = &encode_percent($page_name); |
|
|
print qq|<p>以下のプレビューを確認して、よければページ下部のボタンで更新してください。</p>\n|; |
|
|
if ($form{mymsg}) { |
|
|
print qq|<table width="100%" bgcolor="$preview_color" ><tr><td>\n|; |
|
|
# print &convert_html($escapedmsg); |
|
|
print &convert_html($form{mymsg}); |
|
|
print qq|</td></tr></table>\n|; |
|
|
} else { |
|
|
print qq|<p>(ページの内容は空です。更新するとこのページは<strong>削除</strong>されます。)</p>\n|; |
|
715 |
} |
} |
|
&print_preview_buttons($page_name, $escapedmsg, $form{mydigest}); |
|
|
&print_footer; |
|
716 |
} |
} |
717 |
|
|
718 |
sub print_preview_buttons { |
sub inline ($;%) { |
719 |
my ($page_name, $escapedmsg, $digest) = @_; |
my ($line, %option) = @_; |
720 |
print <<"EOD"; |
$line = &escape($line); |
721 |
<form action="$thisurl" method="post"> |
$line =~ s{$embed_command{form}}{&make_custom_form ($1, $2, $3, $4)}ge; |
722 |
<textarea cols="$cols" rows="$rows" name="mymsg" wrap="virtual">$escapedmsg</textarea> |
$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; |
723 |
<br /> |
$line =~ s:\[(WEAK)\[(.+?)\]\]:<span class="@{[lc $1]}">$2</span>:g; |
724 |
<input type="hidden" name="mypage" value="$page_name"> |
$line =~ s:\[ABBR\[([^]]+)\] \[([^]]+)\]\]:<acronym title="$2">$1</acronym>:g; |
725 |
<input type="hidden" name="mydigest" value="$digest"> |
$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; |
726 |
<input type="submit" name="myspecial_preview" value="再度プレビュー"> |
$line =~ s:\[RUBY\[([^]]+)\] \[([^]]+)\]\]:<ruby><rb>$1</rb><rp>(</rp><rt>$2</rt><rp>)</rp></ruby>:g; |
727 |
<input type="submit" name="myspecial_write" value="ページの更新"> |
$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; |
728 |
</form> |
$line =~ s%\[Q\[([^]]+)\](?: \[<([\x21-\x5A\x5E-\x7E]+)>\])?\]%「<q@{[$2?qq( cite="$2"):'']}>$1</q>」%g; |
729 |
EOD |
$line =~ s|'''([^']+)'''|<strong>$1</strong>|g; |
730 |
|
$line =~ s|''([^']+)''|<em>$1</em>|g; |
731 |
|
$line =~ s{ |
732 |
|
(\[\[(\#\S+?)\]\]) |
733 |
|
|\[\[([^[]+?)](?:>>([0-9]+))?] |
734 |
|
|>>([0-9]+) |
735 |
|
|<([A-Za-z0-9%]+:(?:(?!>).)+)> |
736 |
|
}{ |
737 |
|
my ($l, $page,$anchor, $anum, $uri) = ($1, $3,$4, 0+$5, $6); |
738 |
|
if ($l) { |
739 |
|
return &embedded_to_html($1); |
740 |
|
} elsif (defined $page) { |
741 |
|
&make_wikilink ($page, anchor => 0+$anchor); |
742 |
|
} elsif ($anum) { |
743 |
|
qq(<a href="#anchor-$anum" class="wiki-anchor">>>$anum</a>); |
744 |
|
} elsif ($uri) { |
745 |
|
&make_urilink ($uri); |
746 |
|
} |
747 |
|
}gex; |
748 |
|
return $line; |
749 |
} |
} |
750 |
|
|
751 |
# 書き込む |
sub make_wikilink ($%) { |
752 |
sub do_write { |
my ($ename, %option) = @_; |
753 |
if (not &is_editable($form{mypage})) { |
my $name = &unescape ($ename); |
754 |
# 編集不可ページは表示のみ |
if ($database{$name}) { |
755 |
&do_read; |
my $subject = &escape (&get_subjectline ($name, delimiter => '')); |
756 |
return; |
if ($option{anchor}) { |
757 |
|
return qq(<a title="$subject" href="$url_cgi?@{[&encode($name)]}#anchor-$option{anchor}" class="wiki">$ename>>$option{anchor}</a>); |
758 |
|
} else { |
759 |
|
return qq(<a title="$subject" href="$url_cgi?@{[&encode($name)]}" class="wiki">$ename</a>); |
760 |
|
} |
761 |
|
} else { |
762 |
|
return qq(<a title="@{[&Resource('JumpAndEditWikiPage',escape=>1)]}" href="$url_cgi?mycmd=edit;mypage=@{[&escape($name)]}" class="wiki not-exist">$ename<span class="mark">@{[&Resource('JumpAndEditWikiPageMark',escape=>1)]}</span></a>); |
763 |
|
} |
764 |
|
} |
765 |
|
|
766 |
|
sub make_urilink ($;%) { |
767 |
|
require URI; |
768 |
|
my $uri = shift; |
769 |
|
if ($uri =~ s/^IW://) { ## InterWiki (not URI) |
770 |
|
$uri = &unescape ($uri); |
771 |
|
if ($uri =~ /^([^\x00-\x2F\x3A-\x40\x5B-\x60\x7B-\x7F]+|"(?:\\.|[^"\\])+"):([^\x00-\x2F\x3A-\x40\x5B-\x60\x7B-\x7F]+|"(?:\\.|[^"\\])+")$/) { |
772 |
|
my ($site, $name) = ($1, $2); |
773 |
|
for ($site, $name) { |
774 |
|
if (s/^"//) { s/"$//; s/\\(.)/$1/g } |
775 |
|
} |
776 |
|
&init_InterWikiName () unless $interwiki{'[[]]'}; |
777 |
|
if ($interwiki{$site}) { |
778 |
|
&load_formatter ('interwiki'); |
779 |
|
my $uri = &escape ($fmt{interwiki}->replace ($interwiki{$site} => {site => $site, name => $name})); |
780 |
|
$site = &escape ($site); $name = &escape ($name); |
781 |
|
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>>); |
782 |
|
} else { |
783 |
|
qq(<@{[&Resource('Error:UnknownInterWikiName=',escape=>1)]}@{[&escape ($site)]}>); |
784 |
|
} |
785 |
|
} else { |
786 |
|
qq(<@{[&Resource('Error:InvalidInterWiki=',escape=>1)]}@{[&escape($uri)]}>); |
787 |
} |
} |
788 |
|
} elsif ($uri =~ /^urn:/) { ## URN |
789 |
|
my $uri2 = &escape (URI->new ('/uri-res/N2L?'.&unescape ($uri), 'http')->canonical); |
790 |
|
qq(<<a href="$uri2" title="URI: <$uri> (via <$uri2>)" class="out-of-wiki urn">$uri</a>>); |
791 |
|
} elsif ($uri =~ s/^MAIL://) { ## mail address (not URI) |
792 |
|
my $uri2 = &escape (URI->new ('mailto:'.&unescape ($uri))->canonical); |
793 |
|
qq(<<a href="$uri2" class="out-of-wiki mail">$uri</a>>); |
794 |
|
} elsif ($uri =~ s/^IMG(?:\([^)]+\))?://) { ## image (not URI itself) |
795 |
|
my $uri2 = &escape (URI->new (&unescape ($uri))->canonical); |
796 |
|
qq(<img src="$uri2" alt="" title="URI: <$uri2>" class="out-of-wiki">); |
797 |
|
} else { ## misc. URI |
798 |
|
CGI::Carp::warningsToBrowser (0); |
799 |
|
my $uri2 = &escape (URI->new (&unescape ($uri))->canonical); |
800 |
|
CGI::Carp::warningsToBrowser (1); |
801 |
|
qq(<<a href="$uri2" title="URI: <$uri2>" class="out-of-wiki">$uri</a>>); |
802 |
|
} |
803 |
|
} |
804 |
|
|
805 |
|
{my $FormIndex = 0; |
806 |
|
sub make_custom_form ($$$$) { |
807 |
|
my ($wfname, $definition, $template, $option) = @_; |
808 |
|
## $template and $option is currently not used in this procedure. |
809 |
|
unless ($main::_EMBEDED) { |
810 |
|
$FormIndex++; |
811 |
|
if (length $definition) { |
812 |
|
my $param = bless {}, 'SuikaWiki::Plugin'; |
813 |
|
my $lastmodified = &get_info($form{mypage}, $info_LastModified); |
814 |
|
&load_formatter (qw/form_input form_option/); |
815 |
|
$definition = &unescape ($definition); |
816 |
|
$definition =~ s/\\(.)/$1/g; |
817 |
|
$option = &unescape ($option); |
818 |
|
$option =~ s/\\(.)/$1/g; |
819 |
|
$fmt{form_option}->replace ($option, $param); |
820 |
|
$definition .= ' %submit;' if $definition !~ /%submit/ && !$param->{output}->{nosubmit}; |
821 |
|
my $target_page = $param->{output}->{page} || $form{mypage}; |
822 |
|
$param->{form_disabled} = 1 if $fixedpage{$target_page}; |
823 |
|
my $target_form = $param->{output}->{id}; |
824 |
|
my $r = <<EOH; |
825 |
|
<form method="post" action="$url_cgi" id="wikiform-$FormIndex" class="wikiform"> |
826 |
|
<input type="hidden" name="mycmd" value="@{[$param->{form_disabled}?'read':'wikiform']}"> |
827 |
|
<input type="hidden" name="mypage" value="@{[&escape($target_page)]}"> |
828 |
|
<input type="hidden" name="myLastModified" value="$lastmodified"> |
829 |
|
<input type="hidden" name="mytouch" value="on"> |
830 |
|
<input type="hidden" name="@{[$target_form? qq(wikiform_targetform" value="@{[&escape($target_form)]}) : qq(wikiform_index" value="$FormIndex)]}"> |
831 |
|
EOH |
832 |
|
$r .= qq(<a name="wikiform-$FormIndex"></a>) if $UA =~ m#Mozilla/[12]\.#; |
833 |
|
$r .= $fmt{form_input}->replace ($definition, $param); |
834 |
|
$r .= <<EOH; |
835 |
|
</form> |
836 |
|
EOH |
837 |
|
$r; |
838 |
|
} else { ## No input-interface WikiForm |
839 |
|
qq(<a id="wikiform-$FormIndex" name="wikiform-$FormIndex"><!-- #form --></a>); |
840 |
|
} |
841 |
|
} else { |
842 |
|
qq(<ins class="wiki-error">@{[&Resource('Error:WikiForm:EmbedIsNotSupported',escape=>1)]}</ins>); |
843 |
|
} |
844 |
|
}} |
845 |
|
|
846 |
my $page_name = $form{mypage}; |
sub print_message { |
847 |
|
my ($msg) = @_; |
848 |
|
print qq(<p><strong>@{[&escape($msg)]}</strong></p>); |
849 |
|
} |
850 |
|
|
851 |
# digestを使って、更新の衝突チェック |
sub init_form { |
852 |
my $original_digest = &calc_message_digest(&get_page($page_name)); |
## TODO: Support multipart/form-data |
853 |
if ($form{mydigest} ne $original_digest) { |
my $query = ''; |
854 |
&print_header($page_name); |
if (uc $main::ENV{REQUEST_METHOD} eq 'POST') { |
855 |
print qq|<h1>$IconTag${page_name}で【更新の衝突】が起きました</h1>\n|; |
read STDIN, $query, $main::ENV{CONTENT_LENGTH}; |
856 |
print <<"EOD"; |
} |
857 |
<p>あなたがこのページを編集している間に、 |
$query .= ($query ? ';' : '') . $main::ENV{QUERY_STRING}; |
858 |
他の人が同じページを更新してしまったようです。 |
if ($main::ENV{QUERY_STRING} && $main::ENV{QUERY_STRING} !~ /[&;=]/) { |
859 |
</p><p> |
my $query = &decode($main::ENV{QUERY_STRING}); |
860 |
以下に、あなたの編集したテキストがありますので、 |
$query = &code_convert(\$query, $kanjicode); |
861 |
あなたの編集内容が失われないように、 |
if ($page_command{$query}) { |
862 |
いますぐ、メモ帳などにコピー&ペーストしてください。 |
$form{mycmd} = $page_command{$query}; |
863 |
</p><p> |
$form{mypage} = $query; |
864 |
コピー&ペーストが済んでから、 |
} else { |
865 |
最新の内容を見て再度編集し直してください。 |
$form{mypage} = $query; |
866 |
最新の内容は |
$form{mycmd} = $database{$form{mypage}} ? 'read' : 'edit'; |
867 |
<a target="_blank" href="$thisurl?mycmd=read;mypage=$form{mypage}">$form{mypage}</a> |
} |
868 |
で見ることができます。 |
} else { |
869 |
</p> |
for (split /[;&]/, $query) { |
870 |
EOD |
if (my ($n, $v) = split /=/, $_, 2) { |
871 |
# &print_toolbar($page_name); |
for ($n, $v) {tr/+/ /; s/%([0-9A-Fa-f][0-9A-Fa-f])/pack 'C', hex $1/ge}; |
872 |
&print_preview_buttons($page_name, &escape($form{mymsg}), $form{mydigest}); |
$form{$n} = $v; |
873 |
&print_footer; |
} |
874 |
return; |
} |
875 |
|
if ($page_command{$form{mypage}} && $form{mycmd} eq 'read') { |
876 |
|
$form{mypage} = &code_convert(\$form{mypage}, $kanjicode); |
877 |
|
$form{mycmd} = $page_command{$form{mypage}}; |
878 |
|
} |
879 |
} |
} |
880 |
|
$form{mypage} ||= 'HomePage'; |
881 |
|
$form{mycmd} ||= 'read'; |
882 |
|
|
883 |
# diff生成 |
# mypreview_edit -> do_edit, with preview. |
884 |
{ |
# mypreview_adminedit -> do_adminedit, with preview. |
885 |
&opendiff; |
# mypreview_write -> do_write, without preview. |
886 |
my @msg1 = split(/\n/, &get_page($page_name)); |
foreach (keys %form) { |
887 |
my @msg2 = split(/\n/, $form{mymsg}); |
if (/^mypreview_(.*)$/) { |
888 |
$msgrefA = \@msg1; |
$form{mycmd} = $1; |
889 |
$msgrefB = \@msg2; |
$form{mypreview} = 1; |
890 |
&diff_check; |
} |
|
$diffbase{$form{mypage}} = $diff_text; |
|
|
$diff_text = ''; |
|
|
&closediff; |
|
891 |
} |
} |
892 |
|
|
893 |
&print_header($page_name); |
# |
894 |
&set_page($page_name, $form{mymsg}); |
# $form{mycmd} is frozen here. |
895 |
if ($form{mymsg}) { |
# |
896 |
print qq|<h1>$IconTag${page_name}を更新しました</h1>\n|; |
|
897 |
&print_toolbar($page_name); |
for (grep /^wikiform__/, keys %form) { |
898 |
print &convert_html(&get_page($page_name)); |
$form{$_} = &code_convert (\$form{$_}, $kanjicode); |
899 |
} else { |
} |
900 |
print qq|<h1>$IconTag${page_name}を削除しました</h1>\n|; |
$form{mymsg} = &code_convert(\$form{mymsg}, $kanjicode); |
901 |
&print_toolbar($page_name); |
$form{myname} = &code_convert(\$form{myname}, $kanjicode); |
902 |
print qq|<p>${page_name}を削除しました。</p>\n|; |
} |
903 |
} |
|
904 |
&print_footer; |
sub update_recent_changes { |
905 |
# 更新されたのでタッチしておく。 |
my $update = "- @{[&get_now]} [[$form{mypage}]] @{[&get_subjectline($form{mypage})]}"; |
906 |
if ($touchfile) { |
my @oldupdates = split(/\x0D?\x0A/, $database{RecentChanges}); |
907 |
open(FILE, "> $touchfile"); |
shift @oldupdates; ## '#?' magic line |
908 |
print FILE "\n"; |
my @updates; |
909 |
|
foreach (@oldupdates) { |
910 |
|
/^\- \d\d\d\d\-\d\d\-\d\d \d\d:\d\d \[\[([^]]+)\]\]/; |
911 |
|
my $name = $1; |
912 |
|
if ($name ne $form{mypage}) { |
913 |
|
push @updates, $_; |
914 |
|
} |
915 |
|
} |
916 |
|
if (&is_exist_page($form{mypage})) { |
917 |
|
unshift @updates, $update; |
918 |
|
} |
919 |
|
splice @updates, (&Resource ('RecentChanges:Max') || 50) + 1; |
920 |
|
$database{RecentChanges} = "#?SuikaWiki/0.9\n" . join("\n", @updates); |
921 |
|
if ($file_touch) { |
922 |
|
open(FILE, "> $file_touch"); |
923 |
|
print FILE localtime() . "\n"; |
924 |
close(FILE); |
close(FILE); |
925 |
} |
} |
926 |
} |
} |
927 |
|
|
928 |
# ページの変更点 |
{my %SubjectLine; |
929 |
sub do_diff { |
sub get_subjectline { |
930 |
if (not &is_editable($form{mypage})) { |
my ($page, %option) = @_; |
931 |
# 編集不可ページは表示のみ |
unless (defined $SubjectLine{$page}) { |
932 |
&do_read; |
if (not &is_editable($page)) { |
933 |
return; |
$SubjectLine{$page} = ""; |
934 |
|
} else { |
935 |
|
$SubjectLine{$page} = $database{$page}; |
936 |
|
$SubjectLine{$page} =~ s!^\#\?[^\x0A\x0D]+[\x0A\x0D]*!!s; |
937 |
|
$SubjectLine{$page} =~ s/\x0D?\x0A.*//s; |
938 |
|
} |
939 |
} |
} |
940 |
&opendiff; |
if (length $SubjectLine{$page}) { |
941 |
&print_header($form{mypage} . 'の変更点'); |
$option{delimiter} = defined $option{delimiter} ? $option{delimiter} : &Resource('Title-Summary Delimiter'); |
942 |
print qq|<h1>$IconTag <a href="$thisurl?mycmd=read&mypage=$form{mypage}">$form{mypage}</a>の変更点</h1>\n|; |
$option{delimiter}.$SubjectLine{$page}.$option{tail}; |
943 |
&print_toolbar(); |
} else { |
944 |
$_ = &escape($diffbase{$form{mypage}}); |
''; |
|
print <<"EOD"; |
|
|
<ul> |
|
|
<li>追加された行は<ins>青色</ins>です。 |
|
|
<li>削除された行は<del>赤色</del>です。 |
|
|
<li><a href="$thisurl?mycmd=read;mypage=$form{mypage}">$form{mypage}</a>へ行く。 |
|
|
</ul> |
|
|
<hr /> |
|
|
EOD |
|
|
print qq|<pre>\n|; |
|
|
foreach (split(/\n/, $_)) { |
|
|
if (/^\+(.*)/) { |
|
|
print qq|<ins>$1</ins>\n|; |
|
|
} elsif (/^\-(.*)/) { |
|
|
print qq|<del>$1</del>\n|; |
|
|
} elsif (/^\=(.*)/) { |
|
|
print qq|$1\n|; |
|
|
} else { |
|
|
print qq|??? $_\n|; |
|
|
} |
|
945 |
} |
} |
946 |
print qq|</pre>\n|; |
}} |
|
&print_footer; |
|
|
&closediff; |
|
|
} |
|
947 |
|
|
948 |
sub opendiff { |
sub open_db { |
949 |
if ($dbmopen) { |
if ($modifier_dbtype eq 'dbmopen') { |
950 |
if (!dbmopen(%diffbase, $diffdbname, 0666)) { |
dbmopen(%database, $dataname, 0666) or &print_error("(dbmopen) $dataname"); |
951 |
&print_error("(dbmopen) $diffdbname が作れません。"); |
dbmopen(%infobase, $infoname, 0666) or &print_error("(dbmopen) $infoname"); |
952 |
} |
} elsif ($modifier_dbtype eq 'AnyDBM_File') { |
953 |
|
eval q{use AnyDBM_File}; |
954 |
|
tie(%database, "AnyDBM_File", $dataname, O_RDWR|O_CREAT, 0666) or &print_error("(tie AnyDBM_File) $dataname"); |
955 |
|
tie(%infobase, "AnyDBM_File", $infoname, O_RDWR|O_CREAT, 0666) or &print_error("(tie AnyDBM_File) $infoname"); |
956 |
} else { |
} else { |
957 |
if (!tie(%diffbase, "YukiWikiDB", $diffdbname)) { |
eval q{use Yuki::YukiWikiDB}; |
958 |
&print_error("(tie error)"); |
tie(%database, "Yuki::YukiWikiDB", $dataname) or &print_error("(tie Yuki::YukiWikiDB) $dataname"); |
959 |
} |
tie(%infobase, "Yuki::YukiWikiDB", $infoname) or &print_error("(tie Yuki::YukiWikiDB) $infoname"); |
960 |
} |
} |
961 |
} |
} |
962 |
|
|
963 |
sub closediff { |
sub close_db { |
964 |
if ($dbmopen) { |
if ($modifier_dbtype eq 'dbmopen') { |
965 |
dbmclose(%diffbase); |
dbmclose(%database); |
966 |
|
dbmclose(%infobase); |
967 |
|
} elsif ($modifier_dbtype eq 'AnyDBM_File') { |
968 |
|
untie(%database); |
969 |
|
untie(%infobase); |
970 |
} else { |
} else { |
971 |
untie(%diffbase); |
untie(%database); |
972 |
|
untie(%infobase); |
973 |
} |
} |
974 |
} |
} |
975 |
|
|
976 |
# フォームからの情報を連想配列 %form に入れる |
sub open_diff { |
977 |
# &init_form('euc'); |
if ($modifier_dbtype eq 'dbmopen') { |
978 |
sub init_form { |
dbmopen(%diffbase, $diffname, 0666) or &print_error("(dbmopen) $diffname"); |
979 |
my ($charcode) = @_; |
} elsif ($modifier_dbtype eq 'AnyDBM_File') { |
980 |
my $query; |
tie(%diffbase, "AnyDBM_File", $diffname, O_RDWR|O_CREAT, 0666) or &print_error("(tie AnyDBM_File) $diffname"); |
|
if ($ENV{REQUEST_METHOD} =~ /^post$/i) { |
|
|
read(STDIN, $query, $ENV{CONTENT_LENGTH}); |
|
981 |
} else { |
} else { |
982 |
$query = $ENV{QUERY_STRING}; |
tie(%diffbase, "Yuki::YukiWikiDB", $diffname) or &print_error("(tie Yuki::YukiWikiDB) $diffname"); |
983 |
} |
} |
|
my @assocarray = split(/[&;]/, $query); |
|
|
foreach my $assoc (@assocarray) { |
|
|
my ($property, $value) = split(/=/, $assoc); |
|
|
$value =~ tr/+/ /; |
|
|
$value =~ s/%([A-Fa-f0-9][A-Fa-f0-9])/pack("C", hex($1))/eg; |
|
|
&jcode::convert(\$value, $charcode); |
|
|
$form{$property} = $value; |
|
|
} |
|
|
} |
|
|
|
|
|
# エラーページを出力する |
|
|
sub print_error { |
|
|
my ($msg) = @_; |
|
|
&print_header('Error'); |
|
|
print "<h1>$IconTag$msg</h1></body></html>"; |
|
|
exit(0); |
|
984 |
} |
} |
985 |
|
|
986 |
sub escape { |
sub close_diff { |
987 |
my ($line) = shift; |
if ($modifier_dbtype eq 'dbmopen') { |
988 |
$line =~ s|<|<|g; |
dbmclose(%diffbase); |
989 |
$line =~ s|>|>|g; |
} elsif ($modifier_dbtype eq 'AnyDBM_File') { |
990 |
$line =~ s|"|"|g; |
untie(%diffbase); |
991 |
# $line =~ s|\&|&|g; |
} else { |
992 |
return $line; |
untie(%diffbase); |
993 |
|
} |
994 |
} |
} |
995 |
|
|
996 |
sub inline { |
sub print_searchform { |
997 |
my ($line) = shift; |
my ($word) = @_; |
998 |
$line = &escape($line); |
print <<"EOD"; |
999 |
$line =~ s|'''([^']+?)'''|<strong>$1</strong>|g; |
<form action="$url_cgi" method="get"> |
1000 |
$line =~ s|''([^']+?)''|<em>$1</em>|g; |
<input type="hidden" name="mycmd" value="read"> |
1001 |
$line =~ s! |
<input type="text" name="mypage" value="$word" size="20"> |
1002 |
( |
<input type="submit" value="@{[&Resource('WikiForm:Search',escape=>1)]}"> |
1003 |
(?:<(?:mailto|http|https|ftp|urn):[\x21-\x7E]*)> |
</form> |
1004 |
#| (?:$WikiName) # LocalLinkLikeThis |
EOD |
|
| (?:$BracketName) # [[日本語リンク]] |
|
|
) |
|
|
! |
|
|
&make_link($1) |
|
|
!gex; |
|
|
return $line; |
|
1005 |
} |
} |
1006 |
|
|
1007 |
# ページのタイトルからページの内容を得る |
sub print_editform { |
1008 |
sub get_page { |
my ($mymsg, $lastmodified, %mode) = @_; |
1009 |
my $page_name = shift; |
my $frozen = &is_frozen($form{mypage}); |
1010 |
return $database{$page_name} || $database{'[['.$page_name.']]'}; |
|
1011 |
} |
if ($form{mypreview}) { |
1012 |
|
if ($form{mymsg}) { |
1013 |
# ページの内容を与える |
unless ($mode{conflict}) { |
1014 |
# &set_page($title, $txt) |
print qq(<h3>@{[&Resource('Preview:Title',escape=>1)]}</h3>\n); |
1015 |
sub set_page { |
print qq(<p>@{[&Resource('Preview:Notice',escape=>1)]}</p>\n); |
1016 |
# ページを更新する |
print qq(<div class="preview">\n); |
1017 |
my $title = $_[0]; |
&print_content($form{mymsg}); |
1018 |
$database{$title} = $_[1]; |
print qq(</div>\n); |
1019 |
# 空ページなら削除する |
} |
1020 |
unless ($database{$title}) { |
} else { |
1021 |
delete $database{$title}; |
print @{[&Resource('Preview:Empty',escape=>1)]}; |
|
} |
|
|
# RecentChangesを更新する |
|
|
my $delim = ' - '; |
|
|
my @pages = split(/\n/, $database{$whatsnew}); |
|
|
my $datestr = &get_current_datestr; |
|
|
unshift(@pages, qq|-$datestr$delim$title|); |
|
|
# 同一ページの更新は最新のもののみにし、 |
|
|
# 存在しないページはスキップする。 |
|
|
my %count; |
|
|
my @newpages; |
|
|
foreach my $line (@pages) { |
|
|
my ($prefix, $title) = split(/$delim/, $line); |
|
|
$count{$title}++; |
|
|
if ($count{$title} == 1 and exists($database{$title})) { |
|
|
push(@newpages, qq|$prefix - $title|); |
|
1022 |
} |
} |
1023 |
|
$mymsg = &escape($form{mymsg}); |
1024 |
|
} else { |
1025 |
|
$mymsg = &escape($mymsg || $database{NewPageTemplate}); |
1026 |
} |
} |
1027 |
# ここで本当に更新 |
my $magic = ''; |
1028 |
$database{$whatsnew} = join("\n", splice(@newpages, 0, $maxnew)); |
$magic = $1 if $mymsg =~ m/^([^\x0A\x0D]+)/s; |
|
} |
|
1029 |
|
|
1030 |
# ページのヘッダを出力 |
my $edit = $mode{admin} ? 'adminedit' : 'edit'; |
1031 |
sub print_header { |
my $escapedmypage = &escape($form{mypage}); |
1032 |
my $title = shift; |
my $escapedmypassword = &escape($form{mypassword}); |
1033 |
print <<"EOD"; |
my $selected = 'read'; |
1034 |
Content-type: text/html; charset=${charset} |
if ($form{after_edit_cmd}) { |
1035 |
|
$selected = $form{after_edit_cmd}; |
1036 |
|
} elsif ($magic =~ /Const|Config|CSS/) { |
1037 |
|
$selected = 'edit'; |
1038 |
|
} |
1039 |
|
my $afteredit = <<EOH; |
1040 |
|
<select name="after_edit_cmd"> |
1041 |
|
<option value="read" label="@{[&Resource('Edit:SaveAndView',escape=>1)]}"@{[$selected eq 'read' ? ' selected="selected"':'']}>@{[&Resource('Edit:SaveAndView',escape=>1)]}</option> |
1042 |
|
<option value="edit" label="@{[&Resource('Edit:SaveAndEdit',escape=>1)]}"@{[$selected eq 'edit' ? ' selected="selected"':'']}>@{[&Resource('Edit:SaveAndEdit',escape=>1)]}</option> |
1043 |
|
</select> |
1044 |
|
EOH |
1045 |
|
|
1046 |
<html><head> |
print <<"EOD"; |
1047 |
<title>$title</title> |
<form action="$url_cgi" method="post"> |
1048 |
<style type="text/css"> |
<h2>@{[&Resource('Edit:Title',escape=>1)]}</h2> |
1049 |
$style |
@{[ $mode{conflict} ? '' : qq(<input type="submit" name="mypreview_write" value="@{[&Resource('Edit:Save',escape=>1)]}"><kbd>S</kbd>) ]} |
1050 |
</style> |
@{[ $mode{admin} ? qq(<label>@{[&Resource('Edit:Password=',escape=>1)]}<input type="password" name="mypassword" value="$escapedmypassword" size="10"></label>) : "" ]} [@{[do {my $n = 0; |
1051 |
</head> |
$mymsg =~ s/(?:-+\s)?\[([0-9]+)\]/$n = $1 if $1 > $n; $&/mge; |
1052 |
<body> |
++$n}]}]<br> |
1053 |
|
<input type="hidden" name="myLastModified" value="$lastmodified"> |
1054 |
|
<input type="hidden" name="mypage" value="$escapedmypage"> |
1055 |
|
<textarea cols="@{[&Resource('Edit:Form:Cols')+0||80]}" rows="@{[&Resource('Edit:Form:Rows')+0||20]}" name="mymsg" tabindex="1">$mymsg</textarea><br> |
1056 |
|
@{[ |
1057 |
|
$mode{admin} ? |
1058 |
|
qq( |
1059 |
|
<label><input type="radio" name="myfrozen" value="1" @{[$frozen ? qq(checked="checked") : ""]}>@{[&Resource('Edit:Freeze',escape=>1)]}</label> |
1060 |
|
<label><input type="radio" name="myfrozen" value="0" @{[$frozen ? "" : qq(checked="checked")]}>@{[&Resource('Edit:DontFreeze',escape=>1)]}</label><br>) |
1061 |
|
: "" |
1062 |
|
]} |
1063 |
|
@{[ |
1064 |
|
$mode{conflict} ? "" : |
1065 |
|
qq( |
1066 |
|
<input type="checkbox" name="mytouch" value="on" checked="checked">@{[&Resource('Edit:UpdateTimeStamp',escape=>1)]}<br> |
1067 |
|
<input type="submit" name="mypreview_$edit" value="@{[&Resource('Edit:Preview',escape=>1)]}"> |
1068 |
|
<input type="submit" name="mypreview_write" value="@{[&Resource('Edit:Save',escape=>1)]}" accesskey="S"><kbd>S</kbd> |
1069 |
|
$afteredit |
1070 |
|
<br> |
1071 |
|
) |
1072 |
|
]} |
1073 |
|
</form> |
1074 |
EOD |
EOD |
1075 |
|
unless ($mode{conflict}) { |
1076 |
|
## Show help text |
1077 |
|
my $help = $database{WikiEditHelp}; |
1078 |
|
$help =~ s!^\#\?([A-Z][A-Za-z0-9-]+/[0-9.]+(?:[^0-9.\x0D\x0A][^\x0D\x0A]*)?)[\x0D\x0A]+!!s; |
1079 |
|
print &text_to_html ($help, toc => 0); |
1080 |
|
} |
1081 |
} |
} |
1082 |
|
|
1083 |
# ツールバーを出力 |
sub print_passwordform { |
1084 |
sub print_toolbar { |
print <<"EOD"; |
1085 |
my $page_name = shift; |
<form action="$url_cgi" method="post"> |
1086 |
my $percent_name = &encode_percent($page_name); |
<input type="hidden" name="mycmd" value="adminchangepassword"> |
1087 |
my $editlink = ''; |
<label>@{[&Resource('Password:Old=',escape=>1)]}<input type="password" name="myoldpassword" size="10"></label><br> |
1088 |
if ($page_name ne '' and &is_editable($page_name)) { |
<label>@{[&Resource('Password:New1=',escape=>1)]}<input type="password" name="mynewpassword" size="10"></label><br> |
1089 |
$editlink = <<"EOD"; |
<label>@{[&Resource('Password:New2=',escape=>1)]}<input type="password" name="mynewpassword2" size="10"></label><br> |
1090 |
<a href="$thisurl?mycmd=edit;mypage=$percent_name">編集</a> | |
<input type="submit" value="@{[&Resource('WikiForm:Change',escape=>1)]}"><br> |
1091 |
<a href="$thisurl?mycmd=diff;mypage=$percent_name">差分</a> | |
</form> |
|
EOD |
|
|
} |
|
|
print <<"EOD"; |
|
|
<p> |
|
|
[ |
|
|
<a href="$thisurl?mycmd=read;mypage=$toppage">トップ</a> | |
|
|
<a href="$thisurl?mycmd=list">一覧</a> | |
|
|
$editlink |
|
|
<a href="$thisurl?mycmd=search">単語検索</a> | |
|
|
<a href="$thisurl?mycmd=read;mypage=$whatsnew">最近の更新</a> |
|
|
] |
|
|
</p> |
|
1092 |
EOD |
EOD |
1093 |
} |
} |
1094 |
|
|
1095 |
# ページのフッタを出力 |
sub is_editable { |
1096 |
sub print_footer { |
my ($page) = @_; |
1097 |
print <<"EOD"; |
if ($fixedpage{$page} || $page =~ /\s/ || $page =~ /^\#/) { |
1098 |
<div class="navigation"> |
return 0; |
1099 |
[<a href="/" title="このサーバーの首頁">/</a> |
} else { |
1100 |
<a href="/map" title="このサーバーの案内">地図</a> |
return 1; |
1101 |
<a href="/search/" title="このサーバーの検索">検索</a>] |
} |
|
</div> |
|
|
EOD |
|
|
print <<'EOH'; |
|
|
<div class="update"> |
|
|
<a href="http://www.hyuki.com/yukiwiki/">YukiWiki</a> 1.6.6 Copyright (C) 2000,2001 by <a href="http://www.hyuki.com/">Hiroshi Yuki.</a> ${version} |
|
|
+ <a href="$modifierlink">$modifier</a>. |
|
|
<a href="/gate/cvs/wakaba/wiki/" title="CVS Repository"> |
|
|
$Revision$ $Date$ |
|
|
</a> |
|
|
</div> |
|
|
</body></html> |
|
|
EOH |
|
1102 |
} |
} |
1103 |
|
|
1104 |
# URLやページの名前からリンクを作る |
# armor_name: |
1105 |
sub make_link { |
# WikiName -> WikiName |
1106 |
my $name = shift; |
# not_wiki_name -> [[not_wiki_name]] |
1107 |
$name =~ s/^<(.*)>$/$1/; |
sub armor_name { qq([[$_[0]]]) } |
1108 |
$name =~ s/^\[\[(.*)\]\]$/$1/; |
|
1109 |
if ($name =~ /^(http|https|ftp).*?(\.png|\.jpeg|\.jpg)?$/) { |
# unarmor_name: |
1110 |
if ($2) { |
# [[bracket_name]] -> bracket_name |
1111 |
return qq|<a href="$name"><img border="0" src="$name" /></a>|; |
# WikiName -> WikiName |
1112 |
} else { |
sub unarmor_name { |
1113 |
return qq|<<a href="$name">$name</a>>|; |
my ($name) = @_; |
1114 |
} |
if ($name =~ /^\[\[(\S+?)\]\]$/) { |
1115 |
} elsif ($name =~ /^mailto:(.*)/) { |
return $1; |
1116 |
my $address = $1; |
} else { |
1117 |
return qq|<<a href="$name">$address</a>>|; |
return $name; |
|
} elsif ($name =~ m#^urn:[0-9A-Za-z_:;/.-]+#) { |
|
|
return qq|<<a href="/uri-res/N2L?${name}">$name</a>>|; |
|
|
} else { |
|
|
my $name2 = $name; $name2 =~ tr/\x20/-/; |
|
|
if ($database{$name2}) { |
|
|
my $percent_name = &encode_percent($name2); |
|
|
return qq|<a href="$thisurl?mycmd=read;mypage=$percent_name" class="wiki">$name</a>|; |
|
|
} elsif ($database{'[['.$name2.']]'}) { |
|
|
my $percent_name = &encode_percent('[['.$name2.']]'); |
|
|
return qq|<a href="$thisurl?mycmd=read;mypage=$percent_name" class="wiki">$name</a>|; |
|
|
} else { |
|
|
my $percent_name = &encode_percent($name2); |
|
|
return qq|<a href="$thisurl?mycmd=edit;mypage=$percent_name" class="wiki newpage">$name<span class="mark">?</span></a>|; |
|
|
} |
|
1118 |
} |
} |
1119 |
} |
} |
1120 |
|
|
1121 |
# %xx の形式にエンコードする |
sub decode { |
1122 |
# これは、 |
my ($s) = @_; |
1123 |
# http://www.hyuki.com/yukiwiki/yukiwiki.cgi?mycmd=read&mypage=%3C%8C%8B%8F%E9%8D_%3E |
$s =~ tr/+/ /; |
1124 |
# という形式のために使われる。 |
$s =~ s/%([A-Fa-f0-9][A-Fa-f0-9])/pack("C", hex($1))/eg; |
1125 |
# '<結城浩>' → '%3C%8C%8B%8F%E9%8D_%3E' |
return $s; |
1126 |
sub encode_percent { |
} |
1127 |
my $name = shift; |
|
1128 |
|
sub encode { |
1129 |
|
my ($s) = @_; |
1130 |
my $encoded = ''; |
my $encoded = ''; |
1131 |
foreach my $ch (split(//, $name)) { |
foreach my $ch (split(//, $s)) { |
1132 |
if ($ch =~ /[A-Za-z0-9_]/) { |
if ($ch =~ /[A-Za-z0-9_]/) { |
1133 |
$encoded .= $ch; |
$encoded .= $ch; |
1134 |
} else { |
} else { |
1138 |
return $encoded; |
return $encoded; |
1139 |
} |
} |
1140 |
|
|
1141 |
# テキスト本体をHTMLに変換する |
sub conflict { |
1142 |
sub convert_html { |
my ($page, $rawmsg) = @_; |
1143 |
my ($txt) = shift; |
if ($form{myLastModified} eq &get_info($page, $info_LastModified)) { |
1144 |
my (@txt) = split(/\n/, $txt); |
return 0; |
|
foreach (@txt) { |
|
|
chomp; |
|
|
if (/^\*\*\*\*\*(.*)/) { |
|
|
push(@result, splice(@saved), '<h6>' . &inline($1) . '</h6>'); |
|
|
} elsif (/^\*\*\*\*(.*)/) { |
|
|
push(@result, splice(@saved), '<h5>' . &inline($1) . '</h5>'); |
|
|
} elsif (/^\*\*\*(.*)/) { |
|
|
push(@result, splice(@saved), '<h4>' . &inline($1) . '</h4>'); |
|
|
} elsif (/^\*\*(.*)/) { |
|
|
push(@result, splice(@saved), '<h3>' . &inline($1) . '</h3>'); |
|
|
} elsif (/^\*(.*)/) { |
|
|
push(@result, splice(@saved), '<h2>' . &inline($1) . '</h2>'); |
|
|
} elsif (/^----/) { |
|
|
push(@result, splice(@saved), '<hr>'); |
|
|
} elsif (/^(-{1,3})(.*)/) { |
|
|
&back_push('ul', length($1)); |
|
|
push(@result, '<li>' . &inline($2) . '</li>'); |
|
|
} elsif (/^(={1,3})(.*)/) { |
|
|
&back_push('ol', length($1)); |
|
|
push(@result, '<li>' . &inline($2) . '</li>'); |
|
|
} elsif (/^:([^:]+):(.*)/) { |
|
|
&back_push('dl', 1); |
|
|
push(@result, '<dt>' . &inline($1) . '</dt>', '<dd>' . &inline($2) . '</dd>'); |
|
|
} elsif (/^(>{1,3})(.*)/) { |
|
|
&back_push('blockquote', length($1)); |
|
|
push(@result, &inline($2)); |
|
|
} elsif (/^\s*$/) { |
|
|
push(@result, splice(@saved)); |
|
|
unshift(@saved, "</p>"); |
|
|
push(@result, "<p>"); |
|
|
} elsif (/^(\s+.*)$/) { |
|
|
&back_push('pre', 1); |
|
|
#push(@result, &escape($1)); # Not &inline, but &escape |
|
|
push(@result, &inline($1)); # Not &inline, but &escape |
|
|
} else { |
|
|
push(@result, &inline($_)); |
|
|
} |
|
1145 |
} |
} |
1146 |
push(@result, splice(@saved)); |
&print_header($page, -noindex => 1); |
1147 |
return join("\n", @result); |
&print_content(&Resource('Error:Conflict')); |
1148 |
|
&print_editform($rawmsg, $form{myLastModified}, frozen=>0, conflict=>1); |
1149 |
|
&print_footer($page); |
1150 |
|
return 1; |
1151 |
|
} |
1152 |
|
|
1153 |
|
sub get_now { |
1154 |
|
my ($sec, $min, $hour, $day, $mon, $year) = localtime(time); |
1155 |
|
$year += 1900; |
1156 |
|
$mon++; |
1157 |
|
$mon = "0$mon" if $mon < 10; |
1158 |
|
$day = "0$day" if $day < 10; |
1159 |
|
$hour = "0$hour" if $hour < 10; |
1160 |
|
$min = "0$min" if $min < 10; |
1161 |
|
#$sec = "0$sec" if $sec < 10; |
1162 |
|
return "$year-$mon-$day $hour:$min"; |
1163 |
|
} |
1164 |
|
|
1165 |
|
sub init_InterWikiName { |
1166 |
|
my @content = split /\n/, $database{InterWikiName}; |
1167 |
|
for (@content) { |
1168 |
|
if (/^([^#]\S*)\s+(\S[^\x0A\x0D]+)/) { |
1169 |
|
$interwiki{$1} = $2; |
1170 |
|
} |
1171 |
|
} |
1172 |
|
$interwiki{'[[]]'} = 1; ## dummy |
1173 |
} |
} |
1174 |
|
|
1175 |
# &back_push($tag, $count) |
|
1176 |
# $tagのタグを$levelレベルまで詰める。 |
sub get_info { |
1177 |
sub back_push { |
my ($page, $key) = @_; |
1178 |
my ($tag, $level) = @_; |
my %info = map { split(/=/, $_, 2) } split(/\n/, $infobase{$page}); |
1179 |
while (@saved > $level) { |
return $info{$key}; |
1180 |
push(@result, shift(@saved)); |
} |
1181 |
} |
|
1182 |
if ($saved[0] ne "</$tag>") { |
sub set_info { |
1183 |
push(@result, splice(@saved)); |
my ($page, $key, $value) = @_; |
1184 |
} |
my %info = map { split(/=/, $_, 2) } split(/\n/, $infobase{$page}); |
1185 |
while (@saved < $level) { |
$info{$key} = $value; |
1186 |
unshift(@saved, "</$tag>"); |
my $s = ''; |
1187 |
push(@result, "<$tag>"); |
for (keys %info) { |
1188 |
|
$s .= "$_=$info{$_}\n"; |
1189 |
|
} |
1190 |
|
$infobase{$page} = $s; |
1191 |
|
} |
1192 |
|
|
1193 |
|
sub frozen_reject { |
1194 |
|
my ($isfrozen) = &get_info($form{mypage}, $info_IsFrozen); |
1195 |
|
my ($willbefrozen) = $form{myfrozen}; |
1196 |
|
if (not $isfrozen and not $willbefrozen) { |
1197 |
|
# You need no check. |
1198 |
|
return 0; |
1199 |
|
} elsif (valid_password($form{mypassword})) { |
1200 |
|
# You are admin. |
1201 |
|
return 0; |
1202 |
|
} else { |
1203 |
|
&print_error(&Resource('Error:PasswordIsIncorrect')); |
1204 |
|
return 1; |
1205 |
} |
} |
1206 |
} |
} |
1207 |
|
|
1208 |
# 編集可能ページか? |
sub valid_password { |
1209 |
sub is_editable {return 1; |
my ($givenpassword) = @_; |
1210 |
## TODO: ... |
my ($validpassword_crypt) = &get_info($AdminSpecialPage, 'AdminPassword'); |
1211 |
my ($pagename) = @_; |
if (crypt($givenpassword, $validpassword_crypt) eq $validpassword_crypt) { |
|
foreach (@uneditable) { |
|
|
if ($pagename eq $_) { |
|
|
return 0; |
|
|
} |
|
|
} |
|
|
if (&is_valid_name($pagename)) { |
|
1212 |
return 1; |
return 1; |
1213 |
|
} else { |
1214 |
|
return 0; |
1215 |
} |
} |
|
return 0; |
|
1216 |
} |
} |
1217 |
|
|
1218 |
# Validな名前か? |
sub is_frozen { |
1219 |
sub is_valid_name { |
my ($page) = @_; |
1220 |
my ($pagename) = @_; |
if (&get_info($page, $info_IsFrozen)) { |
|
if ($pagename =~ /^$WikiName$/) { |
|
|
return 1; |
|
|
} elsif ($pagename =~ /^$BracketName$/) { |
|
1221 |
return 1; |
return 1; |
1222 |
} else { |
} else { |
1223 |
return 0; |
return 0; |
1224 |
} |
} |
1225 |
} |
} |
1226 |
|
|
1227 |
# 現在時刻の文字列を得る |
sub do_comment { |
1228 |
sub get_current_datestr { |
my ($content) = $database{$form{mypage}}; |
1229 |
my (@wdays) = ( "日", "月", "火", "水", "木", "金", "土" ); |
my $default_name; ## this code does not strict. |
1230 |
my ($sec, $min, $hour, $mday, $mon, $year, $wday) = localtime(time); |
$default_name = $1 if $content =~ /default-name="([^"]+)"/; |
1231 |
return sprintf("%4d-%02d-%02d (%s) %02d:%02d:%02d", |
my $datestr = '[WEAK['.&get_now.']]'; |
1232 |
$year + 1900, $mon + 1, $mday, $wdays[$wday], $hour, $min, $sec); |
my $namestr = $form{myname} || $default_name || &Resource('WikiForm:WikiComment:DefaultName'); |
1233 |
} |
($namestr = '', $datestr = '') if $form{myname} eq 'nodate'; |
1234 |
|
if ($namestr =~ /^(?:>>)?[0-9]/) { |
1235 |
# URL?SomePageや、 |
$namestr = qq( ''$namestr'': ); |
1236 |
# URL?[[結城浩]]の形式だった場合、(not yet) |
} elsif (length $namestr) { |
1237 |
# 強制的にmycmdをreadにして$formの内容を設定する。 |
$namestr = qq( ''[[$namestr]]'': ); |
1238 |
sub normalize_form { |
} |
1239 |
foreach my $key (keys %form) { |
my $anchor = &get_new_anchor_index ($content); |
1240 |
if ($key =~ /^$WikiName$/) { |
my $i = 1; my $o = 0; |
1241 |
$form{mycmd} = 'read'; |
$content =~ s{(\[\[\#r?comment\]\])}{ |
1242 |
$form{mypage} = $1; |
my $embed = $1; |
1243 |
last; |
if ($i == $form{comment_index}) { |
1244 |
} elsif ($key =~ /^$BracketName$/) { |
if ($embed ne '[[#rcomment]]') { |
1245 |
$form{mycmd} = 'read'; |
$embed = "- [$anchor] $datestr$namestr$form{mymsg}\n$embed"; $o = 1; |
1246 |
$form{mypage} = $1; |
} else { |
1247 |
last; |
$embed .= "\n- [$anchor] $datestr$namestr$form{mymsg}"; $o = 1; |
1248 |
} |
} |
1249 |
|
} |
1250 |
|
$i++; $embed; |
1251 |
|
}ge; |
1252 |
|
unless ($o) { |
1253 |
|
$content = "#?SuikaWiki/0.9\n\n" unless $content; |
1254 |
|
$content .= "\n" unless $content =~ /\n$/s; |
1255 |
|
$content .= "- [$anchor] $datestr$namestr$form{mymsg}\n"; |
1256 |
|
} |
1257 |
|
$form{__comment_anchor_index} = $anchor; |
1258 |
|
if ($form{mymsg} || $form{myname}) { |
1259 |
|
$form{mymsg} = $content; |
1260 |
|
$form{mytouch} = 'on'; |
1261 |
|
&do_write; |
1262 |
|
} else { |
1263 |
|
$form{mycmd} = 'read'; |
1264 |
|
&do_read; |
1265 |
} |
} |
1266 |
} |
} |
1267 |
|
|
1268 |
# 変換テストを行なうときのサンプル |
sub get_new_anchor_index ($) { |
1269 |
sub print_sample { |
my $content = shift; |
1270 |
my $txt = &convert_html(<<"EOD"); |
my $anchor = 0; |
1271 |
*大見出し1 |
$content =~ s/^(?:[-=]+\s*)?\[([0-9]+)\]/$anchor = $1 if $1 > $anchor; $&/mge; |
1272 |
**小見出し1-1 |
$anchor + 1; |
1273 |
-項目1 |
} |
1274 |
-項目2 |
|
1275 |
-項目3 |
my $CommentIndex = 0; |
1276 |
段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1 |
sub embedded_to_html { |
1277 |
段落1段落1段落1段落1段落1段落''強調''1段落1段落1段落1段落1段落1 |
my ($embedded) = @_; |
1278 |
段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1 |
if ($embedded eq '[[#comment]]' or $embedded eq '[[#rcomment]]') { |
1279 |
|
unless ($main::_EMBEDED) { |
1280 |
段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2 |
my $lastmodified = &get_info($form{mypage}, $info_LastModified); |
1281 |
段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2 |
return <<"EOD"; |
1282 |
段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2 |
<form action="$url_cgi" method="post" id="x-comment-@{[++$CommentIndex]}" class="comment"><p> |
1283 |
**小見出し1-2 |
<input type="hidden" name="mycmd" value="comment"> |
1284 |
:用語1:いろいろ書いた解説文1と''強調単語'' |
<input type="hidden" name="mypage" value="$form{mypage}"> |
1285 |
段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1 |
<input type="hidden" name="myLastModified" value="$lastmodified"> |
1286 |
段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1 |
<input type="hidden" name="mytouch" value="on"> |
1287 |
段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1 |
<input type="hidden" name="comment_index" value="$CommentIndex"> |
1288 |
:用語2:いろいろ書いた解説文2 |
@{[&Resource('WikiForm:WikiComment:Name=',escape=>1)]} |
1289 |
:用語3:いろいろ書いた解説文3 |
<input type="text" name="myname" value="" size="10" class="comment-name"> |
1290 |
---- |
<input type="text" name="mymsg" value="" size="60" class="comment-msg"> |
1291 |
*大見出し2 |
<input type="submit" value="@{[&Resource('WikiForm:Add',escape=>1)]}" title="@{[&Resource('WikiForm:AddLong',escape=>1)]}" class="comment-submit"> |
1292 |
**小見出し2-1 |
</p></form> |
|
<http://suika.fam.cx/> |
|
|
**小見出し2-2 |
|
|
|
|
|
[[結城浩]] |
|
|
|
|
|
段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1 |
|
|
段落1段落1段落1段落'''強調'''1段落1段落1段落1段落1段落1段落1段落1 |
|
|
段落1段落1段落1段落'''''強い強調'''''1段落1段落1段落1段落1段落1段落1段落1段落1 |
|
|
>段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2 |
|
|
>段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2 |
|
|
>段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2 |
|
|
|
|
|
レベル0レベル0レベル0レベル0レベル0レベル0 |
|
|
|
|
|
>レベル1 |
|
|
>レベル1 |
|
|
>レベル1 |
|
|
>>レベル2 |
|
|
>>レベル2 |
|
|
>>レベル2 |
|
|
>>>レベル3 |
|
|
-はろ1 |
|
|
--はろ2 |
|
|
ろろろろ2 |
|
|
---はろ3 |
|
|
--はろ2 |
|
|
---はろ3 |
|
|
--はろ2 |
|
|
---はろ3 |
|
|
>>>レベル3 |
|
|
>>>レベル3 |
|
|
>>>レベル3 |
|
1293 |
EOD |
EOD |
1294 |
print $txt; |
} else { |
1295 |
exit; |
return <<"EOD"; |
1296 |
|
<del><form action="$url_cgi" method="get"> |
1297 |
|
<input type="hidden" name="mycmd" value="read"> |
1298 |
|
<input type="hidden" name="mypage" value="$form{mypage}"> |
1299 |
|
@{[&Resource('WikiForm:WikiComment:Name=',escape=>1)]} |
1300 |
|
<input type="text" name="myname" value="" size="10" disabled="disabled"> |
1301 |
|
<input type="text" name="mymsg" value="" size="60" disabled="disabled"> |
1302 |
|
</form></del> |
1303 |
|
EOD |
1304 |
|
} |
1305 |
|
} elsif ($embedded =~ /$embed_command{searched}/) { |
1306 |
|
return get_search_result ($1, -match_myself => 1); |
1307 |
|
} elsif ($embedded =~ /^\[\[\#embed:(.+)\]\]$/) { |
1308 |
|
my ($name, $r) = ($1, ''); |
1309 |
|
if ($main::_EMBEDED != 1) { |
1310 |
|
my ($content, $cf) = ($database{$name}, 'SuikaWiki/0.9'); |
1311 |
|
$cf = $1 if $content =~ s!^(?:[\#<]\?|/\*\s*)?([A-Z][A-Za-z0-9-]+/[0-9.]+(?:[^0-9.][^\x0D\x0A]*)?)[\x0D\x0A]+!!s; |
1312 |
|
if ($cf =~ m!^(?:\#\?)?SuikaWiki/0.9(?:$|\s)!) { |
1313 |
|
$main::_EMBEDED = 1; |
1314 |
|
$r = &text_to_html ($content, content_format => $cf); |
1315 |
|
$main::_EMBEDED = 0; |
1316 |
|
} elsif (length $content) { |
1317 |
|
$r = "<pre>@{[&escape ($content)]}</pre>"; |
1318 |
|
} else { |
1319 |
|
$r = &text_to_html ("[INS[\n[[$name]]: @{[&Resource('Embed:PageNotFound')]}\n]INS]\n", content_format => 'SuikaWiki/0.9'); |
1320 |
|
} |
1321 |
|
} else { ## nested #EMBED |
1322 |
|
$r = &text_to_html ("[INS[\n[[$name]]: @{[&Resource('Embed:Nested',escape=>1)]}\n]INS]\n", content_format => 'SuikaWiki/0.9'); |
1323 |
|
} |
1324 |
|
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>); |
1325 |
|
} elsif ($embedded =~ /^\[\[\#randomlink:(.+)\]\]$/) { |
1326 |
|
return qq(<a href="$url_cgi?mycmd=RandomJump;x-param=@{[time.[0..9]->[rand 10]]}" class="wiki randomlink">$1</a>); |
1327 |
|
} else { |
1328 |
|
return $embedded; |
1329 |
|
} |
1330 |
|
} |
1331 |
|
|
1332 |
|
sub load_formatter (@) { |
1333 |
|
for my $t (@_) { |
1334 |
|
unless ($fmt{$t}) { |
1335 |
|
require Message::Util::Formatter; |
1336 |
|
$fmt{$t} = Message::Util::Formatter->new; |
1337 |
|
for (@{$SuikaWiki::Plugin::List{'wiki'.$t}||[]}) { |
1338 |
|
$_->load_formatter ($fmt{$t}, type => 'wiki'.$t); |
1339 |
|
} |
1340 |
|
} |
1341 |
|
} |
1342 |
} |
} |
1343 |
|
|
1344 |
sub diff_check { |
sub do_wikiform { |
1345 |
traverse_sequences( |
my $content = $database{$form{mypage}}; |
1346 |
$msgrefA, $msgrefB, |
my $anchor = &get_new_anchor_index ($content); |
1347 |
{ |
&load_formatter (qw/form_template form_option/); |
1348 |
MATCH => \&df_match, |
my $write = 0; |
1349 |
DISCARD_A => \&df_delete, |
my $i = 1; |
1350 |
DISCARD_B => \&df_add, |
$content =~ s{$embed_command{form}}{ |
1351 |
|
my ($embed, $wfname, $template, $option) = ($&, $1, $3, $4); |
1352 |
|
if (($wfname && $wfname eq $form{wikiform_targetform}) |
1353 |
|
|| $i == $form{wikiform_index}) { |
1354 |
|
$template =~ s/\\(.)/$1/g; |
1355 |
|
$option =~ s/\\(.)/$1/g; |
1356 |
|
my $param = bless {}, 'SuikaWiki::Plugin'; |
1357 |
|
$param->{page} = $form{mypage}; |
1358 |
|
$param->{form_index} = $i; |
1359 |
|
$param->{form_name} = $wfname; |
1360 |
|
$param->{anchor_index} = $anchor; |
1361 |
|
$param->{argv} = \%form; |
1362 |
|
$param->{default_name} = $1 if $content =~ /default-name="([^"]+)"/; |
1363 |
|
$param->{default_name} ||= &Resource('WikiForm:WikiComment:DefaultName'); |
1364 |
|
$fmt{form_option}->replace ($option, $param); |
1365 |
|
my $t = 1; |
1366 |
|
for (@{$param->{require}||[]}) { |
1367 |
|
(undef $t, last) unless length $param->{argv}->{'wikiform__'.$_}; |
1368 |
} |
} |
1369 |
); |
$t = $fmt{form_template}->replace ($template, $param) if $t; |
1370 |
&diff_flush; |
if (length $t) { |
1371 |
} |
if ($param->{output}->{reverse}) { |
1372 |
|
$embed .= "\n" . $t; |
1373 |
sub diff_flush { |
} else { |
1374 |
$diff_text .= join('', map { "-$_\n" } splice(@diff_deleted)); |
$embed = $t . "\n" . $embed; |
1375 |
$diff_text .= join('', map { "+$_\n" } splice(@diff_added)); |
} |
1376 |
} |
$write = 1; |
1377 |
|
$form{__comment_anchor_index} = $anchor |
1378 |
sub df_match { |
if $param->{anchor_index_}; ## $anchor is used! |
1379 |
my ($a, $b) = @_; |
} |
1380 |
&diff_flush; |
$form{__wikiform_anchor_index} = $i; |
1381 |
$diff_text .= "=$msgrefA->[$a]\n"; |
undef $form{wikiform_targetform}; ## make sure never to match |
1382 |
} |
undef $form{wikiform_index}; ## with WikiForm in rest of page |
1383 |
|
} |
1384 |
sub df_delete { |
$i++; $embed; |
1385 |
my ($a, $b) = @_; |
}ge; |
1386 |
push(@diff_deleted, $msgrefA->[$a]); |
unless ($write) { |
1387 |
|
#$content = "#?SuikaWiki/0.9\n\n" unless $content; |
1388 |
|
#$content .= "\n" unless $content =~ /\n$/s; |
1389 |
|
# |
1390 |
|
} |
1391 |
|
if ($write) { |
1392 |
|
$form{mymsg} = $content; |
1393 |
|
$form{mytouch} = 'on'; |
1394 |
|
&do_write; |
1395 |
|
} else { |
1396 |
|
$form{mycmd} = 'read'; |
1397 |
|
&do_read; |
1398 |
|
} |
1399 |
} |
} |
1400 |
|
|
1401 |
sub df_add { |
sub code_convert { |
1402 |
my ($a, $b) = @_; |
require Jcode; |
1403 |
push(@diff_added, $msgrefB->[$b]); |
my ($contentref, $code) = (shift, shift || $kanjicode); |
1404 |
|
$code = 'jis' if $code =~ /iso/; |
1405 |
|
$code = 'euc' if $code =~ /euc/; |
1406 |
|
$code = 'sjis' if $code =~ /shift/; |
1407 |
|
$code = 'utf8' if $code =~ /utf/; |
1408 |
|
#&Jcode::convert($contentref, $code); # for Jcode.pm |
1409 |
|
# &jcode::convert($contentref, $code); # for jcode.pl |
1410 |
|
#&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'; |
1411 |
|
Jcode->new ($contentref)->h2z->tr ("\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&,.:;?!`^_/|()[]{}+$%#*@='"~-><\ ))->$code; |
1412 |
|
return $$contentref; |
1413 |
} |
} |
1414 |
|
|
1415 |
sub calc_message_digest { # You have to use MD5... |
sub do_diff { |
1416 |
my $text = shift; |
if (not &is_editable($form{mypage})) { |
1417 |
my @text = split(//, $text); |
&do_read; |
1418 |
my $len = length($text); |
return; |
|
my $checksum = 0; |
|
|
foreach (@text) { |
|
|
$checksum += ord($_); |
|
|
$checksum = ($checksum * 2) % 65536 + (($checksum & 32768) ? 1 : 0); # 16bit rotate |
|
1419 |
} |
} |
1420 |
return "$len:$checksum"; |
&open_diff; |
1421 |
|
my $title = $form{mypage}; |
1422 |
|
&print_header($title, -noindex => 1); |
1423 |
|
$_ = &escape($diffbase{$form{mypage}}); |
1424 |
|
&close_diff; |
1425 |
|
print qq(<h3>@{[&Resource('Diff:Title',escape=>1)]}</h3>); |
1426 |
|
print qq(<p>@{[&Resource('Diff:Notice',escape=>1)]}</p>); |
1427 |
|
print qq(<pre class="diff">); |
1428 |
|
foreach (split(/\n/, $_)) { |
1429 |
|
if (/^\+(.*)/) { |
1430 |
|
print qq(<ins class="added">$1</ins>\n); |
1431 |
|
} elsif (/^\-(.*)/) { |
1432 |
|
print qq(<del class="deleted">$1</del>\n); |
1433 |
|
} elsif (/^\=(.*)/) { |
1434 |
|
print qq(<span class="same">$1</span>\n); |
1435 |
|
} else { |
1436 |
|
print qq|??? $_\n|; |
1437 |
|
} |
1438 |
|
} |
1439 |
|
print qq(</pre>); |
1440 |
|
&print_footer($title); |
1441 |
} |
} |
1442 |
|
|
1443 |
# Definition of YukiWikiDB |
sub do_rss { |
1444 |
package YukiWikiDB; |
eval q{use Yuki::RSS}; |
1445 |
|
my $rss = new Yuki::RSS( |
1446 |
my $debug = 1; |
version => '1.0', |
1447 |
|
encoding => &get_charset_name ($kanjicode), |
1448 |
|
); |
1449 |
|
my $scheme = 'http'; |
1450 |
|
$scheme = lc $1 if $main::ENV{SERVER_PROTOCOL} =~ m#([A-Za-z0-9+.%-]+)#; |
1451 |
|
my $myuri = "$scheme://$main::ENV{SERVER_NAME}:$main::ENV{SERVER_PORT}$url_cgi"; |
1452 |
|
$rss->stylesheet ( |
1453 |
|
href => $myuri . "?mycmd=TEXT_CSS;mypage=WikiStyle:RSS", |
1454 |
|
type => 'text/css', |
1455 |
|
); |
1456 |
|
$rss->channel( |
1457 |
|
title => &Resource ('RSS:WikiTitle'), |
1458 |
|
link => $myuri, |
1459 |
|
description => &Resource ('RSS:WikiDescription'), |
1460 |
|
'dc:language' => $lang, |
1461 |
|
); |
1462 |
|
my $recentchanges = $database{RecentChanges}; |
1463 |
|
my $count = 0; |
1464 |
|
foreach (split(/\n/, $recentchanges)) { |
1465 |
|
last if ($count >= 15); |
1466 |
|
if (/\[\[([^]]+)\]\]/) { |
1467 |
|
my $title = $1; |
1468 |
|
$rss->add_item ( |
1469 |
|
title => &escape($title), |
1470 |
|
link => $myuri . '?' . &encode($title), |
1471 |
|
description => &escape(&get_subjectline($title,delimiter=>'')), |
1472 |
|
'dc:date' => &get_info ($title, $info_LastModified), |
1473 |
|
); |
1474 |
|
$count++; |
1475 |
|
} |
1476 |
|
} |
1477 |
|
# print RSS information (as XML). |
1478 |
|
print <<"EOD" |
1479 |
|
Content-type: application/xml; charset=@{[&get_charset_name ($kanjicode)]} |
1480 |
|
|
1481 |
# Constructor |
@{[$rss->as_string]} |
1482 |
sub new { |
EOD |
|
return shift->TIEHASH(@_); |
|
1483 |
} |
} |
1484 |
|
|
1485 |
# tying |
sub _rfc3339_date ($) { |
1486 |
sub TIEHASH { |
my @time = gmtime (shift); |
1487 |
my ($class, $dbname) = @_; |
sprintf '%04d-%02d-%02dT%02d:%02d:%02d+00:00', $time[5]+1900,$time[4]+1,@time[3,2,1,0]; |
|
my $self = { |
|
|
dir => $dbname, |
|
|
keys => [], |
|
|
}; |
|
|
if (not -d $self->{dir}) { |
|
|
if (!mkdir($self->{dir}, 0777)) { |
|
|
print "mkdir(" . $self->{dir} . ") fail\n" if ($debug); |
|
|
return undef; |
|
|
} |
|
|
} |
|
|
return bless($self, $class); |
|
1488 |
} |
} |
1489 |
|
|
1490 |
# Store |
sub is_exist_page { |
1491 |
sub STORE { |
my ($name) = @_; |
1492 |
my ($self, $key, $val) = @_; |
if ($use_exists) { |
1493 |
my $file = &make_filename($self, $key); |
return exists($database{$name}); |
|
if (open(FILE,"> $file")) { |
|
|
binmode(FILE); |
|
|
print FILE $val; |
|
|
close(FILE); |
|
|
return $self->{$key} = $val; |
|
1494 |
} else { |
} else { |
1495 |
print "$file create error."; |
return $database{$name}; |
1496 |
} |
} |
1497 |
} |
} |
1498 |
|
|
1499 |
# Fetch |
sub __get_database ($) { $database{ $_[0] } } |
1500 |
sub FETCH { |
sub __set_database ($$) { $database{ $_[0] } = $_[1] } |
1501 |
my ($self, $key) = @_; |
|
1502 |
my $file = &make_filename($self, $key); |
sub do_wikiplugininfo { |
1503 |
if (open(FILE, $file)) { |
&print_header (q(WikiPluginInfo)); |
1504 |
local $/; |
print text_to_html (&SuikaWiki::Plugin::make_info_page); |
1505 |
$self->{$key} = <FILE>; |
&print_footer (q(WikiPluginInfo)); |
1506 |
close(FILE); |
} |
1507 |
|
|
1508 |
|
sub do_map { |
1509 |
|
my $page = $form{mypage}; |
1510 |
|
&print_header ($page); |
1511 |
|
wiki::referer::add ($form{mypage}, $ENV{HTTP_REFERER}); |
1512 |
|
wiki::useragent::add ($ENV{HTTP_USER_AGENT}); |
1513 |
|
my ($r, $c) = get_search_result ($form{mypage}); |
1514 |
|
my $rl = wiki::referer::list_html ($form{mypage}); |
1515 |
|
print "<h2>@{[&Resource('Map:Title',escape=>1)]}</h2>\n<p>@{[&Resource('Map:Description',escape=>1)]}</p>\n"; |
1516 |
|
my %option = (level => 0+&Resource('Map:Depth'), weight_list => {}, not_exist => {}, |
1517 |
|
map_from_here => &Resource('Map:FromHere'), |
1518 |
|
map_from_here_description => &Resource('Map:FromHereLong')); |
1519 |
|
&wiki::map::make_list ($page, %option); |
1520 |
|
print &wiki::map::list_to_html ($page, $option{weight_list}, %option); |
1521 |
|
if ($c) { |
1522 |
|
print qq{<h2 id="wikipage-see-also">@{[&Resource('SeeAlso',escape=>1)]}</h2>}; |
1523 |
|
print $r; |
1524 |
|
} |
1525 |
|
if ($rl) { |
1526 |
|
print qq(<div id="wikipage-referer"><h2>@{[&Resource('Referers',escape=>1)]}</h2>\n$rl</div>\n); |
1527 |
|
} |
1528 |
|
&print_footer ($page); |
1529 |
|
} |
1530 |
|
|
1531 |
|
my %_Resource; |
1532 |
|
sub Resource ($;%) { |
1533 |
|
my ($s, %o) = @_; |
1534 |
|
unless (defined $_Resource{$s}) { |
1535 |
|
$_Resource{$_[0]} = &wiki::resource::get ($s, $_Resource{__option}); |
1536 |
|
} |
1537 |
|
$o{escape} ? &escape ($_Resource{$s}) : $_Resource{$s}; |
1538 |
|
} |
1539 |
|
|
1540 |
|
package wiki::referer; |
1541 |
|
sub add ($$) { |
1542 |
|
my $page = shift; |
1543 |
|
my $uri = shift; |
1544 |
|
unless (ref $uri) { |
1545 |
|
require URI; |
1546 |
|
$uri = URI->new ($uri); |
1547 |
|
## Some schemes do not have query part. |
1548 |
|
eval q{ $uri->query (undef) if $uri->query =~ /^[0-9]{6,8}$/ }; |
1549 |
|
$uri->fragment (undef); |
1550 |
|
} |
1551 |
|
$uri = $uri->canonical; |
1552 |
|
return unless $uri; |
1553 |
|
for my $regex (&get_dont_record) { |
1554 |
|
return if $uri =~ /$regex/; |
1555 |
|
} |
1556 |
|
my %list = get ($page); |
1557 |
|
$list{ $uri }++; |
1558 |
|
set ($page, \%list); |
1559 |
|
} |
1560 |
|
sub get ($) { |
1561 |
|
my $page = shift; |
1562 |
|
split /"/, main::get_info ($page, 'Referer'); |
1563 |
|
} |
1564 |
|
sub set ($%) { |
1565 |
|
my $page = shift; |
1566 |
|
my $list = shift; |
1567 |
|
main::set_info ($page, Referer => join '"', %$list); |
1568 |
|
} |
1569 |
|
|
1570 |
|
sub get_dont_record () { |
1571 |
|
map {s/\$/\\\$/g; s/\@/\\\@/g; $_} |
1572 |
|
grep !/^#/, |
1573 |
|
split /[\x0D\x0A]+/, &main::__get_database ('RefererDontRecord'); |
1574 |
|
} |
1575 |
|
sub get_site_name () { |
1576 |
|
my @lines = grep /[^#]/, split /[\x0D\x0A]+/, &main::__get_database('RefererSiteName'); |
1577 |
|
my @item; |
1578 |
|
for (@lines) { |
1579 |
|
next if /^#/; |
1580 |
|
my ($uri, $name) = split /\s+/, $_, 2; |
1581 |
|
$uri =~ s/\$/\\\$/g; $uri =~ s/\@/\\\@/g; $uri =~ s/\//\\\//g; |
1582 |
|
$name =~ s!([()/\\])!\\$1!g; $name =~ s/\$([0-9]+)/).__decode (\${$1}).q(/g; |
1583 |
|
push @item, [$uri, qq(q($name))]; |
1584 |
|
} |
1585 |
|
@item; |
1586 |
|
} |
1587 |
|
|
1588 |
|
sub list_html ($) { |
1589 |
|
my $page = shift; |
1590 |
|
my %list = get ($page); |
1591 |
|
my $r = ''; |
1592 |
|
my @name = get_site_name; |
1593 |
|
for my $uri (sort keys %list) { |
1594 |
|
my $title; |
1595 |
|
for my $item (@name) { |
1596 |
|
if ($uri =~ /$item->[0]/) { |
1597 |
|
$title = $uri; |
1598 |
|
eval qq{\$title =~ s/^.*$item->[0].*\$/$item->[1]/e} |
1599 |
|
or die $@ ;#. qq{\$title =~ s/^.*$item->[0].*\$/$item->[1]/e}; |
1600 |
|
last; |
1601 |
|
} |
1602 |
} |
} |
1603 |
return $self->{$key}; |
my $euri = main::escape ($uri); |
1604 |
|
if ($title) { |
1605 |
|
$r .= qq(<li>[$list{$uri}] <a href="$euri" title="URI: <$euri>">@{[main::escape ($title)]}</a></li>\n); |
1606 |
|
} else { |
1607 |
|
$r .= qq(<li>[$list{$uri}] <<a href="$euri">$euri</a>></li>\n); |
1608 |
|
} |
1609 |
|
} |
1610 |
|
$r ? qq(<ul>$r</ul>\n) : ''; |
1611 |
} |
} |
1612 |
|
|
1613 |
# Exists |
sub __decode ($) { |
1614 |
sub EXISTS { |
my $s = shift; |
1615 |
my ($self, $key) = @_; |
$s =~ tr/+/ /; |
1616 |
my $file = &make_filename($self, $key); |
$s =~ s/%([0-9A-Fa-f][0-9A-Fa-f])/chr hex $1/ge; |
1617 |
return -e($file); |
main::code_convert (\$s); |
1618 |
} |
} |
1619 |
|
|
1620 |
# Delete |
package wiki::useragent; |
|
sub DELETE { |
|
|
my ($self, $key) = @_; |
|
|
my $file = &make_filename($self, $key); |
|
|
unlink $file; |
|
|
return delete $self->{$key}; |
|
|
} |
|
1621 |
|
|
1622 |
sub FIRSTKEY { |
sub add ($) { |
1623 |
my ($self) = @_; |
my $s = shift; |
1624 |
opendir(DIR, $self->{dir}) or die $self->{dir}; |
return unless length $s; |
1625 |
@{$self->{keys}} = grep /\.txt$/, readdir(DIR); |
$s =~ s/([\x00-\x08\x0A-\x1F\x25\x7F-\xFF])/sprintf '%%%02X', unpack 'C', $1/ge; |
1626 |
foreach my $name (@{$self->{keys}}) { |
my %ua; |
1627 |
$name =~ s/\.txt$//; |
for (split /\n/, &main::__get_database('WikiUserAgentList')) { |
1628 |
$name =~ s/[0-9A-F][0-9A-F]/pack("C", hex($&))/eg; |
if (/^-\[(\d+)\] (.+)$/) { |
1629 |
|
my ($t, $n) = ($1, $2); |
1630 |
|
$n =~ tr/\x0A\x0D//d; |
1631 |
|
$ua{$n} = $t; |
1632 |
} |
} |
1633 |
return shift @{$self->{keys}}; |
} |
1634 |
|
$ua{$s}++; |
1635 |
|
my $s = qq(#?SuikaWiki/0.9\n); |
1636 |
|
for (sort {$ua{$a} <=> $ua{$b}} keys %ua) { |
1637 |
|
$s .= sprintf qq(-[%d] %s\n), $ua{$_}, $_; |
1638 |
|
} |
1639 |
|
&main::__set_database ('WikiUserAgentList' => $s); |
1640 |
} |
} |
1641 |
|
|
1642 |
sub NEXTKEY { |
package wiki::suikawikiconst; |
|
my ($self) = @_; |
|
|
return shift @{$self->{keys}}; |
|
|
} |
|
1643 |
|
|
1644 |
sub make_filename { |
sub to_hash ($;$) { |
1645 |
my ($self, $key) = @_; |
my $page = shift; |
1646 |
my $enkey = ''; |
my $h = shift || {}; |
1647 |
foreach my $ch (split(//, $key)) { |
my $val; |
1648 |
$enkey .= sprintf("%02X", ord($ch)); |
for my $line (split /\n/, $page) { |
1649 |
|
$line =~ tr/\x0A\x0D//d; |
1650 |
|
if ($val && $line =~ s/^\s+//) { |
1651 |
|
$h->{$val} .= length $h->{$val} ? "\n" . $line : $line; |
1652 |
|
} elsif ($line =~ /^(.+):/) { |
1653 |
|
$val = $1; $h->{$val} = ''; |
1654 |
} |
} |
1655 |
return $self->{dir} . "/$enkey.txt"; |
} |
1656 |
|
$h; |
1657 |
} |
} |
|
__END__ |
|
|
|
|
|
=head1 NAME |
|
|
|
|
|
YukiWiki - 自由にページを追加・削除・編集できるWebページ構築CGI |
|
|
|
|
|
Copyright (C) 2000,2001 by Hiroshi Yuki. |
|
|
結城浩 <hyuki@hyuki.com> |
|
|
http://www.hyuki.com/ |
|
|
http://www.hyuki.com/yukiwiki/ |
|
|
|
|
|
=head1 SYNOPSIS |
|
|
|
|
|
http://www.hyuki.com/yukiwiki/yukiwiki.cgi |
|
|
|
|
|
=head1 DESCRIPTION |
|
|
|
|
|
YukiWiki(結城ウィキィ)は参加者が自由にページを追加・削除・編集できる |
|
|
不思議なWebページ群を作るCGIです。 |
|
|
Webで動作する掲示板とちょっと似ていますが、 |
|
|
Web掲示板が単にメッセージを追加するだけなのに対して、 |
|
|
YukiWikiは、Webページ全体を自由に変更することができます。 |
|
|
|
|
|
YukiWikiは、Cunningham & CunninghamのWikiWikiWebの |
|
|
仕様を参考にして独自に作られました。 |
|
|
|
|
|
YukiWikiはPerlで書かれたCGIスクリプトとして実現されていますので、 |
|
|
Perlが動作するWebサーバならば比較的容易に設置できます。 |
|
|
|
|
|
あとはdbmopenが使える環境ならば設置できます(Version 1.5.0以降ならdbmopenが使えなくても設置できます)。 |
|
|
|
|
|
|
|
|
YukiWikiはフリーソフトです。 |
|
|
ご自由にお使いください。 |
|
|
|
|
|
=head1 設置方法 |
|
|
|
|
|
=head2 入手 |
|
|
|
|
|
YukiWikiの最新版は、 |
|
|
http://www.hyuki.com/yukiwiki/ |
|
|
から入手できます。 |
|
|
|
|
|
=head2 ファイル一覧 |
|
|
|
|
|
readme.txt ドキュメント |
|
|
yukiwiki.cgi YukiWiki本体 |
|
|
yukiwiki.gif ロゴ(カラー版) |
|
|
yukimono.gif ロゴ(モノクロ版) |
|
|
jcode.pl 漢字コードライブラリ |
|
|
|
|
|
=head2 インストール |
|
|
|
|
|
=over 4 |
|
|
|
|
|
=item 1. |
|
|
|
|
|
アーカイブを解く。 |
|
|
|
|
|
=item 2. |
|
|
|
|
|
yukiwiki.cgiのはじめの方にある設定を確認します。 |
|
|
通常は何もしなくてよいが、 |
|
|
はじめは$touchfileを''にした方がよいでしょう。 |
|
|
|
|
|
=item 3. |
|
|
|
|
|
yukiwiki.cgiとjcode.plを同じところに設置します。 |
|
|
|
|
|
=item 4. |
|
|
|
|
|
サイズ0のyukiwiki.dbというファイルを設置します。 |
|
|
(Perlシステムによってはyukiwiki.pag, yukiwiki.dir) |
|
|
|
|
|
=item 5. |
|
|
|
|
|
yukiwiki.cgiにブラウザからアクセスします。 |
|
|
|
|
|
=back |
|
|
|
|
|
=head2 パーミッション |
|
|
|
|
|
ファイル パーミッション 転送モード |
|
|
yukiwiki.cgi 755 ASCII |
|
|
yukiwiki.gif 644 BINARY |
|
|
yukimono.gif 644 BINARY |
|
|
jcode.pl 644 ASCII |
|
|
|
|
|
$dbmopen = 1; にした場合: |
|
|
yukiwiki.db 666 BINARY |
|
|
(yukiwiki.pag, yukiwiki.dirの場合もあり) |
|
|
|
|
|
$dbmopen = 0; にした場合: (カレントディレクトリを777にしておく) |
|
|
. 777 (転送しない) |
|
|
|
|
|
=head1 データのバックアップ方法 |
|
|
|
|
|
$dbmopen = 1;の場合は、 |
|
|
データはすべてyukiwiki.db(.dir, .pag)に入る。 |
|
|
これをバックアップすればよい。 |
|
|
|
|
|
$dbmopen = 0;の場合は、 |
|
|
yukiwikiというディレクトリができるので、 |
|
|
これ以下をバックアップすればよい。 |
|
|
|
|
|
=head1 新しいページの作り方 |
|
|
|
|
|
=over 4 |
|
|
|
|
|
=item 1. |
|
|
|
|
|
まず、適当なページ(例えばFrontPage)を選び、 |
|
|
ページの下にある「編集」リンクをたどります。 |
|
1658 |
|
|
1659 |
=item 2. |
package SuikaWiki::Plugin; |
1660 |
|
our $plugin_directory; # defined in top of this file. |
1661 |
|
our %List; |
1662 |
|
|
1663 |
するとテキスト入力ができる状態になるので、 |
sub escape ($$) { main::escape ($_[1]) } |
1664 |
そこにNewPageのような単語 |
sub unescape ($$) { main::unescape ($_[1]) } |
1665 |
(大文字小文字混在している英文字列) |
sub encode ($$) { main::encode ($_[1]) } |
1666 |
を書いて「保存」します。 |
sub decode ($$) { main::decode ($_[1]) } |
1667 |
|
sub __get_datetime ($) { main::get_now () } |
1668 |
|
|
1669 |
=item 3. |
sub regist ($@) { |
1670 |
|
my $pack = shift; |
1671 |
保存すると、FrontPageのページが書き換わり、 |
for (@_) { |
1672 |
あなたが書いたNewPageという文字列の後ろに ? というリンクが表示されます。 |
push @{$List{$_}}, $pack; |
1673 |
この ? はそのページがまだ存在しないことを示す印です。 |
} |
1674 |
|
} |
|
=item 4. |
|
|
|
|
|
その ? をクリックすると新しいページNewPageができますので、 |
|
|
あなたの好きな文章をその新しいページに書いて保存します。 |
|
|
|
|
|
=item 5. |
|
|
|
|
|
NewPageページができるとFrontPageの ? は消えて、リンクとなります。 |
|
|
|
|
|
=back |
|
|
|
|
|
=head1 テキスト整形のルール |
|
|
|
|
|
=over 4 |
|
|
|
|
|
=item * |
|
|
|
|
|
連続した複数行はフィルされて表示されます。 |
|
|
|
|
|
=item * |
|
|
|
|
|
空行は段落C<< <p> >>の区切りとなります。 |
|
|
|
|
|
=item * |
|
|
|
|
|
HTMLのタグは書けません。 |
|
|
|
|
|
=item * |
|
|
|
|
|
B<''ボールド''>のようにシングルクォート二つではさむと、 |
|
|
ボールドC<< <b> >>になります。 |
|
|
|
|
|
=item * |
|
|
|
|
|
B<'''イタリック'''>のようにシングルクォート三つではさむと、 |
|
|
イタリックC<< <i> >>になります。 |
|
|
|
|
|
=item * |
|
|
|
|
|
B<---->のようにマイナス4つがあると、 |
|
|
水平線C<< <hr> >>になります。 |
|
|
|
|
|
=item * |
|
|
|
|
|
行をB<*>ではじめると、 |
|
|
大見出しC<< <h2> >>になります。 |
|
|
|
|
|
=item * |
|
|
|
|
|
行をB<**>ではじめると、 |
|
|
小見出しC<< <h3> >>になります。 |
|
|
|
|
|
=item * |
|
|
|
|
|
行をマイナス-ではじめると、 |
|
|
箇条書きC<< <ul> >>になります。 |
|
|
マイナスの数が増えるとレベルが下がります(3レベルまで) |
|
|
|
|
|
-項目1 |
|
|
--項目1-1 |
|
|
--項目1-2 |
|
|
-項目2 |
|
|
-項目3 |
|
|
--項目3-1 |
|
|
---項目3-1-1 |
|
|
---項目3-1-2 |
|
|
--項目3-2 |
|
|
|
|
|
=item * |
|
|
|
|
|
コロンを使うと、 |
|
|
用語と解説文のリストC<< <dl> >>が書けます。 |
|
|
|
|
|
:用語1:いろいろ書いた解説文1 |
|
|
:用語2:いろいろ書いた解説文2 |
|
|
:用語3:いろいろ書いた解説文3 |
|
|
|
|
|
=item * |
|
|
|
|
|
リンク |
|
|
|
|
|
=over 4 |
|
|
|
|
|
=item * |
|
|
|
|
|
LinkToSomePageやFrontPageのように、 |
|
|
英単語の最初の一文字を大文字にしたものが |
|
|
二つ以上連続したものはYukiWikiのページ名となり、 |
|
|
それが文章中に含まれるとリンクになります。 |
|
|
|
|
|
=item * |
|
|
|
|
|
http://www.hyuki.com/ のようなURLは自動的にリンクになります。 |
|
|
|
|
|
=item * |
|
|
|
|
|
二重の大かっこ[[ ]]でくくった文字列も、 |
|
|
YukiWikiのページ名になります。 |
|
|
大かっこの中にはスペースを含めてはいけません。 |
|
|
日本語も使えます。 |
|
|
|
|
|
=back |
|
|
|
|
|
=item * |
|
|
|
|
|
行頭がスペースやタブで始まっていると、 |
|
|
それは整形済みの段落C<< <pre> >>として扱われます。 |
|
|
プログラムの表示などに使うと便利です。 |
|
|
|
|
|
|
|
|
=item * |
|
|
|
|
|
行を > ではじめると、 |
|
|
引用文C<< <blockquote> >>が書けます。 |
|
|
>の数が多いとインデントが深くなります(3レベルまで)。 |
|
|
|
|
|
>文章 |
|
|
>文章 |
|
|
>>さらなる引用 |
|
|
>文章 |
|
|
|
|
|
=back |
|
|
|
|
|
=head1 更新履歴 |
|
|
|
|
|
=over 4 |
|
|
|
|
|
=item * |
|
|
|
|
|
2001年10月20日、Version 1.6.6。 |
|
|
|
|
|
更新の衝突対策。 |
|
|
元ページの簡単なチェックサムを取っておき、 |
|
|
更新前にチェックサムを比較する。 |
|
|
修正個所はdigestという文字列を検索すれば分かる。 |
|
|
本来はMD5などでちゃんとやった方がいいのだけれど。 |
|
|
|
|
|
衝突時に表示されるメッセージなどは「極悪」さんのページを参考にした。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2001年10月17日、Version 1.6.5。 |
|
|
|
|
|
プレビュー画面で、更新ボタンを押したときに送信される |
|
|
メッセージの内容をinput要素のtype="hidden"を使って埋め込むのをやめる。 |
|
|
代わりに、textarea要素を使う。 |
|
|
再プレビュー用にmyspecial_を導入。でもきれいな対策ではない。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2001年8月30日、Version 1.6.4。 |
|
|
|
|
|
URLでダイレクトにページ名を指定しても、 |
|
|
$WikiNameと$BracketName以外のページを作れないようにした。 |
|
|
(is_valid_nameとis_editable参照)。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2001年8月30日、Version 1.6.3。 |
|
|
|
|
|
RecentChangesを編集・再編集不可とした。 |
|
|
編集不可ページは@uneditableにページ名を入れる。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2001年2月25日、Version 1.6.1, 1.6.2。 |
|
|
|
|
|
差分機能のバグ修正。 |
|
|
do_previewで'>'が扱えないバグを修正 |
|
|
(ユーザからの指摘)。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2001年2月22日、Version 1.6.0。 |
|
|
差分機能を実装した。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2001年2月19日、Version 1.5.4。 |
|
|
画像ファイルへのリンクは画像にしてみた。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2001年2月19日、Version 1.5.3。 |
|
|
RecentChangesの中に削除したページがあるのをやめた。 |
|
|
use strict;で引っかかる部分を少し整理(完全ではない)。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2001年2月16日、Version 1.5.2。 |
|
|
textareaに表示およびプレビューする前に < や > を < や > に変換した |
|
|
(do_preview, editpage, print_preview_buttons)。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年12月27日、Version 1.5.1。 |
|
|
プレビュー画面を整理した。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年12月22日、Version 1.5.0。 |
|
|
全体的にずいぶん書き直した。 |
|
|
一覧を別途作成するようにした(do_list)。 |
|
|
書き込む前に確認画面を出すようにした(do_preview)。 |
|
|
テキストの書き方を編集画面に入れた(do_edit, do_reedit)。 |
|
|
WhatsNew→RecentChanges、TopPage→FrontPageに変更した。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年12月20日、Version 1.1.0。 |
|
|
tieを利用して、dbmopenが使えない場合でも動作するように修正。 |
|
|
利用者の1人である「極悪」さんから |
|
|
送っていただいたコードを元にしています。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年9月5日、Version 1.0.2。 |
|
|
<body color=...> → <body bgcolor=...> |
|
|
利用者からの指摘による。感謝。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年8月6日、Version 1.0.1を公開。 |
|
|
C MAGAZINE(ソフトバンクパブリッシング) |
|
|
2000年10月号連載記事向け公開版。 |
|
|
[[ ]] の最後が「望」のようにシフトJISで |
|
|
0x5Dになる場合の回避を行なった。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年8月5日、Version 1.0.0を公開。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年7月23日、Version 0.82を公開。 |
|
|
編集時のリンクミス。 |
|
|
<textarea>の属性変更。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年7月22日、Version 0.81を公開。 |
|
|
ロゴを組み込む。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年7月21日、Version 0.80を公開。 |
|
|
PODをCGI中に書き込む。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年7月19日、Version 0.70を公開。 |
|
|
'''イタリック'''や、--、---、>>、>>>などを実装。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年7月18日、Version 0.60を公開。 |
|
|
*太字*を''太字''に変更 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年7月17日、Version 0.50を公開。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年7月17日、さらにいろいろ追加する。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年7月16日、いろいろ追加。 |
|
|
|
|
|
=item * |
|
|
|
|
|
2000年7月15日、公開。 |
|
|
|
|
|
=back |
|
|
|
|
|
=head1 TODO |
|
|
|
|
|
- テキスト表示モード |
|
|
- Charsetを明示。 |
|
|
- textarea中の閉じタグ対応 |
|
|
- メニューの英語表記付記 |
|
|
- プレビューのボタンで、mymsgをinputのvalueに入れているが、改行をそのままvalueにいれてはいけないのではないか。 |
|
|
- 「再編集」の機能はブラウザの back で充分ではないか。プレビューはもっとシンプルに。 |
|
|
- ページタイトル(Wikiname)が検索にかかるようにする。 |
|
|
- InterWiki風の機能「URLを隠しつつ、リンクを張る」 |
|
|
|
|
|
=head1 作者 |
|
|
|
|
|
Copyright (C) 2000 by Hiroshi Yuki. |
|
|
結城浩 <hyuki@hyuki.com> |
|
|
http://www.hyuki.com/ |
|
|
http://www.hyuki.com/yukiwiki/ |
|
|
|
|
|
質問、意見、バグ報告は hyuki@hyuki.com にメールしてください。 |
|
|
|
|
|
=head1 配布条件 |
|
1675 |
|
|
1676 |
YukiWikiは、 |
sub import_plugins () { |
1677 |
GNU General Public Licenseにて公開します。 |
opendir PDIR, $plugin_directory; |
1678 |
|
my @plugin = grep {s/\.pm$//} readdir (PDIR); |
1679 |
|
closedir PDIR; |
1680 |
|
for (@plugin) { |
1681 |
|
eval qq{ use SuikaWiki::Plugin::$_ } unless /[^A-Za-z0-9_]/; |
1682 |
|
push @{$List{_all}}, qq(SuikaWiki::Plugin::$_); |
1683 |
|
} |
1684 |
|
} |
1685 |
|
|
1686 |
YukiWikiはフリーソフトです。 |
sub make_info_page () { |
1687 |
ご自由にお使いください。 |
my $r = <<EOH; |
1688 |
自分好みのYukiWikiが作れるようにシンプルにしてあります。 |
EOH |
1689 |
|
unless ($List{_all}) { |
1690 |
|
$r .= qq('''No plugin is installed!'''\n); |
1691 |
|
} else { |
1692 |
|
my $index = 0; |
1693 |
|
for my $package (sort @{$List{_all}}) { |
1694 |
|
$index++; |
1695 |
|
my $prop = $package->property (); |
1696 |
|
$r .= <<EOH; |
1697 |
|
*$package |
1698 |
|
|
1699 |
|
[$index] '''$prop->{name}''' (Version $prop->{version}) |
1700 |
|
<$prop->{uri}> |
1701 |
|
|
1702 |
|
Provide: |
1703 |
|
@{[do{my $t = ''; for my $f (@{$prop->{provide}||[]}) { |
1704 |
|
$t .= qq(-''$f''\n); |
1705 |
|
for (sort grep m#^\Q$f\E/#, keys %{$prop->{partinfo}}) { |
1706 |
|
$t .= qq(--''$_'' -- $prop->{partinfo}->{$_}\n); |
1707 |
|
} |
1708 |
|
}$t}]} |
1709 |
|
|
1710 |
=head1 謝辞 |
EOH |
1711 |
|
} |
1712 |
|
} |
1713 |
|
$r; |
1714 |
|
} |
1715 |
|
|
1716 |
本家のWikiWikiを作ったCunningham & Cunningham, Inc.に |
&import_plugins (); |
|
感謝します。 |
|
1717 |
|
|
1718 |
YukiWikiを楽しんで使ってくださる |
package wiki::conneg; |
|
ネット上の方々に感謝します。 |
|
1719 |
|
|
1720 |
YukiWikiのロゴをデザインしてくださった橋本礼奈さん |
## BUG: this parser isn't strict. |
1721 |
http://city.hokkai.or.jp/~reina/ |
sub get_accept_lang (;$) { |
1722 |
に感謝します。 |
my $alang = shift || $main::ENV{HTTP_ACCEPT_LANGUAGE}; |
1723 |
|
my %alang = (ja => 0.0002, en => 0.0001); |
1724 |
|
my $i = 0.1; |
1725 |
|
for (split /\s*,\s*/, $alang) { |
1726 |
|
tr/\x09\x0A\x0D\x20//d; |
1727 |
|
if (/((?:(?!;q=).)+)(?:;q="?([0-9.]+)"?)?/) { |
1728 |
|
my $l = lc $1; $l =~ tr/\x22\x5C//d; |
1729 |
|
$alang{$l} = (defined $2 ? $2 : 1.000)*1000; |
1730 |
|
$alang{$l} += $i unless $alang{$l} == 0; |
1731 |
|
$i -= 0.001; |
1732 |
|
} |
1733 |
|
} |
1734 |
|
\%alang; |
1735 |
|
} |
1736 |
|
|
1737 |
|
package wiki::resource; |
1738 |
|
|
1739 |
|
sub get ($;\%) { |
1740 |
|
my ($resname, $option) = @_; |
1741 |
|
$option->{accept_language} ||= &wiki::conneg::get_accept_lang (); |
1742 |
|
$option->{resource} ||= {}; |
1743 |
|
my $v; |
1744 |
|
for my $lang (sort {$option->{accept_language}->{$b} <=> $option->{accept_language}->{$a}} grep {$option->{accept_language}->{$_}!=0} keys %{$option->{accept_language}}) { |
1745 |
|
while (length $lang) { |
1746 |
|
unless ($option->{accept_language}->{defined $option->{accept_language}->{$lang} ? $lang : '*'} == 0) { |
1747 |
|
$option->{resource}->{$lang} ||= &wiki::suikawikiconst::to_hash (&main::__get_database('WikiResource:'.$lang)); |
1748 |
|
$v = $option->{resource}->{$lang}->{$resname}; |
1749 |
|
last if defined $v; |
1750 |
|
} |
1751 |
|
$lang =~ s/[^+-]*$//; $lang =~ s/[+-]$//; |
1752 |
|
} |
1753 |
|
last if defined $v; |
1754 |
|
} |
1755 |
|
defined $v ? $v : $resname; |
1756 |
|
} |
1757 |
|
|
1758 |
|
package wiki::map; |
1759 |
|
|
1760 |
|
sub make_list ($;%) { |
1761 |
|
my ($page, %option) = @_; |
1762 |
|
$option{level} ||= 3; |
1763 |
|
my %weight; |
1764 |
|
my $content = &main::__get_database ($page); |
1765 |
|
$content =~ s{^\#\?([^\x0A\x0D]+)}{ |
1766 |
|
if ($1 =~ /import="([^"]+)"/) { |
1767 |
|
for (split /\s*,\s*/, $1) { |
1768 |
|
$weight{$_} += 2; |
1769 |
|
} |
1770 |
|
} |
1771 |
|
$&; |
1772 |
|
}ges; |
1773 |
|
## Bug: this code does not support content type. |
1774 |
|
$content =~ s{\[\[((?!\#)[^]]+)\](?:>>\d+)?\]}{ |
1775 |
|
$weight{$1}++; $&; |
1776 |
|
}ge; |
1777 |
|
delete $weight{$page}; ## Delete myself |
1778 |
|
for my $page (keys %weight) { |
1779 |
|
my $w = ($content =~ s/\Q$page\E/$&/g); |
1780 |
|
$weight{$page} += $w + $weight{$page}; ## Weight of [[name]] is x2. |
1781 |
|
($weight{$page} *= 0.1, $option{not_exist}->{$page} = 1) unless &main::is_exist_page ($page); |
1782 |
|
} |
1783 |
|
$option{weight_list}->{$page} = \%weight; |
1784 |
|
if (--$option{level}) { |
1785 |
|
for my $page (keys %weight) { |
1786 |
|
&make_list ($page, %option) unless $option{weight_list}->{$page}; |
1787 |
|
} |
1788 |
|
} |
1789 |
|
$option{weight_list}; |
1790 |
|
} |
1791 |
|
|
1792 |
|
sub list_to_html ($$;%) { |
1793 |
|
my ($Page, $wlist, %option) = @_; |
1794 |
|
my $r = ''; |
1795 |
|
$option{outputed}->{$Page} = 1; |
1796 |
|
for my $page (sort {$wlist->{$Page}->{$b} <=> $wlist->{$Page}->{$a}} keys %{$wlist->{$Page}}) { |
1797 |
|
$r .= qq(<li><span class="weight">[@{[0+$wlist->{$Page}->{$page}]}]</span> <a href="$main::url_cgi?@{[&main::encode($page)]}" class="wiki@{[$option{not_exist}->{$page}?' not-exist':'']}">@{[&main::escape ($page).($option{not_exist}->{$page}?qq(<span class="mark">@{[&main::Resource('JumpAndEditWikiPageMark',escape=>1)]}</span>):'')]}</a> <a href="$main::url_cgi?mycmd=map;mypage=@{[&main::encode($page)]}" class="wiki-cmd map-from-here" title="@{[&main::escape($option{map_from_here_description})]}">@{[&main::escape($option{map_from_here})]}</a> <span class="summary">@{[&main::escape(&main::get_subjectline($page))]}</span>); |
1798 |
|
unless ($option{outputed}->{$page}) { |
1799 |
|
$r .= &list_to_html ($page, $wlist, %option); |
1800 |
|
} |
1801 |
|
$r .= "</li>\n"; |
1802 |
|
} |
1803 |
|
$r ? qq(<ul class="map">$r</ul>) : ''; |
1804 |
|
} |
1805 |
|
|
1806 |
tieを使った版の元になるコードを送ってくださった |
package main; |
1807 |
「極悪」さんに感謝します。 |
&main; |
1808 |
|
exit 0; |
1809 |
|
|
1810 |
=head1 参照リンク |
1; |
1811 |
|
__END__ |
1812 |
|
=head1 NAME |
1813 |
|
|
1814 |
=over 4 |
wiki.cgi - This is YukiWiki, yet another Wiki clone. |
1815 |
|
walwiki.cgi based on yukiwiki.cgi - Yet another WikiWikiWeb clone. |
1816 |
|
|
1817 |
=item * |
=head1 DESCRIPTION |
1818 |
|
|
1819 |
YukiWikiホームページ |
YukiWiki is yet another Wiki clone. |
|
http://www.hyuki.com/yukiwiki/ |
|
1820 |
|
|
1821 |
=item * |
YukiWiki can treat Japanese WikiNames (enclosed with [[ and ]]). |
1822 |
|
YukiWiki provides 'InterWiki' feature, RDF Site Summary (RSS), |
1823 |
|
and some embedded commands (such as [[#comment]] to add comments). |
1824 |
|
|
1825 |
本家のWikiWiki |
Read F<readme_en.txt> (English) or F<readme_ja.txt> (Japanese) in more detail. |
|
http://c2.com/cgi/wiki?WikiWikiWeb |
|
1826 |
|
|
1827 |
=item * |
=head1 AUTHOR |
1828 |
|
|
1829 |
本家のWikiWikiの作者(Cunningham & Cunningham, Inc.) |
Hiroshi Yuki <hyuki@hyuki.com> http://www.hyuki.com/yukiwiki/ |
|
http://c2.com/ |
|
1830 |
|
|
1831 |
=item * |
=head1 LICENSE |
1832 |
|
|
1833 |
YukiWikiのロゴデザインをしてくださった橋本礼奈さんのページ |
Copyright (C) 2000-2002 by Hiroshi Yuki. |
|
http://city.hokkai.or.jp/~reina/ |
|
1834 |
|
|
1835 |
=back |
This program is free software; you can redistribute it and/or |
1836 |
|
modify it under the same terms as Perl itself. |
1837 |
|
|
1838 |
=cut |
=cut |