Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-12 Thread Matthew Nicholson
On Thu, 2009-02-12 at 08:20 +0100, Louis-David Mitterrand wrote:
> On Tue, Feb 10, 2009 at 01:56:16PM -0800, Mik Cheez wrote:
> > I use them both; my legacy dialplan is all .conf and new stuff is .ael. 
> >   I find AEL to be the better option when jumping around, but that's 
> > just my opinion.
> 
> But isn't AEL just converted into .conf language anyway? Or has this
> evolved with 1.4.x ?
> 

AEL is converted to the same internal representation inside of asterisk
that traditional .conf diaplan is converted to.
-- 
Matthew Nicholson
Digium, Inc. | Software Developer


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-12 Thread Gordon Henderson
On Wed, 11 Feb 2009, Tilghman Lesher wrote:

> On Wednesday 11 February 2009 13:07:16 Gordon Henderson wrote:
>>
>> In my world, they go to the web interface, create the extension, tick a
>> selection of existing extensions and the code then writes out a new
>> segment of dialplan to create the new extension, issues an extensions
>> reload command to asterisk and off it goes... The dialplan was static
>> before, and is static after, it's just that I wrote some php to write
>> dialplan based on user input...
>>
>> How do others do it?
>
> I'd have a range of extensions, when dialled, it goes to the database,
> retrieves the list of channels, and dials those channels.  The web frontend
> would look exactly the same, but the data would go directly into a database,
> not taking an extra step to go into a dialplan, then reload the text file.
> The advantage is that I'd never have the possibility of two people colliding
> on the regeneration of a text file.  While it is possible for two people to
> select the same number when defining new extensions, that can be very
> easily worked around, given that database updates are atomic.

Intersting, but I have no database. (well, not in the sense of a 
relational or SQL based one) I build systems that boot off flash and run 
them from RAM. Configuration is stored back on flash, but not using a 
relational database. Thats just too heavy IMO for embedded systems, and 
storing data in flat-files is just as efficient, if not more-so for a few 
100 entries.

The other issues, locking, etc. these are all classic computer science 
problems which have been long-solved so shouldn't really be an issue (and 
my background is real-time control, robotics, parallel processing, etc. so 
from my point of view nothing more than an academic excercise)

Cheers,

Gordon

(Off to dine with some philosophers now and travel round Exeter, selling 
my wares before going to book an airline ticket ;-)

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Louis-David Mitterrand
On Tue, Feb 10, 2009 at 01:56:16PM -0800, Mik Cheez wrote:
> I use them both; my legacy dialplan is all .conf and new stuff is .ael. 
>   I find AEL to be the better option when jumping around, but that's 
> just my opinion.

But isn't AEL just converted into .conf language anyway? Or has this
evolved with 1.4.x ?

