[첫화면으로]UseModWiki소스수정/TitleIndex액션

마지막으로 [b]

2 번째 수정본

titleindex action 추가

sub DoOtherRequest {
   ...
        } elsif ($action eq "index") {
            &DoIndex();
### 다음 단락 추가
        } elsif ($action eq "titleindex") {
            &DoTitleIndex();
###
        } elsif ($action eq "help") {               # luke added
            &DoHelp();
   ...
}
### 다음 함수를 통채로 추가
sub DoTitleIndex {
    my (@list);
    my $index;
    print "Content-type: text/plain\n\n";
    @list = &AllPagesList();
    foreach $index (@list) {
        print $index."\r\n";
    }
}


위키위키분류

이 수정본 편집일: 2007-1-8 12:19 pm (변경사항 [d])
934 hits | Permalink | 변경내역 보기 [h] | 현재 수정본 보기 | 2 번째 수정본 소스 보기