summaryrefslogtreecommitdiffstats
path: root/src/Gui/ConfBackend.py
Commit message (Collapse)AuthorAgeFilesLines
* gui: fix the last case where gnome-keyring's find_items_sync() may throw ↵Denys Vlasenko2010-04-011-0/+3
| | | | | | DeniedError Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: fixed some pylint warningsJiri Moskovcak2010-01-301-4/+3
|
* GUI: fixed bug caused by failed gk-authorizationJiri Moskovcak2010-01-291-20/+43
| | | | | | | - if user enters a wrong password to gk and doesn't unlock it, the GUI would throw an exception, this patch makes GUI to ask twice per every plugin, ignore the exception is it fails and it will use defaults from /etc/abrt/plugins
* GUI: better code for plugin settings overriding; better logging; fixed "not ↵Denys Vlasenko2010-01-151-11/+53
| | | | | | reported" display bug Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* add code to make GUI -> daemon settings passing less weird. not enabled yetDenys Vlasenko2010-01-141-20/+80
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* gui: add logging infrastructureDenys Vlasenko2010-01-141-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* add an URL to Gnome keyring API (it wasn't trivial to google for)Denys Vlasenko2010-01-131-0/+3
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* *: disable plugin loading/unloading through GUI. Document keyring a bitDenys Vlasenko2010-01-131-3/+19
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* whitespace cleanupDenys Vlasenko2009-12-031-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: survive gnome-keyring access denial rhbz#543200Jiri Moskovcak2009-12-021-8/+19
|
* GUI: survive if g-k access is denied rhbz#534171Jiri Moskovcak2009-11-201-0/+2
| | | | | - if gnome keyring is password protected abrt asks for unlock it, when you hit cancel on open gnome keyring you will got this crash.
* typo fixJiri Moskovcak2009-11-011-1/+1
|
* GUI: fixed problem with keyring when run after "su -"Jiri Moskovcak2009-10-221-4/+17
| | | | | | | - keyring daemon works only for the session owner so, if user "su" to other user abrt will fail to read/write any settings and will load the defaults, user still can change the settings and use them, but it will be lost when he quit the gui
* fixed saving/reading user configJiri Moskovcak2009-10-071-0/+12
| | | | | | | - if user changes else then the password, the keyring was duped and the next time the old one was returned, so we need to make sure that the keyring is only updated (so far by removing the old one and creating a new one)
* GUI: code cleanup, removed some debugging messagesJiri Moskovcak2009-10-051-5/+3
|
* removed unsecure reading/writting from ~HOME directoryJiri Moskovcak2009-10-051-0/+64
- daemon eunning under root can't read/write from ~HOME, so reading/writting config files have been moved to client (GUI) - uses gnome keyring to store the credentials