-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathborderify.js
More file actions
135 lines (98 loc) · 2.23 KB
/
borderify.js
File metadata and controls
135 lines (98 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
var mm = $("#rso");
mm.css("border","5px solid red");
var ss = mm.find("a");
var ls = {};
var ls1 = {};
var k = 0;
var hf;
var chck = new RegExp("https://webcache");
var chck1 = new RegExp("http://webcache");
function isUndefined(value){
var undefined = void(0);
return value === undefined;
}
function insert_Func(hf){
var i,flag=0,len;
if(Object.getOwnPropertyNames(ls).length === 0){
return true;
}
else{
len = Object.getOwnPropertyNames(ls).length;
for(i=0;i<len;i++){
if(hf === ls[i]){
return false;
}
else{
if(hf.includes(ls[i]))
return false;
}
}
}
return true;
}
$('#rso').find('a').each(function() {
if(isUndefined($(this).attr('href') )){}
else{
hf = "" + $(this).attr('href');
if(hf[0] != '#' && hf[0] != '/'){
if(chck.test(hf)){}
else if(chck1.test(hf)){}
else{
var kk = insert_Func(hf);
if(kk){
ls[k] = hf;
k++;
}
}
}
}
});
function display_Score(msg){
// for(var i =0;i<len;i++){
// var he = 'a[href^=\"' + ls[i] +'\"]';
// console.log(he);
// $(he).css("backgroundcolor","blue");
// }
var k=0;
$('#rso').find('a').each(function() {
if(isUndefined($(this).attr('href') )){}
else{
hf = "" + $(this).attr('href');
if(hf[0] != '#' && hf[0] != '/'){
if(chck.test(hf)){}
else if(chck1.test(hf)){}
else{
// $(this).css("color","red");
// var $e = $("<div>", {id: "newDiv1", style:"backgroundcolor=red;width=10px;height=10px;"});
$(this).append(
$('<div/>')
.attr("style", "position:relative;width:200px;height:20px;background:green;font:10px;")
.text(msg[k])
);
k++;
// if(hf == (ls[k])){
// // $(this).css("backgroundcolor","blue");
// console.log(ls[k]);
// }
// k++;
}
}
}
});
}
$(document).ready(function(){
var request = $.ajax({
url: "http://127.0.0.1:9000/plugin/api/plugin",
method: "POST",
contentType: "application/json;charset=utf-8;",
dataType: "json",
data: JSON.stringify(ls),
});
request.done(function( msg ) {
display_Score(msg);
});
request.fail(function( jqXHR, textStatus ) {
alert( "Request failed: " + textStatus );
console.log(jqXHR);
});
});