[Bug 645648] Re: network-manager updates /etc/hosts, breaks hostname -f

2011-01-26 Thread Malte Helmert
I have the same issue. As discussed in bug 663597, setting
/etc/domainname doesn't work for me; hostname -f still reports the wrong
result.

I now worked around this by putting the FQDN into /etc/hostname (rather
than just the plain hostname), and so far I've had no problem with this.
However, according to man hostname, setting /etc/hostname to the FQDN
is wrong:

 /etc/hostname  This  file  should only contain the hostname and not the
   full FQDN.

but it's the only way I could get hostname -f to work.

(BTW, If someone could have a look at bug 663597 and change its status
from opinion to something else or at least give a reason why that
status makes sense, that would be appreciated.)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/645648

Title:
  network-manager updates /etc/hosts, breaks hostname -f

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 688463] [NEW] ggcov fails to install in Ubuntu 10.10 (broken dependency)

2010-12-10 Thread Malte Helmert
Public bug reported:

Binary package hint: ggcov

On Ubuntu 10.10, ggcov fails to install since it requires an older
version of binutils than the one that is present.

Shell transcript:

$ lsb_release -rd
Description:Ubuntu 10.10
Release:10.10
$ sudo apt-get install ggcov
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 ggcov : Depends: binutils ( 2.20.51.20100519) but 2.20.51.20100908-0ubuntu2 
is to be installed
E: Broken packages

** Affects: ggcov (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/688463

Title:
  ggcov fails to install in Ubuntu 10.10 (broken dependency)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 673677] Re: Displaying certain issues fails with Templating error

2010-11-11 Thread Malte Helmert
Hmmm, Somehow the indentation in the diff is messed up. The if lines
should of course be indented to the same depth as the preceding lines.

-- 
Displaying certain issues fails with Templating error
https://bugs.launchpad.net/bugs/673677
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 663597] Re: NetworkManager updates /etc/hosts in a way that breaks hostname --fqdn

2010-11-10 Thread Malte Helmert
No reaction? :-(

-- 
NetworkManager updates /etc/hosts in a way that breaks hostname --fqdn
https://bugs.launchpad.net/bugs/663597
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 673677] [NEW] Displaying certain issues fails with Templating error

2010-11-10 Thread Malte Helmert
Public bug reported:

Binary package hint: roundup

Since lucid (and still in maverick, but not in karmic), one issue in our
internal issue tracker fails to display, apparently due to a date that
is messed up in some way. I also can't edit it via the command-line
admin interface, so in the end I had to edit
/usr/lib/pymodules/python2.6/roundup/date.py as follows to work around
the problem:


--- /home/helmert/tmp/date_orig.py  2010-11-10 19:39:27.0 +0100
+++ /usr/lib/pymodules/python2.6/roundup/date.py2010-11-10 
19:34:07.0 +0100
@@ -148,6 +148,8 @@
 def _utc_to_local(y,m,d,H,M,S,tz):
 TZ = get_timezone(tz)
 frac = S - int(S)
+if S  0: S = 0 ## [Malte]
+if S  59: S = 59   ## [Malte]
 dt = datetime.datetime(y, m, d, H, M, int(S), tzinfo=UTC)
 y,m,d,H,M,S = dt.astimezone(TZ).timetuple()[:6]
 S = S + frac


I don't know why the date is corrupted, but the issue tracker is not special in 
any way (classic template, no external tools messing with it, no 
customizations).

This only happens for very few issues, but with those it happens
consistently.

Here's the traceback that is emailed to the admins:

  Templating Error

*type 'exceptions.ValueError'*: second must be in 0..59

Debugging information follows

   1. A problem occurred in your template issue.item.html.

Full traceback:

Traceback (most recent call last):
   File /usr/lib/pymodules/python2.6/roundup/cgi/client.py, line 1042, in 
renderContext
 result = pt.render(self, None, None, **args)
   File /usr/lib/pymodules/python2.6/roundup/cgi/templating.py, line 343, in 
