search for: u221

Displaying 8 results from an estimated 8 matches for "u221".

Did you mean: 221
2005 Feb 03
1
Multiple mailbox on the same SIP extension
...I configure 2 mailbox on the same phone? here's a sample of my extensions.conf : exten => s,1,Answer exten => s,2,DigitTimeout(10) exten => s,3,ResponseTimeout(20) exten => s,4,Wait(1) exten => s,5,Background(Intro_EN) exten => 0,1,Dial(SIP/221,15) exten => 0,2,Voicemail2(u221) exten => 0,102,Voicemail2(b221) exten => 0,103,Hangup exten => 1,1,Dial(SIP/231&SIP/237&SIP/239,15) exten => 1,2,Voicemail2(u7253) exten => 1,102,Voicemail2(b7253) exten => 1,103,Hangup exten => t,1,Dial(SIP/221,15) exten => t,2,Voicemail2(u221) exten => t,102,Vo...
2006 Feb 13
4
Voicemail - direct call
Hi list! How to send a call directly to voicemail recording? When I put this exten => 313,n,VoiceMail,u221 Or this exten => 313,n,VoiceMail,b221 In my dial plan, calling person first hears greeting message (busy or unviable). I would like to avoid greeting message (I would play something with Playback application). Is it possible? -- Tomislav Parcina tparcina#lama.hr
2019 Feb 08
3
Bug Report: read.table with UTF-8 encoded file imports infinity symbol as Integer 8
...r. In principle, we could change this particular conversion in RGui to avoid the substitution. RGui uses "\uxxxx" escapes to pass characters that cannot be represented, this is why e.g. the Cyrillic Zhe \u0436 worked, so we could tell Windows not to do the substitution and pass "\u221e" for Infinity, and then the string after being processed by the parser will be represented in UTF-8 inside R and could be e.g. printed by the RGui console. That is something that could be considered, but it will not solve the main problem and it may actually cause trouble to users who are...
2019 Feb 07
3
Bug Report: read.table with UTF-8 encoded file imports infinity symbol as Integer 8
I can confirm that it doesn't happen on Ubuntu 18.04.1 so Peter is most likely correct; it looks like its Windows specific. On Thu, 7 Feb 2019 at 12:55, peter dalgaard <pdalgd at gmail.com> wrote: > > This doesn't seem to be happening on MacOS, neither in Terminal nor RStudio, (R 3.5.1, R-devel, R-patched). So probably Windows specific. > > -pd > > > On 7 Feb
2019 Feb 08
0
Bug Report: read.table with UTF-8 encoded file imports infinity symbol as Integer 8
...here, but I used RStudio for my examples (I should have said) and David's mentioned RStudio as well, so it does not seem to be a problem with RGui only. Another example for the "best fit" behaviour seems to be "?" ("\u03A3", greek capital letter sigma, not "\u2211", n-ary summation): print("?") #> [1] "S" Again with cp1252 on Windows 10, R 3.5.2, RStudio 1.2.1256 preview. > even though we could rewrite in principle all calls to Windows API to use Unicode and have all strings in UTF-8 in R, we would still have problems when...
2006 Mar 06
0
Set(LANGUAGE()=language) - for queue
...ten => 313,1,Answer exten => 313,n,Set(LANGUAGE()=de) exten => 313,n,Playback(callcentar/qnjemacki,skip) exten => 313,n,Queue(njemacki|t|||3600) exten => 313,n,GotoIfTime(8:00-16:00|mon-fri|*|*?313,8) exten => 313,n,Playback(callcentar/rvnjemacki,skip) exten => 313,n,VoiceMail,u221 exten => 313,n,Hangup exten => 313,n,VoiceMail,b221 exten => 313,n,Hangup And this is how it looks on CLI. -- Executing Goto("SIP/211-793f", "callcentre|313|1") in new stack -- Goto (callcentre,313,1) -- Executing Answer("SIP/211-793f", "&q...
2006 Apr 10
2
Problem - Voicemail resets phone
Can you also post information such as: Type of phone (model Number would be idela) How is it conencted, SIP, ZAP, IAX, Channel Bank. Corresponding config files would also help. Help us help you. >>-----Original Message----- >>From: asterisk-users-bounces@lists.digium.com >>[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of >>Paul A Brown >>Sent:
2019 Feb 07
0
Bug Report: read.table with UTF-8 encoded file imports infinity symbol as Integer 8
...to "8" x <- "?" Encoding(x) #> [1] "unknown" print(x) #> [1] "8" charToRaw(x) #> [1] 38 "?" is indeed "8" identical(x, "8") #> [1] TRUE Everything seems fine if "?" is UTF-8 encoded. y <- "\u221E" Encoding(y) #> [1] "UTF-8" print(y) #> [1] "?" charToRaw(y) #> [1] e2 88 9e Unless the string is converted back to native encoding. format(y) #> [1] "8" This ought to be "<U+221E>", equivalently to format("?") #> [1]...