http://www.naney.org/wiki/WiKicker/ChangeLog.html#h1) * change constitution of a directory arrangement * now possible to appoint plural outside-style sheet * memory cache function by memcached * RecentLog function with common memory [option] * Other revisions PR: ports/62347 Submitted by: Fumihiko Kimura <jfkimura@yahoo.co.jp> (maintainer)
13 lines
390 B
Perl
13 lines
390 B
Perl
#!/usr/bin/perl -w
|
|
# $FreeBSD$
|
|
use strict;
|
|
#use lib qw(/usr/local/wikicker/.....);
|
|
use CGI::Carp qw(fatalsToBrowser);
|
|
#use WiKicker::CGI::Controller;
|
|
use WiKicker::WikiCGI::Controller;
|
|
# -0.19
|
|
#my $app = new WiKicker::CGI::Controller;
|
|
#$app->run;
|
|
# 0.20-
|
|
WiKicker::WikiCGI::Controller->new->run;
|
|
#WiKicker::WikiCGI::Controller->new(properties_file => '/your-path/another.properties')->run;
|