render
 getEngine().getContext(c), output, tal=1, strictinsert=0)()
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
192, in __call__
 self.interpret(self.program)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
236, in interpret
 handlers[opcode](self, args)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
666, in do_useMacro
 self.interpret(macro)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
236, in interpret
 handlers[opcode](self, args)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
411, in do_optTag_tal
 self.do_optTag(stuff)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
396, in do_optTag
 return self.no_tag(start, program)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
391, in no_tag
 self.interpret(program)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
236, in interpret
 handlers[opcode](self, args)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
689, in do_defineSlot
 self.interpret(slot)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
236, in interpret
 handlers[opcode](self, args)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
632, in do_condition
 self.interpret(block)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
236, in interpret
 handlers[opcode](self, args)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
632, in do_condition
 self.interpret(block)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
236, in interpret
 handlers[opcode](self, args)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
608, in do_loop_tal
 self.interpret(block)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
236, in interpret
 handlers[opcode](self, args)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
411, in do_optTag_tal
 self.do_optTag(stuff)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
396, in do_optTag
 return self.no_tag(start, program)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
391, in no_tag
 self.interpret(program)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
236, in interpret
 handlers[opcode](self, args)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
555, in do_insertTranslation
 xlated_msgid = self.translate(msgid, default, i18ndict, obj)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
618, in translate
 msgid, i18ndict, default=default)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TranslationService.py, line 
90, in translate
 target_language=target_language)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TranslationService.py, line 
34, in translate
 _msg = TALInterpreter.interpolate(_msg, mapping)
   File /usr/lib/pymodules/python2.6/roundup/cgi/TAL/TALInterpreter.py, line 
72, in interpolate
 subst = ustr(mapping[var])
   File 

[Bug 469013] Re: roundup writes to stderr on launch, causes (spurious?) crash report after login

2010-11-10 Thread Malte Helmert
This does not appear to happen any more in maverick, so maybe this one
can be closed.

-- 
roundup writes to stderr on launch, causes (spurious?) crash report after login
https://bugs.launchpad.net/bugs/469013
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 663597] Re: NetworkManager updates /etc/hosts in a way that breaks hostname --fqdn

2010-10-28 Thread Malte Helmert
Dear Giovanni, I don't understand why this is marked as opinion.
What is the other opinion? Should I not expect hostname -f to work?
Maybe I missed a discussion elsewhere?

-- 
NetworkManager updates /etc/hosts in a way that breaks hostname --fqdn
https://bugs.launchpad.net/bugs/663597
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 663597] [NEW] NetworkManager updates /etc/hosts in a way that breaks hostname --fqdn

2010-10-19 Thread Malte Helmert
Public bug reported:

Binary package hint: network-manager

Since the upgrade to maverick, my machine doesn't know it's FQDN any
more:

$ hostname --fqdn
alfons
$ hostname --all-fqdns
alfons 
$ python -c import socket; print socket.getfqdn()
localhost6.localdomain6

In all three cases, I'd be expecting the answer alfons.informatik.uni-
freiburg.de instead, which I got before (with lucid).

I looked around a bit and found out that a change to /etc/hosts by 
NetworkManager is causing this.
My /etc/hosts looks like this:

132.230.166.41  alfons  # Added by NetworkManager
127.0.0.1   localhost.localdomain   localhost
::1 alfons  localhost6.localdomain6 localhost6

# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

It was modified to look like this by NetworkManager. I tried manually
changing it to the following:

127.0.0.1 localhost

# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

after which I get the expected results:

$ hostname --fqdn
alfons.informatik.uni-freiburg.de
$ hostname --all-fqdn
alfons.informatik.uni-freiburg.de 
$ python -c import socket; print socket.getfqdn()
alfons.informatik.uni-freiburg.de

But unfortunately after the next reboot (or reconnect to the network),
/etc/hosts is changed again and the problem returns.


