Bug#322850: marked as done (vim-common: asterisk config highlighting)

Debian Bug Tracking System owner at bugs.debian.org
Sun Oct 2 12:03:22 UTC 2005


Your message dated Sun, 02 Oct 2005 04:47:07 -0700
with message-id <E1EM2J9-0005Fk-00 at spohr.debian.org>
and subject line Bug#322850: fixed in vim 1:6.3-090+1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 13 Aug 2005 02:20:25 +0000
>From santiago at unicauca.edu.co Fri Aug 12 19:20:25 2005
Return-path: <santiago at unicauca.edu.co>
Received: from (nomada.avatar.com.co) [63.245.86.202] 
	by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
	id 1E3ldJ-00052Y-00; Fri, 12 Aug 2005 19:20:25 -0700
Received: from santiago by nomada.avatar.com.co with local (Exim 4.50)
	id 1E3ldD-0003C9-DS; Fri, 12 Aug 2005 21:20:19 -0500
Content-Type: multipart/mixed; boundary="===============1964780829=="
MIME-Version: 1.0
From: =?iso-8859-1?q?Santiago_Jos=C3=A9_Ruano_Rinc=C3=B3n?=
	<santiago at unicauca.edu.co>
To: Debian Bug Tracking System <submit at bugs.debian.org>
Subject: vim-common: asterisk config highlighting
Cc: pkg-voip-maintainers at lists.alioth.debian.org
X-Mailer: reportbug 3.8
Date: Fri, 12 Aug 2005 21:20:19 -0500
Message-Id: <E1E3ldD-0003C9-DS at nomada.avatar.com.co>
Delivered-To: submit at bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
	autolearn=no version=2.60-bugs.debian.org_2005_01_02

This is a multi-part MIME message sent by reportbug.

--===============1964780829==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: vim-common
Version: 1:6.3-071+1
Severity: wishlist


Hi,

The attached files enable highlighting for the asterisk pbx config
files, they were taken from [1].

[1] http://www.voip-info.org/tiki-index.php?page=vim+syntax+highlighting

Please, add to the vim-common package.

thanks for your work maintaining vim,

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.11
Locale: LANG=es_CO, LC_CTYPE=es_CO (charmap=ISO-8859-1)

Versions of packages vim-common depends on:
ii  vim                          1:6.3-071+1 Vi IMproved - enhanced vi editor

-- no debconf information

--===============1964780829==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="asterisk.vim"


" Vim syntax file
" Language:	Asterisk config file
" Maintainer:	brc007
" Last Change:	2005 Mar 7
" version 0.2
"
" Additional changes made 2005 Mar 7 by Corydon76
" * CVS priority, including n and s, and new label definitions
" * ENV( and LEN( support
" * Class patterns in extensions now match only the class pattern (instead of to a following expression)
" * anthm's functions are matched
" * Variables now appear in their own colors inside expressions

" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if version < 600
  syntax clear
elseif exists("b:current_syntax")
  finish
endif

"testing only
syn sync clear
syn sync fromstart


syn keyword	asteriskTodo	TODO contained
syn match	asteriskComment		";.*" contains=asteriskTodo
syn match       asteriskContext         "\[.\{-}\]"
syn match	asteriskExten		"^\s*exten\s*=>"
syn match       asteriskApp             "\s*,\s*\zs[a-zA-Z]*\ze"
" Digits plus oldlabel (newlabel)
syn match       asteriskPriority        ",[[:digit:]]\+\(+[[:alpha:]][[:alnum:]_]*\)\?\(([[:alpha:]][[:alnum:]_]*)\)\?,"
" s or n plus digits (newlabel)
syn match       asteriskPriority        ",[sn]\(+[[:digit:]]\+\)\?\(([[:alpha:]][[:alnum:]_]*)\)\?,"
syn match       asteriskIncludeBad "^\s*#\s*[[:alnum:]]*"
syn match       asteriskInclude		"^\s#\sinclude\s.*"
syn match       asteriskVar             "\${_\{0,2}[[:alpha:]][[:alnum:]_]*\(:[[:digit:]]\+\)\{0,2}}"
syn match       asteriskVarLen          "\${_\{0,2}[[:alpha:]][[:alnum:]_]*(.\{-})}" contains=asteriskVar,asteriskVarLen,asteriskExp
syn match       asteriskExp             "\$\[.\{-}\]" contains=asteriskVar,asteriskVarLen,asteriskExp
syn match       asteriskFunc            "\$([[:alpha:]][[:alnum:]_]*.*)" contains=asteriskVar,asteriskVarLen,asteriskExp

