Bug#99394: marked as done (Compression scripts for Nautilus)

Debian Bug Tracking System owner@bugs.debian.org
Wed Jul 6 22:03:14 UTC 2005


Your message dated Wed, 06 Jul 2005 23:48:36 +0200
with message-id <1120686516.4341.18.camel@mirchusko.localnet>
and subject line This feature is in nautilus 2.8
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; 31 May 2001 17:13:30 +0000
>From robepisc@freemail.it Thu May 31 12:13:30 2001
Return-path: <robepisc@freemail.it>
Received: from smtp3.libero.it [193.70.192.53] 
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 155W0j-0001vb-00; Thu, 31 May 2001 12:13:30 -0500
Received: from localhost (151.30.77.255) by smtp3.libero.it (5.5.025)
        id 3AE98228007B0FF4 for submit@bugs.debian.org; Thu, 31 May 2001 19:13:06 +0200
Received: from robepisc by localhost with local (MasqMail 0.0.12) id
 154o1l-1DN-00 for submit@bugs.debian.org; Tue, 29 May 2001 20:15:33
 +0200
Date: Tue, 29 May 2001 20:15:33 +0200
From: Roberto Piscitello <robepisc@freemail.it>
To: submit@bugs.debian.org
Subject: Compression scripts for Nautilus
Message-ID: <20010529201533.B4460@casa>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="+fexcqMh/evT6CrY"
Content-Transfer-Encoding: 8bit
X-Mailer: Balsa 1.0.pre5
Delivered-To: submit@bugs.debian.org


--+fexcqMh/evT6CrY
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit

Package: nautilus
Version: 1.0.3-2
Severity: wishlist

I send you 3 shell scripts to put into ~/Nautilus/scripts (maybe the first
time Nautilus is executed).
Then the following commands will appear under the Scripts menu:
 Compress (.bz2)
 Compress (.gz)
 Decompress

Remember to "chmod +x" them before.
Feel free to include them in the package if you think they can be useful.

Hi
	Roberto Piscitello

--+fexcqMh/evT6CrY
Content-Type: application/octet-stream; charset=us-ascii
Content-Disposition: attachment; filename=Decompress

#!/bin/sh
#
#  GUNZIP and BUNZIP2 wrapper for Nautilus Scripts menu.
#
# AUTHOR:  Roberto Piscitello <robepisc@freemail.it>
# DATE:    21 May 2001
# LICENSE: GPL
#

# We need gdialog or xmessage to output error messages
GDIALOG="/usr/bin/gdialog"
XMESSAGE="/usr/bin/X11/xmessage"

TMP_FILE=`tempfile`
IFS="
"

trap "rm -f $TMP_FILE" EXIT

for F in $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS; do
	cd `dirname $F`
	if [ `echo $F|awk '{ print substr($0,length($0)-2) }'` = "bz2" -o `echo $F|awk '{ print substr($0,length($0)-1) }'` = "bz" ]; then
		UZIP="bunzip2"
	else
		UZIP="gunzip"
	fi
	if ! $UZIP `basename $F` 2> $TMP_FILE; then
		# Some error happened: beep and show an error message
		echo -e "007"
		if [ -x $GDIALOG ]; then
			gdialog --title $UZIP --msgbox "`cat $TMP_FILE`." 20 100
		elif [ -x $XMESSAGE ]; then
			xmessage -buttons OK -file $TMP_FILE
		fi
	fi
done

--+fexcqMh/evT6CrY
Content-Type: application/octet-stream; charset=us-ascii
Content-Disposition: attachment; filename="Compress (.bz2)"

#!/bin/sh
#
#  BZIP2 wrapper for Nautilus Scripts menu.
#
# AUTHOR:  Roberto Piscitello <robepisc@freemail.it>
# DATE:    21 May 2001
# LICENSE: GPL
#

# We need gdialog or xmessage to output error messages
GDIALOG="/usr/bin/gdialog"
XMESSAGE="/usr/bin/X11/xmessage"

TMP_FILE=`tempfile`
IFS="
"

trap "rm -f $TMP_FILE" EXIT

for F in $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS; do
	cd `dirname $F`
	if ! bzip2 `basename $F` 2> $TMP_FILE; then
		# Some error happened: beep and show an error message
		echo -e "\007"
		if [ -x $GDIALOG ]; then
			gdialog --title bzip2 --msgbox "`cat $TMP_FILE`." 20 100
		elif [ -x $XMESSAGE ]; then
			xmessage -buttons OK -file $TMP_FILE
		fi
	fi
done

--+fexcqMh/evT6CrY
Content-Type: application/octet-stream; charset=us-ascii
Content-Disposition: attachment; filename="Compress (.gz)"

#!/bin/sh
#
#  GZIP wrapper for Nautilus Scripts menu.
#
# AUTHOR:   Roberto Piscitello <robepisc@freemail.it>
# DATE:     21 May 2001
# LINCENSE: GPL
#

# We need gdialog or xmessage to output error messages
GDIALOG="/usr/bin/gdialog"
XMESSAGE="/usr/bin/X11/xmessage"

TMP_FILE=`tempfile`
IFS="
"

trap "rm -f $TMP_FILE" EXIT

for F in $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS; do
	cd `dirname $F`
	if ! gzip `basename $F` 2> $TMP_FILE; then
		# Some error happened: beep and show an error message
		echo -e "\007"
		if [ -x $GDIALOG ]; then
			gdialog --title gzip --msgbox "`cat $TMP_FILE`." 20 100
		elif [ -x $XMESSAGE ]; then
			xmessage -buttons OK -file $TMP_FILE
		fi
	fi
done

--+fexcqMh/evT6CrY--


---------------------------------------
Received: (at 99394-done) by bugs.debian.org; 6 Jul 2005 21:48:41 +0000
>From josselin.mouette@ens-lyon.org Wed Jul 06 14:48:41 2005
Return-path: <josselin.mouette@ens-lyon.org>
Received: from utena.malsain.org (mirchusko.localnet) [82.238.217.224] 
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1DqHl3-0005Sz-00; Wed, 06 Jul 2005 14:48:41 -0700
Received: from joss by mirchusko.localnet with local (Exim 4.52)
	id 1DqHl0-0001be-4x
	for 99394-done@bugs.debian.org; Wed, 06 Jul 2005 23:48:38 +0200
Subject: This feature is in nautilus 2.8
From: Josselin Mouette <josselin.mouette@ens-lyon.org>
To: 99394-done@bugs.debian.org
Content-Type: text/plain; charset=ISO-8859-15
Content-Transfer-Encoding: quoted-printable
Date: Wed, 06 Jul 2005 23:48:36 +0200
Message-Id: <1120686516.4341.18.camel@mirchusko.localnet>
Mime-Version: 1.0
X-Mailer: Evolution 2.2.2 
Delivered-To: 99394-done@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-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no 
	version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

This bug is closed in the latest stable release.

Regards,
--=20
Josselin Mouette                  /\./\
                                                 pouet
                                                     pouet
=AB Sans puissance, la ma=EEtrise n'est rien. =BB





More information about the Pkg-gnome-maintainers mailing list