diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-26 18:29:33 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-26 18:29:33 -0400 |
commit | 2bbe1bf9af4ba20f28a17d5e16a467313d2e37bd (patch) | |
tree | 395f7ec18e791694980c0c098eca272da59d9c44 /IkiWiki.pm | |
parent | 90b310b93c3dc3c9e7142fc8d1e0c8c7562659b2 (diff) | |
download | ikiwiki-2bbe1bf9af4ba20f28a17d5e16a467313d2e37bd.tar ikiwiki-2bbe1bf9af4ba20f28a17d5e16a467313d2e37bd.tar.gz |
move more settings out to rcs
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r-- | IkiWiki.pm | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 76f1292fc..5724518da 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -94,25 +94,6 @@ sub getsetup () { #{{{ safe => 0, # don't allow overriding rebuild => 0, }, - historyurl => { - type => "string", - # TODO should be set per-rcs to allow different - # examples and descriptions - default => '', - example => "XXX", - description => "XXX", - safe => 1, - rebuild => 1, - }, - diffurl => { - type => "string", - # TODO ditto above - default => '', - example => "XXX", - description => "XXX", - safe => 1, - rebuild => 1, - }, discussion => { type => "boolean", default => 1, @@ -120,20 +101,6 @@ sub getsetup () { #{{{ safe => 1, rebuild => 1, }, - gitorigin_branch => { - type => "string", - default => "origin", - description => "the git origin to pull from", - safe => 0, # paranoia - rebuild => 0, - }, - gitmaster_branch => { - type => "string", - default => "master", - description => "the git master branch", - safe => 0, # paranoia - rebuild => 0, - }, wrappers => { type => "string", default => undef, |