.
=== # action/adminmenu.pl 수정 ===
{{{#!vim perl
"".&ScriptLink("action=unlock",T('Removing edit lock')).
"
".&ScriptLink("action=replacetext",T('Replace strings in all pages')). # 이 줄 추가
"\n";
}}}
=== # action/replacetext.pl 추가 ===
{{{#!vim perl
# replacetext action
# 일괄치환
use strict;
sub action_replacetext {
print &GetHeader("", T('Replace strings in all pages'), "");
return if (!&UserIsAdminOrError());
my ($oldStr, $newStr, $ignoreCase, $regular, $evaluate, $test);
$oldStr = &GetParam("old", "");
$newStr = &GetParam("new", "");
$ignoreCase = &GetParam("p_ignore", "0");
$ignoreCase = "1" if ($ignoreCase eq "on");
$regular = &GetParam("p_regular", "0");
$regular = "1" if ($regular eq "on");
$evaluate = &GetParam("p_evaluate", "0");
$evaluate = "1" if ($evaluate eq "on");
$test = &GetParam("p_test", "0");
$test = "1" if ($test eq "on");
# 폼 출력
print &GetFormStart();
print &GetHiddenValue("action", "replacetext"),"\n";
print "
Old string:
\n";
print $q->textfield(-name=>"old",-size=>"100",-maxlength=>"255",-default=>"$oldStr");
print "
\n";
print $q->checkbox(-name=>"p_ignore", -override=>1, -checked=>$ignoreCase,
-label=>T('Ignore case'));
print $q->checkbox(-name=>"p_regular", -override=>1, -checked=>$regular,
-label=>T('Use regular expression'));
print "\n
New string:
\n";
print $q->textfield(-name=>"new",-size=>"100",-maxlength=>"255",-default=>"$newStr"). "\n";
print "
\n";
print $q->checkbox(-name=>"p_evaluate", -override=>1, -checked=>$evaluate,
-label=>T('Evaluate'));
print "
";
print $q->submit(-name=>'Replace'), "\n";
print $q->checkbox(-name=>"p_test", -override=>1, -checked=>1,
-label=>T('Just test'));
print $q->endform;
# old string 값이 없는 경우. 제일 처음 불렸을 때 등
if ($oldStr eq '') {
print &GetCommonFooter();
return;
}
if ($test) {
print "
Just test ...
\n";
} else {
print "
Search & replace ...
\n";
}
my ($page, $num);
$num = 0;
$oldStr = "\Q$oldStr\E" if (not $regular);
$oldStr = "(?i)$oldStr" if ($ignoreCase);
foreach $page (&AllPagesList()) { # 모든 페이지 검사
&OpenPage($page);
&OpenDefaultText();
my $newText = $Text{'text'};
my $match = 0;
# 치환 시도
if ($evaluate) {
$match = ($newText =~ s/$oldStr/$newStr/mgoee);
} else {
$match = ($newText =~ s/$oldStr/$newStr/mgo);
}
# 치환되는 것이 있는 경우
if ($newText ne $Text{'text'}) {
$num++;
print "[$num] Processing $page ... $match string(s) were found.
";
print &DiffToHTML(&GetDiff($Text{'text'}, $newText))."
";
if (!$test) { # 테스트 모드가 아닐 때는 저장
DoPostMain($newText, $page, "*", $Section{'ts'}, 0, 1, "!!");
}
}
}
print "Completed.";
print &GetCommonFooter();
}
1;
}}}
=== # translations/korean.pl 수정 ===
{{{
Replace strings in all pages
모든 페이지의 문자열 일괄 치환
}}}
=== # 추가 업데이트 내역 ===
테스트만 할 수 있는 기능. 실제 바뀌는 것을 diff로 확인할 수 있는 기능 추가함.
ext2.1c - 정규표현식 사용 여부를 선택할 수 있게 함. 치환할 때 Evaluate 가능하게 함
=== # 사용자 의견 ===
"Evaluate" 기능이 진작에 있었으면 [[Nyxity]]님이 모놀로그 아카이브 페이지에 있는 매크로들을 일일이 찾아 바꿔주실 걸 좀 편하게 할 수 있게 할 수 있었을텐데... 담에 또 와르르 바꾸셔야 할 일 있으면 미리 말해주세요. :-)
:아 이걸로 가능하지 않을까 하는 생각을 안한건 아닌데.. 역시.. :)
Great functionality ... i added replace text for individual page: \\
\\
... \\
<< $test = "1" if ($test eq "on"); \\
# the next text is only for to save temporarily the variable $id \\
>> my ($id) = @_; \\
>> my $fname = "$DataDir/temp/replacetest"; \\
\\
>> if (!-f $fname || (-f $fname && -f &GetPageFile($id))) {&WriteStringToFile($fname, $id);} \\
>> ($status, $data) = &ReadFile($fname); \\
# end of save temporarily \\
\\
... \\
<< $oldStr = "(?i)$oldStr" if ($ignoreCase); \\
>> foreach $page (&AllPagesList()) { # ¸ðµç ÆäÀÌÁö °Ë»ç \\
\\
>> next if ($page ne $data); \\
\\
I would like "save temporarily ..." on some way more clean ... \\
\\
-- JuanmaMP
: I'm considering to add a feature that user can choose which pages to be replaced, rather than all pages that $oldStr matches. However, I don't know when I will. :-/ I'll refer to your code when I will update this patch. Thank you.
one line more: \\
<< print "Completed.."; \\
\\
>> if (!$test) {unlink $fname;} \\
\\
(when it isn't test, unlink the temp. file). \\
\\
I wonder if with the original sub is possible to obtain the variable $id after a test without make temp. file. \\
To be continued ... :) \\
\\
--JuanmaMP
minor tweak: \\
\\
+ if (!$num) { \\
+ print 'there is not matching'; \\
+ } \\
print '
' . 'Completed ...';
What do "evaluate" do?. It says: ""Evaluate"에 체크하면 New string에 적힌 것을 Perl expression으로 해석하여 그 결과를 가지고 치환한다. \\
\\
("Evaluate" New string when the check is written in Perl expression is interpreted as the substitution with the result.). \\
\\
Evaluate must be check always that Use RegExp is checked too? \\
\\
I don't get it ... :( \\
\\
Thanks. --JuanmaMP
If checked, the value of "New String" field is interpreted as 'Perl expression' rather than simple text. This option is very similar to "'''e'''val" option of s///'''e''' operator. \\
\\
Let me show some examples: \\
1) to replace "111" with "222" \\
Old string : 111 \\
New string : 222 \\
\\
2) to replace "any sequence of digits" with "aaa" \\
Old string : \d+ -- this is regexp. \\
New string : aaa \\
check Use Regular Expression \\
\\
3) to replace "any sequence of digits" with "same sequence in parentheses", that is, to enclose numbers with parentheses \\
Old string : \d+ -- this is regexp. \\
New string : "($&)" -- this is Perl expression containing a backreference $&. \\
check Use Regular Expression \\
check Evaluate \\
\\
In case 3, ''aa11bb22'' shall be ''aa(11)bb(22)''. If you don't check "Evaluate", it shall be ''aa"($&)"bb"($&)''.
Perfect with these threes examples. \\
\\
Thanks. --JuanmaMP
suggestion: include "Edit Conflict", when start replace
I considered it, but it seemed to be difficult. And I couldn't imagine anyone can manage it if a conflict occurs while he/she is trying to replace several pages at once. :-) Anyway, your suggestion is right.
i am trying to improve mi newbie snippet about replace for single page. This is some help (INPUT forgets $id and this is the remember) \\
\\
in gotobar, for example: \\
\\
$result .= ' | ' . &ScriptLink("action=replace&id=$id", T("ReplaceIn")); \\
\\
in action_replace: \\
\\
@id = split ('&id=', $ENV{"HTTP_REFERER"}); \\
foreach $page (&AllPagesList()) { \\
&OpenPage($page); \\
&OpenDefaultText(); \\
next if ($id[1] && ($page ne $id[1])); \\
I wonder if "next if" for entire database is expensive load for perl. \\
Regards.
Thanks for the reply (I did not understand your response if the difficult is in script or is in the probability of occurrence on the users?). \\
\\
Regards (again :))
I get it, difficult management for users ...
: I meant both. :-) \\
\\
When I was making this patch, I had to consider several things to make it perfect. They include 'managing edit conflict', 'supporting the undo of replacement', 'preventing server error caused by the misuse of regexp' etc. \\
\\
However, those things required my code to be more complex. And I couldn't find an interface that is so easy that a user can manage such problem without being confused. Moreover, I guessed this patch would not be used frequently. (In fact, I used this function '''only once''' after I'd made it three years ago.) Therefore, I decided to give up such supplements and just implemented the essential part. \\
\\
Is this a enough answer? :-) English is more difficult than Perl! ㅠ,.ㅠ
Yes, perfect and thanks (a good balance of pros and cons). \\
\\
Another order of difficulty could be: Korean, English and Perl; of course, it depends of mother tongue ... :)
Hi Raymundo, how are you? \\
this interesting feature could choose one page or a whole site for the action "replace". Adding: \\
\\
my $pagename; \\
\\
$pagename = &GetParam("pagename", ""); \\
print "Page (blank for whole Site):
\n"; \\
print $q->textfield(-name=>"old",-size=>"30%",-maxlength=>"255",- default=>"$pagename"); \\
\\
... \\
foreach $page (&AllPagesList()) { # 모든 페이지 검사 \\
&OpenPage($page); \\
&OpenDefaultText(); \\
if ($pagename) { \\
next if ($page ne $pagename); \\
} \\
... \\
\\
HTH. 감사. --JuanmaMPKr
(More polished that the old proposal by me @ 2007-6-8 2:43). \\
감사.
: Thank you. I'll check as soon as possible.
it's not still a mature proposal, but if action=replace trough evaluate option offers inputs perl expressions (regexp, too?), maybe, it could implementing on action=search. Isn't it?
: Currently, regexp is supported in search. (For example, try to search "Use.*Wiki" here) \\
\\
However, I don't think supporting evaluation is a good idea. It may be a very dangerous security hole. action=replace is allowed only for admin, but search is allowed for anyone.
Wow!, I didn't notice about "*" feature. \\
You're right, that's a hole. That reduces the possibilities; then I wonder about a variant of search only for admins. We will see what we can do.
And thanks.
Hi Raymundo, nice to typing you; How do you do? \\
Replace can be extender with "wantword" utility, something like this. \\
(Only as simple suggestion). \\
\\
- my ($oldStr, $newStr, $ignoreCase, $regular, $evaluate, $test); \\
+ my ($oldStr, $newStr, $ignoreCase, $wantWord, $regular, $evaluate, $test); \\
... \\
$ignoreCase = &GetParam("p_ignore", "0"); \\
$ignoreCase = "1" if ($ignoreCase eq "on"); \\
+ $wantWord = &GetParam("p_want", "0"); \\
+ $wantWord = "1" if ($wantWord eq "on"); \\
... \\
print '
' . $q->checkbox(-name=>"p_ignore", -override=>1, -checked=>$ignoreCase, -label=>' ' . T('Ignore case')); \\
+ print '
' . $q->checkbox(-name=>"p_want", -override=>1, -checked=>$wantWord, -label=>' ' . T('Want Word')); \\
... \\
$oldStr = "(?i)$oldStr" if ($ignoreCase); \\
+ $oldStr = "\\b$oldStr\\b" if ($wantWord); \\
\\
Regards.
: Good to see you. It's a good idea. I'll apply this patch soon.
Hi Raymundo, one more year ... Best for 2013. Although I think "Seollal" is more important? \\
\\
At least in my script, it seems required: \\
\\
- $oldStr = "(?i)$oldStr" if ($ignoreCase); \\
+ $oldStr = "(?i)$oldStr" if (not $ignoreCase); \\
\\
am I right?
: Happy new year, JuanmaMP :-) \\
\\
The answer is No. (?i) option means "ignore case".
----
[[위키위키분류]]