Files
Mozilla/mozilla/extensions/irc/xul/content/chatzilla.xul
rginda%netscape.com 3a88810065 * connection-rhino.js
Various changes to make it Right

* events.js
parameterize hook functions to allow arbitrary hook arrays to be used.
search hooks in reverse order of add

* irc.js
check to see if server is connected before trying to disconnect on net.quit()
watch for exception on connect()
move auto-join-channel into on001 handler.
watch for java.lang.ThreadDeath if running under rhino.
fix onNick for the undernet network

* utils.js
define dd under rhino.
allow functions as patterns in matchObject().

* ircbot.js
define gc() for rhino.
add initPersonality hook.
add support for script line continuation with "\"

* chatzilla.xul
include globalOverlay.xul (why?)
comment out style change menu.

* handlers.js
read prefs before initialization.
add updateTitle() calls where appropriate.

* readprefs.js
Add comment to explain valid prefs.
add style prefs.

* static.js
Fix matchMyNick to match if nick is anywhere in the message (bug 24860.)
Hook up user styles in output window.
add updateTitle(), (bug 24671.)

* chatzilla.css
remove window size designation (resize issues.)

* output-default.css
remove font size attributes.
swap mark=odd and directed-to-me declaration order, to make directed-to-me take
precedence.

* output-marble.css
tab->space changes


git-svn-id: svn://10.0.0.236/trunk@58918 18797224-902f-48f8-a5cc-f745e15eee43
2000-01-27 09:45:11 +00:00

177 lines
6.3 KiB
XML

<?xml version="1.0"?>
<!--
The contents of this file are subject to the Mozilla Public
License Version 1.1 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of
the License at http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
The Original Code is JSIRC Test Client #3
The Initial Developer of the Original Code is New Dimensions Consulting,
Inc. Portions created by New Dimensions Consulting, Inc. are
Copyright (C) 1999 New Dimenstions Consulting, Inc. All
Rights Reserved.
Contributor(s):
Contributor(s):
Robert Ginda, rginda@ndcico.com, original author
-->
<!DOCTYPE window>
<?xml-stylesheet href="chrome://chatzilla/skin" type="text/css"?>
<?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
<window xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
align="vertical" onload="onLoad();" onunload="onUnload();">
<html:script src="chrome://chatzilla/content/lib/js/utils.js"/>
<html:script src="chrome://chatzilla/content/lib/js/connection-xpcom.js"/>
<html:script src="chrome://chatzilla/content/lib/js/events.js"/>
<html:script src="chrome://chatzilla/content/lib/js/command-manager.js"/>
<html:script src="chrome://chatzilla/content/lib/js/irc.js"/>
<html:script src="chrome://chatzilla/content/lib/js/irc-debug.js"/>
<html:script src="chrome://chatzilla/content/lib/xul/listbox.js"/>
<html:script src="chrome://chatzilla/content/lib/xul/munger.js"/>
<html:script src="chrome://chatzilla/content/commands.js"/>
<html:script src="chrome://chatzilla/content/readprefs.js"/>
<html:script src="chrome://chatzilla/content/static.js"/>
<html:script src="chrome://chatzilla/content/handlers.js"/>
<toolbox>
<menubar>
<menu value="Options">
<menupopup>
<menuitem id="menu-dmessages" value="Debug Messages"
oncommand="onToggleTraceHook()"/>
<menuitem id="menu-munger" value="Munger" oncommand="onToggleMunger()"
checked="true"/>
<menuitem id="menu-viewicons" value="Icons in View Buttons"
checked="true" oncommand="onNotImplemented();"/>
<menuseparator/>
<!--
<menu value="Style">
<menupopup>
<menuitem value="Default"
oncommand="onDoStyleChange('output-default.css')"/>
<menuitem value="Marble"
oncommand="onDoStyleChange('output-marble.css')"/>
<menuitem value="Loud"
oncommand="onDoStyleChange('output-loud.css')"/>
<menuseparator/>
<menuitem value="Other..."
oncommand="onDoStyleChange('other')"/>
</menupopup>
</menu>
-->
</menupopup>
</menu>
<menu value="Views">
<menupopup>
<menu value="Current View">
<menupopup>
<menuitem value="Hide" oncommand="onHideCurrentView();"/>
<menuitem value="Clear" oncommand="onClearCurrentView();"/>
<menuitem value="Delete" oncommand="onDeleteCurrentView();"/>
</menupopup>
</menu>
<menuitem value="Logging..." enabled="false"
oncommand="onNotImplemented();"/>
</menupopup>
</menu>
</menubar>
</toolbox>
<toolbox id="views-tbox">
<toolbar id="views-tbar">
</toolbar>
</toolbox>
<box id="outer-box" align="vertical" flex="1">
<box id="inner-box" align="horizontal" flex="1">
<html:div id="quickList" class="quick-list" flex="0" width-hidden="150px">
</html:div>
<splitter id="main-splitter" align="vertical" collapse="before"/>
<box align="vertical" flex="1">
<html:iframe id="it-doesnt-matter-anyway" class="output-container"
src="about:blank" flex="1"/>
<!--
<html:textarea id="input" class="input-window"/>
-->
<html:input type="text" id="input" class="input-window"/>
</box>
</box>
</box>
<toolbox>
<toolbar id="status-bar">
<html:table class="status-table">
<html:tr>
<html:td class="status-label">Network</html:td>
<html:td class="status-data">
<html:a id="net-name">(none)</html:a>
</html:td>
<html:td class="status-label">Server</html:td>
<html:td class="status-data">
<html:a id="server-name">(none)</html:a>
</html:td>
<html:td class="status-label">Nickname</html:td>
<html:td class="status-data">
<html:a id="server-nick">(unknown)</html:a>
</html:td>
<html:td class="status-label">Lag</html:td>
<html:td class="status-data">
<html:a id="server-lag">-1</html:a>
</html:td>
<html:td class="status-label">Last Ping</html:td>
<html:td class="status-data">
<html:a id="last-ping">(never)</html:a>
</html:td>
</html:tr>
<html:tr>
<html:td class="status-label">Channel</html:td>
<html:td class="status-data">
<html:a id="channel-name">(none)</html:a>
</html:td>
<html:td class="status-label">Mode</html:td>
<html:td class="status-data">
<html:a id="channel-mode">(none)</html:a>
</html:td>
<html:td class="status-label">Users</html:td>
<html:td class="status-data">
<html:a id="channel-users">(none)</html:a>
</html:td>
<html:td class="status-label">Limit</html:td>
<html:td class="status-data">
<html:a id="channel-limit">(none)</html:a>
</html:td>
<html:td class="status-label">Key</html:td>
<html:td class="status-data">
<html:a id="channel-key">(none)</html:a>
</html:td>
</html:tr>
<html:tr>
<html:td class="status-label">Topic By</html:td>
<html:td class="status-data">
<html:a id="channel-topicby">(nobody)</html:a>
</html:td>
<html:td class="status-label">Topic</html:td>
<html:td class="status-data" colspan="7">
<html:a id="channel-topic">(none)</html:a>
</html:td>
</html:tr>
</html:table>
</toolbar>
</toolbox>
</window>