Skip to content

Commit f27b0ea

Browse files
committed
[Google Scholar] Support "0-" proxies
1 parent 21648e2 commit f27b0ea

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Google Scholar.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"inRepository": true,
1010
"translatorType": 4,
1111
"browserSupport": "gcsibv",
12-
"lastUpdated": "2014-03-17 19:59:24"
12+
"lastUpdated": "2014-07-24 02:01:01"
1313
}
1414

1515
/*
@@ -78,9 +78,10 @@ function setGSPCookie(doc, cookie) {
7878
':CF=4';
7979
}
8080

81+
// Make sure we capture "0-" in
82+
// http://0-scholar.google.co.za.innopac.up.ac.za/...
8183
var domain = doc.location.href
82-
.match(/https?:\/\/[^\/]*?(scholar\.google\.[^:\/]+)/i)[1];
83-
84+
.match(/https?:\/\/[^\/]*?([^.\/]*scholar\.google\.[^:\/]+)/i)[1];
8485
cookie += '; domain=.' + domain +
8586
'; expires=Sun, 17 Jan 2038 19:14:09 UTC'; //this is what google scholar uses
8687
doc.cookie = cookie;
@@ -362,8 +363,7 @@ function scrapeCaseResults(doc, cases) {
362363
if(caseId) caseId = caseId.match(/\b(?:cites|about)=(\d+)/);
363364
if(caseId) caseId = caseId[1];
364365
if(caseId) {
365-
attachmentFrag = 'http://scholar.google.com/scholar_case?'
366-
+ 'case=' + caseId;
366+
attachmentFrag = '/scholar_case?case=' + caseId;
367367
}
368368
}
369369

0 commit comments

Comments
 (0)