comparison src/protocols/irc/parse.c @ 10564:cdeb727d1de3

[gaim-migrate @ 11946] IRC TIME support, thanks to Don Seiler committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Tue, 01 Feb 2005 16:13:09 +0000
parents 1a97d5e88d12
children 6239870efd8e
comparison
equal deleted inserted replaced
10563:3e2cd3fe8897 10564:cdeb727d1de3
69 { "353", "nvc:", irc_msg_names }, /* Names list */ 69 { "353", "nvc:", irc_msg_names }, /* Names list */
70 { "366", "nc:", irc_msg_names }, /* End of names */ 70 { "366", "nc:", irc_msg_names }, /* End of names */
71 { "372", "n:", irc_msg_motd }, /* MOTD */ 71 { "372", "n:", irc_msg_motd }, /* MOTD */
72 { "375", "n:", irc_msg_motd }, /* Start MOTD */ 72 { "375", "n:", irc_msg_motd }, /* Start MOTD */
73 { "376", "n:", irc_msg_endmotd }, /* End of MOTD */ 73 { "376", "n:", irc_msg_endmotd }, /* End of MOTD */
74 { "391", "nv:", irc_msg_time }, /* Time reply */
74 { "401", "nt:", irc_msg_nonick }, /* No such nick/chan */ 75 { "401", "nt:", irc_msg_nonick }, /* No such nick/chan */
75 { "403", "nc:", irc_msg_nochan }, /* No such channel */ 76 { "403", "nc:", irc_msg_nochan }, /* No such channel */
76 { "404", "nt:", irc_msg_nosend }, /* Cannot send to chan */ 77 { "404", "nt:", irc_msg_nosend }, /* Cannot send to chan */
77 { "421", "nv:", irc_msg_unknown }, /* Unknown command */ 78 { "421", "nv:", irc_msg_unknown }, /* Unknown command */
78 { "422", "nv:", irc_msg_endmotd }, /* No MOTD available */ 79 { "422", "nv:", irc_msg_endmotd }, /* No MOTD available */
127 { "ping", "n", irc_cmd_ping, N_("ping [nick]: Asks how much lag a user (or the server if no user specified) has.") }, 128 { "ping", "n", irc_cmd_ping, N_("ping [nick]: Asks how much lag a user (or the server if no user specified) has.") },
128 { "query", "n:", irc_cmd_query, N_("query &lt;nick&gt; &lt;message&gt;: Send a private message to a user (as opposed to a channel).") }, 129 { "query", "n:", irc_cmd_query, N_("query &lt;nick&gt; &lt;message&gt;: Send a private message to a user (as opposed to a channel).") },
129 { "quit", ":", irc_cmd_quit, N_("quit [message]: Disconnect from the server, with an optional message.") }, 130 { "quit", ":", irc_cmd_quit, N_("quit [message]: Disconnect from the server, with an optional message.") },
130 { "quote", "*", irc_cmd_quote, N_("quote [...]: Send a raw command to the server.") }, 131 { "quote", "*", irc_cmd_quote, N_("quote [...]: Send a raw command to the server.") },
131 { "remove", "n:", irc_cmd_remove, N_("remove &lt;nick&gt; [message]: Remove someone from a room. You must be a channel operator to do this.") }, 132 { "remove", "n:", irc_cmd_remove, N_("remove &lt;nick&gt; [message]: Remove someone from a room. You must be a channel operator to do this.") },
133 { "time", "", irc_cmd_time, N_("time: Displays the current local time at the IRC server.") },
132 { "topic", ":", irc_cmd_topic, N_("topic [new topic]: View or change the channel topic.") }, 134 { "topic", ":", irc_cmd_topic, N_("topic [new topic]: View or change the channel topic.") },
133 { "umode", ":", irc_cmd_mode, N_("umode &lt;+|-&gt;&lt;A-Za-z&gt;: Set or unset a user mode.") }, 135 { "umode", ":", irc_cmd_mode, N_("umode &lt;+|-&gt;&lt;A-Za-z&gt;: Set or unset a user mode.") },
134 { "voice", ":", irc_cmd_op, N_("voice &lt;nick1&gt; [nick2] ...: Grant channel voice status to someone. You must be a channel operator to do this.") }, 136 { "voice", ":", irc_cmd_op, N_("voice &lt;nick1&gt; [nick2] ...: Grant channel voice status to someone. You must be a channel operator to do this.") },
135 { "wallops", ":", irc_cmd_wallops, N_("wallops &lt;message&gt;: If you don't know what this is, you probably can't use it.") }, 137 { "wallops", ":", irc_cmd_wallops, N_("wallops &lt;message&gt;: If you don't know what this is, you probably can't use it.") },
136 { "whois", "n", irc_cmd_whois, N_("whois &lt;nick&gt;: Get information on a user.") }, 138 { "whois", "n", irc_cmd_whois, N_("whois &lt;nick&gt;: Get information on a user.") },