[첫화면으로]UseModWiki소스수정/페이지소스보기

마지막으로 [b]

6 번째 수정본
아직 적용하지 마세요

view action 추가 및 잠긴 페이지의 소스를 볼 수 있게 함

마우스 더블 클릭을 처리하는 부분
sub GetHtmlHeader {
    ...
    if ($bgcolor ne '') {
        $bodyExtra = qq( BGCOLOR="$bgcolor");
    }
###############
### replaced by gypark
### #EXTERN
    # added luke
#   if ($ClickEdit) {
#       if ($FreeLinks) {
#           $id = &FreeToNormal($id);
#       }
#       $bodyExtra .= qq(ondblclick="location.href='$ScriptName?action=edit&id=$id'");
#   }
    # end

    if (&GetParam('InFrame','') ne '') {
        $html .= qq(<base target="_parent">\n);
    } else {
        if ($ClickEdit) {
            if ($FreeLinks) {
                $id = &FreeToNormal($id);
            }
### 아래의 세 줄이 새로 수정된 부분이다
            my $action = "view";
            $action = "edit" if (&UserCanEdit($id,0));
            $bodyExtra .= qq(ondblclick="location.href='$ScriptName?action=$action&id=$id'");
### 여기까지
        }
    }

###
###############

    # Insert any other body stuff (like scripts) into $bodyExtra here
    # (remember to add a space at the beginning to separate from prior text)
    $html .= "</HEAD><BODY $bodyExtra>\n";
    return $html;
}

편집 가이드 수정
sub GetEditGuide {
    ...
    if (&UserCanEdit($id, 0)) {
        if ($rev ne '') {
            $result .= &GetOldPageLink('edit',   $id, $rev,
                     Ts('Edit revision %s of this page', $rev));
        } else {
            $result .= &GetEditLink($id, T('Edit text of this page'));
        }
    } else {
###############
### replaced by gypark
### view action 추가
#       $result .= T('This page is read-only');
        if ($rev ne '') {
            $result .= &GetOldPageLink('view',   $id, $rev,
                     Ts('View revision %s of this page', $rev));
        } else {
            $result .= &GetViewLink($id, T('View text of this page'));
        }
###
###############
    }
    $result .= "</DIV>";
    ...
}

redirect 나 extern 을 사용한 페이지의 상단의 안내문에 있는 페이지 링크도 마찬가지로 view 또는 edit 를 결정한다. /EXTERN명령어 패치와 섞여 있으니 주의.
sub GetHeader {
    ...
###############
### replaced by gypark
### #EXTERN
#   if ($oldId ne '') {
#       $result .= $q->h3('(' . Ts('redirected from %s',
#                                                            &GetEditLink($oldId, $oldId)) . ')');
#   }

    my $topMsg = "";
    if ($oldId ne '') {
### view action 추가 by gypark
#       $topMsg .= '('.Ts('redirected from %s',&GetEditLink($oldId, $oldId)).')  ';
        my $oldpagelink = &GetViewLink($oldId, $oldId);
        $oldpagelink = &GetEditLink($oldId, $oldId) if (&UserCanEdit($oldId));
        $topMsg .= '('.Ts('redirected from %s',$oldpagelink).')  ';
    }
    if (&GetParam('InFrame','') eq '1') {
### view action 추가 by gypark
#       $topMsg .= '('.Ts('%s includes external page',&GetEditLink($id,$id)).')';
        my $oldpagelink = &GetViewLink($id, $id);
        $oldpagelink = &GetEditLink($id, $id) if (&UserCanEdit($id));
        $topMsg .= '('.Ts('redirected from %s',$oldpagelink).')  ';
    }
    $result .= $q->h3($topMsg) if (($oldId ne '') || (&GetParam('InFrame','') eq '1'));
###
###############
    ...
}

