* xul/content/MANIFEST install new file. * chatzilla.xul remove old js file. add new js file. menu restructuring. userlist as rdf populated tree. * commands.js hookup for quit, exit, clear, delete, hide, commands, names, toolbar, and statusbar commands. * handlers.js implement new commands. userlist sorting. tab completion reorg. pgup/dn functionality. userlist rdf related hookup. * static.js remove unused client.vars. make version reply one line. show activity in titlebar if toolbar is not visible. fix scrolling AND redraw problems!! userlist rdf related hookup. git-svn-id: svn://10.0.0.236/trunk@69467 18797224-902f-48f8-a5cc-f745e15eee43
222 lines
7.9 KiB
JavaScript
222 lines
7.9 KiB
JavaScript
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
function addCommands(commandObject)
|
|
{
|
|
|
|
function add (name, func, usage, help)
|
|
{
|
|
commandObject.add (name, func, usage, help);
|
|
}
|
|
|
|
add ("help", "onInputHelp",
|
|
"[<command-name>]",
|
|
"Displays help on all commands matching <command-name>, if " +
|
|
"<command-name> is not given, displays help on all commands");
|
|
|
|
add ("testdisplay", "onInputTestDisplay",
|
|
"",
|
|
"Displays a sample text. Used to preview styles");
|
|
|
|
add ("network", "onInputNetwork",
|
|
"<network-name>",
|
|
"Sets the current network to <network-name>");
|
|
|
|
add ("server", "onInputServer",
|
|
"<server-hostname> [<port>]",
|
|
"Connects to server <server-hostname> on <port>, or 6667 if " +
|
|
"<port> is not specified.");
|
|
|
|
add ("quit", "onInputQuit", "[<reason>]",
|
|
"Disconnects from the server represented by the active view when " +
|
|
"the command is executed providing the reason <reason> " +
|
|
"or the default reason if <reason> is not specified.");
|
|
|
|
add ("exit", "onInputExit", "[<reason>]",
|
|
"Disconnects from all active servers and networks, providing the " +
|
|
"reason <reason>, or the default reason if <reason> is not " +
|
|
"specified. Exits ChatZilla after disconnecting.");
|
|
|
|
add ("clear", "onInputClear", "",
|
|
"Clear the current viewport, discarding *all* content.");
|
|
|
|
add ("delete", "onInputDelete", "",
|
|
"Clear the current viewport, discarding *all* content, and drop it's " +
|
|
"icon from the toolbar.");
|
|
|
|
add ("hide", "onInputHide", "",
|
|
"Drop the current view's icon from the toolbar, but save it's " +
|
|
"contents. The icon will reappear the next time there is activity " +
|
|
"on the view.");
|
|
|
|
add ("names", "onInputNames", "",
|
|
"Toggles the visibility of the username list.");
|
|
|
|
add ("toolbar", "onInputToolbar", "",
|
|
"Toggles the visibility of the channel toolbar.");
|
|
|
|
add ("statusbar", "onInputStatusbar", "",
|
|
"Toggles the visibility of the status bar.");
|
|
|
|
add ("commands", "onInputCommands", "[<pattern>]",
|
|
"Lists all command names matching <pattern>, or all command names " +
|
|
"if pattern is not specified.");
|
|
|
|
add ("attach", "onInputAttach",
|
|
"[<network-name>]",
|
|
"Attaches to the network specified by <network-name>, " +
|
|
"or the current network, if no network is specified.");
|
|
|
|
add ("me", "onInputMe",
|
|
"<action>",
|
|
"Performs an 'action' on the current channel.");
|
|
|
|
add ("msg", "onInputMsg",
|
|
"<user> <msg>",
|
|
"Sends a private message <msg> to the user <user>.");
|
|
|
|
add ("nick", "onInputNick",
|
|
"<nickname>",
|
|
"Changes your current nickname.");
|
|
|
|
add ("name", "onInputName",
|
|
"<username>",
|
|
"Changes the username displayed before your hostmask if the server " +
|
|
"you're connecting to allows it. Some servers will only trust the " +
|
|
"username reply from the ident service. You must specify this " +
|
|
"*before* connecting to the network.");
|
|
|
|
add ("desc", "onInputDesc",
|
|
"<description>",
|
|
"Changes the 'ircname' line returned when someone performs a /whois " +
|
|
"on you. You must specify this *before* connecting to the network.");
|
|
|
|
add ("quote", "onInputQuote",
|
|
"<irc-command>",
|
|
"Sends a raw command to the IRC server, not a good idea if you " +
|
|
"don't know what you're doing. see IRC 1459 " +
|
|
"( http://www.irchelp.org/irchelp/rfc1459.html ) for complete " +
|
|
"details.");
|
|
|
|
add ("eval", "onInputEval",
|
|
"<script>",
|
|
"Evaluates <script> as JavaScript code. Not for the faint of heart.");
|
|
|
|
add ("join", "onInputJoin",
|
|
"[#|&]<channel-name>",
|
|
"Joins a the global (name starts with #) or local (name starts " +
|
|
"with &) channel named <channel-name>. If no prefix is given, # is " +
|
|
"assumed.");
|
|
|
|
add ("leave", "onInputLeave",
|
|
"",
|
|
"Parts the current channel");
|
|
|
|
add ("zoom", "onInputZoom",
|
|
"<nick>",
|
|
"Shows only messages <nick> has sent to the channel, filtering out " +
|
|
"all others, (including yours.)");
|
|
|
|
add ("whois", "onInputWhoIs",
|
|
"<nick>",
|
|
"Displays information about the user <nick>, including 'real name', " +
|
|
"server connected to, idle time, and signon time. Note that some " +
|
|
"servers will lie about the idle time.");
|
|
|
|
add ("topic", "onInputTopic",
|
|
"[<new-topic>]",
|
|
"If <new-topic> is specified and you are a chanop, or the channel " +
|
|
"is not in 'private topic' mode (+t), the topic will be changed to " +
|
|
"<new-topic>. If <new-topic> is *not* specified, the current topic " +
|
|
"will be displayed");
|
|
|
|
/* JG: commands below jan 24 2000, update mar 15 */
|
|
|
|
add ("away", "onInputAway",
|
|
"[<reason>]",
|
|
"If <reason> is spcecified, sets you away with that message. " +
|
|
"Used without <reason>, you are marked back as no longer being away.");
|
|
|
|
add ("op", "onInputOp",
|
|
"<nick>",
|
|
"Gives operator status to <nick> on current channel. Requires " +
|
|
"operator status.");
|
|
|
|
add ("deop", "onInputDeop",
|
|
"<nick>",
|
|
"Removes operator status from <nick> on current channel. " +
|
|
"Requires operator status.");
|
|
|
|
add ("voice", "onInputVoice",
|
|
"<nick>",
|
|
"Gives voice status to <nick> on current channel. " +
|
|
"Requires operator status.");
|
|
|
|
add ("devoice", "onInputDevoice",
|
|
"<nick>",
|
|
"Removes voice status from <nick> on current channel. " +
|
|
"Requires operator status.");
|
|
|
|
add ("echo", "onInputEcho",
|
|
"<text>",
|
|
"Displays <text> in the current view, but does not send it to " +
|
|
"the server.");
|
|
|
|
/* FIXME: JG: not implemented yet */
|
|
/*
|
|
add ("filter", "onInputFilter",
|
|
"<regex>",
|
|
"Shows only messages matching <regex> on current channel. When used " $
|
|
"with no parameter, the contents are restored.");
|
|
*/
|
|
|
|
add ("invite", "onInputInvite",
|
|
"<nick> [<channel>]",
|
|
"Invites <nick> to <channel> or current channel if not " +
|
|
"supplied. Requires operator status if +i is set.");
|
|
|
|
add ("kick", "onInputKick",
|
|
"[<channel>] <nick>",
|
|
"Kicks <nick> from <channel> or current channel if not " +
|
|
"supplied. Requires operator status.");
|
|
|
|
/* NOT implemented yet
|
|
add ("server", "onInputServer",
|
|
"<server> [<port>]",
|
|
"Connects you to <server> using port 6667 if <port> is not" +
|
|
" specified.");
|
|
*/
|
|
|
|
/* NOT implemented yet
|
|
add ("quit", "onInputExit",
|
|
"[<message>]",
|
|
"Terminates the connection with the server associated with the" +
|
|
" current view, overriding the default quit message with" +
|
|
" message if specified.");
|
|
*/
|
|
}
|
|
|