-- 
http://www.critikart.net

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Tzafrir Cohen
On Wed, Feb 11, 2009 at 12:14:33PM -0600, Matthew Nicholson wrote:
> Of course you should be using Lua.
> 
> More seriously, use whatever works best for you.  If you have time,
> evaluate all three alternatives and pick the one you like the best.  If
> you don't have the time, I wouldn't put a lot of effort into switching
> to AEL or Lua based dialplans.
> 
> There are advantages to using both AEL and Lua over conventional ".conf"
> dialplan code (and some disadvantages).  Mainly, complex AEL and Lua
> dialplans are easier to read, write, and maintain then complex
> traditional dialplans.  At the same time, traditional ".conf" dialplans
> are not going away anytime soon, and you do not lose any functionality
> vs AEL and Lua.  So trying to pick one over another is very similar to
> the problem of picking one programming language over another (e.g.  "Is
> python better then ruby?").

AEL is basically a very simple dialplan compiler. That is: things there
translate pretty much directly to the internal dialplan structure (That
is very close in spirit to what you write in a .conf file).

Lua works differently (e.g: no "priority").

Does this help?

Anybody here misses res_perl and/or res_js?

-- 
   Tzafrir Cohen
icq#16849755  jabber:tzafrir.co...@xorcom.com
+972-50-7952406   mailto:tzafrir.co...@xorcom.com
http://www.xorcom.com  iax:gu...@local.xorcom.com/tzafrir

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Tilghman Lesher
On Wednesday 11 February 2009 13:39:58 Philipp Kempgen wrote:
> Tilghman Lesher schrieb:
> > On Wednesday 11 February 2009 13:07:16 Gordon Henderson wrote:
> >> On Wed, 11 Feb 2009, Tilghman Lesher wrote:
> >> > My viewpoint is that you should work on separation of your application
> >> > code versus data, so that other than new development, your dialplan
> >> > should be completely static and never need changing (other than, like
> >> > I said, new development).
> >>
> >> But what would you call "new development"? Say I have a site who has
> >> many extensions and they then wanted to create a call-group - ie. one
> >> new extension, ring multiple phones?
> >>
> >> In my world, they go to the web interface, create the extension, tick a
> >> selection of existing extensions and the code then writes out a new
> >> segment of dialplan to create the new extension, issues an extensions
> >> reload command to asterisk and off it goes...
> >
> > I'd have a range of extensions, when dialled, it goes to the database,
> > retrieves the list of channels, and dials those channels.  The web
> > frontend would look exactly the same, but the data would go directly into
> > a database, not taking an extra step to go into a dialplan, then reload
> > the text file.
>
> How do you define the hints (for BLF, directed pickup, group
> pickup etc.)?

As of 1.6, you can have pattern-match hints that query a database for the
actual set of channels.

-- 
Tilghman

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Philipp Kempgen
Tilghman Lesher schrieb:
> On Wednesday 11 February 2009 13:07:16 Gordon Henderson wrote:
>> On Wed, 11 Feb 2009, Tilghman Lesher wrote:

>> > My viewpoint is that you should work on separation of your application
>> > code versus data, so that other than new development, your dialplan
>> > should be completely static and never need changing (other than, like I
>> > said, new development).

>> But what would you call "new development"? Say I have a site who has many
>> extensions and they then wanted to create a call-group - ie. one new
>> extension, ring multiple phones?
>>
>> In my world, they go to the web interface, create the extension, tick a
>> selection of existing extensions and the code then writes out a new
>> segment of dialplan to create the new extension, issues an extensions
>> reload command to asterisk and off it goes...

> I'd have a range of extensions, when dialled, it goes to the database,
> retrieves the list of channels, and dials those channels.  The web frontend
> would look exactly the same, but the data would go directly into a database,
> not taking an extra step to go into a dialplan, then reload the text file.

How do you define the hints (for BLF, directed pickup, group
pickup etc.)?


   Philipp Kempgen

-- 
AMOOCON 2009, May 4-5, Rostock / Germany   ->  http://www.amoocon.de
Asterisk: http://the-asterisk-book.com - http://das-asterisk-buch.de
AMOOMA GmbH - Bachstr. 126 - 56566 Neuwied  ->  http://www.amooma.de
Geschäftsführer: Stefan Wintermeyer, Handelsregister: Neuwied B14998
-- 

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Tilghman Lesher
On Wednesday 11 February 2009 13:07:16 Gordon Henderson wrote:
> On Wed, 11 Feb 2009, Tilghman Lesher wrote:
> > On Wednesday 11 February 2009 08:22:39 Gordon Henderson wrote:
> >> For my appication, I get on OK with pure "dialplan". I have a fully
> >> featured PBX system which runs on nothing more than dialplan, and I'm
> >> happy with it. I do have something "higher level" that generates some of
> >> the dialplan for me, but I still had to write that dialplan in the first
> >> place and I was happy to do it in pure "dialplan".
> >
> > My viewpoint is that you should work on separation of your application
> > code versus data, so that other than new development, your dialplan
> > should be completely static and never need changing (other than, like I
> > said, new development).
>
> One mans program is another mans data
>
> But what would you call "new development"? Say I have a site who has many
> extensions and they then wanted to create a call-group - ie. one new
> extension, ring multiple phones?
>
> In my world, they go to the web interface, create the extension, tick a
> selection of existing extensions and the code then writes out a new
> segment of dialplan to create the new extension, issues an extensions
> reload command to asterisk and off it goes... The dialplan was static
> before, and is static after, it's just that I wrote some php to write
> dialplan based on user input...
>
> How do others do it?

I'd have a range of extensions, when dialled, it goes to the database,
retrieves the list of channels, and dials those channels.  The web frontend
would look exactly the same, but the data would go directly into a database,
not taking an extra step to go into a dialplan, then reload the text file.
The advantage is that I'd never have the possibility of two people colliding
on the regeneration of a text file.  While it is possible for two people to
select the same number when defining new extensions, that can be very
easily worked around, given that database updates are atomic.

-- 
Tilghman

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Gordon Henderson
On Wed, 11 Feb 2009, Tilghman Lesher wrote:

> On Wednesday 11 February 2009 08:22:39 Gordon Henderson wrote:
>> For my appication, I get on OK with pure "dialplan". I have a fully
>> featured PBX system which runs on nothing more than dialplan, and I'm
>> happy with it. I do have something "higher level" that generates some of
>> the dialplan for me, but I still had to write that dialplan in the first
>> place and I was happy to do it in pure "dialplan".
>
> My viewpoint is that you should work on separation of your application code
> versus data, so that other than new development, your dialplan should be
> completely static and never need changing (other than, like I said, new
> development).

One mans program is another mans data

But what would you call "new development"? Say I have a site who has many 
extensions and they then wanted to create a call-group - ie. one new 
extension, ring multiple phones?

In my world, they go to the web interface, create the extension, tick a 
selection of existing extensions and the code then writes out a new 
segment of dialplan to create the new extension, issues an extensions 
reload command to asterisk and off it goes... The dialplan was static 
before, and is static after, it's just that I wrote some php to write 
dialplan based on user input...

How do others do it?

Gordon

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Terry Wilson
> Of course you should be using Lua.

I really have to try that sometime

> tAt the same time, traditional ".conf" dialplans
> are not going away anytime soon, and you do not lose any functionality
> vs AEL and Lua.

My reason for sticking with .conf files so far?  "dialplan show" -- it  
is easier (perhaps because I am used to it) to debug when what I see  
on the CLI matches 1 to 1 with what my dialplan shows.

>  So trying to pick one over another is very similar to
> the problem of picking one programming language over another (e.g.   
> "Is
> python better then ruby?").

That isn't hard, it's python!
(or ruby)


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Matthew Nicholson
Of course you should be using Lua.

More seriously, use whatever works best for you.  If you have time,
evaluate all three alternatives and pick the one you like the best.  If
you don't have the time, I wouldn't put a lot of effort into switching
to AEL or Lua based dialplans.

There are advantages to using both AEL and Lua over conventional ".conf"
dialplan code (and some disadvantages).  Mainly, complex AEL and Lua
dialplans are easier to read, write, and maintain then complex
traditional dialplans.  At the same time, traditional ".conf" dialplans
are not going away anytime soon, and you do not lose any functionality
vs AEL and Lua.  So trying to pick one over another is very similar to
the problem of picking one programming language over another (e.g.  "Is
python better then ruby?").

On Wed, 2009-02-11 at 12:58 -0500, C F wrote:
> Of course you should be using .conf
> 
> On Tue, Feb 10, 2009 at 2:28 AM, Lee, John (Sydney)
>  wrote:
> > Of course you should be using AEL.
> >
> >> -Original Message-
> >> From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-
> >> boun...@lists.digium.com] On Behalf Of Alan Lord (News)
> >> Sent: Tuesday, 10 February 2009 6:24 PM
> >> To: asterisk-users@lists.digium.com
> >> Subject: [asterisk-users] What do you use? .conf or AEL?
> >>
> >> Hi all,
> >>
> >> I built my first asterisk using the traditional (?) .conf files and
> >> constructs.
> >>
> >> I recall reading books at the time about AEL but it seemed "new" and
> >> untested so I left it alone.  Now, I'm interested to poll the audience
> >> here to see if I should look into using AEL instead (or in addition
> > to)
> >> for future work.
> >>
> >> TIA
> >>
> >>
> >> ___
> >> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> >>
> >> asterisk-users mailing list
> >> To UNSUBSCRIBE or update options visit:
> >>http://lists.digium.com/mailman/listinfo/asterisk-users
> >
> >
> > ___
> > -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> >
> > asterisk-users mailing list
> > To UNSUBSCRIBE or update options visit:
> >   http://lists.digium.com/mailman/listinfo/asterisk-users
> >
> 
> ___
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> 
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
-- 
Matthew Nicholson
Digium, Inc. | Software Developer


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread C F
Of course you should be using .conf

On Tue, Feb 10, 2009 at 2:28 AM, Lee, John (Sydney)
 wrote:
> Of course you should be using AEL.
>
>> -Original Message-
>> From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-
>> boun...@lists.digium.com] On Behalf Of Alan Lord (News)
>> Sent: Tuesday, 10 February 2009 6:24 PM
>> To: asterisk-users@lists.digium.com
>> Subject: [asterisk-users] What do you use? .conf or AEL?
>>
>> Hi all,
>>
>> I built my first asterisk using the traditional (?) .conf files and
>> constructs.
>>
>> I recall reading books at the time about AEL but it seemed "new" and
>> untested so I left it alone.  Now, I'm interested to poll the audience
>> here to see if I should look into using AEL instead (or in addition
> to)
>> for future work.
>>
>> TIA
>>
>>
>> ___
>> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>>
>> asterisk-users mailing list
>> To UNSUBSCRIBE or update options visit:
>>http://lists.digium.com/mailman/listinfo/asterisk-users
>
>
> ___
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>   http://lists.digium.com/mailman/listinfo/asterisk-users
>

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Tilghman Lesher
On Wednesday 11 February 2009 08:22:39 Gordon Henderson wrote:
> For my appication, I get on OK with pure "dialplan". I have a fully
> featured PBX system which runs on nothing more than dialplan, and I'm
> happy with it. I do have something "higher level" that generates some of
> the dialplan for me, but I still had to write that dialplan in the first
> place and I was happy to do it in pure "dialplan".

My viewpoint is that you should work on separation of your application code
versus data, so that other than new development, your dialplan should be
completely static and never need changing (other than, like I said, new
development).

-- 
Tilghman

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Gordon Henderson
On Wed, 11 Feb 2009, Philipp Kempgen wrote:

> Gordon Henderson schrieb:
>> On Wed, 11 Feb 2009, Alan Lord (News) wrote:
>>
>>> That was quite an interesting set of responses. I didn't get any
>>> impression that there is a strong preference either way.
>>
>> I asked the same question some time back too... Got a few replies, and now
>> (as then), all my systems are 100% .conf (or dialplan code, whatever you
>> want to call it)
>>
>> John Lees reply did rather irriate me - because he gave no explanation, or
>> justification for it - hence my own terse reply!
>>
>> I have some huge dialplans with 1000's of lines of code in them, but most
>> of it is actually computer generated - as I said in a post some time back:
>> "PHP is my AEL"... I'll code something by hand, then get PHP to generate
>> multiple instances of it, rewriting my extensions.conf file every time.
>>
>> I haven't yet had to resort to AEL or AGI and personally I'm all for
>> keeping the "core" as simple as possible - less code to go wrong and all
>> that.
>>
>> This to me seems OK to me, as once a system is installed, the changes to
>> it are infrequent, and a reload takes a fraction of a second.
>
> So what's so irritating about AEL then? You are using a higher
> level language to generate extensions.conf as well.

I didn't say anything was irritating about AEL. I said I was irritated by 
John Lee's terse reply which I quote: "Of course you should be using AEL" 
which he gave with no justification at all.

My view is that you should use what you need to use for your application.

For my appication, I get on OK with pure "dialplan". I have a fully 
featured PBX system which runs on nothing more than dialplan, and I'm 
happy with it. I do have something "higher level" that generates some of 
the dialplan for me, but I still had to write that dialplan in the first 
place and I was happy to do it in pure "dialplan".

Gordon

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Philipp Kempgen
Gordon Henderson schrieb:
> On Wed, 11 Feb 2009, Alan Lord (News) wrote:
> 
>> That was quite an interesting set of responses. I didn't get any
>> impression that there is a strong preference either way.
> 
> I asked the same question some time back too... Got a few replies, and now 
> (as then), all my systems are 100% .conf (or dialplan code, whatever you 
> want to call it)
> 
> John Lees reply did rather irriate me - because he gave no explanation, or 
> justification for it - hence my own terse reply!
> 
> I have some huge dialplans with 1000's of lines of code in them, but most 
> of it is actually computer generated - as I said in a post some time back: 
> "PHP is my AEL"... I'll code something by hand, then get PHP to generate 
> multiple instances of it, rewriting my extensions.conf file every time.
> 
> I haven't yet had to resort to AEL or AGI and personally I'm all for 
> keeping the "core" as simple as possible - less code to go wrong and all 
> that.
> 
> This to me seems OK to me, as once a system is installed, the changes to 
> it are infrequent, and a reload takes a fraction of a second.

So what's so irritating about AEL then? You are using a higher
level language to generate extensions.conf as well.


   Philipp Kempgen

-- 
AMOOCON 2009, May 4-5, Rostock / Germany   ->  http://www.amoocon.de
Asterisk: http://the-asterisk-book.com - http://das-asterisk-buch.de
AMOOMA GmbH - Bachstr. 126 - 56566 Neuwied  ->  http://www.amooma.de
Geschäftsführer: Stefan Wintermeyer, Handelsregister: Neuwied B14998
-- 

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Gordon Henderson
On Wed, 11 Feb 2009, Alan Lord (News) wrote:

> That was quite an interesting set of responses. I didn't get any
> impression that there is a strong preference either way.

I asked the same question some time back too... Got a few replies, and now 
(as then), all my systems are 100% .conf (or dialplan code, whatever you 
want to call it)

John Lees reply did rather irriate me - because he gave no explanation, or 
justification for it - hence my own terse reply!

I have some huge dialplans with 1000's of lines of code in them, but most 
of it is actually computer generated - as I said in a post some time back: 
"PHP is my AEL"... I'll code something by hand, then get PHP to generate 
multiple instances of it, rewriting my extensions.conf file every time.

I haven't yet had to resort to AEL or AGI and personally I'm all for 
keeping the "core" as simple as possible - less code to go wrong and all 
that.

This to me seems OK to me, as once a system is installed, the changes to 
it are infrequent, and a reload takes a fraction of a second.

Good luck with whatever approach you choose!

Gordon

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-11 Thread Alan Lord (News)
That was quite an interesting set of responses. I didn't get any 
impression that there is a strong preference either way.


Thanks for all the replies.

Al

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-10 Thread Mik Cheez
I use them both; my legacy dialplan is all .conf and new stuff is .ael. 
  I find AEL to be the better option when jumping around, but that's 
just my opinion.

Mik

Alan Lord (News) wrote:
> Hi all,
> 
> I built my first asterisk using the traditional (?) .conf files and 
> constructs.
> 
> I recall reading books at the time about AEL but it seemed "new" and 
> untested so I left it alone.  Now, I'm interested to poll the audience 
> here to see if I should look into using AEL instead (or in addition to) 
> for future work.
> 
> TIA
> 
> 
> ___
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> 
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
> 
> 

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-10 Thread Geraint Lee
.conf all the way, purely because i only noticed that extensions.ael even
existed a couple of months back, i should pay more attention really :p but
until it's broke, i can't be bothered to fix it.

2009/2/10 Alan Lord (News) 

> Hi all,
>
> I built my first asterisk using the traditional (?) .conf files and
> constructs.
>
> I recall reading books at the time about AEL but it seemed "new" and
> untested so I left it alone.  Now, I'm interested to poll the audience
> here to see if I should look into using AEL instead (or in addition to)
> for future work.
>
> TIA
>
>
> ___
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>   http://lists.digium.com/mailman/listinfo/asterisk-users
>
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-10 Thread Gordon Henderson
On Tue, 10 Feb 2009, Lee, John (Sydney) wrote:

> Of course you should be using AEL.

Of course you should carry on using .conf.

Gordon

>
>> -Original Message-
>> From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-
>> boun...@lists.digium.com] On Behalf Of Alan Lord (News)
>> Sent: Tuesday, 10 February 2009 6:24 PM
>> To: asterisk-users@lists.digium.com
>> Subject: [asterisk-users] What do you use? .conf or AEL?
>>
>> Hi all,
>>
>> I built my first asterisk using the traditional (?) .conf files and
>> constructs.
>>
>> I recall reading books at the time about AEL but it seemed "new" and
>> untested so I left it alone.  Now, I'm interested to poll the audience
>> here to see if I should look into using AEL instead (or in addition
> to)
>> for future work.
>>
>> TIA
>>
>>
>> ___
>> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>>
>> asterisk-users mailing list
>> To UNSUBSCRIBE or update options visit:
>>http://lists.digium.com/mailman/listinfo/asterisk-users
>
>
> ___
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>   http://lists.digium.com/mailman/listinfo/asterisk-users
>

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-10 Thread Tzafrir Cohen
On Tue, Feb 10, 2009 at 07:24:15AM +, Alan Lord (News) wrote:
> Hi all,
> 
> I built my first asterisk using the traditional (?) .conf files and 
> constructs.