Questions:
1) Is there any way to keep NetworkManager from doing this?
2) Failing that, is there any way to find out my machine's FQDN despite 
NetworkManager's behaviour?

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: network-manager 0.8.1+git.20100810t184654.ab580f4-0ubuntu2
ProcVersionSignature: Ubuntu 2.6.35-22.34-generic-pae 2.6.35.4
Uname: Linux 2.6.35-22-generic-pae i686
Architecture: i386
CRDA: Error: [Errno 2] No such file or directory
Date: Wed Oct 20 01:12:24 2010
Gconf:
 
IfupdownConfig:
 auto lo
 iface lo inet loopback
IpRoute:
 132.230.166.0/24 dev eth0  proto kernel  scope link  src 132.230.166.41  
metric 1 
 169.254.0.0/16 dev eth0  scope link  metric 1000 
 default via 132.230.166.254 dev eth0  proto static
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
Keyfiles: Error: [Errno 2] No such file or directory
ProcEnviron:
 LC_TIME=de_DE.UTF-8
 PATH=(custom, user)
 LANG=en_US.utf8
 SHELL=/bin/bash
 LC_PAPER=de_DE.UTF-8
RfKill:
 
SourcePackage: network-manager
WpaSupplicantLog:

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 maverick

-- 
NetworkManager updates /etc/hosts in a way that breaks hostname --fqdn
https://bugs.launchpad.net/bugs/663597
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 663597] Re: NetworkManager updates /etc/hosts in a way that breaks hostname --fqdn

2010-10-19 Thread Malte Helmert


-- 
NetworkManager updates /etc/hosts in a way that breaks hostname --fqdn
https://bugs.launchpad.net/bugs/663597
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 663597] Re: NetworkManager updates /etc/hosts in a way that breaks hostname --fqdn

2010-10-19 Thread Malte Helmert
Looks like bug 645648 is about the same thing.

Setting /etc/domainname, as suggested there, doesn't make any difference
for me.

-- 
NetworkManager updates /etc/hosts in a way that breaks hostname --fqdn
https://bugs.launchpad.net/bugs/663597
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 544639] Re: evince doesn't remember the window size

2010-08-05 Thread Malte Helmert
I'm affected by this bug; I have to set the window size and deselect
Continuous for every new PDF.

Is this a regression?

My evince version seems to be newer than the one containing the patch:

# apt-cache show evince
Package: evince
Priority: optional
Section: gnome
Installed-Size: 6368
Maintainer: Ubuntu Desktop Team ubuntu-desk...@lists.ubuntu.com
Original-Maintainer: Marc 'HE' Brockschmidt h...@debian.org
Architecture: i386
Version: 2.30.3-0ubuntu1.1
Replaces: evince-gtk
Provides: djvu-viewer, evince-gtk, pdf-viewer, postscript-viewer
Depends: libatk1.0-0 (= 1.29.3), libc6 (= 2.7), libcairo2 (= 1.6.0), 
libdbus-1-3 (= 1.0.2), libdbus-glib-1-2 (= 0.78), libdjvulibre21 (= 3.5.22), 
libevdocument2 (= 2.29.5), libevview2 (= 2.29.5), libfontconfig1 (= 2.8.0), 
libfreetype6 (= 2.2.1), libgcc1 (= 1:4.1.1), libgconf2-4 (= 2.27.0), 
libglib2.0-0 (= 2.23.5), libgnome-keyring0 (= 2.22.2), libgtk2.0-0 (= 
2.16.0), libice6 (= 1:1.0.0), libjpeg62, libkpathsea5, 
liblaunchpad-integration1 (= 0.1.17), libpango1.0-0 (= 1.14.0), 
libpoppler-glib4 (= 0.12), libsm6, libspectre1 (= 0.2.3), libstdc++6 (= 
4.1.1), libtiff4, libx11-6 (= 0), libxml2 (= 2.7.4), zlib1g (= 1:1.1.4), 
gconf2 (= 2.10.1-2), gnome-icon-theme (= 2.17.1), shared-mime-info
Recommends: dbus-x11, gvfs
Suggests: unrar, poppler-data, nautilus, apparmor
Conflicts: apparmor ( 2.3.1+1403-0ubuntu18), evince-gtk
Filename: pool/main/e/evince/evince_2.30.3-0ubuntu1.1_i386.deb
Size: 460076
MD5sum: 5a736a8fc46af14af05373e6ea453567
SHA1: 913976395209611c0c9b152bf21f3e91d1a37248
SHA256: 4c0bf7f45141006868ae030f1a7ef0d8a1f06a8b43df61e3b5678194576ce904
Description: Document (postscript, pdf) viewer
 Evince is a simple multi-page document viewer.  It can display and print
 PostScript (PS), Encapsulated PostScript (EPS), DJVU, DVI and Portable
 Document Format (PDF) files.
 When supported by the document, it also allows searching for text,
 copying text to the clipboard, hypertext navigation, and
 table-of-contents bookmarks.
