Your message dated Sun, 25 Dec 2005 07:47:03 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#309434: fixed in perlpanel 1:0.9.1+cvs20051225-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; 17 May 2005 07:57:04 +0000
>From [EMAIL PROTECTED] Tue May 17 00:57:04 2005
Return-path: <[EMAIL PROTECTED]>
Received: from linux-geeks.de [213.133.99.198]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DXwwp-0004Au-00; Tue, 17 May 2005 00:57:03 -0700
Received: from localhost (localhost [127.0.0.1])
by linux-geeks.de (Postfix) with ESMTP id B80A949000D
for <[EMAIL PROTECTED]>; Tue, 17 May 2005 09:57:02 +0200 (CEST)
Received: from sibelius (dhcp9.rbg.informatik.tu-darmstadt.de [130.83.160.170])
by linux-geeks.de (Postfix) with ESMTP id B7B7249000B
for <[EMAIL PROTECTED]>; Tue, 17 May 2005 09:57:01 +0200 (CEST)
Received: from jaeger by sibelius with local (Exim 4.50)
id 1DXwwB-0002Kb-JA
for [EMAIL PROTECTED]; Tue, 17 May 2005 09:56:23 +0200
Content-Type: multipart/mixed; boundary="===============0884956922=="
MIME-Version: 1.0
From: Patrick Jaeger <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: perlpanel: ShellManager fails interacting with other terminals than
gnome-terminal or xterm
X-Mailer: reportbug 3.8
Date: Tue, 17 May 2005 09:56:23 +0200
Message-Id: <[EMAIL PROTECTED]>
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-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
This is a multi-part MIME message sent by reportbug.
--===============0884956922==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: perlpanel
Version: 1:0.9.1-1
Severity: important
Tags: patch
When using ShellManager.pm and other terminals than gnome-terminal or xterm
(i.e. Eterm and aterm) those will fail to execute the given ssh-command due to
wrong parsing of double-quotes. The attached patch fixed this for my problem.
Nevertheless I assume it is nothing more than a workaround for a bug which
probably exists in Eterm and aterm and not in perlpanel.
TIA
Patrick Jaeger
-- System Information:
Debian Release: 3.1
APT prefers testing
APT policy: (900, 'testing'), (800, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.4-1.7-sibelius-sibelius
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Versions of packages perlpanel depends on:
ii hicolor-icon-theme 0.8-1 default fallback theme for FreeDes
ii libdate-manip-perl 5.42a-3 a perl library for manipulating da
ii libglib-perl 1:1.081-1 Perl interface to the GLib and GOb
ii libgnome2-wnck-perl 0.10-1 Perl interface to the Window Navig
ii libgtk2-gladexml-perl 1.003-1 Perl interface to use user interfa
ii libgtk2-perl 1:1.081-1 Perl interface to the 2.x series o
ii libgtk2.0-0 2.6.4-1 The GTK+ graphical user interface
ii liblocale-gettext-perl 1.01-17 Using libc functions for internati
ii libx11-freedesktop-desktopent 0.04-1 perl interface to Freedesktop.org
ii libxml-parser-perl 2.34-4 Perl module for parsing XML files
ii libxml-simple-perl 2.14-1 Perl module for reading and writin
ii perl 5.8.4-8 Larry Wall's Practical Extraction
-- no debconf information
--===============0884956922==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="ShellManager.pm.patch"
--- ShellManager.pm.bak 2005-05-17 09:44:47.646440016 +0200
+++ ShellManager.pm 2005-05-17 09:45:26.570522656 +0200
@@ -76,8 +76,13 @@
$session,
PerlPanel::get_applet_pbf('shellmanager',
PerlPanel::menu_icon_size),
sub {
- my $cmd = sprintf('%s -e "ssh -p %d
[EMAIL PROTECTED]" &', $self->{config}->{terminal},
$connections{$session}->{port}, $connections{$session}->{user},
$connections{$session}->{host});
- system($cmd);
+ my $cmd;
+ if($self->{config}->{terminal} =~
/gnome-terminal/i){
+ $cmd = sprintf('%s -e "ssh -p %d [EMAIL
PROTECTED]" &', $self->{config}->{terminal}, $connections{$session}->{port},
$connections{$session}->{user}, $connections{$session}->{host});
+ }else{
+ $cmd = sprintf('%s -e ssh -p %d [EMAIL
PROTECTED] &', $self->{config}->{terminal}, $connections{$session}->{port},
$connections{$session}->{user}, $connections{$session}->{host});
+ }
+ system($cmd);
},
));
}
@@ -203,7 +208,12 @@
host => lc($host),
port => $port,
});
- my $cmd = sprintf('%s -e "ssh -p %d [EMAIL PROTECTED]"
&', $self->{config}->{terminal}, $port, $user, $host);
+ my $cmd;
+ if($self->{config}->{terminal} =~ /gnome-terminal/i){
+ $cmd = sprintf('%s -e "ssh -p %d [EMAIL PROTECTED]"
&', $self->{config}->{terminal}, $port, $user, $host);
+ }else{
+ $cmd = sprintf('%s -e ssh -p %d [EMAIL PROTECTED]
&', $self->{config}->{terminal}, $port, $user, $host);
+ }
system($cmd);
$self->create_menu;
PerlPanel::save_config;
--===============0884956922==--
---------------------------------------
Received: (at 309434-close) by bugs.debian.org; 25 Dec 2005 15:51:00 +0000
>From [EMAIL PROTECTED] Sun Dec 25 07:51:00 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
id 1EqY5P-0000g6-Mt; Sun, 25 Dec 2005 07:47:03 -0800
From: Marc 'HE' Brockschmidt <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.65 $
Subject: Bug#309434: fixed in perlpanel 1:0.9.1+cvs20051225-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 25 Dec 2005 07:47:03 -0800
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: perlpanel
Source-Version: 1:0.9.1+cvs20051225-1
We believe that the bug you reported is fixed in the latest version of
perlpanel, which is due to be installed in the Debian FTP archive:
perlpanel_0.9.1+cvs20051225-1.diff.gz
to pool/main/p/perlpanel/perlpanel_0.9.1+cvs20051225-1.diff.gz
perlpanel_0.9.1+cvs20051225-1.dsc
to pool/main/p/perlpanel/perlpanel_0.9.1+cvs20051225-1.dsc
perlpanel_0.9.1+cvs20051225-1_all.deb
to pool/main/p/perlpanel/perlpanel_0.9.1+cvs20051225-1_all.deb
perlpanel_0.9.1+cvs20051225.orig.tar.gz
to pool/main/p/perlpanel/perlpanel_0.9.1+cvs20051225.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.
Marc 'HE' Brockschmidt <[EMAIL PROTECTED]> (supplier of updated perlpanel
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: Sun, 25 Dec 2005 16:19:42 +0100
Source: perlpanel
Binary: perlpanel
Architecture: source all
Version: 1:0.9.1+cvs20051225-1
Distribution: unstable
Urgency: low
Maintainer: Marc 'HE' Brockschmidt <[EMAIL PROTECTED]>
Changed-By: Marc 'HE' Brockschmidt <[EMAIL PROTECTED]>
Description:
perlpanel - lean menu and launcher panel written in Perl and Gtk2
Closes: 309434 313812
Changes:
perlpanel (1:0.9.1+cvs20051225-1) unstable; urgency=low
.
* CVS snapshot:
+ Remove some local patches that were applied upstream:
- debian/patches/23_graphical_load_monitor.dpatch
- debian/patches/22_hide_empty_notification_area.dpatch
+ Makes it possible to user terminals other than gnome-terminal in the
Shell Manager applet. Patch from Patrick Jaeger, thanks! (Closes:
#309434)
+ Fixed german localisation upstream, partially with a patch from
Jens Seidel. Thanks! (Closes: #313812)
.
* debian/control:
+ Bumped Standards-Version to 3.6.2 (no changes needed)
.
perlpanel (1:0.9.1-1+patch2) UNRELEASED; urgency=low
.
* debian/patches/23_graphical_load_monitor.dpatch: Add graphical load monitor
.
perlpanel (1:0.9.1-1+patch1) UNRELEASED; urgency=low
.
* debian/patches/22_hide_empty_notification_area.dpatch: Hide Notification
area if not needed and configured to do so.
Files:
9e48b4803380c8b025f831cda653d640 703 x11 optional
perlpanel_0.9.1+cvs20051225-1.dsc
9b888485c4c7eea1f84e9656e5144916 503463 x11 optional
perlpanel_0.9.1+cvs20051225.orig.tar.gz
538a7682d96d55c180fd2060856d1133 7564 x11 optional
perlpanel_0.9.1+cvs20051225-1.diff.gz
9cf4d6fbcb2e5057ad30e663a7ec8b81 458662 x11 optional
perlpanel_0.9.1+cvs20051225-1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
iD8DBQFDrrwMmO5zOp3h7rERAmSGAJ9v7FQ//CIAW3eid56pDz07qy0bpQCfRM8f
ebAikYOO4NZlVycV4CBLL3A=
=lD2k
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]