You still use them for most stuff, I guess.

Anybody using Lua?

-- 
   Tzafrir Cohen
icq#16849755  jabber:tzafrir.co...@xorcom.com
+972-50-7952406   mailto:tzafrir.co...@xorcom.com
http://www.xorcom.com  iax:gu...@local.xorcom.com/tzafrir

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-10 Thread Dave Fullerton
Alan Lord (News) wrote:
> Hi all,
> 
> I built my first asterisk using the traditional (?) .conf files and 
> constructs.
> 
> I recall reading books at the time about AEL but it seemed "new" and 
> untested so I left it alone.  Now, I'm interested to poll the audience 
> here to see if I should look into using AEL instead (or in addition to) 
> for future work.
> 
> TIA

I use AEL. I find it much cleaner to look at and not having to deal with 
priorities is a bonus.

-Dave

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-10 Thread Danny Nicholas
You should stick with your .conf, but work toward transitioning to AEL
because all things in Asterisk will eventually deprecate (can I copyright
that?)

-Original Message-
From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Lee, John
(Sydney)
Sent: Tuesday, February 10, 2009 1:29 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] What do you use? .conf or AEL?

Of course you should be using AEL.

> -Original Message-
> From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-
> boun...@lists.digium.com] On Behalf Of Alan Lord (News)
> Sent: Tuesday, 10 February 2009 6:24 PM
> To: asterisk-users@lists.digium.com
> Subject: [asterisk-users] What do you use? .conf or AEL?
> 
> Hi all,
> 
> I built my first asterisk using the traditional (?) .conf files and
> constructs.
> 
> I recall reading books at the time about AEL but it seemed "new" and
> untested so I left it alone.  Now, I'm interested to poll the audience
> here to see if I should look into using AEL instead (or in addition
to)
> for future work.
> 
> TIA
> 
> 
> ___
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> 
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] What do you use? .conf or AEL?

2009-02-09 Thread Lee, John (Sydney)
Of course you should be using AEL.

> -Original Message-
> From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-
> boun...@lists.digium.com] On Behalf Of Alan Lord (News)
> Sent: Tuesday, 10 February 2009 6:24 PM
> To: asterisk-users@lists.digium.com
> Subject: [asterisk-users] What do you use? .conf or AEL?
> 
> Hi all,
> 
> I built my first asterisk using the traditional (?) .conf files and
> constructs.
> 
> I recall reading books at the time about AEL but it seemed "new" and
> untested so I left it alone.  Now, I'm interested to poll the audience
> here to see if I should look into using AEL instead (or in addition
to)
> for future work.
> 
> TIA
> 
> 
> ___
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> 
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] What do you use? .conf or AEL?

2009-02-09 Thread Alan Lord (News)
Hi all,

I built my first asterisk using the traditional (?) .conf files and 
constructs.

I recall reading books at the time about AEL but it seemed "new" and 
untested so I left it alone.  Now, I'm interested to poll the audience 
here to see if I should look into using AEL instead (or in addition to) 
for future work.

TIA


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users