" Define the default highlighting.
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet
:if version >= 508 || !exists("did_conf_syntax_inits")
  if version < 508
    let did_conf_syntax_inits = 1
    command -nargs=+ HiLink hi link <args>
  else
    command -nargs=+ HiLink hi def link <args>
  endif


  HiLink	asteriskComment	Comment
" not sure what type this should be, using String for testing.
  HiLink	asteriskExten	String
" same here
  HiLink	asteriskContext		Identifier 
  HiLink        asteriskApplication     Statement
  HiLink        asteriskInclude		Preproc 
  HiLink        asteriskIncludeBad  Error
  HiLink	asteriskPriority	Preproc	
  HiLink        asteriskVar             String
  HiLink        asteriskVarLen          Function
  HiLink        asteriskExp             Type
 delcommand HiLink
endif


let b:current_syntax = "asterisk" 

" vim: ts=8 sw=2


--===============1964780829==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="filetype.diff"

--- /usr/share/vim/vim63/filetype.vim	2005-08-12 21:08:04.000000000 -0500
+++ tmp/filetype.vim	2005-08-12 21:08:19.000000000 -0500
@@ -173,6 +173,9 @@
 " Macro (VAX)
 au BufNewFile,BufRead *.mar			setf vmasm
 
+" Asterisk config file
+au BufNewFile,BufRead *asterisk/*.conf*         setf asterisk 
+
 " Atlas
 au BufNewFile,BufRead *.atl,*.as		setf atlas
 

--===============1964780829==--

---------------------------------------
Received: (at 322850-close) by bugs.debian.org; 2 Oct 2005 11:48:03 +0000
>From katie at spohr.debian.org Sun Oct 02 04:48:03 2005
Return-path: <katie at spohr.debian.org>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
	id 1EM2J9-0005Fk-00; Sun, 02 Oct 2005 04:47:07 -0700
From: Debian VIM Maintainers <pkg-vim-maintainers at lists.alioth.debian.org>
To: 322850-close at bugs.debian.org
X-Katie: $Revision: 1.56 $
Subject: Bug#322850: fixed in vim 1:6.3-090+1
Message-Id: <E1EM2J9-0005Fk-00 at spohr.debian.org>
Sender: Archive Administrator <katie at spohr.debian.org>
Date: Sun, 02 Oct 2005 04:47:07 -0700
Delivered-To: 322850-close at bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
	autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 6

Source: vim
Source-Version: 1:6.3-090+1

We believe that the bug you reported is fixed in the latest version of
vim, which is due to be installed in the Debian FTP archive:

vim-common_6.3-090+1_all.deb
  to pool/main/v/vim/vim-common_6.3-090+1_all.deb
vim-doc_6.3-090+1_all.deb
  to pool/main/v/vim/vim-doc_6.3-090+1_all.deb
vim-full_6.3-090+1_i386.deb
  to pool/main/v/vim/vim-full_6.3-090+1_i386.deb
vim-gnome_6.3-090+1_i386.deb
  to pool/main/v/vim/vim-gnome_6.3-090+1_i386.deb
vim-gtk_6.3-090+1_i386.deb
  to pool/main/v/vim/vim-gtk_6.3-090+1_i386.deb
vim-lesstif_6.3-090+1_i386.deb
  to pool/main/v/vim/vim-lesstif_6.3-090+1_i386.deb
vim-perl_6.3-090+1_i386.deb
  to pool/main/v/vim/vim-perl_6.3-090+1_i386.deb
vim-python_6.3-090+1_i386.deb
  to pool/main/v/vim/vim-python_6.3-090+1_i386.deb
vim-ruby_6.3-090+1_i386.deb
  to pool/main/v/vim/vim-ruby_6.3-090+1_i386.deb
vim-tcl_6.3-090+1_i386.deb
  to pool/main/v/vim/vim-tcl_6.3-090+1_i386.deb
vim_6.3-090+1.diff.gz
  to pool/main/v/vim/vim_6.3-090+1.diff.gz
vim_6.3-090+1.dsc
  to pool/main/v/vim/vim_6.3-090+1.dsc
vim_6.3-090+1_i386.deb
  to pool/main/v/vim/vim_6.3-090+1_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 322850 at bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Debian VIM Maintainers <pkg-vim-maintainers at lists.alioth.debian.org> (supplier of updated vim package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster at debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Fri, 30 Sep 2005 17:08:36 +0200
Source: vim
Binary: vim-full vim-lesstif vim-common vim-doc vim-gnome vim vim-gtk vim-perl vim-tiny vim-ruby vim-python vim-tcl
Architecture: source i386 all
Version: 1:6.3-090+1
Distribution: unstable
Urgency: low
Maintainer: Debian VIM Maintainers <pkg-vim-maintainers at lists.alioth.debian.org>
Changed-By: Debian VIM Maintainers <pkg-vim-maintainers at lists.alioth.debian.org>
Description: 
 vim        - Vi IMproved - enhanced vi editor
 vim-common - Vi IMproved - Common files
 vim-doc    - Vi IMproved - Documentation files
 vim-full   - Vi IMproved - full fledged version of the enhanced vi editor
 vim-gnome  - Vi IMproved - GNOME2 Version
 vim-gtk    - Vi IMproved - GTK2 Version
 vim-lesstif - Vi IMproved - LessTif Version
 vim-perl   - Vi IMproved, with perl scripting support
 vim-python - Vi IMproved, with python scripting support
 vim-ruby   - Vi IMproved, with ruby scripting support
 vim-tcl    - Vi IMproved, with tcl scripting support
Closes: 305677 308865 310974 315902 319420 322850 327074 328081 329292
Changes: 
 vim (1:6.3-090+1) unstable; urgency=low
 .
   * New upstream patches (087 to 090), see README.gz for details.
 .
   * Norbert Tretkowski <nobse at debian.org>:
     + Updated Standards-Version to 3.6.2 (no changes needed).
     + Exec vim with -f parameter in .desktop file. (closes: #329292)
 .
   * Stefano Zacchiroli <zack at debian.org>:
     + Set SHELL=/bin/bash in debian/rules since we use bashisms.
       (closes: #310974)
     + Added patch 140_muttrc.vim.diff, which improves muttrc
       highlighting. (closes: #327074)
     + Added patch 141_asterisk.vim.diff, which adds support for Asterisk
       configuration files sytnax highlighting. (closes: #322850)
     + Added patch 142_filetype.vim.diff, which extends dch highlighting
       to Debian NEWS files. (closes: #328081)
     + Added patch 143_eruby.vim.diff, which adds support for eruby
       highlighting. (closes: #315902)
     + Added patch 144_scripts.vim.diff, which adds support for
       highlighting tla diffs. (closes: #305677)
     + Added patch 145_fortran.vim.diff, which fixes a matchit bug with
       Fortran's "module procedure". (closes: #308865)
     + Added patch 203_zh_TW.UTF8.po.diff, which fixes a translation
       error in locale zh_TW.UTF-8. (closes: #319420)
Files: 
 fb9d3201818da72938e0ff1ab5d17706 1367 editors optional vim_6.3-090+1.dsc
 d95cadbaf8bfe6b1c1cdc05842d4d80f 294956 editors optional vim_6.3-090+1.diff.gz
 c6d4cc7641198ddd13e3f38bbfa9843b 1650880 editors optional vim-doc_6.3-090+1_all.deb
 6ae0c613a590fe61fa745a37f19b7783 3426744 editors optional vim-common_6.3-090+1_all.deb
 2fd2ca9cdaa517e7c61ef45464df2bbe 725746 editors optional vim_6.3-090+1_i386.deb
 b909f039fae4fe4c4b77ba68d3fc87f2 741042 editors extra vim-perl_6.3-090+1_i386.deb
 b8f1931c08f8c5946d78e523b64489ba 733550 editors extra vim-python_6.3-090+1_i386.deb
 b5d337029a3aa123ba4c05453c32fad6 729314 editors extra vim-ruby_6.3-090+1_i386.deb
 62a7dac6aff0104d7c9dd409f47d7ea6 693784 editors extra vim-tcl_6.3-090+1_i386.deb
 a0d792505ad973da263ba336bddf7ee9 686370 editors extra vim-gtk_6.3-090+1_i386.deb
 f5931b3cd8a46462289d4d07ff94726f 666664 editors extra vim-lesstif_6.3-090+1_i386.deb
 2f69a1addec374f182e31f66f21b8b06 688346 editors extra vim-gnome_6.3-090+1_i386.deb
 31b2770d6f02ab056479f6a53bcc9b63 762246 editors extra vim-full_6.3-090+1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDPbszr/RnCw96jQERAoR8AJ0b+YY/Nk8WhBnTNzVUuFg8ypiC8QCfW8H9
KEQpgxTIJRJ42h2nU7lcX68=
=POTN
-----END PGP SIGNATURE-----




More information about the pkg-vim-maintainers mailing list