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
Родитель 08283e98ce
Коммит 579fd995b8
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -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];