[Bug 299074] Re: Cannot see Ricoh Aficio MPC 3000 driver in New printer dialog

2008-11-17 Thread Tim Waugh
Till, this problem is due to the Jockey changes.  Please investigate.
Thanks.

-- 
Cannot see Ricoh Aficio MPC 3000 driver in New printer dialog
https://bugs.launchpad.net/bugs/299074
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 299074] Re: Cannot see Ricoh Aficio MPC 3000 driver in New printer dialog

2008-11-18 Thread Tim Waugh
Yes, it is for gutenprint 5.0 PPDs.  Actually I'd thought it was part of
the ppd-natural-language filter, but that is elsewhere.

I'll add a try..except around it for the time being, as gutenprint 5.2
is not shipped everywhere yet.

-- 
Cannot see Ricoh Aficio MPC 3000 driver in New printer dialog
https://bugs.launchpad.net/bugs/299074
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 293134] Re: Add samba printer authentication prompt broken

2008-11-20 Thread Tim Waugh
If you right-click on the printer icon in the system tray (or just kill the 
'system-config-printer-applet' process) and then run:
  system-config-printer-applet --debug

It would be instructive to see the debugging output when you try to
authenticate a job.  Print a job, wait for the authentication
notification to appear, click 'Authenticate', and then enter your
details and click OK.

-- 
Add samba printer authentication prompt broken
https://bugs.launchpad.net/bugs/293134
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 293134] Re: Add samba printer authentication prompt broken

2008-11-21 Thread Tim Waugh
OK, I think this may have been fixed recently upstream (in 1.0.10).
Some job events would get missed, and that seems to be what's happening
here.

-- 
Add samba printer authentication prompt broken
https://bugs.launchpad.net/bugs/293134
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 303273] Re: French translation broken and character encoding bugs

2008-12-01 Thread Tim Waugh
Hmm, I wonder if system-config-printer commit
75f7fe9354040873178d571449442ee313971638 is to blame for this.

-- 
French translation broken and character encoding bugs
https://bugs.launchpad.net/bugs/303273
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 303273] Re: French translation broken and character encoding bugs

2008-12-01 Thread Tim Waugh
Seems like cups.getServerPPD() is giving us a localized PPD somehow, but
I'm not sure how.

(Yes, localize() only localizes the data structure in memory, but we use
that data structure to write out a new PPD file.)

-- 
French translation broken and character encoding bugs
https://bugs.launchpad.net/bugs/303273
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 303273] Re: French translation broken and character encoding bugs

2008-12-03 Thread Tim Waugh
The problem lies in the gutenprint package.  This can be seen by running
the PPD driver directly:

$ LC_ALL=fr_FR.UTF-8 /usr/lib/cups/driver/gutenprint.5.2 cat 
"gutenprint.5.2://bjc-MULTIPASS-MP150/expert" |egrep -e 
'(Encoding)|(OpenUI.*StpQuality)'
*LanguageEncoding: ISOLatin1
*OpenUI *StpQuality/Qualité d'impression: PickOne

or by using the cupsGetServerPPD() function:

$ LC_ALL=fr_FR.UTF-8 python -c 'from locale import *; setlocale(LC_ALL,''); 
import cups, os; c=cups.Connection(); 
ppdfile=c.getServerPPD("gutenprint.5.2://bjc-MULTIPASS-MP150/expert"); 
ppd=cups.PPD(ppdfile); os.unlink (ppdfile); print 
ppd.findOption("StpQuality").text'
Qualité d'impression
(note that we did *not* call ppd.localize() here)

i.e. it is breaking rule 6 of the globalized PPD rules.  The gutenprint
PPD driver needs to be fixed so that it does not use 8-bit characters in
option descriptions for globalized PPDs except in translated
descriptions added as part of the extension.

Whether it does this by providing untranslated option descriptions,
leaving it to applications to use the ppdLocalize() function to get
translations, or by "breaking" its translated strings in the main part
of the PPD so that they are 8-bit clean, one way or the other it needs
to be fixed.

Regarding reading out a full PPD and writing it back: no, it is not
necessary to do this.  Please file bugs for whichever cases you can find
where this occurs, and it can be looked at later.  However, it is not
causing the problem at hand.

Regarding keeping PPDs consistent when writing them back: indeed, I
realise this, and am working on a fix for this.  However, I don't
believe it is the entire cause of the bug at hand -- although it may
have been the cause for this particular instance (we don't know).

-- 
French translation broken and character encoding bugs
https://bugs.launchpad.net/bugs/303273
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 293134] Re: Add samba printer authentication prompt broken

2008-11-21 Thread Tim Waugh
No, they are missed because of a coding error.

The reason 1.0.11 is not downloadable is that there was a false start
during the release process, and I am re-spinning it.

-- 
Add samba printer authentication prompt broken
https://bugs.launchpad.net/bugs/293134
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 301705] Re: Jobs requiring authentication never display authentication prompt

