Re: [Bash-completion-devel] scp remote path completion broken?

2009-09-16 Thread David Paleino
On Wed, 16 Sep 2009 23:34:51 +0200, Freddy Vulto wrote:

> I'm looking further into _get_cword, but COMP_CWORDS appears to behave
> differently depending on the bash-version.

Can this be because of: (http://tiswww.case.edu/php/chet/bash/NEWS)

i.  The programmable completion code now uses the same set of characters as
readline when breaking the command line into a list of words.

> Can other people confirm this?  Try this script:
> 
> ---8<--
> _cword() {
> echo
> echo COMP_CWORD: $COMP_CWORD
> echo COMP_CWORDS:
> for ((i=0; i < ${#comp_wor...@]}; i++)); do
> echo $i: "${COMP_WORDS[$i]}"
> done
> }
> complete -F _cword a
> ---8<--
> 
> On bash-4 I get:
> 
> $ a 'b c
> COMP_CWORD: 3
> COMP_CWORDS:
> 0: a
> 1: '
> 2: b
> 3: c

Confirmed.

> Whereas on bash-3, bash-2 I get:
> 
> $ a 'b c
> COMP_CWORD: 1
> COMP_CWORDS:
> 0: a
> 1: 'b c
> 
> Is this because of bash-4 or because of some other setting?

I can't confirm this (have a bash-3 system, but with an older bash-completion
too, and unable to copy it over there)

David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature
___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


Re: [Bash-completion-devel] scp remote path completion broken?

2009-09-16 Thread Freddy Vulto
I'm looking further into _get_cword, but COMP_CWORDS appears to behave
differently depending on the bash-version.  Can other people confirm
this?  Try this script:

---8<--
_cword() {
echo
echo COMP_CWORD: $COMP_CWORD
echo COMP_CWORDS:
for ((i=0; i < ${#comp_wor...@]}; i++)); do
echo $i: "${COMP_WORDS[$i]}"
done
}
complete -F _cword a
---8<--

On bash-4 I get:

$ a 'b c
COMP_CWORD: 3
COMP_CWORDS:
0: a
1: '
2: b
3: c

Whereas on bash-3, bash-2 I get:

$ a 'b c
COMP_CWORD: 1
COMP_CWORDS:
0: a
1: 'b c

Is this because of bash-4 or because of some other setting?

___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


Re: [Bash-completion-devel] [Bash-completion-commits] [SCM] bash-completion branch, master, updated. 0b35bdb5afbae3ee01452e7a562902e9c960fa5b

2009-09-16 Thread David Paleino
On Wed, 16 Sep 2009 21:27:32 +0200, Guillaume Rousse wrote:

> David Paleino a écrit :
> > The following commit has been merged in the master branch:
> > commit 0b35bdb5afbae3ee01452e7a562902e9c960fa5b
> > Author: David Paleino 
> > Date:   Wed Sep 16 20:33:53 2009 +0200
> > 
> > Fixed obvious brokenness (typos) in contrib/mdadm
> > 
> > diff --git a/CHANGES b/CHANGES
> > index 382a2e3..3b08b10 100644
> > --- a/CHANGES
> > +++ b/CHANGES
> > @@ -35,6 +35,7 @@ bash-completion (1.x)
> >* Added m4v completion to mplayer (Debian: #504213)
> >* Improve qemu completion (Debian: #534901)
> >* Added sshfs completion (shares the same as scp) (Debian: #545978)
> > +  * Fixed obvious brokenness (typos) in contrib/mdadm
> 
> It seems I can't spell mdadm correctly..

No problem :)

> Anyway, if the goal of the CHANGES files is to advertise final user of 
> changes between two releases of the project (by opposition to just 
> concatenating git commit message), I don't think such kind of changes is 
> relly relevant.

Oh, well, that's just an habit in everything I do :)

David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature
___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


Re: [Bash-completion-devel] [Bash-completion-commits] [SCM] bash-completion branch, master, updated. 0b35bdb5afbae3ee01452e7a562902e9c960fa5b

2009-09-16 Thread Guillaume Rousse

David Paleino a écrit :

The following commit has been merged in the master branch:
commit 0b35bdb5afbae3ee01452e7a562902e9c960fa5b
Author: David Paleino 
Date:   Wed Sep 16 20:33:53 2009 +0200

Fixed obvious brokenness (typos) in contrib/mdadm

diff --git a/CHANGES b/CHANGES
index 382a2e3..3b08b10 100644
--- a/CHANGES
+++ b/CHANGES
@@ -35,6 +35,7 @@ bash-completion (1.x)
   * Added m4v completion to mplayer (Debian: #504213)
   * Improve qemu completion (Debian: #534901)
   * Added sshfs completion (shares the same as scp) (Debian: #545978)
+  * Fixed obvious brokenness (typos) in contrib/mdadm

It seems I can't spell mdadm correctly..

Anyway, if the goal of the CHANGES files is to advertise final user of 
changes between two releases of the project (by opposition to just 
concatenating git commit message), I don't think such kind of changes is 
relly relevant.


___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 524190

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 524190 confirmed fixed-upstream pending
Bug #524190 [bash-completion] bash-completion: SSH completion of know hosts 
doesn't handle multiple host files
Bug #525293 [bash-completion] bash-completion: scp completion clutters screen 
with error "permission denied"
Added tag(s) pending.
Added tag(s) pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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


___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Bug#540329: Closing the bug

2009-09-16 Thread David Paleino
Version: 1:1.0-3

Hello,
I'm closing the bug since it has already been dealt with.

David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature
___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Bug#540329: marked as done (bash-completion: complete on invoke-rc.d, not only service)

2009-09-16 Thread Debian Bug Tracking System
Your message dated Wed, 16 Sep 2009 14:33:27 +0200
with message-id <20090916143327.46d54...@pingu>
and subject line Closing the bug
has caused the Debian Bug report #540329,
regarding bash-completion: complete on invoke-rc.d, not only service
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
540329: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540329
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: bash-completion
Severity: wishlist
Version: 20080705

Hello.

This patch adds completion on invoke-rc.d (same as for service).

--
WBR, Andrew

--- /etc/bash_completion
+++ /etc/bash_completion
@@ -622,7 +622,7 @@
 
 	# don't complete for things like killall, ssh and mysql if it's
 	# the standalone command, rather than the init script
-	[[ ${COMP_WORDS[0]} != @(*init.d/!(functions|~)|service) ]] && return 0
+	[[ ${COMP_WORDS[0]} != @(*init.d/!(functions|~)|service|invoke-rc.d) ]] && return 0
 
 	# don't complete past 2nd token
 	[ $COMP_CWORD -gt 2 ] && return 0
@@ -630,7 +630,7 @@
 	[ -d /etc/rc.d/init.d ] && sysvdir=/etc/rc.d/init.d \
 || sysvdir=/etc/init.d
 
-	if [[ $COMP_CWORD -eq 1 ]] && [[ $prev == "service" ]]; then
+	if [[ $COMP_CWORD -eq 1 ]] && [[ $prev == @(service|invoke-rc.d) ]]; then
 		_services
 	else
 		COMPREPLY=( $( compgen -W '`sed -ne "y/|/ /; \

--- End Message ---
--- Begin Message ---
Version: 1:1.0-3

Hello,
I'm closing the bug since it has already been dealt with.

David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature
--- End Message ---
___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 536815

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 536815 confirmed wontfix upstream
Bug #536815 [bash-completion] postgresql-client-8.3: local db tab completion 
for psql
Added tag(s) upstream, confirmed, and wontfix.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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


___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 535585

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 535585 confirmed fixed-upstream pending
Bug #535585 [bash-completion] ssh: only sees foo in 'Host foo bar baz' in 
.ssh/config
Added tag(s) confirmed, pending, and fixed-upstream.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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

___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 545978

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 545978 confirmed fixed-upstream pending
Bug #545978 [bash-completion] bash-completion: completion for sshfs
Added tag(s) confirmed, pending, and fixed-upstream.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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

___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Bug#523611: marked as done (bash-completion for man should recognise -l)

2009-09-16 Thread Debian Bug Tracking System
Your message dated Wed, 16 Sep 2009 13:53:21 +0200
with message-id <20090916135321.1a13c...@pingu>
and subject line Re: bash-completion for man should recognise -l
has caused the Debian Bug report #523611,
regarding bash-completion for man should recognise -l
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
523611: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523611
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bash
Version: 3.2-4
Severity: normal


After "man -l" bash-completion still tries to insert executable names,
when it should rather be offering file names as normal.

-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages bash depends on:
ii  base-files5  Debian base system miscellaneous f
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libncurses5   5.7+20081213-1 shared libraries for terminal hand

Versions of packages bash recommends:
ii  bash-completion   20080705   programmable completion for the ba

Versions of packages bash suggests:
pn  bash-doc   (no description available)

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 1:1.0-3

Hello,
I'm closing this bug since it has been fixed somewhen in the past (can't get
the exact commit, since the file has been moved around in the repository
after the fix had been pushed), and is no more reproducible with the package
currently available in Debian.

Kindly,
David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature
--- End Message ---
___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Bug#523611: bash-completion for man should recognise -l

2009-09-16 Thread David Paleino
Version: 1:1.0-3

Hello,
I'm closing this bug since it has been fixed somewhen in the past (can't get
the exact commit, since the file has been moved around in the repository
after the fix had been pushed), and is no more reproducible with the package
currently available in Debian.

Kindly,
David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature
___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 545411

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 545411 confirmed
Bug #545411 [bash-completion] "man cmd subcmd" now works; please update 
bash-completion accordingly
Added tag(s) confirmed.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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


___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Bug#417864: debconf: bash completion does not work with dpkg-reconfigure

2009-09-16 Thread David Paleino
Version: 1:1.0-3

Hello,
seems like this has been fixed in more recent versions of bash-completion -- I
can't reproduce it with 1.0, thus closing the bug.

Kindly,
David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature
___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 544024

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 544024 fixed-upstream confirmed pending
Bug #544024 [bash-completion] bash-completion: cannot complete path if path 
component contains spaces
Added tag(s) confirmed, pending, and fixed-upstream.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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

___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Bug#417864: marked as done (debconf: bash completion does not work with dpkg-reconfigure)

2009-09-16 Thread Debian Bug Tracking System
Your message dated Wed, 16 Sep 2009 13:03:49 +0200
with message-id <20090916130349.6a6a1...@pingu>
and subject line Re: debconf: bash completion does not work with 
dpkg-reconfigure
has caused the Debian Bug report #417864,
regarding debconf: bash completion does not work with dpkg-reconfigure
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
417864: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=417864
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: debconf
Version: 1.5.11
Severity: normal


Consider the attached .bashrc. Using this file, If I do

$ /usr/sbin/dpkg-reconfigure apt-

it expands to

$ /usr/sbin/dpkg-reconfigure apt-^[[00m^[[00m

which is not correct.

The .bashrc is the pristine bashrc that a new user would get plus the following
lines

if [ ! -z "$PS1" ]; then
  function grep(){ command grep --color=always "$@"; }
fi

Please reassign if you think the bug belongs to the grep package.

thanks
raju

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages debconf depends on:
ii  debconf-i18n  1.5.11 full internationalization support 
ii  perl-base 5.8.8-7The Pathologically Eclectic Rubbis

Versions of packages debconf recommends:
ii  apt-utils   0.6.46.4-0.1 APT utility programs

-- debconf information:
  debconf-apt-progress/preparing:
  debconf-apt-progress/title:
  debconf-apt-progress/info:
  debconf-apt-progress/media-change:
  debconf/frontend: Dialog
  debconf/priority: high
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
[ -z "$PS1" ] && return

# don't put duplicate lines in the history. See bash(1) for more options
export HISTCONTROL=ignoredups

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color)

PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\...@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$
 '
;;
*)
PS1='${debian_chroot:+($debian_chroot)}...@\h:\w\$ '
;;
esac

# Comment in the above and uncomment this below for a color prompt
#PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\...@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$
 '

# If this is an xterm set the title to u...@host:dir
case "$TERM" in
xterm*|rxvt*)
PROMPT_COMMAND='echo -ne "\033]0;${us...@${hostname}: ${PWD/$HOME/~}\007"'
;;
*)
;;
esac

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

#if [ -f ~/.bash_aliases ]; then
#. ~/.bash_aliases
#fi

# enable color support of ls and also add handy aliases
if [ "$TERM" != "dumb" ]; then
eval "`dircolors -b`"
alias ls='ls --color=auto'
#alias dir='ls --color=auto --format=vertical'
#alias vdir='ls --color=auto --format=long'
fi

# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi

if [ ! -z "$PS1" ]; then
  function grep(){ command grep --color=always "$@"; }
fi
--- End Message ---
--- Begin Message ---
Version: 1:1.0-3

Hello,
seems like this has been fixed in more recent versions of bash-completion -- I
can't reproduce it with 1.0, thus closing the bug.

Kindly,
David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature
--- End Message ---
___

[Bash-completion-devel] Processed: tagging 534901

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 534901 confirmed pending fixed-upstream
Bug #534901 [bash-completion] bash-completion: qemu completion misses 
-kernel-kqemu and other options
Added tag(s) confirmed, fixed-upstream, and pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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

___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 518561

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 518561 confirmed pending
Bug #518561 [bash-completion] bash-completion: does not include hosts "known" 
through mDNS/DNS-SD (avahi)
Added tag(s) confirmed and pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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

___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 540033

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 540033 confirmed pending
Bug #540033 [bash-completion] bash-completion: xine (and probably other video 
players) doesn't complete ogv files
Added tag(s) confirmed and pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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

___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 504213, tagging 518561, tagging 545743, tagging 540033

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 504213 fixed-upstream
Bug #504213 [bash-completion] bash_completion: mplayer code wont complete .m4v 
files
Added tag(s) fixed-upstream.
> tags 518561 fixed-upstream
Bug #518561 [bash-completion] bash-completion: does not include hosts "known" 
through mDNS/DNS-SD (avahi)
Ignoring request to alter tags of bug #518561 to the same tags previously set
> tags 545743 fixed-upstream
Bug #545743 [bash-completion] bash-completion: sbcl completion and 
file/directory-name argument
Added tag(s) fixed-upstream.
> tags 540033 fixed-upstream
Bug #540033 [bash-completion] bash-completion: xine (and probably other video 
players) doesn't complete ogv files
Added tag(s) fixed-upstream.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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


___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 545743

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 545743 confirmed pending
Bug #545743 [bash-completion] bash-completion: sbcl completion and 
file/directory-name argument
Added tag(s) confirmed and pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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

___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Processed: tagging 504213

2009-09-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 504213 confirmed pending
Bug #504213 [bash-completion] bash_completion: mplayer code wont complete .m4v 
files
Added tag(s) confirmed and pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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

___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel


[Bash-completion-devel] Contact person: Dr Allen Uba

2009-09-16 Thread Mr.Marti Freeman
Hello Dear,

I have Paid the fee for your Cheque Draft but the manager of Eko Bank Benin 
told me that before the check will get to you that it will expire.So i told him 
to cash $4.5,000,00 all the necessary arrangement of delivering the $4.5,000,00 
in cash was made with DHL delivering company.This is the information they need 
to delivery your package to you, contact them now.Bellow is the DHL delivering 
information's

Contact person: Dr Allen Uba
(Delivery department managing director)
E-mail:( dhl.courier01sifymail.com 
Contact numbers;+229-93-890424 or +22996282461 
 
Note,that the entire fee has been paid for your delivery so it's probably 
($120.00) that remains that you will send to the DHL Courier Service Benin 
Republic which is their Security keeping fee of your consignment box so far.You 
are advice to forward all your mailling information to them immediately you 
receive this mail.

Your country:.
Your full name:
Home address:...
Mobil phone number:..
Office number:...
 
In addition to what i said earlier please, don't disclose the content of the 
box to them to avoid delay and finally endeavor to indicate this code 
number(GL-14160) this code will prove that you are the rightful owner of the 
box deposited VIP box in their company, use it as your subject when your 
contacting them.

Thanks and remain bless.
Mr Marti Freeman





  ___
Bash-completion-devel mailing list
Bash-completion-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-devel