aboutsummaryrefslogtreecommitdiff
path: root/ikiwiki.in
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-08-28 21:14:03 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-08-28 21:14:03 +0000
commit58318b3ef9f827425d0e1d44676f1b6b016cb413 (patch)
tree4f2e9cadc44e4896246f87c53273adba4cf86660 /ikiwiki.in
parentfe316c44347f190c2e3e7443661cc1537ffb8fd3 (diff)
downloadikiwiki-58318b3ef9f827425d0e1d44676f1b6b016cb413.tar
ikiwiki-58318b3ef9f827425d0e1d44676f1b6b016cb413.tar.gz
* Allow -cgi -wrapper to be passed on the command line to generate a
wrapper. * Fix some taint issues with generating wrappers using the command line.
Diffstat (limited to 'ikiwiki.in')
-rwxr-xr-xikiwiki.in18
1 files changed, 10 insertions, 8 deletions
diff --git a/ikiwiki.in b/ikiwiki.in
index 6242865ee..2aeaf94ec 100755
--- a/ikiwiki.in
+++ b/ikiwiki.in
@@ -30,7 +30,6 @@ sub getconfig () { #{{{
"wrappers!" => \$config{wrappers},
"usedirs!" => \$config{usedirs},
"getctime" => \$config{getctime},
- "wrappermode=i" => \$config{wrappermode},
"numbacklinks=i" => \$config{numbacklinks},
"rcs=s" => \$config{rcs},
"no-rcs" => sub { $config{rcs}="" },
@@ -64,7 +63,10 @@ sub getconfig () { #{{{
$config{underlaydir}=possibly_foolish_untaint($_[1])
},
"wrapper:s" => sub {
- $config{wrapper}=$_[1] ? $_[1] : "ikiwiki-wrap"
+ $config{wrapper}=$_[1] ? possibly_foolish_untaint($_[1]) : "ikiwiki-wrap"
+ },
+ "wrappermode=i" => sub {
+ $config{wrappermode}=possibly_foolish_untaint($_[1])
},
"plugin=s@" => sub {
push @{$config{plugin}}, $_[1];
@@ -111,12 +113,7 @@ sub getconfig () { #{{{
sub main () { #{{{
getconfig();
- if ($config{cgi}) {
- loadindex();
- require IkiWiki::CGI;
- cgi();
- }
- elsif ($config{setup}) {
+ if ($config{setup}) {
require IkiWiki::Setup;
setup();
}
@@ -125,6 +122,11 @@ sub main () { #{{{
require IkiWiki::Wrapper;
gen_wrapper();
}
+ elsif ($config{cgi}) {
+ loadindex();
+ require IkiWiki::CGI;
+ cgi();
+ }
elsif ($config{render}) {
require IkiWiki::Render;
commandline_render();