Homepage: http://www.gnome.org/projects/evince/
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu
Supported: 3y
Task: ubuntu-desktop, edubuntu-desktop, xubuntu-desktop, 
mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, 
mythbuntu-frontend, ubuntu-netbook

-- 
evince doesn't remember the window size
https://bugs.launchpad.net/bugs/544639
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 612121] [NEW] uncrustify support does not work (version too old?)

2010-07-31 Thread Malte Helmert
Public bug reported:

Binary package hint: universalindentgui

When I switch to Uncrustify, enable the live indent preview and toggle
any option, I get the following error:

===
Indenter returned with exit code: 1
Indent console output was: 
(STDOUT):
(STDERR):/tmp/UniversalIndentGUI-N4Pl7Q/uncrustify.cfg:34 Unknown symbol 
'align_var_def_attribute' Parsing: indentinput.cpp as language CPP 

Callstring was: uncrustify -f indentinput.cpp -c 
/tmp/UniversalIndentGUI-N4Pl7Q/uncrustify.cfg -o indentoutput.cpp
===

Further investigation reveals that 'align_var_def_attribute' was an
option added in uncrustify 0.53 (May 2009), but Lucid ships with
uncrustify 0.52. So the version of universalindentgui in Lucid (1.1.0-1)
is apparently incompatible with its version of uncrustify. I don't know
what minimal uncrustify version number would be required.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: universalindentgui 1.1.0-1
ProcVersionSignature: Ubuntu 2.6.32-24.38-generic-pae 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-generic-pae i686
Architecture: i386
Date: Sat Jul 31 21:33:33 2010
ProcEnviron:
 LC_TIME=de_DE.UTF-8
 PATH=(custom, user)
 LANG=en_US.utf8
 SHELL=/bin/bash
 LC_PAPER=de_DE.UTF-8
SourcePackage: universalindentgui

** Affects: universalindentgui (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 lucid

-- 
uncrustify support does not work (version too old?)
https://bugs.launchpad.net/bugs/612121
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 612121] Re: uncrustify support does not work (version too old?)

2010-07-31 Thread Malte Helmert

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/52792639/Dependencies.txt

-- 
uncrustify support does not work (version too old?)
https://bugs.launchpad.net/bugs/612121
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 612121] Re: uncrustify support does not work (version too old?)

2010-07-31 Thread Malte Helmert
Workaround: installing a current version of uncrustify (0.56) locally in
a place on a PATH where it will be found before the system uncrustify
solves the issue for me.

-- 
uncrustify support does not work (version too old?)
https://bugs.launchpad.net/bugs/612121
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 127399] Re: bogus background command often causes shell to exit

2010-01-26 Thread Malte Helmert
Anyone reading this? Should I open a new bug? (Not sure about the
correct policy for bugs that are already marked as resolved.)

