2 $ENV{PATH}="/usr/local/bin:/usr/bin:/bin";
3 delete @ENV{qw{IFS CDPATH ENV BASH_ENV}};
9 use lib '.'; # For use in nonstandard directory, munged by Makefile.
13 die gettext("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 "post-commit" => \$config{post_commit},
29 "render=s" => \$config{render},
30 "wrappers!" => \$config{wrappers},
31 "usedirs!" => \$config{usedirs},
32 "getctime" => \$config{getctime},
33 "numbacklinks=i" => \$config{numbacklinks},
34 "rcs=s" => \$config{rcs},
35 "no-rcs" => sub { $config{rcs}="" },
36 "cgi!" => \$config{cgi},
37 "discussion!" => \$config{discussion},
38 "w3mmode!" => \$config{w3mmode},
39 "url=s" => \$config{url},
40 "cgiurl=s" => \$config{cgiurl},
41 "historyurl=s" => \$config{historyurl},
42 "diffurl=s" => \$config{diffurl},
43 "svnpath" => \$config{svnpath},
44 "adminemail=s" => \$config{adminemail},
45 "timeformat=s" => \$config{timeformat},
46 "sslcookie!" => \$config{sslcookie},
47 "httpauth!" => \$config{httpauth},
48 "userdir=s" => \$config{userdir},
49 "htmlext=s" => \$config{htmlext},
50 "libdir=s" => \$config{libdir},
52 push @{$config{wiki_file_prune_regexps}}, $_[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] ? possibly_foolish_untaint($_[1]) : "ikiwiki-wrap"
66 "wrappermode=i" => sub {
67 $config{wrappermode}=possibly_foolish_untaint($_[1])
70 push @{$config{plugin}}, $_[1];
72 "disable-plugin=s@" => sub {
73 push @{$config{disable_plugins}}, $_[1];
76 push @{$config{pingurl}}, $_[1];
79 my ($var, $val)=split('=', $_[1], 2);
80 if (! defined $var || ! defined $val) {
81 die gettext("usage: --set var=value"), "\n";
86 print "ikiwiki version $IkiWiki::version\n";
91 if (! $config{setup} && ! $config{render}) {
93 usage() unless @ARGV == 2;
94 $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
95 $config{destdir} = possibly_foolish_untaint(shift @ARGV);
100 # wrapper passes a full config structure in the environment
102 eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
104 error("WRAPPED_OPTIONS: $@");
114 if ($config{setup}) {
115 require IkiWiki::Setup;
118 elsif ($config{wrapper}) {
120 require IkiWiki::Wrapper;
123 elsif ($config{cgi}) {
124 require IkiWiki::CGI;
127 elsif ($config{render}) {
128 require IkiWiki::Render;
129 commandline_render();
131 elsif ($config{post_commit} && ! commit_hook_enabled()) {
137 require IkiWiki::Render;