action=view 로 불렀을 때 동작시키는 부분
sub DoOtherRequest {
    ...
        if ($action eq "edit") {
            &DoEdit($id, 0, 0, "", 0)  if &ValidIdOrDie($id);
###############
### added by gypark
### "view" action 추가
        } elsif ($action eq "view") {
            &DoView($id);
###
###############
        } elsif ($action eq "unlock") {
            &DoUnlock();
    ...
}

다음의 두 함수를 통채로 추가한다.
### view action 추가
sub DoView {
    my ($id) = @_;
    my ($header, $viewRows, $viewCols, $revision, $pageSource);

    &OpenPage($id);
    &OpenDefaultText();
    $header = Ts('Viewing %s', $id);
    # Old revision handling
    $revision = &GetParam('revision', '');
    $revision =~ s/\D//g;  # Remove non-numeric chars
    if ($revision ne '') {
        &OpenKeptRevisions('text_default');
        if (!defined($KeptRevisions{$revision})) {
            $revision = '';
            # Later look for better solution, like error message?
        } else {
            &OpenKeptRevision($revision);
            $header = Ts('Viewing revision %s of', $revision) . " $id";
        }
    }
    $pageSource = $Text{'text'};
    $viewRows = &GetParam("editrows", 20);
    $viewCols = &GetParam("editcols", 65);

    print &GetHeader('', &QuoteHtml($header), '');
    if ($revision ne '') {
        print "\n<b>"
                    . Ts('Viewing old revision %s.', $revision)
                    . '</b><br>'
    }
    print $q->textarea(-class=>'view', -accesskey=>'i', -name=>'text',
                -default=>$pageSource, -rows=>$viewRows, -columns=>$viewCols,
                -override=>1, -style=>'width:100%', -wrap=>'virtual',
                -readonly=>'true');
    print "<br>";

    print "<hr class='footer'>\n";
    print Ts('Return to %s' , &GetPageLink($id)) . " | ";
    print &GetHistoryLink($id, T('View other revisions')) . "<br>\n";
    print &GetMinimumFooter();
}

sub GetViewLink {
    my ($id, $name) = @_;

    if ($FreeLinks) {
        $id = &FreeToNormal($id);
        $name =~ s/_/ /g;
    }
    return &ScriptLink("action=view&id=$id", $name);
}

### 통채로 추가한 함수들의 끝
###############

&DoWikiRequest()  if ($RunCGI && ($_ ne 'nocgi'));   # Do everything.

Notes

그냥 DoEdit 함수를 수정해서, 수정권한이 없으면 DoEdit 내에서 다시 DoView 를 호출하게 한다면 기존에 GetEditLink 가 들어간 부분들을 일일이 GetEditLink 또는 GetViewLink 로 분기하도록 고치지 않아도 되었을 것이다. 그렇지만 수정 권한이 없더라도 edit 로 링크가 걸리게 하고 싶은 경우도 있을 것이라 생각했고, 결정적으로 수정 권한이 있는 경우와 없는 경우에 각각 링크가 걸리는 안내문 자체가 달라져야 하기 때문에 어쨌거나 if 문이 추가되어야 했다. 뭐... 그렇다는 얘기. 여전히 DoEdit 또는 하다못해 GetEditLink 자체를 수정해서 권한 여부에 따라 DoEdit 또는 DoView 를 자동으로 결정하게 하고 싶은 유혹이 강하다.. 어느게 좋으려나...
-- Raymundo 2003-3-6 12:37 am

소스용량을 생각한다면 그냥 권한여부에 따라서 버튼만 막는게 좋을거 같네요. 지금 BCN에서 디지털맨이라는 영화 상영중 --v
-- Bab2 2003-3-6 1:47 am

^^; 그 생각도 했었는데... DoEdit 가 생긴게 복잡해 보여서 건드리기 싫었고, action=edit 를 했을 때는 명확히 거부된다는 것을 보이는 게 더 모양새도 좋아 보이더라고요. 용량은 뭐... 도움말하고 환경변수 초기화 루틴을 빼면서 10KB 정도를 벌고 이걸로 3.7KB 정도 늘었으니 뭐.. ^_^ 그리고 어쨌거나 링크를 거는 시점에서 텍스트가 바뀌어야 하니 if 문도 들어가야 되겠고요. (아니면 말씀하신 것처럼 구현한 후에 링크 자체를 "수정 또는 소스 보기" 라고 이름을 붙일까요? 으음..
-- Raymundo 2003-3-6 8:10 am

음... 아무래도 말씀하신 것처럼 하는 게 낫겠습니다. 짧게 고치고 끝낼 수 있는 방법을 놔두고 굳이 이렇게 할 필요가 없을 것 같네요. 다시 고치죠 뭐...
-- Raymundo 2003-3-6 8:40 am

편집불가메세지는 일단 소스보기로 대체하고 편집화면에서 편집불가임을 알리는 메세지를 넣어주는게 좀 더 친절해 보일듯 싶네요. 개인적으로 WikiX에서 처음 소스보기 눌러보고 느낀 것이었습니다.
-- Bab2 2003-3-6 1:42 pm

이 수정본 편집일: 2003-3-6 1:42 pm (변경사항 [d])
1455 hits | Permalink | 변경내역 보기 [h] | 현재 수정본 보기 | 6 번째 수정본 소스 보기