diff options
Diffstat (limited to 'Bonus/goodict.cgi')
-rwxr-xr-x | Bonus/goodict.cgi | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Bonus/goodict.cgi b/Bonus/goodict.cgi index afea7ac..8f443c1 100755 --- a/Bonus/goodict.cgi +++ b/Bonus/goodict.cgi @@ -4,19 +4,19 @@ # e: file:/cgi-bin/goodict.cgi?%s # w: file:/cgi-bin/goodict.cgi?%s # j: file:/cgi-bin/goodict.cgi?%s -# s: file:/cgi-bin/goodict.cgi?%s use NKF; +#$mode = 0; # substring +$mode = 1; # perfect match +#$mode = 3; # search body text $url = "http://dictionary.goo.ne.jp"; $_ = $ENV{"QUERY_STRING"}; if (/^e:/) { - $switch = 0; + $kind = 'ej'; } elsif (/^w:/) { - $switch = 1; + $kind = 'je'; } elsif (/^j:/) { - $switch = 2; -} elsif (/^s:/) { - $switch = 3; + $kind = 'jn'; } s@^[ewjs]:@@ && s@^//@@ && s@/$@@; if ($_) { @@ -24,7 +24,7 @@ if ($_) { s/%([\da-f][\da-f])/pack('C', hex($1))/egi; $_ = nkf("-e", $_); s/[\000-\040\+:#?&%<>"\177-\377]/sprintf('%%%02X', unpack('C', $&))/eg; - $url .= "/cgi-bin/dict_search.cgi?MT=$_&sw=$switch"; + $url .= "/search.php?MT=$_&kind=$kind&mode=$mode"; } else { $input = "w3m-control: GOTO_LINK"; } |