Anyway, an update: the fix in comment #6 of
https://bugzilla.novell.com/show_bug.cgi?id=470844 (with the paths to
command-non-found suitably adapted) works for me. At least I haven't got
any crashes in a while.

-- 
bogus background command often causes shell to exit
https://bugs.launchpad.net/bugs/127399
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 482472] [NEW] at 12:00+60days schedules command for wrong year

2009-11-13 Thread Malte Helmert
Public bug reported:

Binary package hint: at

Transcript from shell:

# echo whatever | at 12:00+60days
warning: commands will be executed using /bin/sh
job 472 at Thu Jan 13 12:00:00 2011

Observed behaviour: Event is scheduled at 12:00 on Jan 13 2011. (atq confirms 
that this is indeed the case.)
Expected behaviour: Event should be scheduled at 12:00 on Jan 13 *2010*.

Some more info:
* I see this whenever I combine a time of the day (like 12:00, 15:30 etc.) with 
+Ndays where N causes a wrap to the next year. Instead of getting a wrap to 
the next year, at calculates a date two years in the future.
* This is not new; I had the same behaviour on versions of at going back to 
feisty, but didn't think about reporting it so far.
* The same problem does not happen if I use a specification like now+60days, 
or if there is no wrap to the next year (e.g. 12:00+5days.

** Affects: at (Ubuntu)
 Importance: Undecided
 Status: New

-- 
at 12:00+60days schedules command for wrong year
https://bugs.launchpad.net/bugs/482472
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 482472] Re: at 12:00+60days schedules command for wrong year

2009-11-13 Thread Malte Helmert
Forgot to report these bits of info:

# lsb_release -rd
Description:Ubuntu 9.10
Release:9.10

# apt-cache policy at
at:
  Installed: 3.1.11-1ubuntu4
  Candidate: 3.1.11-1ubuntu4
  Version table:
 *** 3.1.11-1ubuntu4 0
500 http://de.archive.ubuntu.com karmic/main Packages
100 /var/lib/dpkg/status

-- 
at 12:00+60days schedules command for wrong year
https://bugs.launchpad.net/bugs/482472
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 480027] [NEW] evince does not draw first or last page of PDF

2009-11-10 Thread Malte Helmert
Public bug reported:

Binary package hint: evince

Note: I found some old bugs that look related (e.g. #383309), but this
one is different in that it's *not* about presentation mode.
Presentation mode works fine for me.

When I open any PDF with evince, it often fails to redraw when I move to
the first or last page. See the attached screenshot: I just clicked on
page 1 on the side pane, and evince thinks it's displaying page 1 (see
the form at the top saying page 1 out of 10), but actually it is
displaying page 2 (as the page contents say). This happens not just when
clicking in the side pane, but also when navigating with
PageUp/PageDown, although it doesn't happen *every time* I navigate to
page 1, and I don't understand the exact conditions.

Steps to reproduce (for me):

1. Open the attached PDF with evince.
2. In the View options, enable Toolbar, Side Pane and Best Fit. Disable 
everything else.
(Actually, Toolbar and Side Pane don't seem to matter, but disabling 
Continuous mode is important.)
3. Go to page 1 if not already there.
4. Press PageDown. (Page 2 displays now.)
5. Press PageUp. (Page 2 still displays, although evince says it's displaying 
page 1.)

Clicking Page 1 now or trying to get it to display some other way
doesn't work at this point; the only way I can get it to display is by
pressing Ctrl-R.

Same problem with the last page: if I navigate to the last page (page
10) to display, then go up, then down again, it still displays page 9
although it says it's displaying page 10.

ProblemType: Bug
Architecture: i386
Date: Tue Nov 10 15:01:31 2009
DistroRelease: Ubuntu 9.10
ExecutablePath: /usr/bin/evince
KernLog:
 
Package: evince 2.28.1-0ubuntu1
ProcEnviron:
 LC_PAPER=de_DE.UTF-8
 SHELL=/bin/bash
 PATH=(custom, user)
 LANG=en_US.UTF-8
 LC_TIME=de_DE.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: evince