2008-11-24 Thread Tim Waugh
The jobs are shown as queued by user root because non-root users can
read the CUPS root certificate.  This misconfiguration is due to the way
Ubuntu sets up cups.

-- 
Jobs requiring authentication never display authentication prompt
https://bugs.launchpad.net/bugs/301705
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 333727] Re: [jaunty] Cannot add a printer

2009-02-26 Thread Tim Waugh
I always include bug numbers in the commit log when fixing a reported
bug, so you just need to search for that.  In this case, RH bugzilla bug
#486587 is the one to search for:

$ git log --grep=486587
commit 051bc7f077ebc6a64bc984f4e5ce355a3e4ed4b5
Author: Tim Waugh 
Date:   Fri Feb 20 15:34:29 2009 +

Fixed bug introduced in commit e5243a7 (bug #486587).

-- 
[jaunty] Cannot add a printer  
https://bugs.launchpad.net/bugs/333727
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 368273] Re: Jaunty 9.04 Blind to XP's Shared Network Printer

2009-05-05 Thread Tim Waugh
> the dialog crash is certainly a system-config-printer issue.

It is libsmb that segfaults.  If system-config-printer is using the
libsmb API correctly, this is a libsmb bug.

-- 
Jaunty 9.04 Blind to XP's Shared Network Printer
https://bugs.launchpad.net/bugs/368273
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 338291] Re: cannot set lpd printer with system-config-printer

2009-03-12 Thread Tim Waugh
By "current version" you mean the 1.1.x branch?

-- 
cannot set lpd printer with system-config-printer
https://bugs.launchpad.net/bugs/338291
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 338291] Re: cannot set lpd printer with system-config-printer

2009-03-12 Thread Tim Waugh
That doesn't sound like 1.1.x.  To avoid any confusion, have you tried
4938e0fdc4a23e6a53bb8326f8d0e3bdf0430a96, which is the current 1.1.x
HEAD?

-- 
cannot set lpd printer with system-config-printer
https://bugs.launchpad.net/bugs/338291
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 284444] Re: Printer Configuration Program Crashed

2008-10-16 Thread Tim Waugh
Fixed upstream  in commit 12d94cb32011dbd6bbc22d79eb64d6107f62e37b.

-- 
Printer Configuration Program Crashed
https://bugs.launchpad.net/bugs/28
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 293134] Re: Add samba printer authentication prompt broken

2008-11-04 Thread Tim Waugh
Which error message do you get?

-- 
Add samba printer authentication prompt broken
https://bugs.launchpad.net/bugs/293134
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 293134] Re: Add samba printer authentication prompt broken

2008-11-04 Thread Tim Waugh
The intended behaviour is for the Verify button to present an
authentication prompt.

Please run 'system-config-printer --debug' from a terminal window and
get to the part where you press the Verify button and get an error
dialog.  What messages are shown in the terminal window?

-- 
Add samba printer authentication prompt broken
https://bugs.launchpad.net/bugs/293134
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 290469] Re: my-default-printer's main window has no icon

2008-10-29 Thread Tim Waugh
Fixed in ca690ec807e9cadcd4eb83a77da0191b1d26ed45.

-- 
my-default-printer's main window has no icon
https://bugs.launchpad.net/bugs/290469
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 172490] Re: system-config-printer.py Toolbar Icon Metaphor

2008-06-02 Thread Tim Waugh
This was in the 1.0.0 release.

-- 
system-config-printer.py Toolbar Icon Metaphor
https://bugs.launchpad.net/bugs/172490
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 236858] Re: System / Administration / Printing consistently fails to start in locale en_NG

2008-06-02 Thread Tim Waugh
Till, I'm pretty sure all current stable releases (1.0.0, 0.7.82.3, and
0.7.74.13) handle locale exceptions by falling back to C.  If you want
to make it more complicated than that, please supply a patch.  Thanks.

-- 
System / Administration / Printing consistently fails to start in locale en_NG
https://bugs.launchpad.net/bugs/236858
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 276884] Re: can't add printer in Turkish locale (rejecting attr has no value)

2008-10-02 Thread Tim Waugh
Patch is wrong.  cupshelpers.Printer._expand_flags always sets
'rejecting'.

It suggests that printer.update() is not called when it should be, and
that needs to be found.  If 'rejecting' is not set, the printer is just
invalid.

-- 
can't add printer in Turkish locale (rejecting attr has no value)
https://bugs.launchpad.net/bugs/276884
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 267964] Re: system-config-printer.py crashed with AttributeError in fillServerTab()

2008-10-09 Thread Tim Waugh
Fixed upstream (b6f19dbdf584e31ab841476d812a020ad206ae17).

-- 
system-config-printer.py crashed with AttributeError in fillServerTab()
https://bugs.launchpad.net/bugs/267964
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 241979] Re: "/usr/lib/cups/filter/foomatic-rip failed" (status 9)

