diff options
author | Ralph Amissah <ralph@amissah.com> | 2014-08-08 00:16:16 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2014-08-08 00:16:16 -0400 |
commit | 64e5c9120ffb7a65b96eded0850f481e116f1d3f (patch) | |
tree | 201a7c37c9cc8f18a3f760fba6d4202cd0edad43 /lib/sisu/v6/cgi.rb | |
parent | v6: commandline, --act0 to --act9, rc-config with flag:act[0-9] (diff) |
v6: use opt.act, code internals (simplify, cleaner; remove opt.cmd & opt.mod)
* v5 dp, indentation changed to retain easy comparison with v6
Diffstat (limited to 'lib/sisu/v6/cgi.rb')
-rw-r--r-- | lib/sisu/v6/cgi.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sisu/v6/cgi.rb b/lib/sisu/v6/cgi.rb index d7911808..9a0dab33 100644 --- a/lib/sisu/v6/cgi.rb +++ b/lib/sisu/v6/cgi.rb @@ -71,9 +71,9 @@ module SiSU_CGI #% database building doc @webserv=@opt.files[0].to_s.strip end def read - if @opt.mod.inspect =~/--db[=-]["']?(?:pg|pg?sql|postgres(?:ql)?)["']+/ + if @opt.act[:psql][:set]==:on SiSU_CGI_PgSQL::SearchPgSQL.new(@opt,@webserv).pgsql - elsif @opt.mod.inspect =~/--db[=-](?:sqlite)/ + elsif @opt.act[:sqlite][:set]==:on SiSU_CGI_SQLite::SearchSQLite.new(@opt,@webserv).sqlite else puts <<-WOK |