Uname: Linux 2.6.31-14-generic i686

** Affects: evince (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
evince does not draw first or last page of PDF
https://bugs.launchpad.net/bugs/480027
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 480027] Re: evince does not draw first or last page of PDF

2009-11-10 Thread Malte Helmert

** Attachment added: evince-screenshot.png
   http://launchpadlibrarian.net/35479764/evince-screenshot.png

-- 
evince does not draw first or last page of PDF
https://bugs.launchpad.net/bugs/480027
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 480027] Re: evince does not draw first or last page of PDF

2009-11-10 Thread Malte Helmert

** Attachment added: evince-example.pdf
   http://launchpadlibrarian.net/35479713/evince-example.pdf

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/35479714/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/35479715/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/35479716/ProcStatus.txt

** Attachment added: RelatedPackageVersions.txt
   http://launchpadlibrarian.net/35479717/RelatedPackageVersions.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/35479718/XsessionErrors.txt

-- 
evince does not draw first or last page of PDF
https://bugs.launchpad.net/bugs/480027
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 480027] Re: evince does not draw first or last page of PDF

2009-11-10 Thread Malte Helmert
Update: I tried to reproduce it on a colleague's machine (who is also on
karmic and uses the same version of evince), and I can't reproduce it
the same way. However, I can reproduce it on both machines like this:

1. Open the PDF attached to the original bug report with evince.
2. In the View options, enable Toolbar, Side Pane and Best Fit. Disable 
everything else.
3. Go to page 1 if not already there.
4. Keep PageDown pressed (i.e. hold it down) until the page doesn't change any 
more.

On both of our machines, this ends up showing us page 9, but claiming it
is page 10.

-- 
evince does not draw first or last page of PDF
https://bugs.launchpad.net/bugs/480027
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 480027] Re: evince does not draw first or last page of PDF

2009-11-10 Thread Malte Helmert
The main machine I'm working with was originally a from-scratch jaunty
install that was upgraded to karmic using the update manager. Nothing
special installed there, only packages that are in the default
repository. I'll try on some other machines with the karmic live CD to
see if I can reproduce it anywhere else. (Will probably take a few days,
though.)

In case it helps for reproducing this, I've found in the past that
evince misbehaved more often when I pressed keys *quickly* rather than
waiting after each keypress, suggesting that there might be some sort of
timing issue or race condition involved. For example, I get problems
much more frequently if I press PageDown and then *very very quickly*
PageUp. Having said that, sometimes the problem does show up even when I
do things very slowly.

In my experience, once a given document shows display faults for the
first time, they tend to pop up regularly in the future for that
document, even if I close and reopen evince. Is there some sort of
information cached between evince runs that I can delete to see if that
makes a difference?

Regarding evince settings, it seems to be important that Continuous
and Presentation are switched *off* and that Best Fit is switched
on, or at least that the current zoom factor displays a full page
without scrolling. All other settings (Toolbar, Side Pane,
Fullscreen, Dual) don't seem to matter; I can get the display
problems with them on or off. Having said that, I think I've seen
problems more frequently with the Side Pane enabled.

-- 
evince does not draw first or last page of PDF
https://bugs.launchpad.net/bugs/480027
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 474122] [NEW] cannot print PDFs after karmic upgrade

2009-11-04 Thread Malte Helmert
Public bug reported:

Binary package hint: evince

After upgrading to karmic-koala, I cannot print any PDFs from evince.

Printing appears to proceed properly (there is no error message shown),
but the job gets stuck in the printer queue forever with status changed
to Held.

