diff options
author | Dmitry Kim <dmitry point kim at gmail point com> | 2007-03-30 23:44:02 +0000 |
---|---|---|
committer | Dmitry Kim <dmitry point kim at gmail point com> | 2007-03-30 23:44:02 +0000 |
commit | b11c3c4042b03e36639370002ecf86c44f7ddde4 (patch) | |
tree | 05a35024a2d56c7e3d313317376a17cb7c41a99f /data/rbot/plugins/search.rb | |
parent | b73d6c7dc6554e1c6eb6abce68350ed2c13191b8 (diff) |
*** (httputil) major rework, new caching implementation, unified request
processing
+ (httputil) post support, partial request support, other features
- (httputil) removed partial_body() and get_cached() [merged into get()]
* (plugins/, utils) minimal changes to accomodate for the new http_utils
* (utils, ircbot) moved utils initialization into utils.rb
* (tube.rb) (partially) accomodate for upstream site layout changes
Diffstat (limited to 'data/rbot/plugins/search.rb')
-rw-r--r-- | data/rbot/plugins/search.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/search.rb b/data/rbot/plugins/search.rb index 221071cb..1884b38a 100644 --- a/data/rbot/plugins/search.rb +++ b/data/rbot/plugins/search.rb @@ -62,7 +62,7 @@ class SearchPlugin < Plugin hits = params[:hits] || @bot.config['google.hits'] begin - wml = @bot.httputil.get_cached(url) + wml = @bot.httputil.get(url) rescue => e m.reply "error googling for #{what}" return |