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 run_hooks(getopt => sub { shift->() });
73 if (grep /^-/, @ARGV) {
74 print STDERR "Unknown option: $_\n"
75 foreach grep /^-/, @ARGV;
78 usage() unless @ARGV == 2;
79 $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
80 $config{destdir} = possibly_foolish_untaint(shift @ARGV);
85 # wrapper passes a full config structure in the environment
87 eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
89 error("WRAPPED_OPTIONS: $@");
102 require IkiWiki::CGI;
105 elsif ($config{setup}) {
106 require IkiWiki::Setup;
109 elsif ($config{wrapper}) {
111 require IkiWiki::Wrapper;
117 require IkiWiki::Render;
120 rcs_notify() if $config{notify};