--CHATZILLA CHANGES ONLY--

type=content in xul window to allow mouse selections, fixed debug message in gotoIRCURL()
This commit is contained in:
rginda%netscape.com 2000-06-03 00:11:57 +00:00
parent 08283e98ce
commit 579fd995b8
2 changed files with 4 additions and 4 deletions

View File

@ -195,7 +195,7 @@
<splitter id="main-splitter" align="vertical" collapse="before"/> <splitter id="main-splitter" align="vertical" collapse="before"/>
<box align="vertical" flex="60%"> <box align="vertical" flex="60%">
<html:iframe id="it-doesnt-matter-anyway" class="output-container" <html:iframe id="it-doesnt-matter-anyway" class="output-container"
src="about:blank" flex="1"/> type="content" src="about:blank" flex="1"/>
<!-- <!--
<html:textarea id="input" class="input-window"/> <html:textarea id="input" class="input-window"/>
--> -->

View File

@ -194,9 +194,9 @@ function initHost(obj)
obj.munger = new CMunger(); obj.munger = new CMunger();
obj.munger.enabled = true; obj.munger.enabled = true;
obj.munger.addRule ("you-talking-to-me?", matchMyNick, ""); obj.munger.addRule ("you-talking-to-me?", matchMyNick, "");
obj.munger.addRule ("im-stalking-you", matchMyNick, "" ); // obj.munger.addRule ("im-stalking-you", matchMyNick, "" );
obj.munger.addRule obj.munger.addRule
("link", /((http|mailto|ftp|irc)\:\/\/[^\)\s]*|www\.\S+\.\S[^\)\s]*)/, ("link", /((\w+)\:\/\/[^\<\>\(\)\'\"\s]*|www\.[^\<\>\(\)\'\"\s]+\.[^\<\>\(\)\'\"\s]*)/,
insertLink); insertLink);
obj.munger.addRule obj.munger.addRule
("face", ("face",
@ -608,7 +608,7 @@ function gotoIRCURL (url)
if (!alreadyThere) if (!alreadyThere)
{ {
dd ("-*- chatzilla: gotoIRCURL: not already connected to " + dd ("-*- chatzilla: gotoIRCURL: not already connected to " +
"server " + ary[1] + " trying to connect..."); "server " + url.host + " trying to connect...");
client.onInputServer ({inputData: url.host + " " + url.port + client.onInputServer ({inputData: url.host + " " + url.port +
" " + pass}); " " + pass});
net = client.networks[url.host]; net = client.networks[url.host];