summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * abrt-debuginfo-install: download packages one-by-one - better loggingDenys Vlasenko2009-11-021-6/+20
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * make_description_xxx: do not report empty fieldsDenys Vlasenko2009-11-022-1/+6
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * fixes to spec fileJiri Moskovcak2009-11-021-7/+11
| | | | | | | | | | | | - added elfutils and yum-utils as dependency - fixed desktop file install - make daemon restart after update
| * Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-11-0210-19/+95
| |\
| | * com.redhat.abrt.service: removed -t33Denys Vlasenko2009-11-021-4/+4
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * abrtd: fix bad interaction with -T SEC code and !-dDenys Vlasenko2009-11-021-4/+11
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * s/CC_DBUS_/ABRTD_DBUS_/gDenys Vlasenko2009-11-024-11/+11
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * adding scripts/* - haphazard collection of debug toolsDenys Vlasenko2009-11-024-0/+69
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * | Added abrt.png, fixed rhbz#Jiri Moskovcak2009-11-024-4/+14
| |/ | | | | | | - we should have an icon in menu
| * lib/Plugins/CCpp: respect DebugInfoCacheMB settingDenys Vlasenko2009-11-0210-45/+125
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * Hack to fix the problem with daemon remembering the last used settingsJiri Moskovcak2009-11-0117-26/+142
| |
| * Sending translation for Greekcharnik2009-11-011-73/+73
| |
| * CCpp.conf: add DebugInfoCacheMB option (ignored for now)Denys Vlasenko2009-11-013-10/+26
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * Merge branch 'master' of ssh://jmoskovc@git.fedorahosted.org/git/abrtJiri Moskovcak2009-11-011-0/+520
| |\
| | * Sending translation for po/el.poppapadeas2009-11-011-0/+520
| | |
| * | typo fixJiri Moskovcak2009-11-011-1/+1
| |/
| * disabled kerneloops in config fileJiri Moskovcak2009-10-311-1/+2
| |
| * added dependency to gdb >= 7.0Jiri Moskovcak2009-10-311-1/+1
| |
| * small fix: forgot to terminate longopts[]Denys Vlasenko2009-10-311-0/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * fix segfault on "abrt-pyhook-helper -p X </dev/null" (use of uninitialized ↵Denys Vlasenko2009-10-311-71/+61
| | | | | | | | | | | | | | | | | | | | | | | | variiable) Converted to getopt (argp_parse is a GNUism), it's smaller now: text data bss dec hex filename 6461 1364 64 7889 1ed1 old/abrt-pyhook-helper 6579 876 128 7583 1d9f new/abrt-pyhook-helper Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * fix a bug where after realloc we may scribble over uninitialized memoryDenys Vlasenko2009-10-311-32/+15
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * src/CLI/*: fix an unterminated argv + simplificationsDenys Vlasenko2009-10-316-193/+174
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The fix is: - const char *args[6]; - args[0] = editor; - args[1] = path; + char *args[3]; + args[0] = (char*)editor; + args[1] = (char*)path; + args[2] = NULL; run_command(args); Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * implement abrtd -t TIMEOUT_IN_SECDenys Vlasenko2009-10-316-100/+119
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtKarel Klic2009-10-3015-473/+546
| |\
| | * lib/Plugins/Logger: much more sane dump format; fix misdetection of text filesDenys Vlasenko2009-10-307-74/+74
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * move logger's report text creation to lib/Utils/make_descr.cppDenys Vlasenko2009-10-303-69/+76
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * lib/Plugins/Bugzilla: generate less sparse bug report commentsDenys Vlasenko2009-10-304-60/+101
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * lib/Plugins/Bugzilla: better message at login failureDenys Vlasenko2009-10-301-7/+17
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * document a bad interaction with keyringDenys Vlasenko2009-10-301-10/+24
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * Sending translation for Germanfab2009-10-301-251/+250
| | |
| | * *: wire up /var/run/abrt in a few more placesDenys Vlasenko2009-10-303-1/+6
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * lib/Plugins/CCpp: use /var/run instead of /tmp for tempdirDenys Vlasenko2009-10-301-1/+2
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * abrt-debuginfo-install: tweaked commentDenys Vlasenko2009-10-301-3/+4
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| | * Bugzilla: fix some memory leaks. More reamins on error path...Denys Vlasenko2009-10-302-51/+46
| | | | | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * | Receive and print Warning and Update messages during remode procedure callsKarel Klic2009-10-301-10/+66
| | |
| * | Python backtrace size limited to 1 MBKarel Klic2009-10-301-3/+9
| | |
| * | fixes based on review by DenysKarel Klic2009-10-301-19/+23
| |/
| * Bugzilla: simplify; CCpp, DebugDump: don't add EOL to one-line data filesDenys Vlasenko2009-10-303-34/+34
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * fix incorrect logic for checking/correcting directory ownerDenys Vlasenko2009-10-301-1/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * Merge branch 'master' of ssh://vda@git.fedorahosted.org/git/abrtDenys Vlasenko2009-10-301-2/+2
| |\
| | * build fixes, added plugin-logger to abrt-desktopJiri Moskovcak2009-10-301-2/+2
| | | | | | | | | | | | | | | - plugin-logger should work as a "failsafe" so if every other reporters fail, user can still find the reports in /var/log/abrt-logger
| * | reenable sanitization of /var/cache/abrt; create abrt-di (debuginfo cache) tooDenys Vlasenko2009-10-301-16/+22
| |/ | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * Added Catcut.GTKBuilderJiri Moskovcak2009-10-292-2/+187
| |
| * CCpp: added missing Close()Jiri Moskovcak2009-10-291-0/+1
| |
| * Enable new debuginfo downloading codeDenys Vlasenko2009-10-292-54/+50
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-10-292-14/+54
| |\
| | * DebugDump: change directory locking code to use symlinks.Denys Vlasenko2009-10-292-14/+54
| | | | | | | | | | | | | | | | | | | | | closes race window, see https://bugzilla.redhat.com/show_bug.cgi?id=531347 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * | blacklisted nspluginwrapper, because it causes too many useless reportsJiri Moskovcak2009-10-291-1/+1
| | | | | | | | | | | | | | | | | | - nspluginwrapper tends to crash a lot with closed source plugins (like flash) and there is nothing developers can do about it, so it's just filling BZ with useless reports
| * | GUI: Wrong settings window is not shown behind the reporter dialog rhbz#531119Jiri Moskovcak2009-10-293-3/+6
| |/
| * forgot return back 120 = KernelscannerNikola Pajkovsky2009-10-291-1/+1
| |