Displaying 2 results from an estimated 2 matches for "thischannel".
Did you mean:
hischannel
2008 Sep 29
3
Knowing incoming call technology and channel [SOLVED]
2008/9/29 Alex Balashov <abalashov at evaristesys.com>
> Try this:
>
> exten => _XXXX,1,Set(THISTECH=${CUT(CHANNEL,/,1)})
> exten => _XXXX,n,NoOp(Technology is ${THISTECH})
> exten => _XXXX,n,Set(THISCHANNEL=${CUT(CHANNEL,/,2)})
> exten => _XXXX,n,NoOp(Channel is ${THISCHANNEL})
Hi,
I don't have any spare zaptel enabled system I could try this on, but I was
not aware of this CHANNEL variable.
Now, I can see it here http://www.voip-info.org/wiki/view/Asterisk+variables
Maybe, I will add a l...
2004 Feb 27
0
Re: [R] Is there a way to deactivate partial matching in R?
...vechannel
## for each in ... output to outchannel
}
# as outchannel was usually specified and only occasionally the default
used,
# it was more 'natural' (and lazy) to call it
makeoutput(mychannel, ...)
# compared to
makeoutput(..., outchannel=mychannel)
# standard use is
makeoutput(thischannel, element1name=element1content,
element2name=element2content)
# with an option to send to the active channel as default called like
makeoutput(element1name=element1content, element2name=element2content)
# calling this as
do.call("makeoutput", ll) # where ll <- list(out=outcontent,
wha...