2008-06-24 Thread Tim Waugh
Glad you find it useful. :-)

Please file enhancement requests here, one by one:

  https://fedorahosted.org/system-config-printer/

and choose 'Troubleshooter' as the component for each.

-- 
"/usr/lib/cups/filter/foomatic-rip failed" (status 9)
https://bugs.launchpad.net/bugs/241979
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 243294] Re: Large flat network causes printer dialogue to hang up

2008-06-27 Thread Tim Waugh
See these related reports:
  https://fedorahosted.org/system-config-printer/ticket/36
  https://fedorahosted.org/system-config-printer/ticket/14

-- 
Large flat network causes printer dialogue to hang up
https://bugs.launchpad.net/bugs/243294
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 153610] Re: applet.py crashed with IOError in module>()

2008-08-12 Thread Tim Waugh
Seems clear to me what the problem is: it's trying to write to stdout
but there's no file descriptor for it.  Seems like an environment bug to
me.

-- 
applet.py crashed with IOError in  module>()
https://bugs.launchpad.net/bugs/153610
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 153610] Re: applet.py crashed with IOError in module>()

2008-08-12 Thread Tim Waugh
No, stderr output should be sent to .xsession-errors as with other
applications in the session.

-- 
applet.py crashed with IOError in  module>()
https://bugs.launchpad.net/bugs/153610
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 27069] Re: Printing to a Netware queue is not supported

2008-08-04 Thread Tim Waugh
Fedora ships an ncp backend for CUPS already, and no-one has ever asked
for more support than currently exists: allowing the user to enter an
arbitrary URI such as ncp://... -- I think this is sufficient.

It is not system-config-printer's job to provide CUPS backends, only to
configure print queues using the existing ones.

-- 
Printing to a Netware queue is not supported
https://bugs.launchpad.net/bugs/27069
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 259926] Re: ImportError: No module named Locale

2008-08-21 Thread Tim Waugh
Fixed upstream in commit cf31d8c3.

-- 
ImportError: No module named Locale
https://bugs.launchpad.net/bugs/259926
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 237667] Re: No feedback given to user when enabling network printing

2008-06-05 Thread Tim Waugh
1.0.0 shows new printers as they are discovered.

-- 
No feedback given to user when enabling network printing
https://bugs.launchpad.net/bugs/237667
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 323322] Re: Do not auto-start the python applet

2009-02-02 Thread Tim Waugh
Indeed.

Some careful thinking needs to be done about how exactly this should
work, as the NewPrinterNotification interface is actually based on the
applet providing a D-Bus service -- although I said "signals" earlier, I
was not being specific enough.

I don't think that D-Bus service ownership can be passed from one
application to another.  Perhaps the small C program needs to stay
around all the time, providing the D-Bus NewPrinterNotification service
on the system bus, and communicating with the applet over a similar
interface on the session bus.  In this way it would act as a sort of
proxy for the applet.

Does that make sense?

-- 
Do not auto-start the python applet
https://bugs.launchpad.net/bugs/323322
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 323322] Re: Do not auto-start the python applet

2009-02-02 Thread Tim Waugh
I'm not so sure it's a simple as that.  The method is called for the
object on the *system* bus, but the program providing the service needs
to run in the graphical session for the user running at the console.
Can D-Bus really do that?

For clarification, the applet performs two D-Bus functions:

1. The NewPrinterNotification *service*, which it provides.

2. Listening for D-Bus *signals* from CUPS, currently using the
com.redhat.PrinterSpooler interface.

so there will still need to be some small C program listening out for
D-Bus signals from CUPS.

-- 
Do not auto-start the python applet
https://bugs.launchpad.net/bugs/323322
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 321139] Re: system-config-printer.py crashed with UnboundLocalError in get_hpfax_device_id()

2009-01-27 Thread Tim Waugh
Should be fixed in 8ba4f69.

-- 
system-config-printer.py crashed with UnboundLocalError in get_hpfax_device_id()
https://bugs.launchpad.net/bugs/321139
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 321139] Re: system-config-printer.py crashed with UnboundLocalError in get_hpfax_device_id()

2009-01-27 Thread Tim Waugh
Till, it does.  All changes on 1.0.x are merged into 1.1.x.  Just use
gitk to find out when that happened; in this case, bdc5d26 is the merge
commit for 1.1.x.

-- 
system-config-printer.py crashed with UnboundLocalError in get_hpfax_device_id()
https://bugs.launchpad.net/bugs/321139
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 251244] Re: system-config-printers crashes when model has more than 1 group of digits

2008-12-13 Thread Tim Waugh
Fixed in cae9fe94d.

-- 
system-config-printers crashes when model has more than 1 group of digits
https://bugs.launchpad.net/bugs/251244
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 287076] Re: system-config-printer.py crashed with AttributeError in setAsDefault()

2008-12-13 Thread Tim Waugh
This was fixed in 26e36d0f5.

