summaryrefslogtreecommitdiffstats
path: root/src/Gui
Commit message (Collapse)AuthorAgeFilesLines
* GUI: added support for backtrace ratingJiri Moskovcak2009-11-062-3/+64
| | | | | | - we don't allow user to create a bug report with backtrace rated below 3 - gui shows yellow warning if the rating == 3
* GUI: small fix to make only valid urls clickableJiri Moskovcak2009-11-032-2/+2
|
* just changed commentsJiri Moskovcak2009-11-031-1/+1
|
* GUI: convert to url only string starting as urlJiri Moskovcak2009-11-031-1/+1
|
* Added abrt.png, fixed rhbz#Jiri Moskovcak2009-11-023-2/+6
| | | | - we should have an icon in menu
* typo fixJiri Moskovcak2009-11-011-1/+1
|
* GUI: Wrong settings window is not shown behind the reporter dialog rhbz#531119Jiri Moskovcak2009-10-293-3/+6
|
* Merge branch 'master' of git://git.fedorahosted.org/git/abrtJiri Moskovcak2009-10-281-1/+1
|\
| * typo fixDenys Vlasenko2009-10-271-1/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | GUI: fixed exception when enabling plugin rhbz#530495Jiri Moskovcak2009-10-231-1/+3
|/
* GUI: small fixesJiri Moskovcak2009-10-222-11/+8
|
* GUI: fixed problem with keyring when run after "su -"Jiri Moskovcak2009-10-223-22/+34
| | | | | | | - 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
* GUI: fixed report editor behaviorJiri Moskovcak2009-10-221-4/+1
| | | | - ENTER inserts a new line instead of ending the editing
* GUI: make the newest dump selectedJiri Moskovcak2009-10-221-1/+2
|
* adding abrt-debuginfo-install scriptDenys Vlasenko2009-10-161-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* lib/Plugins/CCpp.cpp: fix a bug with detecting missing debuginfosDenys Vlasenko2009-10-161-2/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* small fix in guiJiri Moskovcak2009-10-131-4/+3
|
* GUI: added refresh button, added sanity check to plugin settingsJiri Moskovcak2009-10-136-40/+237
| | | | | | | | | - added refresh button to reporter dialog, so user can "recreate" the backtrace after he install the necessary debuginfos - gui will warn the user if he tries to ue reporter which requires login/password and if those are not filled properly (next step is to implement test_settings() into plugins, so we can test if the settings are ok before we try to report something)
* Date/time honors current system localeKarel Klic2009-10-121-2/+2
|
* *: add "force" param to CreateReport dbus call. If !0, regenerates backtraceDenys Vlasenko2009-10-091-1/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: added option to show password in plugin settings guiJiri Moskovcak2009-10-081-0/+14
| | | | | | - if there is an entry with visibility set to False and toggle button called the same name as entry, we make the toggle button to reveal the password in respective entry
* GUI: fixed report cells editing rhbz#527763Jiri Moskovcak2009-10-081-2/+5
| | | | | - changed cell behavior, so now it remembers the text even on "focus-out" and forgets the new text only if escape is pressed
* abrt-gui: make it safe wrt abrtd restartsDenys Vlasenko2009-10-071-53/+39
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* 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)
* small code fixes, no logic changesJiri Moskovcak2009-10-061-2/+2
| | | | | - has_key has been deprecated, so I removed it to avoid deprecation warning
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-10-061-1/+4
|\
| * Fix Bug 526220 - [abrt] crash detected in abrt-gui-0.0.9-2.fc12Denys Vlasenko2009-10-061-1/+4
| | | | | | | | | | | | Caused by lack of sanity checking on .conf contents... Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | GUI: call Report() with the latest pluginsettingsJiri Moskovcak2009-10-062-2/+6
|/ | | | | | - pluginlist is cached so it should be refreshed before Report() is called otherwise we get the old settings to the daemon
* GUI: code cleanup, removed some debugging messagesJiri Moskovcak2009-10-053-10/+3
|
* removed unsecure reading/writting from ~HOME directoryJiri Moskovcak2009-10-058-47/+124
| | | | | | - 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
* manual mergeJiri Moskovcak2009-10-053-8/+37
|
* abrt-gui: correct "update" signal signatureDenys Vlasenko2009-10-011-8/+8
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-gui: partially remove job_id parameterDenys Vlasenko2009-10-012-4/+4
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-gui: remove pending_jobs member, it is no longer necessaryDenys Vlasenko2009-09-301-17/+4
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-gui: make "report" toolbar button work even if abrtd is not runningDenys Vlasenko2009-09-302-11/+21
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-gui: move dbus signal handlers init where they should beDenys Vlasenko2009-09-301-26/+11
| | | | | | | | | | | | | Old code was installing dbus signal handlers as if they are somehow related to the remote object we work with, but this is wrong - in reality, dbus signal handlers are installed on the dbus connection, they are not related to the object. Now code better reflect this. Also, remove AnalyzeComplete dbus handler - there is not such dbus signal. Run tested. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* remove DBusManager::uniq_nameDenys Vlasenko2009-09-299-87/+80
| | | | | | also fix some whitespace damage Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* add support for abrtd autostartDenys Vlasenko2009-09-291-6/+11
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: send the reporters settings as an argument for Report()Jiri Moskovcak2009-09-293-6/+15
| | | | | - daemon shouldn't read from $HOME dir, as it is unsecure and won't work on NFS mounted homes.
* GUI: reversed the dumplist, so the latest crashes are at the topJiri Moskovcak2009-09-291-1/+1
|
* Version 0.0.90.0.9Jiri Moskovcak2009-09-222-10/+3
|
* GUI: save/load comment and "how to reproduce"Jiri Moskovcak2009-09-212-2/+11
|
* GUI: fixed word wrap in Comment field rhbz#524349Jiri Moskovcak2009-09-211-1/+2
|
* updated translation stringsJiri Moskovcak2009-09-187-6/+6
|
* GUI: added popup menu, fixed behaviour when run with root privsJiri Moskovcak2009-09-172-3/+41
| | | | | | - pop-up menu binded to right mouse button should be more user friendly - the background color was wrongly set when run as root because of wrong refence to liststore item
* GUI: fixed crash setSettings crashJiri Moskovcak2009-09-161-1/+4
|
* GUI: added missing tooltipsJiri Moskovcak2009-09-101-0/+2
|
* GUI: more global settings (still "read-only")Jiri Moskovcak2009-09-095-88/+593
|
* abrtd: eliminate g_pending_jobs[] map and all corresponding TODOs :)Denys Vlasenko2009-09-081-1/+2
| | | | | | | | | | -6k: text data bss dec hexfilename 194741 2656 2384 199781 30c65abrt.t1/abrt-0.0.8.5/src/Daemon/.libs/abrtd 188316 2648 2320 193284 2f304abrt.t2/abrt-0.0.8.5/src/Daemon/.libs/abrtd Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* build fixesJiri Moskovcak2009-09-081-1/+1
|