The cups error log is attached; it shows that apparently CUPS (or the
printer) doesn't understand PDF. This used to work before the upgrade.
(Shouldn't there be some conversion to PS going on behind the scenes?)

There is not much special about the CUPS setup. The only thing I did was
to enable Show printers shared by other systems via
System/Administration/Printing/Server/Settings..., which found the
printers automatically.

A colleague of mine has the same problem after upgrading to karmic. He
reports that for him, printing PDFs from Acrobat Reader does work (but
not from evince).

ProblemType: Bug
Architecture: i386
Date: Wed Nov  4 13:18:19 2009
DistroRelease: Ubuntu 9.10
ExecutablePath: /usr/bin/evince
Package: evince 2.28.1-0ubuntu1
ProcEnviron:
 LC_PAPER=de_DE.UTF-8
 SHELL=/bin/bash
 PATH=(custom, user)
 LANG=en_US.UTF-8
 LC_TIME=de_DE.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: evince
Uname: Linux 2.6.31-14-generic i686

** Affects: evince (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
cannot print PDFs after karmic upgrade
https://bugs.launchpad.net/bugs/474122
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 474122] Re: cannot print PDFs after karmic upgrade

2009-11-04 Thread Malte Helmert

** Attachment added: CUPS error log
   http://launchpadlibrarian.net/35091957/cups-error_log

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/35091960/Dependencies.txt

** Attachment added: KernLog.txt
   http://launchpadlibrarian.net/35091961/KernLog.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/35091962/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/35091963/ProcStatus.txt

** Attachment added: RelatedPackageVersions.txt
   http://launchpadlibrarian.net/35091964/RelatedPackageVersions.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/35091965/XsessionErrors.txt

-- 
cannot print PDFs after karmic upgrade
https://bugs.launchpad.net/bugs/474122
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 474122] Re: cannot print PDFs after karmic upgrade

2009-11-04 Thread Malte Helmert
Thanks a lot for the quick reply and explanation!

Indeed the remote CUPS server does not support PDF. (I cannot change
that, unfortunately; I'm not an admin on that machine.) If I understood
this correctly, before karmic, evince did not emit PDF but PS (see e.g.
comment #3 and later for bug 258421), which explains why printing in
evince worked for me before the upgrade to karmic but not after.

To answer your comment #3:
 * I have the same symptoms when printing PDFs with lpr as with evince.
 * Printing from acroread works; it looks like acroread converts PDF to PS 
internally before printing.
 * I didn't try okular/kpdf because I don't want to bring in all the KDE 
dependencies.

I worked around the problem by not using the remote CUPS queues but
instead connecting setting up our printers in my local CUPS server
directly via dnssd:// and hp:/net/ connections (don't know the proper
term for those protocols, sorry). That's a bit less than perfect, but
it'll do, and hopefully our admin will be able to enable PDF support on
our CUPS server eventually.

Again, thanks!

-- 
cannot print PDFs after karmic upgrade
https://bugs.launchpad.net/bugs/474122
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 474122] Re: cannot print PDFs after karmic upgrade

2009-11-04 Thread Malte Helmert
Are you sure about the PostScript output in evince? I have an up-to-date
karmic installation; to be certain, I last checked for updates just now
(less than five minutes ago). The evince version number according to
aptitude is 2.28.1-0ubuntu1. It definitely looks to me like it is
putting PDF into the print queue when printing PDF files (see the log
attached initially). Maybe I misunderstood something. Anyway, since the
local queues that I now set up handle PDF fine, the issue is resolved
for me.

About the print server: yes, you're right, it's not a very modern
installation. That server is not a Linux machine (it's Solaris 10), and
I think upgrades for that are rather more painful, so I want to bother
our admin with upgrade wishes as little as possible.

-- 
cannot print PDFs after karmic upgrade
https://bugs.launchpad.net/bugs/474122
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 127399] Re: bogus background command often causes shell to exit

2009-11-02 Thread Malte Helmert
I can confirm that this bug still exists in karmic.

Here's how I can reproduce it 80% of the time:
=
helm...@alfons:~$ bash  echo bash is done
helm...@alfons:~$ cd tmp/
helm...@alfons:~/tmp$ rubbish 
[1] 26946
helm...@alfons:~/tmp$ exit
bash is done
=

