freebsd-ports/japanese/wikicker/files/wiki.cgi.in
Mark Linimon 86e477046e Update to release 0.21. See ChangeLog for details (
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)
2004-02-10 17:46:41 +00:00

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;