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};
18 Getopt::Long::Configure('pass_through');
20 "setup|s=s" => \$config{setup},
21 "wikiname=s" => \$config{wikiname},
22 "verbose|v!" => \$config{verbose},
23 "rebuild!" => \$config{rebuild},
24 "refresh!" => \$config{refresh},
25 "wrappers!" => \$config{wrappers},
26 "getctime" => \$config{getctime},
27 "wrappermode=i" => \$config{wrappermode},
28 "rcs=s" => \$config{rcs},
29 "no-rcs" => sub { $config{rcs}="" },
30 "anonok!" => \$config{anonok},
31 "rss!" => \$config{rss},
32 "cgi!" => \$config{cgi},
33 "discussion!" => \$config{discussion},
34 "w3mmode!" => \$config{w3mmode},
35 "notify!" => \$config{notify},
36 "url=s" => \$config{url},
37 "cgiurl=s" => \$config{cgiurl},
38 "historyurl=s" => \$config{historyurl},
39 "diffurl=s" => \$config{diffurl},
40 "svnrepo" => \$config{svnrepo},
41 "svnpath" => \$config{svnpath},
42 "adminemail=s" => \$config{adminemail},
43 "timeformat=s" => \$config{timeformat},
45 $config{wiki_file_prune_regexp}=qr/$config{wiki_file_prune_regexp}|$_[1]/;
47 "adminuser=s@" => sub {
48 push @{$config{adminuser}}, $_[1]
50 "templatedir=s" => sub {
51 $config{templatedir}=possibly_foolish_untaint($_[1])
53 "underlaydir=s" => sub {
54 $config{underlaydir}=possibly_foolish_untaint($_[1])
57 $config{wrapper}=$_[1] ? $_[1] : "ikiwiki-wrap"
60 push @{$config{plugin}}, $_[1];
62 "disable-plugin=s@" => sub {
63 $config{plugin}=[grep { $_ ne $_[1] } @{$config{plugin}}];
66 push @{$config{pingurl}}, $_[1];
70 if (! $config{setup}) {
72 usage() unless @ARGV == 2;
73 $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
74 $config{destdir} = possibly_foolish_untaint(shift @ARGV);
79 # wrapper passes a full config structure in the environment
81 eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
83 error("WRAPPED_OPTIONS: $@");
99 elsif ($config{setup}) {
100 require IkiWiki::Setup;
103 elsif ($config{wrapper}) {
105 require IkiWiki::Wrapper;
111 require IkiWiki::Render;
114 rcs_notify() if $config{notify};