1 #!/usr/bin/perl -T -CSD
2 $ENV{PATH}="/usr/local/bin:/usr/bin:/bin";
7 use lib '.'; # For use without installation, removed by Makefile.
11 die "usage: ikiwiki [options] source dest\n";
14 sub getconfig () { #{{{
15 if (! exists $ENV{WRAPPED_OPTIONS}) {
16 %config=defaultconfig();
17 eval q{use Getopt::Long};
19 "setup|s=s" => \$config{setup},
20 "wikiname=s" => \$config{wikiname},
21 "verbose|v!" => \$config{verbose},
22 "rebuild!" => \$config{rebuild},
23 "refresh!" => \$config{refresh},
24 "getctime" => \$config{getctime},
25 "wrappermode=i" => \$config{wrappermode},
26 "rcs=s" => \$config{rcs},
27 "no-rcs" => sub { $config{rcs}="" },
28 "anonok!" => \$config{anonok},
29 "rss!" => \$config{rss},
30 "cgi!" => \$config{cgi},
31 "discussion!" => \$config{discussion},
32 "notify!" => \$config{notify},
33 "url=s" => \$config{url},
34 "cgiurl=s" => \$config{cgiurl},
35 "historyurl=s" => \$config{historyurl},
36 "diffurl=s" => \$config{diffurl},
37 "svnrepo" => \$config{svnrepo},
38 "svnpath" => \$config{svnpath},
39 "adminemail=s" => \$config{adminemail},
41 $config{wiki_file_prune_regexp}=qr/$config{wiki_file_prune_regexp}|$_[1]/;
43 "adminuser=s@" => sub {
44 push @{$config{adminuser}}, $_[1]
46 "templatedir=s" => sub {
47 $config{templatedir}=possibly_foolish_untaint($_[1])
49 "underlaydir=s" => sub {
50 $config{underlaydir}=possibly_foolish_untaint($_[1])
53 $config{wrapper}=$_[1] ? $_[1] : "ikiwiki-wrap"
56 push @{$config{plugin}}, $_[1];
58 "disable-plugin=s@" => sub {
59 $config{plugin}=[grep { $_ ne $_[1] } @{$config{plugin}} ];
63 if (! $config{setup}) {
64 usage() unless @ARGV == 2;
65 $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
66 $config{destdir} = possibly_foolish_untaint(shift @ARGV);
71 # wrapper passes a full config structure in the environment
73 eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
75 error("WRAPPED_OPTIONS: $@");
90 elsif ($config{setup}) {
91 require IkiWiki::Setup;
94 elsif ($config{wrapper}) {
96 require IkiWiki::Wrapper;
102 require IkiWiki::Render;
105 rcs_notify() if $config{notify};