summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* abrtd: make it verbose only on -v[vvvv]Denys Vlasenko2009-09-041-39/+45
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* typedef cleanup. no code changesDenys Vlasenko2009-09-047-39/+38
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrtd: move FindNewDumps() out of init sectionDenys Vlasenko2009-09-041-16/+19
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrtd: much more extensive logging at start. to be hidden under -v laterDenys Vlasenko2009-09-043-46/+86
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrtd: additional logging on initialization failureDenys Vlasenko2009-09-041-2/+10
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* APPLET: small fixJiri Moskovcak2009-09-041-2/+2
|
* APPLET: added about dialog, removed popup, if icon is not visible, fixed ↵Jiri Moskovcak2009-09-044-38/+173
| | | | | | | | (trac#43) It was confusing for some users, that the applet didn't have any description If the status icon wasn't visible (embedded in tray) the popup was shown in the wrong place Applet isn't shown if GUI is running (trac#43).
* Settings.cpp: small fix in .conf saving error reporting; whitespace fixesDenys Vlasenko2009-09-031-48/+50
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrtd: simplify .conf file savingDenys Vlasenko2009-09-031-80/+69
| | | | | | | | | -2k: text data bss dec hex filename 197276 2624 2352 202252 3160c abrt.t4/abrt-0.0.8/src/Daemon/.libs/abrtd 195513 2656 2352 200521 30f49 abrt.t6/abrt-0.0.8/src/Daemon/.libs/abrtd Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Merge branch 'master' of ssh://vda@git.fedorahosted.org/git/abrtDenys Vlasenko2009-09-031-4/+4
|\
| * renamed abrt to abrtd, few minor spec file fixesJiri Moskovcak2009-09-031-4/+4
| | | | | | | | | | abrtd is less confusing for users as it stands for abrt daemon added some obsoletes to make the installation smooth and remove bbuddy
* | CommLayerServerDBus: wire up {Get,Set}Settings as dbus methodsDenys Vlasenko2009-09-031-13/+53
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | Settings: add comments, do some trivial simplificationsDenys Vlasenko2009-09-033-63/+94
|/ | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Merge branch 'master' of ssh://vda@git.fedorahosted.org/git/abrtDenys Vlasenko2009-09-032-0/+101
|\
| * fix polkitDaniel Novotny2009-09-032-3/+3
| |
| * added Polkit filesDaniel Novotny2009-09-032-0/+101
| |
* | CommLayerServerDBus: make it resilient (again) against malformed dbus callsDenys Vlasenko2009-09-022-125/+232
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | Merge branch 'master' of ssh://vda@git.fedorahosted.org/git/abrtDenys Vlasenko2009-09-021-0/+24
|\|
| * adding PolicyKit policyDaniel Novotny2009-09-021-0/+24
| |
* | fix my mixup of int64/uint64 in dbusDenys Vlasenko2009-09-021-8/+7
|/ | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* add gettext support for all pluginsNikola Pajkovsky2009-09-022-0/+25
|
* APPLET: removed the warning bubble about not running abrt service (walters)Jiri Moskovcak2009-09-023-3/+19
|
* fix map_string_string_t typedef name to map_string_t; silly optimizationsDenys Vlasenko2009-09-026-49/+65
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* optimize type signature string generation for dbusDenys Vlasenko2009-09-011-12/+19
| | | | | | | | | | -1.5k: text data bss dec hex filename 194731 2584 2320 199635 30bd3 abrt.z7/abrt-0.0.8/src/Daemon/.libs/abrt 193117 2592 2320 198029 3058d abrt.z8/abrt-0.0.8/src/Daemon/.libs/abrt Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* move die_out_of_memory() to abrtlibDenys Vlasenko2009-09-011-6/+0
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* whitespace fixesDenys Vlasenko2009-09-011-5/+5
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: don't try to introspect the clientJiri Moskovcak2009-09-011-1/+1
|
* APPLET: changed tooltip rhbz#520293Jiri Moskovcak2009-09-011-2/+2
|
* CommLayerServerDBus: rewrote to use dbus, not dbus-c++Denys Vlasenko2009-09-015-221/+785
| | | | | | | | | | | | | | | Expect some rough edges. On the plus side: (1) -15 kb in our own code: text data bss dec hex filename 209057 2664 2640 214361 34559 abrt.z5/abrt-0.0.8/src/Daemon/.libs/abrt 194958 2576 2320 199854 30cae abrt.z6/abrt-0.0.8/src/Daemon/.libs/abrt (2) this will allow us to stop using libdbus-c++-1.so.0 in the future (-200kb of code) (3) a lot of logging added (most on -vvv verbosity level) to help with debug Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: every item in report is sent by default - added warning dialog to let ↵Jiri Moskovcak2009-09-012-1/+10
| | | | user change it
* GUI: better error messageJiri Moskovcak2009-09-012-3/+3
|
* DBUS: return proper ErrorMessage if report failsJiri Moskovcak2009-09-012-1/+12
|
* Fixed report check to really do the checkingJiri Moskovcak2009-09-011-1/+1
|
* GUI: improvements to settings dialogJiri Moskovcak2009-09-013-54/+81
|
* Merge branch 'master' of git://git.fedorahosted.org/abrtZdenek Prikryl2009-08-314-3/+9
|\
| * GUI: enabled doubleclick on dump in mainwindowJiri Moskovcak2009-08-311-1/+6
| |
| * Changed JobStarted to pure virtual methodJiri Moskovcak2009-08-313-2/+3
| |
* | added report checkZdenek Prikryl2009-08-311-4/+38
|/
* daemon: log DBus calls with -v; log file creation only with -vvvDenys Vlasenko2009-08-284-67/+80
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* remove unused CObserver::Debug methodDenys Vlasenko2009-08-283-12/+6
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* daemon: better cleanup logic; added -v option (so far does nothing)Denys Vlasenko2009-08-282-46/+76
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Added {Get, Set}Settings functionsZdenek Prikryl2009-08-272-1/+34
|
* fixed rhbz 518606Zdenek Prikryl2009-08-271-50/+41
|
* consolidate container typedefs in one file (we had a few dupes)Denys Vlasenko2009-08-278-48/+31
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* resolved: Ticket #70: Be more paranoid about Bugzilla.conf permissionsNikola Pajkovsky2009-08-271-7/+0
|
* simplify error handling. CrashWatcher.cpp lost a few wrapper functionsDenys Vlasenko2009-08-277-160/+83
| | | | | | -4k of code Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* CCApplet: gettext supportNikola Pajkovsky2009-08-273-12/+58
|
* eliminate global variable g_cwDenys Vlasenko2009-08-273-29/+27
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* added signal JobStarted => removed the ugly sleep() hackJiri Moskovcak2009-08-276-16/+28
|
* don't encode the job id into message string, send it as an separate argumentJiri Moskovcak2009-08-276-21/+34
|