summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* GUI: Added detection whether daemon is running (gui disables itself)Jiri Moskovcak2009-07-282-29/+48
|
* Applet: Added detection whether daemon is runningJiri Moskovcak2009-07-283-10/+70
|
* CommLayer: Added DaemonWatcher to watch if daemon is runningJiri Moskovcak2009-07-281-0/+88
|
* Be more paranoid about /proc/.../core_patternDenys Vlasenko2009-07-252-0/+21
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fixing whitespace damage, no code changesDenys Vlasenko2009-07-252-3/+3
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fixed exception throwingZdenek Prikryl2009-07-241-2/+1
|
* Merge branch 'master' of git://git.fedorahosted.org/abrtZdenek Prikryl2009-07-244-55/+26
|\
| * remove superfluous copying in ExecVP paramsDenys Vlasenko2009-07-241-3/+2
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * remove GetGIDFromUID (two copies): getpwuid does the sameDenys Vlasenko2009-07-244-47/+12
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * simplify CAnalyzerCCpp::CreateHashDenys Vlasenko2009-07-241-5/+12
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | plugin can report to different bugzillas in different reportsZdenek Prikryl2009-07-241-9/+18
| |
* | proper deinit of libmagicZdenek Prikryl2009-07-241-2/+2
| |
* | simple fixZdenek Prikryl2009-07-241-1/+1
| |
* | Added first part of gui support in reportingZdenek Prikryl2009-07-2422-23/+90
| |
* | Added gui desriptions for reportersZdenek Prikryl2009-07-244-0/+574
|/
* style fix by popular (Zdenek's) demandDenys Vlasenko2009-07-231-6/+3
| | | | | | | | | | | | | | | Zdenek said: Ahother thing: commit "CCpp.cpp: fix handling of pipes when we fork children". You added piece code with while(1) and then there is a break inside the loop. Personally, I don't like infinite loops :-). There can be something like: ... int r; while ((r = read(pipeout[0], buff, sizeof(buff) - 1) > 0) { Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* typo fixesDenys Vlasenko2009-07-232-29/+28
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* added forgotten "throw" keywordsDenys Vlasenko2009-07-222-4/+4
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-07-221-122/+137
|\
| * CCpp.cpp: fix handling of pipes when we fork childrenDenys Vlasenko2009-07-221-122/+137
| | | | | | | | | | | | Also simplified read loops Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | SPEC: merge gui with applet, create virtual abrt-desktop for easy installJiri Moskovcak2009-07-221-15/+16
|/
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-07-222-32/+35
|\
| * fix several resource leaks on error pathsDenys Vlasenko2009-07-222-32/+35
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | PyHook: removed forgotten debug outputJiri Moskovcak2009-07-221-1/+0
| |
* | Applet: more fixes to work if configure was run with non-default prefixJiri Moskovcak2009-07-223-2/+7
| |
* | Utils: small fixJiri Moskovcak2009-07-221-1/+1
| |
* | Daemon: threading fixesJiri Moskovcak2009-07-222-16/+32
| |
* | CommLayer: added new signal "Warning"Jiri Moskovcak2009-07-222-0/+9
| |
* | GUI: single instance pattern rhbz#512390, trac#60Jiri Moskovcak2009-07-224-12/+83
|/ | | | - improved status window
* Fix build system for the case where configure was run with non-default prefixDenys Vlasenko2009-07-204-5/+15
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: Fixed reporter dialog rhbz#497600Jiri Moskovcak2009-07-201-18/+28
|
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-07-205-63/+159
|\
| * On exit, take care to emit consistent exit status.Denys Vlasenko2009-07-171-5/+13
| | | | | | | | | | | | If we were Ctrl-C'ed, then we should exit by killing ourself, not exit(N). Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * rework unsafe handling of SIGINT/SIGTERMDenys Vlasenko2009-07-173-12/+69
| | | | | | | | | | | | | | | | | | | | Signals are asynchronous. It is unsafe to perform such complex operations in a signal handler. I changed signal handler to just set a flag, and added an event source which returns an event when this variable is set. The action is to stop event loop. Execution then falls through to program exit. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * prevent leaking buf in some casesDenys Vlasenko2009-07-171-4/+12
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * simplify CCrashWatcher::CreatePidFileDenys Vlasenko2009-07-171-23/+19
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * Restore /proc/sys/kernel/core_pattern on error exit.Denys Vlasenko2009-07-153-31/+58
| | | | | | | | | | | | The bug was observed when dbus-abrt.conf is missing. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * test commitroot2009-07-151-1/+1
| | | | | | | | Signed-off-by: root <root@dhcp-lab-117.englab.brq.redhat.com>
* | CCpp: Made it more verboseJiri Moskovcak2009-07-201-2/+3
| |
* | Applet: Added commlayer to Makefile.amJiri Moskovcak2009-07-201-0/+1
| |
* | Code cleanupJiri Moskovcak2009-07-201-3/+1
| |
* | Removed dependency on rhplJiri Moskovcak2009-07-203-5/+9
| |
* | Daemon: added threaded CreateReport -> breaks CLI!Jiri Moskovcak2009-07-2010-73/+254
| |
* | Removed unneeded file.Jiri Moskovcak2009-07-142-86/+1
| |
* | Fixed desktop file installation (ticket#56)Jiri Moskovcak2009-07-082-2/+6
|/
* Minor fix to because of change in abrt dbus API.Jiri Moskovcak2009-07-071-1/+1
|
* Removed unused fileJiri Moskovcak2009-07-072-191/+1
|
* CLI: Added support for dbusJiri Moskovcak2009-07-072-16/+41
|
* Use CABRTException instead of throwing std::stringJiri Moskovcak2009-07-071-1/+2
|
* Added dbus client to commlayerJiri Moskovcak2009-07-076-9/+78
|