Fix PDF recognition
This commit is contained in:
parent
b0a71467ea
commit
b2a7050dea
1 changed files with 5 additions and 4 deletions
|
@ -184,15 +184,16 @@ var Zotero_RecognizePDF = new function() {
|
||||||
return Zotero.HTTP.promise("GET", url, {"responseType":"document"})
|
return Zotero.HTTP.promise("GET", url, {"responseType":"document"})
|
||||||
})
|
})
|
||||||
.then(function(xmlhttp) {
|
.then(function(xmlhttp) {
|
||||||
|
var doc = xmlhttp.response,
|
||||||
|
deferred = Q.defer(),
|
||||||
|
translate = new Zotero.Translate.Web();
|
||||||
|
|
||||||
if(Zotero.Utilities.xpath(doc, "//form[@action='Captcha']").length) {
|
if(Zotero.Utilities.xpath(doc, "//form[@action='Captcha']").length) {
|
||||||
// Hit CAPTCHA
|
// Hit CAPTCHA
|
||||||
limited = true;
|
limited = true;
|
||||||
throw new Zotero.Exception.Alert("recognizePDF.limit");
|
throw new Zotero.Exception.Alert("recognizePDF.limit");
|
||||||
}
|
}
|
||||||
|
|
||||||
var doc = xmlhttp.response,
|
|
||||||
deferred = Q.defer(),
|
|
||||||
translate = new Zotero.Translate.Web();
|
|
||||||
translate.setTranslator("57a00950-f0d1-4b41-b6ba-44ff0fc30289");
|
translate.setTranslator("57a00950-f0d1-4b41-b6ba-44ff0fc30289");
|
||||||
translate.setDocument(Zotero.HTTP.wrapDocument(doc, url));
|
translate.setDocument(Zotero.HTTP.wrapDocument(doc, url));
|
||||||
translate.setHandler("translators", function(translate, detected) {
|
translate.setHandler("translators", function(translate, detected) {
|
||||||
|
|
Loading…
Reference in a new issue