Updated Python Docs
This commit is contained in:
parent
8eac2f0147
commit
a223437189
28
python.md
28
python.md
@ -19,12 +19,11 @@ Here are some of the features of the python plugin interface:
|
|||||||
Commands
|
Commands
|
||||||
--------
|
--------
|
||||||
|
|
||||||
The following commands will be intercepted by the Python Plugin
|
The following commands will be intercepted by the Python Plugin interface module, when it is loaded.
|
||||||
interface module, when it is loaded.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
*Command* *Description*
|
*Command* *Description*
|
||||||
----------------------------------- ------------------------------------------------------------------------------------------------------
|
---------------------------------- ---------------------------------------------------------------------------------------------------------
|
||||||
/py load <filename> Load module with given filename.
|
/py load <filename> Load module with given filename.
|
||||||
|
|
||||||
/py unload <filename|module name> Unload module with given filename, or module name.
|
/py unload <filename|module name> Unload module with given filename, or module name.
|
||||||
@ -228,9 +227,9 @@ Python plugin interface.
|
|||||||
The channels list type gives you access to the channels, queries and
|
The channels list type gives you access to the channels, queries and
|
||||||
their servers. The folloing attributes are available in each list item:
|
their servers. The folloing attributes are available in each list item:
|
||||||
|
|
||||||
------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
*Type* *Description*
|
*Type* *Description*
|
||||||
------- ------------------------------------------------------
|
------- -------------------------------------------------------
|
||||||
channel Channel or query name.
|
channel Channel or query name.
|
||||||
|
|
||||||
context A context object, giving access to that channel/server.
|
context A context object, giving access to that channel/server.
|
||||||
@ -240,16 +239,16 @@ network Network name to which this channel belongs.
|
|||||||
server Server name to which this channel belongs.
|
server Server name to which this channel belongs.
|
||||||
|
|
||||||
type Type of context (1=Server, 2=Channel, 3=Dialog).
|
type Type of context (1=Server, 2=Channel, 3=Dialog).
|
||||||
------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
##### dcc
|
##### dcc
|
||||||
|
|
||||||
The dcc list type gives you access to a list of DCC file transfers. The
|
The dcc list type gives you access to a list of DCC file transfers. The
|
||||||
following attributes are available in each list item:
|
following attributes are available in each list item:
|
||||||
|
|
||||||
--------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------
|
||||||
*Type* *Description*
|
*Type* *Description*
|
||||||
--------- --------------------------------------------------------------------------
|
--------- ---------------------------------------------------------------------------
|
||||||
address32 Address of the remote user (ipv4 address, as an int).
|
address32 Address of the remote user (ipv4 address, as an int).
|
||||||
|
|
||||||
cps Bytes per second (speed).
|
cps Bytes per second (speed).
|
||||||
@ -271,7 +270,7 @@ size File size in bytes.
|
|||||||
status DCC status (queued=0, active=1, failed=2, done=3, connecting=4, aborted=5).
|
status DCC status (queued=0, active=1, failed=2, done=3, connecting=4, aborted=5).
|
||||||
|
|
||||||
type DCC type (send=0, receive=1, chatrecv=2, chatsend=3).
|
type DCC type (send=0, receive=1, chatrecv=2, chatsend=3).
|
||||||
--------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------
|
||||||
|
|
||||||
##### users
|
##### users
|
||||||
|
|
||||||
@ -297,6 +296,7 @@ following attributes are available in each list item:
|
|||||||
*Type* *Description*
|
*Type* *Description*
|
||||||
----- ---------------------------------------------------------------------------------------------------
|
----- ---------------------------------------------------------------------------------------------------
|
||||||
mask Ignore mask (for example, "*!*@*.aol.com").
|
mask Ignore mask (for example, "*!*@*.aol.com").
|
||||||
|
|
||||||
flags Bit field of flags (0=private, 1=notice, 2=channel, 3=ctcp, 4=invite, 5=unignore, 6=nosave, 7=dcc).
|
flags Bit field of flags (0=private, 1=notice, 2=channel, 3=ctcp, 4=invite, 5=unignore, 6=nosave, 7=dcc).
|
||||||
-----------------------------------------------------------------------------------------------------------
|
-----------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -341,9 +341,9 @@ When a callback is supposed to return one of the EAT_* macros, it is
|
|||||||
able control how xchat will proceed after the callback returns. These
|
able control how xchat will proceed after the callback returns. These
|
||||||
are the available constants, and their meanings:
|
are the available constants, and their meanings:
|
||||||
|
|
||||||
----------------------------------------------------------
|
---------------------------------------------------------
|
||||||
*Constant* *Description*
|
*Constant* *Description*
|
||||||
----------- ----------------------------------------------
|
----------- ---------------------------------------------
|
||||||
EAT_PLUGIN Don't let any other plugin receive this event.
|
EAT_PLUGIN Don't let any other plugin receive this event.
|
||||||
|
|
||||||
EAT_XCHAT Don't let xchat treat this event as usual.
|
EAT_XCHAT Don't let xchat treat this event as usual.
|
||||||
@ -351,7 +351,7 @@ EAT_XCHAT Don't let xchat treat this event as usual.
|
|||||||
EAT_ALL Eat the event completely.
|
EAT_ALL Eat the event completely.
|
||||||
|
|
||||||
EAT_NONE Let everything happen as usual.
|
EAT_NONE Let everything happen as usual.
|
||||||
-----------------------------------------------------------
|
---------------------------------------------------------
|
||||||
|
|
||||||
Returning `None` is the same as returning `EAT_NONE`.
|
Returning `None` is the same as returning `EAT_NONE`.
|
||||||
|
|
||||||
@ -541,3 +541,5 @@ example:
|
|||||||
* * * * *
|
* * * * *
|
||||||
|
|
||||||
Original Author: Gustavo Niemeyer [gustavo@niemeyer.net](mailto:gustavo@niemeyer.net)
|
Original Author: Gustavo Niemeyer [gustavo@niemeyer.net](mailto:gustavo@niemeyer.net)
|
||||||
|
|
||||||
|
For purty html: `pandoc --toc python.md -s --highlight-style haddock -o python.html`
|
||||||
|
Loading…
Reference in New Issue
Block a user