|
@@ -223,10 +223,14 @@
|
|
i,
|
|
i,
|
|
msg = function(msg){
|
|
msg = function(msg){
|
|
string = '<span class="cell date_cell">[<abbr class="date date_'+time+'" title="'+date.toISOString()+'"></abbr>]</span>';
|
|
string = '<span class="cell date_cell">[<abbr class="date date_'+time+'" title="'+date.toISOString()+'"></abbr>]</span>';
|
|
- child = $('<li>').html(string+'<span class="cell">'+msg.htmlentities().replace(
|
|
|
|
- /(https?:\/\/(([-\w\.]+)+(:\d+)?(\/([\w/_\.]*(\?\S+)?)?)?))/g,
|
|
|
|
- "<a href=\"$1\" title=\"\">$1</a>"
|
|
|
|
- )+'</span>');
|
|
|
|
|
|
+ child = $('<li>').html(string+'<span class="cell">'+
|
|
|
|
+ msg
|
|
|
|
+ .htmlentities()
|
|
|
|
+ .replace(
|
|
|
|
+ /(https?:\/\/(([-\w\.]+)+(:\d+)?(\/([\w/_\.]*(\?\S+)?)?)?))/g,
|
|
|
|
+ "<a href=\"$1\" title=\"\">$1</a>"
|
|
|
|
+ )
|
|
|
|
+ +'</span>');
|
|
$o.msg({html:child},data.room);
|
|
$o.msg({html:child},data.room);
|
|
};
|
|
};
|
|
if(data.from != 0){
|
|
if(data.from != 0){
|
|
@@ -698,7 +702,14 @@
|
|
}
|
|
}
|
|
});
|
|
});
|
|
String.prototype.htmlentities = function(){
|
|
String.prototype.htmlentities = function(){
|
|
- return this.replace(/&/g, '&').replace(/\s/g, ' ').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"');
|
|
|
|
|
|
+ return this
|
|
|
|
+ .replace(/&/g, '&')
|
|
|
|
+ .replace(/</g, '<')
|
|
|
|
+ .replace(/>/g, '>')
|
|
|
|
+ .replace(/\n/g,'<br/>')
|
|
|
|
+ .replace(/\t/g, ' ')
|
|
|
|
+ .replace(/\s/g, ' ')
|
|
|
|
+ .replace(/"/g, '"');
|
|
};
|
|
};
|
|
$(document).ready(function(){
|
|
$(document).ready(function(){
|
|
$.extend(settings,$.parseJSON($.localStorage('settings')));
|
|
$.extend(settings,$.parseJSON($.localStorage('settings')));
|