(.|\n)*?\<\/nowiki>)/&StoreRaw($1)/ige;
$text =~ s/((.|\n)*?\<\/pre>)/&StoreRaw($1)/ige;
$text =~ s/((.|\n)*?\<\/code>)/&StoreRaw($1)/ige;
return $text;
}
}}}
=== # wiki.css 수정 ===
헤드라인에 들어가는 편집 링크의 span 스타일 - [http://ko.wikipedia.org/skins-1.5/monobook/main.css?52 위키페디아의 스타일쉬트]를 참조했음
{{{#!vim css
/* 섹션 별 편집 */
.editsection {
font-size: 90%;
float: right;
margin-right: 0.5em;
}
}}}
=== # translation/korean.pl 수정 ===
다음 항목 추가
{{{
(section)
(부분)
}}}
=== # 추가 업데이트 내역 ===
ext1.106a
* 헤드라인 내에 따옴표가 들어갔을 경우, summary 파라메터로 넣을 때 따옴표를 "으로 치환해서 넣는다. 안 그러면 편집 화면의 변경사항요약 필드에 따옴표 뒷부분이 잘린 채로 들어가 버림.
* 헤드라인 바로 다음 줄에 {{{ 가 왔을 때 뽑아내지 못하는 문제 수정
ext2.1e
* store_raw_codes 수정, {{{ }}} 블럭을 nowiki, pre, code 블럭보다 먼저 처리함
ext2.5c
* 헤드라인이 연달아 나오는 페이지를 include했을 때, 두 헤드라인을 하나로 취급하여 noedit 태그를 두 헤드라인 사이에 끼워넣는 문제 수정
=== # 사용자 의견 ===
아... 막상 만들어 보니, 진짜 페이지 편집할 때 편하긴 하군요. 특히 페이지 분량은 긴데 내가 고치려는 부분은 뒷부분에 있을 때... 왜 진작에 하지 않았을까 후회될 정도. ^_^
바벨의 도서관 같은 경우는 페이지의 diff를 볼 때 변경사항 부분도 마크업을 해버리기 때문에, 변경사항 중에 헤드라인이 있으면 거기서부터 번호를 매겨버립니다. 따라서 diff화면에서 바로 edit 링크를 누르면 자기가 의도한 섹션이 아니라 엇갈려 나올테니, 아예 diff 화면에서 edit 링크가 나오지 않게 바꿔버릴 수 있겠네요. 제 홈에서는 최근변경내역->페이지 diff->여기에서 바로 수정으로 갈 수 있는 게 좋아서 그냥 놔둡니다만, 필요하실 지 몰라서 적어둡니다.
{{{#!vim perl
sub WikiHeading {
...
$edit_section = '' if ($depth == 1);
$edit_section = '' if (&GetParam('diff', '') ne ''); # 이 줄 추가
}
return $pre . "$edit_section$text\n";
}
}}}
:우와. 감사합니다.
Hi, Raymundo \\
\\
possibly you thought about this, hint: edit by sections also in versions (only a suggestion, no waiting time for its implementation since I am working with that in localhost). Hope it helps, thanks for this great patch. \\
\\
Regards, --JuanmaMP
: Good job :-) \\
\\
I considered it when I was making this patch. But I wondered if there would be such need (edit sections in the past revisions ). And I refered Wikipedia and Moniwiki. Wikipedia doesn't support it. Moniwiki supports it but not correctly. Therefore, I decided not to support it, either, hehehe. :-D \\
\\
Anyway, if someone need to edit a page of past revisions frequently, your work would be helpful.
Good Night over there, Raymundo. \\
I just don't understand what does it mean? \\
Where does it go the particle "noedit" to? \\
Moreover, there's nothing into parentheses. \\
Thanks for shed light, as far as you can. \\
\\
if ($text =~ s/${FS}noedit$FS//) { # include 된 내용의 경우는 스킵 \\
} \\
\\
Sincerely. \\
Juanma
: Well, well, well... You asked me about "noedit"...? \\
\\
Okay, Welcome to the world of ancient black magic :-) \\
\\
It has some historical background. \\
- First, I made "include" macro. \\
- Next, I made "section edit" feature. \\
- Then, I realized that, if a user clicks "edit" link on a heading and (unluckily) the heading is in the "included page", all things would be spoiled, because there is not such section in the "including page" \\
\\
So I needed to make the included contents not to have edit links, and I did it as following: \\
\\
1) Insert a mark "${FS}noedit${FS}" into all the headings in the included content. This is done in MacroInclude(). \\
2) In markup stage, if a heading contains the mark, skip that heading, that is, not insert the edit link. This is done in the elsif block in WikiHeading(), as you've seen. \\
\\
3) There is one more thing to do. We need to remove the "noedit" mark before we print the page. This is done in... the code you wrote above :-) There's nothing in if block, but substitution is done in the parentheses. This removes the mark, replacing it with an empty string. \\
\\
You can see the example in \\
- TestPage : this page includes a subpage \\
- TestPage/SubPage : this page is included
Good Evening, Raymundo. \\
Big thanks for clarification. \\
Could you maintain TestPage and TestPage/SubPage, let's say, until tomorrow (from now. It will be enough), in order to catching the idea? \\
\\
Have a good Sunday!.
: Sure, they shall remain until next year, LOL
Thanks. Indeed, it is perfectly possible that I could to need an extension of the one-year deadline. (Sometimes, I feel myself as HAL when sings Daisy. Haha!). \\
Cheers!.
Your reasoning helps me to take awareness (remembering, best said) about kinds of these patches. \\
I use, sometimes, "print &GetHiddenValue('parameter', 1)"; for instance, into "IncludeRaw" (in this case). \\
Then, in "WikiHeading" I use the parameter value to discriminate scenarios. Hope it functional, too. I guess ... \\
Good morning over there.
----
[[위키위키분류]]