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 "prefix-directives!" => \$config{prefix_directives},
33 "getctime" => \$config{getctime},
34 "numbacklinks=i" => \$config{numbacklinks},
35 "rcs=s" => \$config{rcs},
36 "no-rcs" => sub { $config{rcs}="" },
37 "cgi!" => \$config{cgi},
38 "discussion!" => \$config{discussion},
39 "w3mmode!" => \$config{w3mmode},
40 "url=s" => \$config{url},
41 "cgiurl=s" => \$config{cgiurl},
42 "historyurl=s" => \$config{historyurl},
43 "diffurl=s" => \$config{diffurl},
44 "svnpath" => \$config{svnpath},
45 "adminemail=s" => \$config{adminemail},
46 "timeformat=s" => \$config{timeformat},
47 "sslcookie!" => \$config{sslcookie},
48 "httpauth!" => \$config{httpauth},
49 "userdir=s" => \$config{userdir},
50 "htmlext=s" => \$config{htmlext},
51 "libdir=s" => \$config{libdir},
53 push @{$config{wiki_file_prune_regexps}}, $_[1];
55 "adminuser=s@" => sub {
56 push @{$config{adminuser}}, $_[1]
58 "templatedir=s" => sub {
59 $config{templatedir}=possibly_foolish_untaint($_[1])
61 "underlaydir=s" => sub {
62 $config{underlaydir}=possibly_foolish_untaint($_[1])
65 $config{wrapper}=$_[1] ? possibly_foolish_untaint($_[1]) : "ikiwiki-wrap"
67 "wrappermode=i" => sub {
68 $config{wrappermode}=possibly_foolish_untaint($_[1])
71 push @{$config{plugin}}, $_[1];
73 "disable-plugin=s@" => sub {
74 push @{$config{disable_plugins}}, $_[1];
77 push @{$config{pingurl}}, $_[1];
80 my ($var, $val)=split('=', $_[1], 2);
81 if (! defined $var || ! defined $val) {
82 die gettext("usage: --set var=value"), "\n";
87 print "ikiwiki version $IkiWiki::version\n";
92 if (! $config{setup} && ! $config{render}) {
94 usage() unless @ARGV == 2;
95 $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
96 $config{destdir} = possibly_foolish_untaint(shift @ARGV);
101 # wrapper passes a full config structure in the environment
103 eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
105 error("WRAPPED_OPTIONS: $@");
115 if ($config{setup}) {
116 require IkiWiki::Setup;
119 elsif ($config{wrapper}) {
121 require IkiWiki::Wrapper;
124 elsif ($config{cgi}) {
125 require IkiWiki::CGI;
128 elsif ($config{render}) {
129 require IkiWiki::Render;
130 commandline_render();
132 elsif ($config{post_commit} && ! commit_hook_enabled()) {
138 require IkiWiki::Render;