-- 
system-config-printer.py crashed with AttributeError in setAsDefault()
https://bugs.launchpad.net/bugs/287076
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 286943] Re: system-config-printer.py crashed with RuntimeError in _connect()

2008-12-13 Thread Tim Waugh
Fixed in ade3e12.

-- 
system-config-printer.py crashed with RuntimeError in _connect()
https://bugs.launchpad.net/bugs/286943
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 285133] Re: system-config-printer.py crashed with AttributeError in iteratePPDOptions()

2008-12-13 Thread Tim Waugh
Fixed in e533faf.

-- 
system-config-printer.py crashed with AttributeError in iteratePPDOptions()
https://bugs.launchpad.net/bugs/285133
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 282634] Re: system-config-printer.py crashed with TypeError in on_tvPrinterProperties_cursor_changed()

2008-12-13 Thread Tim Waugh
Fixed in c11174e.

-- 
system-config-printer.py crashed with TypeError in 
on_tvPrinterProperties_cursor_changed()
https://bugs.launchpad.net/bugs/282634
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 338291] Re: cannot set lpd printer with system-config-printer

2009-03-12 Thread Tim Waugh
Till, why not just try 1.1.x and see if it's fixed there?  If it is (and
there have been changes in this area as you can see for yourself), you
can just fetch the fix and build it in your package.  This is generally
what a package maintainer does...

-- 
cannot set lpd printer with system-config-printer
https://bugs.launchpad.net/bugs/338291
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 343156] Re: applet.py crashed with NameError in update_job()

2009-03-19 Thread Tim Waugh
Fixed in ca70471.

-- 
applet.py crashed with NameError in update_job()
https://bugs.launchpad.net/bugs/343156
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 334859] Re: applet.py crashed with TypeError in update_job_creation_times()

2009-03-06 Thread Tim Waugh
Fixed in a720d5a.

-- 
applet.py crashed with TypeError in update_job_creation_times()
https://bugs.launchpad.net/bugs/334859
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 333260] Re: system-config-printer.py crashed with AttributeError in on_rename_activate()

2009-03-06 Thread Tim Waugh
Fixed in 29ac129.

-- 
system-config-printer.py crashed with AttributeError in on_rename_activate()
https://bugs.launchpad.net/bugs/333260
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 340932] Re: system-config-printer.py crashed with Error in setlocale() in Jaunty BETA

2009-04-01 Thread Tim Waugh
Till, have you tried with current 1.0.x?

-- 
system-config-printer.py crashed with Error in setlocale() in Jaunty BETA
https://bugs.launchpad.net/bugs/340932
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 340932] Re: system-config-printer.py crashed with Error in setlocale() in Jaunty BETA

2009-04-01 Thread Tim Waugh
Well, have you tried with current 1.1.x?

If you are seeing this fail:

current_ctype = locale.setlocale (locale.LC_CTYPE)
locale.setlocale (locale.LC_CTYPE, "C")
...
locale.setlocale (locale.LC_CTYPE, current_ctype)

then it is certainly a Python bug.

-- 
system-config-printer.py crashed with Error in setlocale() in Jaunty BETA
https://bugs.launchpad.net/bugs/340932
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 340932] Re: system-config-printer.py crashed with Error in setlocale() in Jaunty BETA

2009-04-01 Thread Tim Waugh
I don't much like the current approach anyway.  If you like, rewrite
that part so that has a static mapping between the two names, like:

flagmap = { cups.CUPS_PRINTER_AUTHENTICATED: 'authenticated',
cups.CUPS_PRINTER_BIND: 'bind',
... }
for flag, name in flagmap.iteritems ():
  setattr(self, name, bool(self.type & flag))

Then you don't need the locale or blacklist handling.

-- 
system-config-printer.py crashed with Error in setlocale() in Jaunty BETA
https://bugs.launchpad.net/bugs/340932
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 340932] Re: system-config-printer.py crashed with Error in setlocale() in Jaunty BETA

2009-04-01 Thread Tim Waugh
Well, you could use getattr for the actual flag values.  Or,
alternatively, it's very easy to write a locale-independent lower()
function and use that instead.

Locale handling seems to be riddled with bugs in Python, so I'm in
favour of avoiding it when possible.

-- 
system-config-printer.py crashed with Error in setlocale() in Jaunty BETA
https://bugs.launchpad.net/bugs/340932
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 340932] Re: system-config-printer.py crashed with Error in setlocale() in Jaunty BETA

2009-04-01 Thread Tim Waugh
Neat fix.  Thanks.

-- 
system-config-printer.py crashed with Error in setlocale() in Jaunty BETA
https://bugs.launchpad.net/bugs/340932
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 330883] Re: Browsing samba shared printers show nothing

2009-04-02 Thread Tim Waugh
What does 'smbclient -L Ps-70f869' say?

-- 
Browsing samba shared printers show nothing
https://bugs.launchpad.net/bugs/330883
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 158487] Re: A way to delete finished jobs needed

