
Various Plasma 5 Improvements by gmolina 27 comments
Thanks agian Andrea.
Cheers - Oct 28 2015

Various Plasma 5 Improvements by gmolina 27 comments
Try downloading now.
- Oct 28 2015

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments
and try: http://www.guillermomolina.com.ar/archivos/category/1-firefox-kwallet-extension?download=27:firefox-kwallet-extension-version-2-3-beta&start=20
It saves timestamps, but I can not be sure if it solves the problem. - Jan 29 2014

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments
- Jan 28 2014

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments
But remember it's not an automatic process - Feb 06 2012

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments
http://www.guillermomolina.com.ar/index.php/es/proyectos/extension-de-firefox-para-kwallet/88-how-to-move-passwords-from-native-store-to-kwallet - Nov 27 2011

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Plasma 4 Extensions by vgevorgyan 52 comments
...
def openSubMenu(self, action):
self.selectedServer = action.data().toString()
subMenu = QMenu()
subActionGroup = QActionGroup(self)
QObject.connect(subActionGroup, SIGNAL("triggered(QAction*)"), self.openConnection)
action = QAction("ssh in new tab", self)
action.setData(0)
subMenu.addAction(action)
subActionGroup.addAction(action)
action = QAction("ssh in new window", self)
action.setData(1)
subMenu.addAction(action)
subActionGroup.addAction(action)
action = QAction("sftp", self)
action.setData(2)
subMenu.addAction(action)
subActionGroup.addAction(action)
subMenu.exec_(QCursor.pos())
def openConnection(self, action):
if int(action.data().toString()) == 2:
self.openSFTPConnection(action)
else:
self.openSSHConnection(action)
def openSFTPConnection(self, action):
server = self.servers[self.selectedServer]
url = "sftp://"
if server.login != "":
url += server.login + "@"
url += server.hostIP + ":" + str(server.port) + "/"
subprocess.Popen(str("dolphin " + url), shell=True)
...
Enjoy!
- Oct 11 2011

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments
http://www.guillermomolina.com.ar/index.php/es/proyectos/extension-de-firefox-para-kwallet/103-library-path-issues - Jun 30 2011

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments

Various KDE 1.-4. Improvements by gmolina 153 comments
$ md5sum kde-wallet_password_integration-0.7.xpi
1e59bddf65d5bf4c1a11b142caebbd27 kde-wallet_password_integration-0.7.xpi
This time execute firefox like this:
$ NSPR_LOG_MODULES=nsNativeModuleLoader:5 firefox-4.0
- Mar 18 2011

Various KDE 1.-4. Improvements by gmolina 153 comments
$ md5sum kde-wallet_password_integration-0.7.xpi
351cb9c216fe06b61bdf432d1e9e7c08 kde-wallet_password_integration-0.7.xpi
The link to download is the same
- Mar 17 2011

Various KDE 1.-4. Improvements by gmolina 153 comments
Do you have 32 or 64 bits?
Please tell me the md5sum of the XPI you have installed:
$ md5sum kde-wallet_password_integration-0.7.xpi
0976fdb7c9f0e29c98d799d8a989628f kde-wallet_password_integration-0.7.xpi
- Mar 17 2011

Various KDE 1.-4. Improvements by gmolina 153 comments
http://www.guillermomolina.com.ar/index.php/es/proyectos/extension-de-firefox-para-kwallet/103-library-path-issues
And let me know if the problem persist
Bye - Mar 14 2011

Plasma 4 Extensions by vgevorgyan 52 comments
for name, server in self.applet.servers.iteritems():
to:
for name, server in sorted(self.applet.servers.items()):
The editor dialog also sorts the servers
Cheers. - Nov 23 2010

Plasma 4 Extensions by vgevorgyan 52 comments
for name, server in self.servers.iteritems():
to:
for name, server in sorted(self.servers.items()):
The list will appear sorted.
Cheers. - Nov 23 2010

Plasma 4 Extensions by vgevorgyan 52 comments
One thing though, my server list is not listed alphabetically, I can see that main.rc does keep info ordered. Is it just me or is it a bug?
Excellent work again. - Sep 17 2010

Various KDE 1.-4. Improvements by gmolina 153 comments
The Firefox folder format for version 0.6 is compatible with earlier versions of this add-on. So, you shouldn't need to export/import from older versions.
New passwords are stored either in the "Form Data" or "Passwords" folder depending on the type of password. Passwords from these folders are also read by Dolphin and friends. But both these folders have their limitations. So, when the new password does not fit, it is stored in the Firefox folder.
And last, when Firefox finds a password in the Firefox folder, it tries to move it to the other folders, in order to make them compatible with Dolphin. So, seeing that the Firefox folder decreases it size is a sign that a password have been made compatible (it should be in one of the other folders).
Please check if it is actually bad behavior (like forgetting passwords), because it should be a bug! please, let me know. - Apr 22 2010

Various KDE 1.-4. Improvements by gmolina 153 comments
I would like to submit it to opensuse, but I couldn't find out how. Can you point me where to look for that info?
People at mozzilla are already studying it for approval.
- Jan 24 2010

Various KDE 1.-4. Improvements by gmolina 153 comments
You install this extension: https://addons.mozilla.org/us-US/firefox/addon/2848 or any other password exporter/importer, then you temporary disable my extension. Export your password and disabled sites info, enable my extension and lastly you import your info back again, this will be imported to kwallet.
- Dec 11 2009

Various KDE 1.-4. Improvements by gmolina 153 comments
OpenSuse 11.2
KDE 4.3.1
Firefox 3.5.5
in 32 and 64 bits - Dec 11 2009

Various KDE 1.-4. Improvements by gmolina 153 comments
But sharing Form Data with other KDE apps would be a bit more difficult, for example I was not able to store more than one password for the same realm with konqeror, and if you take a look at the Form Data folder of your kwallet, you may guess why.
Another problem is that urls are saved differently in konqueror and firefox, there have to be some kind of conversion.
- Dec 11 2009