Lines Matching +refs:text +refs:line +refs:d

948       var line = '';
949 line += '<div id="pfc_msg_'+recipientid+'_'+id+'" class="pfc_cmd_'+ cmd +' pfc_message';
950 line += (id % 2 == 0) ? ' pfc_evenmsg' : ' pfc_oddmsg';
951 if (oldmsg == 1) line += ' pfc_oldmsg';
952 line += '">';
953 line += '<span class="pfc_date';
954 if (fromtoday == 1) line += ' pfc_invisible';
955 line += '">'+ date +'</span> ';
956 line += '<span class="pfc_heure">'+ time +'</span> ';
959 line += ' <span class="pfc_nick">';
960 line += '&#x2039;';
961 line += '<span ';
962line += 'onclick="pfc.insert_text(\'' + sender.escapeHTML().replace("'", '\\\'') + ', \',\'\',fals…
963 line += 'class="pfc_nickmarker pfc_nick_'+ _to_utf8(sender).md5() +'">';
964 line += sender.escapeHTML();
965 line += '</span>';
966 line += '&#x203A;';
967 line += '</span> ';
970 line += '<span class="pfc_words">* ' + this.parseMessage(param) +'</span> ';
972line += '<span class="pfc_words">* '+ sender.escapeHTML() + ' ' + this.parseMessage(param) +'</spa…
974 line += '<span class="pfc_words">'+ this.parseMessage(param) +'</span> ';
975 line += '</div>';
991 msg_html.set(recipientid, line);
993 msg_html.set(recipientid, msg_html.get(recipientid) + line);
1046 var d = dlist.shift();
1047 if (d < delay) continue;
1048 if (lastact > limit) delay = d;
1230 range.text = smiley;
1437 var d = pfc.getNickWhoisBox(this.pfc_nickid);
1438 document.body.appendChild(d);
1439 d.style.display = 'block';
1440 d.style.zIndex = '400';
1441 d.style.position = 'absolute';
1442 d.style.left = (mousePosX(evt)-7)+'px';
1443 d.style.top = (mousePosY(evt)-7)+'px';
1899 var text = msgfield.value.substring(startPos, endPos);
1906 this.insert_text_callback(text, pfcp);
1916 var text = pfcp.range.text;
1917 if (text == "" && promptifselempty)
1923 this.insert_text_callback(text, pfcp);
1934 insert_text_callback: function(text, pfcp) argument
1953 if (text == null) text = "";
1954 extralength = text.length;
1956 if (text.length > 0 || !promptifselempty)
1958 …msgfield.value = msgfield.value.substring(0, startPos) + open + text + close + msgfield.value.subs…
1967 if (text == null) text = "";
1968 if (text.length > 0 || !promptifselempty)
1972 range.text = open + text + close;
1976 …gfield.selStart) ? msgfield.selStart + open.length + text.length + close.length : open.length + te…
1985 if (text == null) text = "";
1986 if (text.length > 0 || !promptifselempty)
1988 msgfield.value += open + text + close;