search for: bascal

Displaying 5 results from an estimated 5 matches for "bascal".

Did you mean: pascal
2006 Apr 10
1
column.name question....
rHTML is <% for column in Wizard.content_columns %> <p> <%=h @wizard.send(column.name) %> </p> <% end %> It outputs: Robs Site Heading logo.jpeg London ------ Bascally 1 line for each column in the database. How do I edit the rhtml so I can break up the output? For instance JUST have ''Robs Site'' display nothing else. That mysql column is called user_name -- Posted via http://www.ruby-forum.com/.
2005 May 23
0
How to detect DTMF and change if needed
...hers get routed to other carriers and the numbers that are showing the DTMF issues are the carriers that they peer with that do not support out-of-band DTMF with the g711 codec. When asked if they could translate our out-of-band DTMF signals to a compatible format that their carrier requires, they bascally say that while that is possible, they will not do it. **The Question** So here is my question - is it possible to detect the DTMF mode of the call and if out-of-band is not supported, can you change it to inband as a last resort? Is there a way to set priority for DTMF signalling like you can d...
2004 Feb 02
1
[PATCH] --one-file-system and automounter
...-- --- rsync-2.6.0/flist.c.orig 2003-12-15 09:10:31.000000000 +0100 +++ rsync-2.6.0/flist.c 2004-02-02 10:35:06.000000000 +0100 @@ -618,32 +618,6 @@ static void receive_file_entry(struct fi } -/* determine if a file in a different filesstem should be skipped - when one_file_system is set. We bascally only want to include - the mount points - but they can be hard to find! */ -static int skip_filesystem(char *fname, STRUCT_STAT * st) -{ - STRUCT_STAT st2; - char *p = strrchr(fname, '/'); - - /* skip all but directories */ - if (!S_ISDIR(st->st_mode)) - return 1; - - /* if its not...
2015 Jun 24
6
LVM hatred, was Re: /boot on a separate partition?
On 06/23/2015 09:15 AM, Jason Warr wrote: >> That said, I prefer virtual machines over multiboot environments, and I >> absolutely despise LVM --- that cursed thing is never getting on my >> drives. Never again, that is... > > I'm curious what has made some people hate LVM so much. I wondered the same thing, especially in the context of someone who prefers virtual
2006 Apr 18
7
Connecting to multiple databases
Hi Everyone, I am trying to connect to multiple databases and followed along the Recipe in Chad Fowlers ''Rails Recipes'' book (which basically is about establishing the connection in a subclass of ActiveRecord::Base, and inheriting all classes in need of this connection from this class) Chad Fowler says: "You won''t be able to instantiate an External, of course,