mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
--CHATZILLA CHANGES ONLY--
type=content in xul window to allow mouse selections, fixed debug message in gotoIRCURL()
This commit is contained in:
parent
08283e98ce
commit
579fd995b8
@ -195,7 +195,7 @@
|
||||
<splitter id="main-splitter" align="vertical" collapse="before"/>
|
||||
<box align="vertical" flex="60%">
|
||||
<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"/>
|
||||
-->
|
||||
|
@ -194,9 +194,9 @@ function initHost(obj)
|
||||
obj.munger = new CMunger();
|
||||
obj.munger.enabled = true;
|
||||
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
|
||||
("link", /((http|mailto|ftp|irc)\:\/\/[^\)\s]*|www\.\S+\.\S[^\)\s]*)/,
|
||||
("link", /((\w+)\:\/\/[^\<\>\(\)\'\"\s]*|www\.[^\<\>\(\)\'\"\s]+\.[^\<\>\(\)\'\"\s]*)/,
|
||||
insertLink);
|
||||
obj.munger.addRule
|
||||
("face",
|
||||
@ -608,7 +608,7 @@ function gotoIRCURL (url)
|
||||
if (!alreadyThere)
|
||||
{
|
||||
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 +
|
||||
" " + pass});
|
||||
net = client.networks[url.host];
|
||||
|
Loading…
Reference in New Issue
Block a user