blob: 7aa2a2ba5ca0b693c225473c2a523919a6530073 (
plain)
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
|
var textNodeType;
function textContent(n) {
if ( n.nodeType == textNodeType ) {
return n.data;
} else {
var children = n.childNodes;
var t = "";
for ( var i=0 ; i<children.length ; i++ ) {
t = t.concat(textContent(children.item(i)));
}
return t;
}
}
function despam() {
// MSIE seems to barf... Deactivate for now
if ( (/MSIE *[1-6]\./).test(navigator.userAgent) )
return;
// Now replace as appropriate.
var elts = document.getElementsByTagName("span");
for ( var i=0 ; i<elts.length ; i++ ) {
var elt = elts.item(i);
if ( elt.className == "replace-commercial-at" ) {
elt.parentNode.replaceChild(document.createTextNode("@"),elt);
i--; // Semi-bugware
} else if ( elt.className == "replace-full-stop" ) {
elt.parentNode.replaceChild(document.createTextNode("."),elt);
i--; // Semi-bugware
}
}
// Merge adjacent text nodes.
try {
document.normalize(); // Your DOM is BROKEN!
} catch (exn) {
document.documentElement.normalize();
}
// Next, process all <a> elements having class="despammed-address".
elts = document.getElementsByTagName("a");
for ( var i=0 ; i<elts.length ; i++ ) {
var elt = elts.item(i);
if ( elt.className == "despammed-address" ) {
var addr = "mailto:".concat(textContent(elt));
elt.setAttribute("href",addr); // (abstract)
elt.href = addr; // (semantic)
}
}
}
function onLoad() {
// Start with some bugware...
try {
textNodeType = Node.TEXT_NODE;
} catch (exn) { // Your DOM is BROKEN!
textNodeType = 3;
}
// Now despam email adresses.
despam();
}
|