2009-04-06 Thread Tim Waugh
The system-config-printer application is a Fedora project, written for
Fedora and Red Hat Enterprise Linux, and adopted by many other Linux
distributions.

-- 
A way to delete finished jobs needed
https://bugs.launchpad.net/bugs/158487
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 158487] Re: A way to delete finished jobs needed

2009-03-31 Thread Tim Waugh
https://fedorahosted.org/system-config-printer/ticket/158

-- 
A way to delete finished jobs needed
https://bugs.launchpad.net/bugs/158487
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 267557] Re: system-config-printer.py crashed with HTTPError in _authloop()

2008-09-08 Thread Tim Waugh
I've checked in a fix for this upstream.

-- 
system-config-printer.py crashed with HTTPError in _authloop()
https://bugs.launchpad.net/bugs/267557
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 267557] Re: system-config-printer.py crashed with HTTPError in _authloop()

2008-09-08 Thread Tim Waugh
It's 326325495cf4974d9d1bb58d29d9084855fe17b0.

-- 
system-config-printer.py crashed with HTTPError in _authloop()
https://bugs.launchpad.net/bugs/267557
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 396673] Re: DefaultSendFF does not work properly in CUPS with textonly printers

2009-07-10 Thread Tim Waugh
This was fixed in Fedora in October 2008.  I'm surprised you've only
just picked up the fix...

-- 
DefaultSendFF does not work properly in CUPS with textonly printers
https://bugs.launchpad.net/bugs/396673
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 411376] Re: cups-pdf reports 'missing driver' when adding new printer

2009-08-11 Thread Tim Waugh
I've fixed this slightly differently upstream.

-- 
cups-pdf reports 'missing driver' when adding new printer
https://bugs.launchpad.net/bugs/411376
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 99316] Re: HP LaserJet P2015 not printing with Postscript driver

2009-07-15 Thread Tim Waugh
But it looks like the PPD shipped with foomatic still contains the
incorrect InputSlot code.

Is it definitely fixed?

-- 
HP LaserJet P2015 not printing with Postscript driver
https://bugs.launchpad.net/bugs/99316
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 404330] Re: Notification popup should display filename in header and job number in details rather than the other way around

2009-07-31 Thread Tim Waugh
Unfortunately these notifications might have to be removed anyway:
  https://fedorahosted.org/system-config-printer/ticket/181

** Bug watch added: fedorahosted.org/system-config-printer/ #181
   https://fedorahosted.org/system-config-printer/ticket/181

-- 
Notification popup should display filename in header and job number in details 
rather than the other way around
https://bugs.launchpad.net/bugs/404330
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 404330] Re: Notification popup should display filename in header and job number in details rather than the other way around

2009-07-27 Thread Tim Waugh
Didn't I already fix this in commit 2864f60?

-- 
Notification popup should display filename in header and job number in details 
rather than the other way around
https://bugs.launchpad.net/bugs/404330
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 156005] Re: unfound icon error

2007-10-23 Thread Tim Waugh
Yes, it requires
/usr/share/icons/gnome/22x22/status/{info,important,error}.png.

This code has changed since the package you are using was built.  It now
uses icon themes.  Please try this:

python -c 'import gtk;t=gtk.icon_theme_get_default();t.load_icon("info",22,0)'
python -c 'import 
gtk;t=gtk.icon_theme_get_default();t.load_icon("important",22,0)'
python -c 'import gtk;t=gtk.icon_theme_get_default();t.load_icon("error",22,0)'

Do you get any errors?

-- 
unfound icon error 
https://bugs.launchpad.net/bugs/156005
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 154385] Re: samba printers don't show in smb browser

2007-10-23 Thread Tim Waugh
If you enable the option to save debugging information (i.e. put a check
in that checkbox in Server Settings), and then print a job, there should
be something useful in /var/log/cups/error_log.

-- 
samba printers don't show in smb browser
https://bugs.launchpad.net/bugs/154385
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 158487] Re: A way to delete finished jobs needed

2007-10-30 Thread Tim Waugh
What for?

-- 
A way to delete finished jobs needed
https://bugs.launchpad.net/bugs/158487
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 158487] Re: A way to delete finished jobs needed

2007-10-30 Thread Tim Waugh
"Easy to implement"?  Which IPP operation would you use for this? (Note
that it has to work for remote CUPS servers as well as local ones --
like everything else in system-config-printer.)

If you want job-level or printer-level security, use the LSPP patches
with a correct configuration.  If you don't want the CUPS server to
preserve job history, put 'PreserveJobHistory No' in
/etc/cups/cupsd.conf.

It is very far from clear that adding any hacky cludge to "remove"
preserved job history would add anything in the way of security, and it
would definitely add other problems.

-- 
A way to delete finished jobs needed
https://bugs.launchpad.net/bugs/158487
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 149572] Re: [Gutsy] Some strings shows untranslated, but ARE translated in to .mo file

