search for: multilin

Displaying 20 results from an estimated 285 matches for "multilin".

Did you mean: multilib
2004 Sep 22
3
Optus Australia Multiline SHDSL service
Hi, I am currently trying to find a replacement for a dinosaur PBX and want to replace it with a VoIP solution. We have just moved our lines over to an Optus Multiline from a Telstra ISDN Onramp 30 service with 100 lines. My question for you good people is what sort of hardware do I need to interface Asterix into the Optus Multiline? The Optus service is terminated in my office to a SHDSL NTU from Adtran and has two RJ45 conenctors on the back of it. Has an...
2010 Feb 14
4
Feature Request: Multiline Comments
Hello, Is it possible to extend the R lexer/parser to include multiline comments like /* acomment */ ? This way I can integrate emacs org-mode with my R code, so that I can have a table of contents, section folding, html-output of source etc. e.g /* * Display Code */ #+BEGIN_SRC R foo <- function(...){ stuff } #+end_src and so on . Thanks Saptarshi
2010 Jun 30
6
Multiline and grouping in R
Hi All, this is my first mail here. I'm trying to plot a multiline chart grouping values with no success. I have read a lot in the official Wiki and also searched via Google, but I did not find anything. I'm importing some data from a cvs file. Here is a sample: YEAR,AREA,CASES 1988,CONTRACTS,286 1988,INTERNATIONAL,189 1988,FAMILY,385 1988,TAXATION,177 1989...
2015 Dec 10
2
Authentication to Secondary Domain Controller initially fails when PDC is offline
...three line adding to > dns_update_list. > > Rowland > If anybody is interested, this is the results of my testing, first here are the results of adding an NS record to the dns domain SOA record for the second DC on a domain using the internal dns server: root at testdc1:~# dig SOA +multiline home.lan ; <<>> DiG 9.9.5-4~bpo70+1-Debian <<>> SOA +multiline home.lan ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 10153 ;; flags: qr aa rd ra ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0 ;; QUESTION SECT...
2006 Aug 17
3
[MARKABY] Multiline text?
Anybody know if it''s possible to have multiline text in Markaby without resorting to a bunch of text statements or putting the text block in another file and using render :file ? I need to add chunks of HTMLized javascript to my templates. Joe -- Posted via http://www.ruby-forum.com/.
2015 Dec 10
1
Authentication to Secondary Domain Controller initially fails when PDC is offline
...d >>> >> >> If anybody is interested, this is the results of my testing, first >> here are the results of adding an NS record to the dns domain SOA >> record for the second DC on a domain using the internal dns server: >> >> root at testdc1:~# dig SOA +multiline home.lan >> >> ; <<>> DiG 9.9.5-4~bpo70+1-Debian <<>> SOA +multiline home.lan >> ;; global options: +cmd >> ;; Got answer: >> ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 10153 >> ;; flags: qr aa rd ra ad; QUERY: 1, ANS...
2007 Oct 17
0
6 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie.h test/trace
...; SwfdecColor background_color; diff --git a/libswfdec/swfdec_text_field_movie_as.c b/libswfdec/swfdec_text_field_movie_as.c index 635009c..2930c66 100644 --- a/libswfdec/swfdec_text_field_movie_as.c +++ b/libswfdec/swfdec_text_field_movie_as.c @@ -250,6 +250,43 @@ swfdec_text_field_movie_set_multiline (SwfdecAsContext *cx, } static void +swfdec_text_field_movie_get_restrict (SwfdecAsContext *cx, + SwfdecAsObject *object, guint argc, SwfdecAsValue *argv, + SwfdecAsValue *ret) +{ + SwfdecTextFieldMovie *text; + + SWFDEC_AS_CHECK (SWFDEC_TYPE_TEXT_FIELD_MOVIE, &text, "");...
2011 Aug 31
2
Entering Multiline Commands With ESS
If there's a separate ESS user mail list, please point me to it. I'm using emacs with ESS and want to enter multiline commands for plots. Examples in my reference books show each line terminating with a comma so labels and other attributes can be specified for the plot before it is submitted for rendering. When I try to do this, however, I get an error: > boxplot(chemdata$quant ~ chemdata$param), Error: unexp...
2003 Jun 14
0
[Bug 99] New: multiline strings in gcc 3.3
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=99 Summary: multiline strings in gcc 3.3 Product: netfilter/iptables Version: linux-2.4.x Platform: i386 OS/Version: SuSE Linux Status: NEW Severity: normal Priority: P2 Component: ip_tables (kernel) AssignedTo: laforge@netfilter.o...
2012 Aug 22
1
multiline text() with different cex sizes
This question has probably been asked & answered before, but I can't find it: How to print a multiline figure caption in a plot, where different lines have different fonts and font sizes, and so that the lines of text are spaced in a reasonable way. Here's a simple example, where I have to keep tweaking the y coordinate and the cex combos, while I also manually adjust the aspect ratio of th...
2006 Oct 18
2
multiline string continuation
...quot; after executing the script, string variable "datadir" becomes "X:/level1/level2\n/level3/level4/\nlevel5/level6" Someone has suggested to use "paste()" for putting pieces of strings together, but I would like to see if there is any other simpler workaround for multiline string continuation. Best, Erik -- Erik Chang, PhD CIHR Group for Action and Perception The University of Western Ontario Department of Psychology Room 6256 Social Science Centre London, ON, Canada. N6A 5C2 audachang at gmail.com http://ulysses.ssc.uwo.ca/ TEL: 1-519-661-2111 ext. 88190....
2011 Nov 07
5
Multiline code block within a list
Hello, How to correctly made multiline code block within a list, like.. * foo * bar * ``` Code 1 Code 2 Code 3 ``` * Another list item The above markup is not working, what I want is Code 1, Code 2 and Code 3 appear in different lines. Thanks.
2006 Dec 22
3
multiline system call
Hello, I am trying to call sendmail from within R via system(). As sendmail reads from STDIN, I need to pass a multiline input as an argument. E.g. (not working): system('sendmail -f xxx at swing.be -t yyy at swing.be\ntest\n.\n') I tried a lot of ways to type the EOL characters, but cannot get them work the right way. This leads to several problems. For instance, R waits for me to enter <control-D&...
2007 Oct 22
0
12 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie.h test/trace
...s /dev/null and b/test/trace/text-field-html-input-6.swf differ diff --git a/test/trace/text-field-html-input-6.swf.trace b/test/trace/text-field-html-input-6.swf.trace new file mode 100644 index 0000000..e976072 --- /dev/null +++ b/test/trace/text-field-html-input-6.swf.trace @@ -0,0 +1,120 @@ +0: multiline: false condenseWhite: false +a +<P ALIGN="LEFT"><FONT FACE="Times New Roman" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">a</FONT></P> +0/a: align=left blockIndent=0 bold=false bullet=false color=0 displ...
2009 Jun 30
2
Sweave: multiline Sexpr?
Is there any way to have Sexpr span multiple lines? -- David ? ----------------------------------------------------- David Huffer, Ph.D. Senior Statistician CSOSA/Washington, DC david.huffer at csosa.gov -----------------------------------------------------
2005 Feb 21
0
Multiple multiline sip phones ringing.
how would one dial multiple multiline sip phones (cisco 7960) and making sure that all the phones ring on the next available line appearance? I'm currently using the local channel to accomplish this but I'm having some trouble. Here is the configs: each cisco 7960 phone has six registrations in sip.conf, 1XX1 thru 1XX6, normal...
2005 Jul 10
0
NEWBIE Question: Asterisk with multiline/button phones
This is a very newb. question. Been using asterisk very happily now for several months and am considering getting some of those really 'cool' multi-button phones with LEDs and buttons. It's unclear to me if it is a straightforward task to actually setup a multiline 'presence' on the phones where the LED's light up when someone picks up a 'line' or is using a 'line' or puts a 'line' on hold or park and then would like to pick it up from another phone just by pushing the 'line #3' or 'line #4' button that is...
2005 Jul 13
0
Sipura SIP Phones Multi-Line Appearance... How to use? |----->WAS----> NEWBIE Question: Asterisk with multiline/button phones
...s is a very newb. question. > > Been using asterisk very happily now for several months and am considering > getting some of those really 'cool' multi-button phones with LEDs and > buttons. > > It's unclear to me if it is a straightforward task to actually setup a > multiline 'presence' on the phones where the LED's light up when someone > picks up a 'line' or is using a 'line' or puts a 'line' on hold or park > and then would like to pick it up from another phone just by pushing > the 'line #3' or 'line #4'...
2006 Dec 13
0
ZAP multiline handset questions
Hi All - I haven't worked much with ZAP handsets before, but I've got a client who is insistent on using a particular phone. My questions: 1. With multiline analog phones, if I've got multiple phones, each connected to a different FXS interface, is there a way to make the line status lights on the other phones show that a particular FXO is in use (like a key system, or like SIP hinting)? 2. Does anyone know of a good analog cordless phone (indepe...
2009 Aug 11
1
Cisco 1760 Multiline phone
I have a cisco 1760 phone running sip and I need to configure for our receptionist so that she can answer calls on more then one extension. What is the easiest way to configure this so that incomming calls go to the next availble extension? Does each extension on the phone need to be set seperately in the sip.conf file (see below for my example)? sip.conf file =================