diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-07 21:33:27 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-07 21:33:27 -0400 |
commit | 8f6cfbfade6018732495addce11f6d5e93e0b723 (patch) | |
tree | cb99167b1f6287b82f9c4fdae9c6ae486e58507c /IkiWiki | |
parent | 1e75389a856c8ab8e233b81fd3310169cbe8d57e (diff) | |
download | ikiwiki-8f6cfbfade6018732495addce11f6d5e93e0b723.tar ikiwiki-8f6cfbfade6018732495addce11f6d5e93e0b723.tar.gz |
Removed the openidsignup option.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/openid.pm | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/IkiWiki/Plugin/openid.pm b/IkiWiki/Plugin/openid.pm index 7e4d0844a..36002371a 100644 --- a/IkiWiki/Plugin/openid.pm +++ b/IkiWiki/Plugin/openid.pm @@ -9,7 +9,6 @@ use IkiWiki 3.00; sub import { add_underlay("openid-selector"); hook(type => "checkconfig", id => "openid", call => \&checkconfig); - hook(type => "getopt", id => "openid", call => \&getopt); hook(type => "getsetup", id => "openid", call => \&getsetup); hook(type => "auth", id => "openid", call => \&auth); hook(type => "formbuilder_setup", id => "openid", @@ -34,13 +33,6 @@ sub checkconfig () { } } -sub getopt () { - eval q{use Getopt::Long}; - error($@) if $@; - Getopt::Long::Configure('pass_through'); - GetOptions("openidsignup=s" => \$config{openidsignup}); -} - sub getsetup () { return plugin => { @@ -48,13 +40,6 @@ sub getsetup () { rebuild => 0, section => "auth", }, - openidsignup => { - type => "string", - example => "http://myopenid.com/", - description => "an url where users can signup for an OpenID", - safe => 1, - rebuild => 0, - }, } sub openid_selector { |