2007-10-15 Thread Tim Waugh
Fixed in revision 1671.

-- 
[Gutsy] Some strings shows untranslated, but ARE translated in to .mo file
https://bugs.launchpad.net/bugs/149572
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 144113] Re: There should be a way to see the job queue

2007-10-15 Thread Tim Waugh
Managing a user's own print jobs is not system administration.

As for masquerading: it depends upon the configuration of CUPS.  The
default upstream CUPS configuration allows masquerading trivially and
without a password.

-- 
There should be a way to see the job queue
https://bugs.launchpad.net/bugs/144113
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 135844] Re: system-config-printer doesn't follow toolbar settings

2007-10-15 Thread Tim Waugh
Fixed in revision 1675.

-- 
system-config-printer doesn't follow toolbar settings
https://bugs.launchpad.net/bugs/135844
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 151360] Re: system-config-printer-applet should hide automatically when printing is complete

2007-10-15 Thread Tim Waugh
Patch welcome.  Things that need to be considered:

- the icon is needed for attaching notifications to, so we need to be
sure there are no outstanding notifications when hiding it

- new notifications need to make the icon visible again in order to
attach them to it

- we also super-impose warning/error symbols onto that icon, so we need
to make sure to avoid hiding the icon in that situation as well

-- 
system-config-printer-applet should hide automatically when printing is complete
https://bugs.launchpad.net/bugs/151360
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 152634] Re: Menu & window icon is not standard thus not themed nor scalable

2007-10-15 Thread Tim Waugh
Patch welcome.

-- 
Menu & window icon is not standard thus not themed nor scalable
https://bugs.launchpad.net/bugs/152634
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 151509] Re: The remote printers should not be shared by default

2007-10-15 Thread Tim Waugh
I'm not sure I quite understand the change you suggest, or the reason
for it.  Can you explain it a little more?

-- 
The remote printers should not be shared by default
https://bugs.launchpad.net/bugs/151509
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 151124] Re: system-config-printer does not handle full ipp:// URLs well

2007-10-15 Thread Tim Waugh
Please be more specific.  After clicking 'New Printer', which device did
you select?  Was it "Internet Printing Protocol (ipp)", or "Other"?

At what point did you see an error message (i.e. after clicking which
button)?  What was the exact wording of the error message you saw?

-- 
system-config-printer does not handle full ipp:// URLs well
https://bugs.launchpad.net/bugs/151124
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 151509] Re: The remote printers should not be shared by default

2007-10-15 Thread Tim Waugh
No, automatically detected shared printers are not advertised in browse
packets by CUPS.

Perhaps Computer B has an explicit queue set up for the Epson on
Computer A? (If so: why?)

-- 
The remote printers should not be shared by default
https://bugs.launchpad.net/bugs/151509
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 149572] Re: [Gutsy] Some strings shows untranslated, but ARE translated in to .mo file

2007-10-16 Thread Tim Waugh
Oops, thanks for catching that APPDIR change.  It was accidental -- I've
reverted it now.

-- 
[Gutsy] Some strings shows untranslated, but ARE translated in to .mo file
https://bugs.launchpad.net/bugs/149572
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 150691] Re: Printer installation paper type does not follow locale

2007-10-16 Thread Tim Waugh
Till: is this for a queue where you are providing a PPD file, or where
you a selecting a PPD from the list?  If it's from the list cupsd
decides on the paper size.

When a PPD file is provided, system-config-printer tries to adjust the
paper size in the same way cupsd would have if it had been in the list.

-- 
Printer installation paper type does not follow locale
https://bugs.launchpad.net/bugs/150691
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 152634] Re: Menu & window icon is not standard thus not themed nor scalable

2007-10-17 Thread Tim Waugh
I've committed a fix for this (revision 1679).  It seems to work here,
but is not a completely trivial change so should be handled with care.

-- 
Menu & window icon is not standard thus not themed nor scalable
https://bugs.launchpad.net/bugs/152634
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 149325] Re: printer share parameters

2007-10-05 Thread Tim Waugh
Can Windows machines not listen for CUPS browsing packets?

The problem with adding text as you suggest is that CUPS supports
several different browse protocol types, only one of which is specific
to CUPS.

-- 
printer share parameters
https://bugs.launchpad.net/bugs/149325
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 149264] Re: Wrong driver selected for my Canon iP3000

2007-10-05 Thread Tim Waugh
Regression since revision 1574.

-- 
Wrong driver selected for my Canon iP3000
https://bugs.launchpad.net/bugs/149264
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 149264] Re: Wrong driver selected for my Canon iP3000

2007-10-05 Thread Tim Waugh
It was in 1574, it got broken in 1575.  I've committed a small
efficiency fix, and re-instated correct ordering for performing the
model sort.

-- 
Wrong driver selected for my Canon iP3000
https://bugs.launchpad.net/bugs/149264
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 149264] Re: Wrong driver selected for my Canon iP3000

2007-10-05 Thread Tim Waugh
(By the way: thanks for the fix!)

-- 
Wrong driver selected for my Canon iP3000
https://bugs.launchpad.net/bugs/149264
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 150120] Re: gnome panel printer applet hangs

2007-10-07 Thread Tim Waugh
What makes you think that it's the printer applet causing the panel to
be behaving incorrectly?

-- 
gnome panel printer applet hangs
https://bugs.launchpad.net/bugs/150120
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 150120] Re: gnome panel printer applet hangs

2007-10-08 Thread Tim Waugh
What leads you to conclude the printer applet (rather than anything
else) is the cause?

-- 
gnome panel printer applet hangs
https://bugs.launchpad.net/bugs/150120
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 151064] Re: Gutsy-beta: no way to cancel stopped jobs

2007-10-10 Thread Tim Waugh
*** This bug is a duplicate of bug 144113 ***
https://bugs.launchpad.net/bugs/144113

Completely disagree.  Job management for a user's own jobs is not system
administration any more than printing a file is.

-- 
Gutsy-beta: no way to cancel stopped jobs
https://bugs.launchpad.net/bugs/151064
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 150691] Re: Printer installation paper type does not follow locale

2007-10-18 Thread Tim Waugh
Till: well, have you tried setting your system locale to something where
A4 is actually used?

The primary method for setting paper sizes is always going to be the
locale.  glibc provides support for LC_PAPER; CUPS keys off the locale
string -- there really is no need for an extra (conflicting) mechanism
to find out which paper size to use.

I understand that CUPS has support for libpaper (IMHO needlessly).
Adding support for this to system-config-printer would mean creating
Python bindings for it as there do not appear to be any currently.  It
is not something I am prepared to spend any time on.  I just don't see
the benefit.

-- 
Printer installation paper type does not follow locale
https://bugs.launchpad.net/bugs/150691
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 150691] Re: Printer installation paper type does not follow locale

2007-10-18 Thread Tim Waugh
Till: system-config-printer is constrained to use the same mechanism
that cupsd does, and that is to key off LC_MESSAGES when it exists (see
cups/language.c, scheduler/conf.c).  If cupsd started taking notice of
LC_PAPER, so much the better -- and I would change system-config-printer
to match.

-- 
Printer installation paper type does not follow locale
https://bugs.launchpad.net/bugs/150691
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 150691] Re: Printer installation paper type does not follow locale

2007-10-18 Thread Tim Waugh
> Then cupsd is also not correct, for something there must be LC_PAPER.

Yes, I agree. (In practice this usually makes no difference, but it
would be good to get it fixed.)

>CUPS is supporting libpaper natively, at least if libpaper-dev is installed
> when CUPS is compiled. Perhaps one should explicitly cancel the libpaper
> support via a ./configure option (How is it done by Red Hat?).

Just by not building with it enabled.

  --enable-libpaper   turn on libpaper support, default=no

-- 
Printer installation paper type does not follow locale
https://bugs.launchpad.net/bugs/150691
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 147450] Re: system-config-printer.py crashed with IndexError in connect()

2007-10-01 Thread Tim Waugh
I've checked in a fix that prevents the traceback; however, that does
not appear to be the main problem.

-- 
system-config-printer.py crashed with IndexError in connect()
https://bugs.launchpad.net/bugs/147450
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 147307] Re: system-config-printer.py crashed with ValueError in set_widget_value()

2007-10-01 Thread Tim Waugh
Can you attach your /etc/cups/printers.conf file please?

-- 
system-config-printer.py crashed with ValueError in set_widget_value()
https://bugs.launchpad.net/bugs/147307
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 146925] Re: printing applet crashes on closing

2007-10-01 Thread Tim Waugh
Fixed in SVN, revision 1632.

-- 
printing applet crashes on closing
https://bugs.launchpad.net/bugs/146925
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 146810] Re: applet.py crashed with DBusException in call_blocking()

2007-10-01 Thread Tim Waugh
Sounds like a D-Bus bug of some sort.

-- 
applet.py crashed with DBusException in call_blocking()
https://bugs.launchpad.net/bugs/146810
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 140910] Re: system-config-printer.py crashed with TypeError in fillPrinterTab()

2007-10-01 Thread Tim Waugh
*** This bug is a duplicate of bug 145605 ***
https://bugs.launchpad.net/bugs/145605

** This bug has been marked a duplicate of bug 145605
   system-config-printer.py crashed with TypeError in fillPrinterTab()

-- 
system-config-printer.py crashed with TypeError in fillPrinterTab()
https://bugs.launchpad.net/bugs/140910
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 147369] Re: system-config-printer fails to automatically configure a printer

2007-10-01 Thread Tim Waugh
What does 'hp-probe' say?

-- 
system-config-printer fails to automatically configure a printer
https://bugs.launchpad.net/bugs/147369
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 139192] Re: system-config-printer.py crashed with KeyError in on_server_changed()

