Bug#173916: svgalibg1: Chipset FBDev, colour map problems with image display

2002-12-22 Thread Matej Vela
"Beiad Ian Q. Dalton" <[EMAIL PROTECTED]> writes:

> Thumbnail selector has correct colours, but image view has wrong colour
> map.

In zgv, you mean?  I assume the thumbnail selector and the image view
have different resolutions?

> 8,16,24 framebuffer depth tested. 2.4.19 ATY framebuffer driver.
> 
> Maybe a directcolor/truecolor mismatch?

Does it work if you use `chipset R128' in /etc/vga/libvga.config?

Thanks,

Matej



Bug#174018: elm-me+: [patch] Bash completion of elm folders

2002-12-22 Thread Joe Nahmias
Package: elm-me+
Version: 2.4pl25ME+99f-1
Severity: wishlist
Tags: patch

Following is a patch to enable completion of elm folders. It uses only
"Priority: Required" debian packages [bash, coreutils, grep, sed].  For
example:

$ elm -f =de
debian-boot debian-mentors
$ elm -f =debian-

I currently have this installed as "/etc/bash_completion.d/elm", but
probably should be installed as '.../elm-me+' by the package.

Enjoy,
Joe Nahmias
[EMAIL PROTECTED]


= Begin: /etc/bash_completion.d/elm-me+ =
#!/bin/bash
# elm(1) mail folder completion.  See debian package "elm-me+".
# Written by Joe Nahmias <[EMAIL PROTECTED]>.

have elm &&
_elm()
{
local cur debug elmrc maildir temp

#   debug=true  # Uncomment to print debug messages.
elmrc=$HOME/.elm/elmrc
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}

# Are we looking for a mail folder (prefixed by equals '=')?
if [[ "$cur" == \=* ]]; then
[ -z $debug ] || echo "\nLooking for a folder in the maildir."

# Determine elm's Mail Folder directory (maildir).
maildir=$(cat $elmrc | grep -v ^# | grep maildir | tail -1)
if [ -z "$maildir" ]; then
# using default maildir
[ -z $debug ] || echo "maildir setting not found in 
elmrc."
maildir=$HOME/Mail
else
# parse maildir entry from elmrc
[ -z $debug ] || echo "Found maildir setting in elmrc: 
'$maildir'."
maildir=$(echo "$maildir" | sed -e 's/.*=[^\/\w]*//')
fi
[ -z $debug ] || echo "Using maildir='$maildir'."

# Match any file in $maildir begining with "$cur".
cur=$maildir/${cur:1}   # Chop off leading equals.
_filedir
[ -z $debug ] || echo "filedir found: '[EMAIL PROTECTED]'."

# String the leading $HOME/Mail on the matches.
temp=([EMAIL PROTECTED])
COMPREPLY=()
for i in [EMAIL PROTECTED]
do
COMPREPLY=([EMAIL PROTECTED] $(basename $i))
done
[ -z $debug ] || echo "Using COMPREPLY='[EMAIL PROTECTED]'."

fi

return 0
}
[ "$have" ] && complete -F _elm $default elm
= End: /etc/bash_completion.d/elm-me+ =

-- System Information
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux a750.nahmias.net 2.4.19 #1 Sat Oct 19 23:55:05 EDT 2002 i686
Locale: LANG=C, LC_CTYPE=C

Versions of packages elm-me+ depends on:
ii  libc62.2.5-14.3  GNU C Library: Shared libraries an
ii  libncurses5  5.2.20020112a-8 Shared libraries for terminal hand
ii  libssl0.9.6  0.9.6g-6SSL shared libraries
di  postfix [mail-transport- 1.1.11.0-3  A high-performance mail transport