Thu, 29 Jun 2017 18:51:03 +0200
Fixed an issue in the single application client.
(grafted from 3a8bedba97ab2185b912f3e0614c8b3bb9074b3f)
# -*- coding: utf-8 -*- # Copyright (c) 2016 - 2017 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing the Python side for calling the password manager. """ from __future__ import unicode_literals from PyQt5.QtCore import pyqtSlot, QObject, QByteArray class PasswordManagerJsObject(QObject): """ Class implementing the Python side for calling the password manager. """ def __init__(self, parent=None): """ Constructor @param parent reference to the parent object @type ExternalJsObject """ super(PasswordManagerJsObject, self).__init__(parent) self.__external = parent @pyqtSlot(str, str, str, QByteArray) def formSubmitted(self, urlStr, userName, password, data): """ Public slot passing form data to the password manager. @param urlStr form submission URL @type str @param userName name of the user @type str @param password user password @type str @param data data to be submitted @type QByteArray """ from WebBrowser.WebBrowserWindow import WebBrowserWindow WebBrowserWindow.passwordManager().formSubmitted( urlStr, userName, password, data, self.__external.page())