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 "wrappermode=i" => \$config{wrappermode},
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 "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},
51 "userdir=s" => \$config{userdir},
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] ? $_[1] : "ikiwiki-wrap"
68 push @{$config{plugin}}, $_[1];
70 "disable-plugin=s@" => sub {
71 push @{$config{disable_plugins}}, $_[1];
74 push @{$config{pingurl}}, $_[1];
77 print "ikiwiki version $IkiWiki::version\n";
82 if (! $config{setup} && ! $config{render}) {
84 usage() unless @ARGV == 2;
85 $config{srcdir} = possibly_foolish_untaint(shift @ARGV);
86 $config{destdir} = possibly_foolish_untaint(shift @ARGV);
91 # wrapper passes a full config structure in the environment
93 eval possibly_foolish_untaint($ENV{WRAPPED_OPTIONS});
95 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();
123 elsif ($config{post_commit} && ! commit_hook_enabled()) {
124 if ($config{notify}) {
132 require IkiWiki::Render;
135 rcs_notify() if $config{notify};