From f251f4114f28af6a35a5dafb32a24ac9e9f7cefd Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Sun, 2 Sep 2007 13:41:44 -0500 Subject: document ctcp commands --- src/irc.lua | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/src/irc.lua b/src/irc.lua index fa16e9f..4a21a96 100644 --- a/src/irc.lua +++ b/src/irc.lua @@ -816,7 +816,16 @@ end -- }}} -- ctcp commands {{{ --- ctcp_ping() - send a CTCP ping request {{{ +-- ctcp_ping {{{ +--- +-- Send a CTCP ping request. +-- @param cb Callback to call when the information is available. The single +-- table parameter to this callback will contain the fields: +-- +-- @param nick User to ping function ctcp_ping(cb, nick) nick = nick:lower() if not icallbacks.ctcp_ping[nick] then @@ -828,7 +837,16 @@ function ctcp_ping(cb, nick) end -- }}} --- ctcp_time() - send a localtime request {{{ +-- ctcp_time {{{ +--- +-- Send a localtime request. +-- @param cb Callback to call when the information is available. The single +-- table parameter to this callback will contain the fields: +-- +-- @param nick User to request the localtime from function ctcp_time(cb, nick) nick = nick:lower() if not icallbacks.ctcp_time[nick] then @@ -840,7 +858,16 @@ function ctcp_time(cb, nick) end -- }}} --- ctcp_version() - send a client version request {{{ +-- ctcp_version {{{ +--- +-- Send a client version request. +-- @param cb Callback to call when the information is available. The single +-- table parameter to this callback will contain the fields: +-- +-- @param nick User to request the client version from function ctcp_version(cb, nick) nick = nick:lower() if not icallbacks.ctcp_version[nick] then -- cgit v1.2.3-54-g00ecf