Your message dated Tue, 20 Sep 2005 07:47:03 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#90195: fixed in hexedit 1.2.11-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 maintonly) by bugs.debian.org; 19 Mar 2001 02:25:30 +0000
>From [EMAIL PROTECTED] Sun Mar 18 20:25:30 2001
Return-path: <[EMAIL PROTECTED]>
Received: from postoffice.princeton.edu (Princeton.EDU) [128.112.129.120] 
        by master.debian.org with esmtp (Exim 3.12 1 (Debian))
        id 14epMQ-0004xb-00; Sun, 18 Mar 2001 20:25:30 -0600
Received: from smtpserver1.Princeton.EDU (mail.Princeton.EDU [128.112.129.14])
        by Princeton.EDU (8.9.3/8.9.3) with ESMTP id VAA10351
        for <[EMAIL PROTECTED]>; Sun, 18 Mar 2001 21:25:29 -0500 (EST)
Received: from fedora.Princeton.EDU (fedora.Princeton.EDU [128.112.129.188])
        by smtpserver1.Princeton.EDU (8.9.3/8.9.3) with ESMTP id VAA09529
        for <[EMAIL PROTECTED]>; Sun, 18 Mar 2001 21:25:28 -0500 (EST)
Received: from localhost ([EMAIL PROTECTED])
        by fedora.Princeton.EDU (8.9.3/8.9.3) with ESMTP id VAA27037
        for <[EMAIL PROTECTED]>; Sun, 18 Mar 2001 21:25:59 -0500
Date: Sun, 18 Mar 2001 21:25:59 -0500 (EST)
From: "Kevin B. McCarty" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: Patch for color-coded characters in hexedit
Message-ID: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Delivered-To: [EMAIL PROTECTED]

Package: hexedit
Version: 1.1.0-3
Severity: wishlist

Hello,
Here is a small patch to the display.c file in hexedit which will cause
the program to display non-printable and extended ASCII characters in
color.  (Specifically, it will show null zeros in red, control characters
in green and extended characters in blue.)  Also, null zeros, tabs and
newlines will be displayed as the appropriately colored "0", "t" and "n"
respectively in the character display field.  IMO, color coding makes it
easier to see what I'm doing while editing text in binary files.

Of course, if you decide to apply the patch or send it upstream, feel free
to edit it to your own color preferences :)

Sincerely,
Kevin McCarty


130a131,136
>
>   start_color();
>   use_default_colors();
>   init_pair(1, COLOR_RED, -1);   /* null zeros */
>   init_pair(2, COLOR_GREEN, -1); /* control chars */
>   init_pair(3, COLOR_BLUE, -1);  /* extended chars */
170c176,184
<      if (i < max) ATTRPRINTW(bufferAttr[i], ("%02X", buffer[i]))
---
>      if (i < max) {
>        if (buffer[i] >= ' ' && buffer[i] < 127)
>          ATTRPRINTW(bufferAttr[i], ("%02X", buffer[i]))
>        else if (buffer[i] == 0)
>          ATTRPRINTW(bufferAttr[i] | COLOR_PAIR(1), ("00"))
>        else if (buffer[i] < ' ')
>          ATTRPRINTW(bufferAttr[i] | COLOR_PAIR(2), ("%02X", buffer[i]))
>        else ATTRPRINTW(bufferAttr[i] | COLOR_PAIR(3), ("%02X", buffer[i]))
>      }
176,177c190,197
<     else if (buffer[i] >= ' ' && buffer[i] < 127) ATTRPRINTW(bufferAttr[i], 
("%c", buffer[i]))
<     else ATTRPRINTW(bufferAttr[i], ("."))
---
>     else if (buffer[i] >= ' ' && buffer[i] < 127)
>       ATTRPRINTW(bufferAttr[i], ("%c", buffer[i]))
>     else if (buffer[i] == 0)
>       ATTRPRINTW(bufferAttr[i] | COLOR_PAIR(1), ("0"))
>     else if (buffer[i] < ' ')
>       ATTRPRINTW(bufferAttr[i] | COLOR_PAIR(2),
>                (buffer[i] == '\t' ? "t" : buffer[i] == '\n' ? "n" : "."))
>     else ATTRPRINTW(bufferAttr[i] | COLOR_PAIR(3), ("."))


---------------------------------------
Received: (at 90195-close) by bugs.debian.org; 20 Sep 2005 14:48:33 +0000
>From [EMAIL PROTECTED] Tue Sep 20 07:48:33 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EHjOh-0000VL-00; Tue, 20 Sep 2005 07:47:03 -0700
From: Florian Ernst <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#90195: fixed in hexedit 1.2.11-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 20 Sep 2005 07:47:03 -0700
Delivered-To: [EMAIL PROTECTED]
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

Source: hexedit
Source-Version: 1.2.11-1

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

hexedit_1.2.11-1.diff.gz
  to pool/main/h/hexedit/hexedit_1.2.11-1.diff.gz
hexedit_1.2.11-1.dsc
  to pool/main/h/hexedit/hexedit_1.2.11-1.dsc
hexedit_1.2.11-1_i386.deb
  to pool/main/h/hexedit/hexedit_1.2.11-1_i386.deb
hexedit_1.2.11.orig.tar.gz
  to pool/main/h/hexedit/hexedit_1.2.11.orig.tar.gz



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Florian Ernst <[EMAIL PROTECTED]> (supplier of updated hexedit 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 [EMAIL PROTECTED])


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

Format: 1.7
Date: Tue, 20 Sep 2005 16:23:18 +0200
Source: hexedit
Binary: hexedit
Architecture: source i386
Version: 1.2.11-1
Distribution: unstable
Urgency: low
Maintainer: Florian Ernst <[EMAIL PROTECTED]>
Changed-By: Florian Ernst <[EMAIL PROTECTED]>
Description: 
 hexedit    - view and edit files in hexadecimal or in ASCII
Closes: 90195
Changes: 
 hexedit (1.2.11-1) unstable; urgency=low
 .
   * New upstream release
     + allows colored display (upstream calls it "fruit salad" :)),
       now enabled during build (Closes: #90195)
   * debian/rules: better cleanup in clean target
   * debian/copyright: update FSF address
   * Standards-Version: 3.6.2, no changes required
Files: 
 eec6cf89b00bc3ec711ec1768081c98b 577 editors optional hexedit_1.2.11-1.dsc
 477a34f198ef1946b70481d721588e14 62180 editors optional 
hexedit_1.2.11.orig.tar.gz
 2f2ad2b4d9c7f5ea9bccab54b6f4251c 2993 editors optional hexedit_1.2.11-1.diff.gz
 f92a7373c0211f0576f34a151d03f510 25470 editors optional 
hexedit_1.2.11-1_i386.deb

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

iD8DBQFDMCBIs3U+TVFLPnwRAtOrAJ4hGj8AecKrb9crYz3J2C3ctYj6JwCfeCI/
16Gwcb6RWGn3O3FEu8jamJ4=
=mScY
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to