summaryrefslogtreecommitdiffstats
path: root/src/gui
Commit message (Collapse)AuthorAgeFilesLines
* fixes for s/release/os_release/g changeDenys Vlasenko2011-02-101-1/+5
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* get rid of FILENAME_DESCRIPTION, rename "release" to "os_release"Denys Vlasenko2011-02-101-2/+1
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2011-02-051-1/+1
|\
| * abrt-gui: fix wrong field name; Message->messageDenys Vlasenko2011-02-051-1/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* | - help button show the online help instead of about dialog rhbz#666267Jiri Moskovcak2011-02-052-4/+46
|/
* minor build fixesJiri Moskovcak2011-01-251-2/+2
|
* fixed some gui warnings rhbz#671488Jiri Moskovcak2011-01-254-648/+5
| | | | | | - it turned out to be caused by some unused code we had in git, so I just removed it and find out, that I was redefining the "show" signal from GObject, so I renamed it to "show_gui"
* disable SetSettings dbus call codeDenys Vlasenko2011-01-202-6/+11
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* *: rename *crash_dump.* -> *crash_data.*Denys Vlasenko2010-12-221-1/+1
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* GUI: optimized the log window (possibly fixes rhbz#596592)Jiri Moskovcak2010-12-022-37/+50
| | | | | | - we used to change the whole textbuffer and redraw the whole textview, now we just add the last line - possibly fixes *gtk_text_mark_get_buffer bugs
* preparatory patch for future factoring out of headers for reportlibDenys Vlasenko2010-11-261-1/+1
| | | | | | Some files and functions are renamed, no logic changes. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* GUI: added a button to view a log when in verbose modeJiri Moskovcak2010-11-251-0/+30
|
* GUI: at least show warn when the rating is lowJiri Moskovcak2010-11-251-0/+8
| | | | | | - we lost the ability to query the reporters if they require rating during the plugins->separate process transition, so we can't disable the reporting, so at least show a warning about it...
* GUI: handle crashdir parameter in crash_cbJiri Moskovcak2010-11-231-1/+1
| | | | | | - crashdir in now in Crash signal, so we need to modify crash_cb to know about it, otherwise it ends up with exception and gui is not refreshed when crash happens while the gui is open
* remove sqlite DBDenys Vlasenko2010-11-235-27/+25
| | | | | | | | | | | | | | | | | | | | | | This change removes sqlite database. Database was used to find dump dirs by [UID:]UUID. This patch uses more natural way: dump dirs are addressed by their directory names. DB was also used to produce a list of dump dirs. Now it is done by iterating over the /var/spool/abrt directory. And finally, DB was also used to find duplicate UUIDs. Now it is done by iterating over the /var/spool/abrt directory. Crash count, "inform all" and reporting result message are moved from DB field to a file in dump dir. "Reported" DB field is deleted - if message != "", then this dump was reported. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* Merge branch 'remove-polkit'Nikola Pajkovsky2010-11-222-38/+0
|\ | | | | | | | | | | * remove-polkit: remove PLUGIN_DYNAMIC_LOAD_UNLOAD remove polkit
| * remove PLUGIN_DYNAMIC_LOAD_UNLOADNikola Pajkovsky2010-11-192-38/+0
| | | | | | | | | | | | it contains polkit Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* | GUI: made howto mandatoryJiri Moskovcak2010-11-221-4/+50
|/ | | | - patch taken from 1.1.x branch, so pushing it without the review
* remove unused SetPluginSettings(...)Nikola Pajkovsky2010-11-162-6/+0
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* abrtd/gui: remove [AnalyzerActionsAndReporters], migrate to event-based ↵Denys Vlasenko2010-11-152-67/+57
| | | | | | processing Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* remove "old" Bugzilla and RHTSupport pluginsDenys Vlasenko2010-11-111-3/+4
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* supply CD_EVENTS element in crash dump structures passed to GUIDenys Vlasenko2010-11-041-0/+1
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* GUI: make the "install debuginfo" hint selectable rhbz#644343Jiri Moskovcak2010-10-211-0/+1
|
* GUI: minor fix to dbus backend to prevent exceptions when kerneloops happen ↵Jiri Moskovcak2010-10-191-2/+1
| | | | | | | | while gui is open - if oops happen abrtd sends a crash signal without uid_str parameter, but the old code expects 3 paramaters and throws an exception this patch fixes this problem by making the uid parameter optional
* move uuid generation for CCpp to a separate program (abrt-action-analyze-c)Denys Vlasenko2010-10-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | This patch splits off uuid generation for CCpp to a separate program: Usage: abrt-action-analyze-c [-v] -d DIR Calculates and saves UUID -v, --verbose be verbose -d DIR Crash dump directory Run tested. Thus, now entire cycle of coredump processing/reporting consists of external programs: abrt-action-analyze-c abrt-action-save-package-data abrt-action-install-debuginfo abrt-action-generate-backtrace abrt-action-bugzilla Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* GUI: added search box to backtrace view rhbz#612017Jiri Moskovcak2010-10-121-1/+143
|
* s/CD_DUPHASH/FILENAME_DUPHASH/gDenys Vlasenko2010-10-111-10/+14
| | | | | | | This is needed to make duplicate hash visible for separate programs looking at crash dumps. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* add a bit more logging in places. fix typosDenys Vlasenko2010-10-073-4/+6
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* GUI: wrap howto and comments rhbz#625237Jiri Moskovcak2010-08-301-0/+2
|
* GUI: show horizontal scrollbar when neededJiri Moskovcak2010-08-301-1/+1
|
* GUI: wrap lines in the backtrace window rhbz#625232Jiri Moskovcak2010-08-301-1/+3
|
* GUI: changed '*' to '•' rhbz#625236Jiri Moskovcak2010-08-301-2/+2
|
* added utf-8 coding tag into .py filesJiri Moskovcak2010-08-308-0/+8
|
* GUI: show the scrollbar in summary only when neededJiri Moskovcak2010-08-301-1/+1
|
* added package, uuid and uid as parameters to "crash" signalJiri Moskovcak2010-08-301-8/+7
|
* GUI: set the right parent for progress bar rhbz#625241Jiri Moskovcak2010-08-251-10/+24
|
* GUI: added accelerator key "Delete" to the delete button rrakus@redhat.comJiri Moskovcak2010-08-201-0/+1
|
* enrich an exception with the dump directory path; it's useful for debuggingKarel Klic2010-08-191-1/+9
|
* GUI: increase dbus timeout in Report() callDenys Vlasenko2010-08-171-2/+4
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: make the bt viewer not-editable rhbz#621871Jiri Moskovcak2010-08-111-0/+2
|
* lower case direcotry(no code changed)Nikola Pajkovsky2010-08-1026-0/+6461
Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>