2007-10-01 Thread Tim Waugh
Think this should be fixed on trunk in revision 1634.

-- 
system-config-printer.py crashed with KeyError in on_server_changed()
https://bugs.launchpad.net/bugs/139192
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 148010] Re: Unable to resize window to fit screen-width when using german locale (1024x768)

2007-10-02 Thread Tim Waugh
Please try selecting one of the local printers and attaching a
screenshot.  Somewhere there will be a widget (label, combobox,
whatever) that has been translated into a very long string, and we need
to know which widget it is.

-- 
Unable to resize window to fit screen-width when using german locale (1024x768)
https://bugs.launchpad.net/bugs/148010
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 148010] Re: Unable to resize window to fit screen-width when using german locale (1024x768)

2007-10-02 Thread Tim Waugh
Actually I think I've discovered which one it is.  Fix committed in
revision 1636.

-- 
Unable to resize window to fit screen-width when using german locale (1024x768)
https://bugs.launchpad.net/bugs/148010
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 148022] Re: applet crashes ('str' object is not callable)

2007-10-02 Thread Tim Waugh
Fixedu upstream in revision 1640.  Thanks for the report.

-- 
applet crashes ('str' object is not callable)
https://bugs.launchpad.net/bugs/148022
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 135321] Re: system-config-printer.py crashed with SIGSEGV

2007-10-02 Thread Tim Waugh
Perhaps it depends on your /etc/cups/printers.conf file.  Could you
attach it?

-- 
system-config-printer.py crashed with SIGSEGV
https://bugs.launchpad.net/bugs/135321
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 147800] Re: Gutsy : bluetooth printing was working but is not. hp:/ URI don't work too (probably for the same reason)

2007-10-02 Thread Tim Waugh
What does 'hp-probe' say?

-- 
Gutsy : bluetooth printing was working but is not. hp:/ URI don't work too 
(probably for the same reason)
https://bugs.launchpad.net/bugs/147800
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 135321] Re: system-config-printer.py crashed with SIGSEGV

2007-10-02 Thread Tim Waugh
Thanks, but I still haven't been able to reproduce this here.

I wondered if it's to do with the way the Job Options page re-draws
options that don't have an on-page widget, i.e. the 'Other Options' at
the bottom -- but you don't have any of those set, so I'm stumped.

-- 
system-config-printer.py crashed with SIGSEGV
https://bugs.launchpad.net/bugs/135321
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 130903] Re: Replace gnome-cups-manager by system-config-printer

2007-10-02 Thread Tim Waugh
You can right-click and select 'Hide' from the context menu.

-- 
Replace gnome-cups-manager by system-config-printer
https://bugs.launchpad.net/bugs/130903
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 146471] Re: Printer configuration dialog has an active checkbox that shouldn't be

2007-10-02 Thread Tim Waugh
I just committed what I hope is a fix for this in revision 1644.

-- 
Printer configuration dialog has an active checkbox that shouldn't be
https://bugs.launchpad.net/bugs/146471
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 145098] Re: system-config-printer.py crashed with AttributeError in on_btnPrintTestPage_clicked()

2007-09-26 Thread Tim Waugh
What does 'lpstat -s' say?

-- 
system-config-printer.py crashed with AttributeError in 
on_btnPrintTestPage_clicked()
https://bugs.launchpad.net/bugs/145098
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 145098] Re: system-config-printer.py crashed with AttributeError in on_btnPrintTestPage_clicked()

2007-09-26 Thread Tim Waugh
Actually, never mind.  I think what happened was that you had a raw
queue selected and tried to print a test page.  I've committed a fix
that disallows that, since it makes no sense for raw queues.  Trunk fix
is revision 1580; branch fix was revision 1578.

-- 
system-config-printer.py crashed with AttributeError in 
on_btnPrintTestPage_clicked()
https://bugs.launchpad.net/bugs/145098
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 144974] Re: HPLIP toolbox not working with system-config-printer choosen printer

2007-09-26 Thread Tim Waugh
Step 3 needs further explanation.  'hp:' URIs are shown higher up in the
list than 'usb:' URIs are, so if it's the only printer connected it will
be the one already selected.

How are you choosing which device to configure?

-- 
HPLIP toolbox not working with system-config-printer choosen printer
https://bugs.launchpad.net/bugs/144974
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 144106] Re: Usability: In CUPS config gui, clicking on "Local Printers" should not hide printers

2007-09-26 Thread Tim Waugh
I've changed this so that expand/collapse occurs on double-click rather
than single-click (revision 1581 for trunk, 1582 for 0.7.74.x).

I could be persuaded either way on the icon view I think.  Anyone else
have views about it?

-- 
Usability: In CUPS config gui, clicking on "Local Printers" should not hide 
printers
https://bugs.launchpad.net/bugs/144106
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


  1   2   3   4   5   >