search for: delim1

Displaying 4 results from an estimated 4 matches for "delim1".

Did you mean: delim
2003 May 25
0
surprising behaviour of "bgroup": sets all in greek letters (PR#3099)
...+0200 +++ ./r-patched/src/main/plotmath.c 2003-05-25 17:49:38.000000000 +0200 @@ -2075,10 +2075,12 @@ delim2 = DelimCode(expr, CADDDR(expr)); bbox = RenderElement(CADDR(expr), 0); dist = max(bboxHeight(bbox) - axisHeight, bboxDepth(bbox) + axisHeight); - bbox = RenderDelim(delim1, dist + extra, draw); + if (delim1 != '.') + bbox = RenderDelim(delim1, dist + extra, draw); bbox = CombineBBoxes(bbox, RenderElement(CADDR(expr), draw)); bbox = RenderItalicCorr(bbox, draw); - bbox = CombineBBoxes(bbox, RenderDelim(delim2, dist + extra, draw)); +...
2009 Feb 25
1
Realtime database function help
Hello Everyone! According to voip-info.org the correcy syntax for the realtime function is: REALTIME(family|fieldmatch[|value[|delim1[|delim2]]]) on read REALTIME(family|fieldmatch|value|field) on write It seems from the syntax that it is only possible to retrieve a full row according to the value of only of column. This translates in SQL language as Select * from family where fieldmath = value. Is there any way to have more c...
2008 Feb 18
1
realtime table customization to track iax registrations
...in iax_buddies table called for example "Asterisk ID" which tells me on which asterisk box a particular user is registered. Is there a way to achieve this? I've seen this function: ASB*CLI> -= Info about function 'REALTIME' =- [Syntax] REALTIME(family|fieldmatch[|value[|delim1[|delim2]]]) on read REALTIME(family|fieldmatch|value|field) on write [Synopsis] RealTime Read/Write Functions [...] but I don't think I can use this during client registration as it will only be available in dialplan. Any hints appreciated. Regards, Claudio Internet Email Confidentiality...
2008 Oct 08
1
make func_realtime work like app_realtime (1.6)
...nd wanted to emulate the functionality of APP_realtime somehow, so I started digging around in the func_realtime source - here's what I came up with: For 1.6.0, look at line 86 of func_realtime.c ast_str_append(&out, 0, "%s%s%s%s", var->name, args.delim2, var->value, args .delim1); I simply changed this to: pbx_builtin_setvar_helper(chan, var->name, var->value); Now when I call the realtime function, I get the channel variables populated instead of having to parse that godawful string to get at my data. Again, yell at me if you will, but even Mark Spencer commente...