Browse Source

link parsing

Nathaniel van Diepen 11 years ago
parent
commit
0864577170
1 changed files with 14 additions and 2 deletions
  1. 14 2
      app/www/js/omnomirc.js

+ 14 - 2
app/www/js/omnomirc.js

@@ -190,7 +190,10 @@
 							}else{
 								string = '<span class="cell">[<abbr class="date date_'+time+'" title="'+date.toISOString()+'"></abbr>]</span>';
 							}
-							child = $('<li>').html(string+'<span class="cell">'+msg.htmlentities()+'</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);
 						};
 					if(data.from != 0){
@@ -202,6 +205,15 @@
 				}
 			}
 		],
+		hooks = [
+			{
+				type: 'style',
+				hook: 'load',
+				fn: function(){
+					
+				}
+			}
+		],
 		abbrDate = function(selector){
 			if(settings.timestamp == 'fuzzy'){
 				$(selector).timeago();
@@ -367,7 +379,7 @@
 		},
 		send: function(msg){
 			if(msg !== ''){
-				if(msg[0] == '/'){
+				if(msg[0] == '/' && msg[1] != '/'){
 					var args = msg.split(' '),
 						cmd = args[0].substr(1),
 						i;