Re: [Asterisk-Users] Best GPL Gui?

2006-07-03 Thread Tzafrir Cohen
[off-topic]

On Sun, Jul 02, 2006 at 10:56:03AM -0400, C F wrote:
 I believe vi is GPLed

Thanks for asking.

The original vi was part of BSD, I believe. I'm not sure what it's
license was.

nvi is under a BSD license.

levee seems to be distributed with a MIT license of some sort.

elvis is distributed under a clarified artistic license.

vigor was derived from nvi, and is also BSD.

vile is GPLed. So is busybox vi and the viper mode in gnu/x emacs.

And if you wondered about the license of vim: a copyleft license quite
similar to the GPL, and in recent versions: also compatible with it. and
contribution to the children of Uganda are always welcomed.

Surprisingly those are the only vi-s I can think of in Debian right
now.

Now you were asking something about a web interface?

-- 
Tzafrir Cohen  sip:[EMAIL PROTECTED]
icq#16849755   iax:[EMAIL PROTECTED]
+972-50-7952406   
[EMAIL PROTECTED]  http://www.xorcom.com
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Best GPL Gui?

2006-07-03 Thread C F

Thanks Tzafrir, I realy enjoyed reading it.

On 7/3/06, Tzafrir Cohen [EMAIL PROTECTED] wrote:

[off-topic]

On Sun, Jul 02, 2006 at 10:56:03AM -0400, C F wrote:
 I believe vi is GPLed

Thanks for asking.

The original vi was part of BSD, I believe. I'm not sure what it's
license was.

nvi is under a BSD license.

levee seems to be distributed with a MIT license of some sort.

elvis is distributed under a clarified artistic license.

vigor was derived from nvi, and is also BSD.

vile is GPLed. So is busybox vi and the viper mode in gnu/x emacs.

And if you wondered about the license of vim: a copyleft license quite
similar to the GPL, and in recent versions: also compatible with it. and
contribution to the children of Uganda are always welcomed.

Surprisingly those are the only vi-s I can think of in Debian right
now.

Now you were asking something about a web interface?

--
Tzafrir Cohen  sip:[EMAIL PROTECTED]
icq#16849755   iax:[EMAIL PROTECTED]
+972-50-7952406
[EMAIL PROTECTED]  http://www.xorcom.com
___
--Bandwidth and Colocation provided by Easynews.com --

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


___
--Bandwidth and Colocation provided by Easynews.com --

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


vim with syntax highlighting Re: [Asterisk-Users] Best GPL Gui?

2006-07-03 Thread Robert Michel
Salve C, salve Tzafirir! 
What a short name

On Mon, 03 Jul 2006, C F wrote:

 Thanks Tzafrir, I realy enjoyed reading it.
me, too.

 On 7/3/06, Tzafrir Cohen [EMAIL PROTECTED] wrote:
 [off-topic]
Not 100%, I'm a asterisk newbee and think that the
rigth editor with syntaxhighlighting can help much ;)

 On Sun, Jul 02, 2006 at 10:56:03AM -0400, C F wrote:
 And if you wondered about the license of vim: a copyleft license quite
 similar to the GPL, and in recent versions: also compatible with it. and
 contribution to the children of Uganda are always welcomed.
This charity *and* vim itself are great honorable work from Bram!

 Now you were asking something about a web interface?
*g* I would propose ssh2 and if I want to use it from
the internetterminals of my bibliothek some java ssh2 client
like mindterm
Than you can use vim via web ;)

And vim is powerfull, unbeleavable powerfull
-but you have to like to learn and read the
buildin help and all the external tips and tricks.

Syntaxhighlighting for extensions.conf:

1) Does your terminal support colors?
try ls --color

2)seriosly systems should have vim already installed
when not do so


3) cd /usr/share/vim/vim63/syntax
4)grep -RO 
ftp://ftp.informatik.uni-oldenburg.de/pub/vim/runtime/syntax/asterisk.vim

when you use MP3Player() then open asterisk.vim and  add:
syn match   asteriskApp ,\zsMP3[a-zA-Z]\+\ze(  added by rob

5)add inside: /usr/share/vim/vim63/filetype.vim
 Apache style config file
au BufNewFile,BufRead extensions.conf setf asterisk

next time you open extensions.conf with vim
you should have a colored world of asterisk :)


Some small tricks with vim.
You are opening /extensions.conf every day?
You whant to swith to a pattern e.g. exten = 2345 directly?

1)Write a small skript
#!/bin/bash
#ast-e.sh  
vim +/$1 /etc/asterisk/extensions.conf

2) chmod u+x

3) add inside your ~/.bashrc
alias ast-e='/home/user/skripte/ast-e.sh'

After a restart of your bash you can type
#ast-e 2345

And the best of this (of vim of course)
you can swicht to the next 2345 by pressing
n, as you would do after
vim /etc/asterisk/extensions.con
/2345

alias ast-m='vim -R + /var/log/asterisk/cdr-csv/Master.csv'
would help to start readonly on the last page...


I'm working on asteriskcsv.vim

AFAIK is it possible to create syntax highlighting 
in context over several lines - 
exten = rob,1,
exten = rob,1, =  that 1 would become red

And the best 2 month ago Bram published vim7
with:
- Spell checking support for about 50 languages 
- Intelligent completion for C, HTML, Ruby, Python, PHP, etc. 
- Tab pages, each containing multiple windows 
- Undo branches: never accidentally lose text again 
- Highlighting of cursor line, cursor column and matching braces 
(Haven't time to play with vim7)

Does anybody knows about a try to have intelligent code
completion for asterisk inside vim?
I think would be somthink like this:
[e]TABxten = [123],1,[A](Answer|Auto..)TABanswer()[Return]
exten = 123,2,[M]

And with scripting some cool thinks would be possible,
cloning extentions, changing nummers of on block,

So it is not only the question of a good tool,
it is also the question how good your skills are
to use the power of it ;)

 Now you were asking something about a web interface?
http://www.mindterm.com/products/80_MindTerm/index.php   
but wait, it isn't GPL anymore sie jsch from jcraft
http://www.jcraft.com/jsch/index.html 
to use vim with screen and ssh2.
http://www.vim.org
http://www.gnu.org/software/screen/ 


Probably just another answer about a GUI for asterisk,
C, doesn't expected.

So again, does somebody knows about intelligent asterisk
completion with vim7?


Greetings,
rob




PS1: The shellpower: Erlang - the movie
http://video.google.com/videoplay?docid=-5830318882717959520 

PS2: Tzafirir thank you for the bash -x tip,
 the debuggmessages are visible inside the CLI ;)













___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] Best GPL Gui?

2006-07-02 Thread C F

I believe vi is GPLed

On 6/30/06, Paul Duffy [EMAIL PROTECTED] wrote:

Hi Guys

With the profusion of different GUI's and Web interfaces out there could
someone possibly save me a load of time and let me know which is the best
one and why?

Also is there an independent site reviewing asterisk GUI's anywhere.

I'm looking at Cisco phones and TDM400 and X101P cards.

Only GPL versions please.

TIA

Paul
___
--Bandwidth and Colocation provided by Easynews.com --

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


___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Best GPL Gui?

2006-06-30 Thread Paul Duffy
Hi Guys

With the profusion of different GUI's and Web interfaces out there could
someone possibly save me a load of time and let me know which is the best
one and why?

Also is there an independent site reviewing asterisk GUI's anywhere.

I'm looking at Cisco phones and TDM400 and X101P cards.

Only GPL versions please.

TIA

Paul
___
--Bandwidth and Colocation provided by Easynews.com --

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