aboutsummaryrefslogtreecommitdiffstats
path: root/multi_requester.js
diff options
context:
space:
mode:
Diffstat (limited to 'multi_requester.js')
-rw-r--r--multi_requester.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/multi_requester.js b/multi_requester.js
index 4a9b00d..0f3833f 100644
--- a/multi_requester.js
+++ b/multi_requester.js
@@ -4,10 +4,10 @@
* @description request, and the result is displayed to the buffer.
* @description-ja リクエストの結果をバッファに出力する。
* @author suVene suvene@zeromemory.info
- * @version 0.4.2
+ * @version 0.4.3
* @minVersion 2.0pre
* @maxVersion 2.0pre
- * Last Change: 07-Dec-2008.
+ * Last Change: 08-Dec-2008.
* ==/VimperatorPlugin==
*
* HEAD COMMENT {{{
@@ -365,7 +365,7 @@ var MultiRequester = {
try {
- if (!res.isSuccess || res.responseText == '') throw 'response is fail or null';
+ if (!res.isSuccess() || res.responseText == '') throw 'response is fail or null';
url = res.req.url;
escapedUrl = util.escapeHTML(url);
@@ -377,7 +377,7 @@ var MultiRequester = {
return;
}
- doc = res.getHTMLDocument(xpath);
+ doc = res.getHTMLDocument(xpath, null, res.req.options.siteinfo.ignoreTags);
if (!doc) throw 'XPath result is undefined or null.: XPath -> ' + xpath;
html = '<a href="' + escapedUrl + '" class="hl-Title" target="_self">' + escapedUrl + '</a>' +