2 $ENV{PATH}="/usr/local/bin:/usr/bin:/bin";
3 delete @ENV{qw{IFS CDPATH ENV BASH_ENV}};
9 use lib '.'; # For use without installation, removed by Makefile.
13 die "usage: ikiwiki [options] source dest\n";
16 sub getconfig () { #{{{
17 if (! exists $ENV{WRAPPED_OPTIONS}) {
18 %config=defaultconfig();
19 eval q{use Getopt::Long};
20 Getopt::Long::Configure('pass_through');
22 "setup|s=s" => \$config{setup},
23 "wikiname=s" => \$config{wikiname},
24 "verbose|v!" => \$config{verbose},
25 "syslog!" => \$config{syslog},
26 "rebuild!" => \$config{rebuild},
27 "refresh!" => \$config{refresh},
28 "render=s" => \$config{render},
29 "wrappers!" => \$config{wrappers},
30 "getctime" => \$config{getctime},
31 "wrappermode=i" => \$config{wrappermode},
32 "rcs=s" => \$config{rcs},
33 "no-rcs" => sub { $config{rcs}="" },
34 "anonok!" => \$config{anonok},
35 "rss!" => \$config{rss},
36 "atom!" => \$config{atom},
37 "cgi!" => \$config{cgi},
38 "discussion!" => \$config{discussion},
39 "w3mmode!" => \$config{w3mmode},
40 "notify!" => \$config{notify},
41 "url=s" => \$config{url},
42 "cgiurl=s" => \$config{cgiurl},
43 "historyurl=s" => \$config{historyurl},
44 "diffurl=s" => \$config{diffurl},
45 "svnrepo" => \$config{svnrepo},
46 "svnpath" => \$config{svnpath},
47 "adminemail=s" => \$config{adminemail},
48 "timeformat=s" => \$config{timeformat},
49 "sslcookie!" => \$config{sslcookie},
50 "httpauth!" => \$config{httpauth},
52 $config{wiki_file_prune_regexp}=qr/$config{wiki_file_prune_regexp}|$_[1]/;
54 "adminuser=s@" => sub {
55 push @{$config{adminuser}}, $_[1]
57 "templatedir=s" => sub {
58 $config{templatedir}=possibly_foolish_untaint($_[1])
60 "underlaydir=s" => sub {
61 $config{underlaydir}=possibly_foolish_untaint($_[1])
64 $config{wrapper}=$_[1] ? $_[1] : "ikiwiki-wrap"
67 push @{$config{plugin}}, $_[1];
69 "disable-plugin=s@" => sub {
70 $config{plugin}=[grep { $_ ne $_[1] } @{$config{plugin}}];
73 push @{$config{pingurl}}, $_[1];
76 print "ikiwiki version $IkiWiki::version\n";
81 if (! $config{setup} && ! $config{render}) {
83 usage() unless @ARGV == 2;
84 $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
85 $config{destdir} = possibly_foolish_untaint(shift @ARGV);
90 # wrapper passes a full config structure in the environment
92 eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
94 error("WRAPPED_OPTIONS: $@");
107 require IkiWiki::CGI;
110 elsif ($config{setup}) {
111 require IkiWiki::Setup;
114 elsif ($config{wrapper}) {
116 require IkiWiki::Wrapper;
119 elsif ($config{render}) {
120 require IkiWiki::Render;
121 commandline_render();
126 require IkiWiki::Render;
129 rcs_notify() if $config{notify};