2007-09-20 18:09:08 -04:00
|
|
|
USING: arrays kernel xml-rpc ;
|
|
|
|
IN: lisppaste
|
|
|
|
|
2009-02-23 22:40:17 -05:00
|
|
|
CONSTANT: url "http://www.common-lisp.net:8185/RPC2"
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: channels ( -- seq )
|
|
|
|
{ } "listchannels" url invoke-method ;
|
|
|
|
|
|
|
|
: lisppaste ( seq -- response )
|
|
|
|
! seq is { channel user title contents }
|
|
|
|
! or { channel user title contents annotation-number }
|
|
|
|
"newpaste" url invoke-method ;
|