summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* mailx: correct EnglishDenys Vlasenko2009-08-191-3/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Bugzilla.conf: correct EnglishDenys Vlasenko2009-08-191-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* BZ plugin: removed /xmlrpc.cgi from config, made the report message more ↵Jiri Moskovcak2009-08-193-4/+20
| | | | user friendly
* CCpp plugin: do not abort if debuginfos aren't foundDenys Vlasenko2009-08-191-14/+23
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* removed a removed parameterZdenek Prikryl2009-08-181-3/+0
|
* removed dangerous parameter optionZdenek Prikryl2009-08-182-8/+0
|
* whitespace cleanup, no code changesDenys Vlasenko2009-08-182-2/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* simplify parsing of debuginfo-install outputDenys Vlasenko2009-08-181-49/+26
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI now show the status window after report to let user know how did it go.Jiri Moskovcak2009-08-179-12/+22
|
* added support for storing results from reporters (used from gui)Zdenek Prikryl2009-08-1413-25/+51
|
* make ccpp plugin more verboseZdenek Prikryl2009-08-141-0/+1
|
* fixed creation of the base64 textZdenek Prikryl2009-08-141-11/+11
|
* DBUS: exposed method SetPluginSettingsJiri Moskovcak2009-08-125-0/+23
|
* Bugzilla: fixed crash with empty comment (zprikryl)Jiri Moskovcak2009-08-121-7/+18
|
* moved LoadSettings from plugins into PluginManagerZdenek Prikryl2009-08-1116-133/+1
|
* bugzilla plugin can do +1 in a bugzillaZdenek Prikryl2009-08-112-11/+62
|
* for correct plugin's settings we need to know an userZdenek Prikryl2009-08-115-7/+9
|
* new function for gettings user's home directoryZdenek Prikryl2009-08-111-0/+6
|
* GUI: Added option to disable/enable plugins (config preview)Jiri Moskovcak2009-08-114-31/+16
|
* DBUS: exposed methods Un/RegisterPluginJiri Moskovcak2009-08-115-0/+44
|
* add the GPL notice to the kerneloops' scannerAnton Arapov2009-08-112-0/+52
| | | | this is important, since the codebase of the kerneloops.org was used.
* kerneloops eliminate commented code, related to type distinguishing...Anton Arapov2009-08-113-7/+7
| | | | it seems stable, proved by the stress tests. :)
* Kerneloops plugin: style fixesAnton Arapov2009-08-104-149/+153
|
* fix a bug where kerneloops segfaults on empty oops dataAnton Arapov2009-08-101-5/+15
| | | | | | | also, we aren't interested in empty reports, so do not report anything when oops message was not provided. Signed-off-by: Anton Arapov <aarapov@redhat.com>
* DBUS: added new method to get plugin settingsJiri Moskovcak2009-08-106-7/+32
|
* fix compile-time warnings.Denys Vlasenko2009-08-094-13/+17
| | | | | | | One fix (in CCrashWatcher::GetPluginsInfo) needs closer look, others are "trivially correct" Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* style fixes, no code changesDenys Vlasenko2009-08-093-10/+10
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* replace string memebers of plugin_info_t with const char*Denys Vlasenko2009-08-071-6/+6
| | | | | | | | | | Since they are constant, and we never ever want to change them, there is no benefit in having them as strings. This change removes one global data object's constructor and destructor from every applet .so module. 6k less code. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* simplify logging by removing CCommLayerInner classDenys Vlasenko2009-08-073-121/+18
| | | | | | | | It had single use site. The class itself is trivial, it just passed messages down to an CObserver. Now we pass messages directly to an CObserver. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fix a bug where kerneloops scanner forgets to delete .lock filesDenys Vlasenko2009-08-071-0/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* preparatory cleanupsDenys Vlasenko2009-08-071-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Split real code from lib/MiddleWare/Plugin.h into Plugin.cpp.Denys Vlasenko2009-08-077-93/+105
| | | | | | 30k smaller code. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-08-065-322/+0
|\
| * move lib/MiddleWare/{ABRTPlugin,DynamicLibrary}.* to src/Daemon/Denys Vlasenko2009-08-065-322/+0
| |
* | Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-08-0630-1895/+971
|\| | | | | | | | | Conflicts: lib/CommLayer/DBusServerProxy.h
| * fix a case when we print a warning twice.Denys Vlasenko2009-08-061-13/+14
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * move lib/MiddleWare/PluginManager.* -> src/Daemon/PluginManager.*Denys Vlasenko2009-08-063-444/+0
| | | | | | | | | | | | This reduces code size by 14k. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * style cleanups in preparation for PluginManager moveDenys Vlasenko2009-08-062-73/+77
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * move huge inlines out of DBusClientProxy.h to DBusClientProxy.cppDenys Vlasenko2009-08-065-190/+269
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * deinline 2k+ big inlines in DBusServerProxy.h. No logic changesDenys Vlasenko2009-08-063-179/+248
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * moving MiddleWare.{h,cpp} from lib/MiddleWare/ to src/Daemon/Denys Vlasenko2009-08-063-981/+18
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * prepare makefiles for code movement between dirs. no code changesDenys Vlasenko2009-08-061-15/+32
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * trailing whitespace removal. no code changesDenys Vlasenko2009-08-0614-87/+86
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * CDebugDump::Create(pDir, pUID): make 2nd param uid_t, not stringDenys Vlasenko2009-08-054-10/+9
| |
| * Hooks/CCpp.cpp: don't dump executables with "/abrt" substring in the nameDenys Vlasenko2009-08-051-1/+29
| | | | | | | | | | | | some cleanups and abrtlib work crept in too... Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * do not abort if chown fails, just warnDenys Vlasenko2009-08-051-16/+7
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * forgot to add lib/Utils/copyfd.cppDenys Vlasenko2009-08-051-0/+107
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * simplify C/C++ hookDenys Vlasenko2009-08-051-1/+2
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * move huge inlines out-of-lineDenys Vlasenko2009-08-052-0/+186
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | DBUS: added method GetPluginsInfo()Jiri Moskovcak2009-08-065-3/+31
|/