[PyQt] ANN: eric 4.5.4 released

2012-06-16 Thread detlev
Hi,

I just uploaded eric 4.5.4. It is a maintenance release fixing some bugs and 
includes a few enhancements to the Subversion interfaces. It 
is available via the eric web site.

http://eric-ide.python-projects.org/index.html

Regards,
Detlev
-- 
Detlev Offenbach
det...@die-offenbachs.de
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


[PyQt] ANN: eric 5.2.3 released

2012-06-16 Thread detlev
Hi,

I just uploaded eric 5.2.3. It is a maintenance release fixing some bugs. It 
is available via the eric web site.

http://eric-ide.python-projects.org/index.html

Regards,
Detlev
-- 
Detlev Offenbach
det...@die-offenbachs.de
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


[PyQt] Qt5 roadmap?

2012-06-16 Thread David Cortesi
Folks,

Per the Qt Project roadmap (http://qt-project.org/wiki/Qt_5.0) Qt 5 is
supposed to be in beta now (the alpha is available at
http://qt-project.org/prereleases), with final release by the end of June.

I look in vain for a pyqt roadmap at riverbank.co.uk, although I do see
roadmaps for sip and dip. So, what's the anticipation for PyQt5 release?
Any news?

Thanks,

Dave Cortesi
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] install pyqt

2012-06-16 Thread ????????
my system is debian 6.0.4
1.i have installed qt 
download qt-everywhere-opensource-src-4.8.2
extract it
cd ./qt-everywhere-opensource-src-4.8.2
 ./configure
  make
 make install 



2.when i install my pyqt
1)download  PyQt-x11-gpl-4.9.1
2)cd ./PyQt-x11-gpl-4.9.1
3)root@debian:/home/debian/PyQt-x11-gpl-4.9.1# python  configure.py
Error: Make sure you have a working Qt v4 qmake on your PATH or use the -q
argument to explicitly specify a working Qt v4 qmake.
root@debian:/home/debian/PyQt-x11-gpl-4.9.1#  find  /  -name 'qmake*'

/usr/local/Trolltech/Qt-4.8.2/bin/qmake

(omitted many outputs)
it look like everything is installed.
how can i install  pyqt in my debian?___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Transferring security context to newly created QWebView windows

2012-06-16 Thread alan moore

Realized I forgot to mention what this code does.

It opens a password-protected page which contains a link to another page 
in the same password-protected folder and opens up in a new window.


The expected behavior is that the second page will open fine, since 
we're already authenticated to the security context.  The actual 
behavior is that you get a 403 error.


Please, I've been trying to figure this out for a long time, if anyone 
can point me in the right direction I'd appreciate it.


On 06/13/2012 02:14 PM, m...@alandmoore.com wrote:

Below is some code that illustrates a problem I've been having for several
months now.  I've got a widget based on the QWebView that needs to be able
to open pop-up windows (e.g., links with target=_blank or javascript
window.open() calls) in a password-protected context.

I can get the windows created just fine by overriding createWindow, but
the security credentials are not transferred over.  In real web browsers
(firefox/chrome/opera/rekonq/etc), once authenticated any subsequent
windows in the security context work fine.  How do I recreate this behavior
in a QWebView?

See example code:

##
# Begin Code Example #
##

from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *
import sys

class mybrowser(QWebView):

 def __init__(self, parent=None):
 super(mybrowser, self).__init__(parent)
 url = QUrl (http://www.alandmoore.com/wwwtest;)
 url.setUserName(test)
 url.setPassword(test123)
 self.load(url)

 def createWindow(self, type):
 self.w = mybrowser()
 self.w.show()
 return self.w

if __name__ == '__main__':
 app = QApplication(sys.argv)
 w = mybrowser()
 w.show()
 app.exec_()


# End Code Example #


___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt



___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt