From a41b175aee4aa146a43beb7bb2c2b6b5555379fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Sundstr=C3=B6m?= <oyasumi@gmail.com> Date: Sat, 11 Nov 2000 04:07:54 +0100 Subject: [PATCH] create_text() now takes an option aux_items as well. Rev: lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike:1.22 --- .../Protocols.pmod/LysKOM.pmod/Session.pike | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike b/lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike index 51d34d6b72..797387f3ea 100644 --- a/lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike +++ b/lib/modules/Protocols.pmod/LysKOM.pmod/Session.pike @@ -1,6 +1,6 @@ #pike __REAL_VERSION__ -// $Id: Session.pike,v 1.21 2000/09/28 03:39:04 hubbe Exp $ +// $Id: Session.pike,v 1.22 2000/11/11 03:07:54 jhs Exp $ //! module Protocols //! submodule LysKOM //! class Session @@ -1021,6 +1021,8 @@ object logout() //! <elem name=foot_to type="Text|array(Text)">what text(s) is footnoted</elem> //! <elem></elem> //! <elem name=anonymous type="int(0..1)">send text anonymously</elem> +//! <elem></elem> +//! <elem name=aux_items type="array(AuxItemInput)">AuxItems you want to set for the text *</elem> //! </data_description> //! //! note: @@ -1040,14 +1042,14 @@ object|void create_text(string subject,string body, if (!options) options=([]); return _create_text(text,misc, - options->aux_info, + options->aux_items, options->anonymous, callback,@extra); } object|void _create_text(string textstring, MiscInfo misc, - void|object aux_info, + void|array(ProtocolTypes.AuxItemInput) aux_items, int anonymous, void|function callback, void|mixed ...extra) @@ -1059,24 +1061,24 @@ object|void _create_text(string textstring, else call="create_text"; - if (aux_info) - error("unimplemented\n"); - -// if (protlevel<10) - call+="_old"; + array args = ({ textstring, misc->encode() }); + if(protlevel<10) + call += "_old"; + else + args += ({ aux_items || ({}) }); if (callback) { con["async_cb_"+call] (lambda(int|object res) { - if (objectp(res)) return res; + if(objectp(res)) return res; callback(text(res),@extra); - },textstring,misc->encode()); + }, @args); return; } - res=con[call](textstring,misc->encode()); + res = con[call](@args); if (objectp(res)) return res; return text(res); -- GitLab