Note that I don't type the exit -- it appears automatically. bash
decides to exit after I try to invoke a nonexistent command (rubbish
above) in the background. Interestingly, the problem only occurs for me
if I'm *not* in my home dir, hence the cd at the start. (No idea what
this has to do with anything.)

I'm not a bash expert, but to me this looks like there might be some
sort of race condition between the command-not-found-handler and the
background process (PID 26946 above) at the core of this.

-- 
bogus background command often causes shell to exit
https://bugs.launchpad.net/bugs/127399
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 469013] [NEW] roundup writes to stderr on launch, causes (spurious?) crash report after login

2009-11-01 Thread Malte Helmert
Public bug reported:

Binary package hint: roundup

Starting the roundup init script causes a deprecation warning to be written to 
stderr:
==
helm...@alfons:~$ sudo /etc/init.d/roundup start
Starting Roundup 
HTTP-Server:/usr/lib/python2.6/dist-packages/roundup/hyperdb.py:26: 
DeprecationWarning: the sets module is deprecated
  from sets import Set
/usr/lib/python2.6/dist-packages/roundup/password.py:24: DeprecationWarning: 
the sha module is deprecated; use the hashlib module instead
  import sha, md5, re, string, random
/usr/lib/python2.6/dist-packages/roundup/password.py:24: DeprecationWarning: 
the md5 module is deprecated; use hashlib instead
  import sha, md5, re, string, random
/usr/lib/python2.6/dist-packages/roundup/mailer.py:9: DeprecationWarning: the 
MimeWriter module is deprecated; use the email package instead
  from MimeWriter import MimeWriter
 roundup-server.
==

As a consequence, I get a (spurious) notification after login that the
roundup server crashed.

ProblemType: Bug
Architecture: i386
Date: Sun Nov  1 18:12:43 2009
DistroRelease: Ubuntu 9.10
Package: roundup 1.4.4-4+lenny1ubuntu1
PackageArchitecture: all
ProcEnviron:
 LC_TIME=de_DE.UTF-8
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
 LC_PAPER=de_DE.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: roundup
Uname: Linux 2.6.31-14-generic i686

** Affects: roundup (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
roundup writes to stderr on launch, causes (spurious?) crash report after login
https://bugs.launchpad.net/bugs/469013
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 469013] Re: roundup writes to stderr on launch, causes (spurious?) crash report after login

2009-11-01 Thread Malte Helmert

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/34882759/Dependencies.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/34882760/XsessionErrors.txt

-- 
roundup writes to stderr on launch, causes (spurious?) crash report after login
https://bugs.launchpad.net/bugs/469013
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 469044] [NEW] roundup only ever shows 7 issues

2009-11-01 Thread Malte Helmert
Public bug reported:

Binary package hint: roundup

Since the upgrade from jaunty to karmic, our roundup tracker only ever
shows seven issues, and browsing through the issues is not possible. For
example, Show All currently shows 7 out of 20 issues (1..7 out of 20
at the bottom), and clicking on next  doesn't change that; still the
same 7 issues are shown. All issues are shown when I manually remove the
trailing @pagesize=50@startwith=0 part from the URL.

This used to work properly previously, so I think it's caused by the
upgrade to karmic. The tracker is based on the classic template, with
no customizations.

Unfortunately, I can't provide a public link to our tracker, but if
someone wants to check this out, I can provide the link by email.

** Affects: roundup (Ubuntu)
 Importance: Undecided
 Status: New

-- 
roundup only ever shows 7 issues
https://bugs.launchpad.net/bugs/469044
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 469044] Re: roundup only ever shows 7 issues

2009-11-01 Thread Malte Helmert
Update: Looks like this has already been reported for Debian's roundup package:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523516

It's supposedly fixed in the latest upstream version (can't check that,
though).


** Bug watch added: Debian Bug tracker #523516
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523516

-- 
roundup only ever shows 7 issues
https://bugs.launchpad.net/bugs/469044
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs