fixed bad snippet behavior (hopefully)

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2596 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent 06fa891152
commit d54144a4e3

@ -41,27 +41,26 @@ function handleState(req) {
//span.setAttribute("class", "snippetError"); //span.setAttribute("class", "snippetError");
} }
var pos=snippetText.indexOf("<b>"); // replace "<b>" text by <strong> node
var pos1=snippetText.indexOf("<b>");
var pos2=snippetText.indexOf("</b>"); var pos2=snippetText.indexOf("</b>");
var tmpNode=null; while (pos1 >= 0 && pos2 > pos1) {
var tmpNode2=null; leftString = document.createTextNode(snippetText.substring(0, pos1)); //other text
while(pos >= 0 && pos2 > pos){ if (leftString != "") span.appendChild(leftString);
tmpNode = document.createTextNode(snippetText.substring(0, pos)); //other text
if(tmpNode != ""){
span.appendChild(tmpNode);
}
//add the bold text //add the bold text
tmpNode=document.createElement("strong") strongNode=document.createElement("strong");
tmpNode2=document.createTextNode(snippetText.substring(pos+3,pos2)); middleString=document.createTextNode(snippetText.substring(pos1 + 3, pos2));
tmpNode.appendChild(tmpNode2); strongNode.appendChild(middleString);
span.appendChild(tmpNode) span.appendChild(strongNode);
snippetText=snippetText.substring(pos2+4) // cut out left and middle and go on with remaining text
var pos=snippetText.indexOf("<b>"); snippetText=snippetText.substring(pos2 + 4);
var pos2=snippetText.indexOf("</b>"); pos1=snippetText.indexOf("<b>");
pos2=snippetText.indexOf("</b>");
} }
if(snippetText != ""){ // add remaining string
tmpNode = document.createTextNode(snippetText.substring(0, pos)); //other text if (snippetText != "") {
span.appendChild(tmpNode); span.appendChild(document.createTextNode(snippetText));
} }
} }

Loading…
Cancel
Save