Re: [PyQt] Images not showing in WebView after cx_Freeze

2011-01-03 Thread Hans-Peter Jansen
On Monday 03 January 2011, 04:10:08 Mikael Modin wrote: Hi, I'm currently developing a small tool for taking and sending screnshots, time-reporting for freelancers, and am using cx_Freeze to avoid having the users install python, pyqt and all other dependencies. The problem I'm having is

Re: [PyQt] Images not showing in WebView after cx_Freeze

2011-01-03 Thread Mikael Modin
Hi, As I understood it png support is built-in and doesn't need a module for that. Might have changed since that mail thread was written though. I will look into pyInstaller as well then. /Mikael On 3 January 2011 21:03, Hans-Peter Jansen h...@urpla.net wrote: On Monday 03 January 2011,

Re: [PyQt] Images not showing in WebView after cx_Freeze

2011-01-03 Thread Hans-Peter Jansen
On Monday 03 January 2011, 11:41:22 Mikael Modin wrote: Hi, Just thought I'd ask you a favor, it seems it doesn't handle everything automatically. pyInstaller seem to have the same problems as cx_Freeze without a fix, doesn't recognise that I'm using QtWebKit, I get this: File

Re: [PyQt] Loading from DB: Threading vs. Multiprocessing

2011-01-03 Thread Lic . José M . Rodriguez Bacallao
this is a very interesting question, I would like to see some suggestions!!! On Thu, Dec 30, 2010 at 4:37 AM, Knacktus knack...@googlemail.com wrote: Hello everyone, here the background story ;-): -- I'm writing an application which handles a lot of nested data.

[PyQt] Translation of strings with Python formating

2011-01-03 Thread Nahuel Defossé
Hi I've noticed that both QObject.trUtf8 and QObject.tr do not return Python strings, what is rather unconvinient when using the % operator to format strings. I prefer str % operator since it accepts keyword arguments, something that is not that simple QString.arg method. What is your advice to