summaryrefslogtreecommitdiffstats
path: root/src/Daemon/PluginManager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* reduce verbosity a bitDenys Vlasenko2009-09-211-8/+10
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* remove a few C++-isms where they did not buy any convenience anywayDenys Vlasenko2009-09-181-8/+7
| | | | | | | | | | | | text data bss dec hex filename 182372 2624 2320 187316 2dbb4 abrt.t2/abrt-0.0.8.5/src/Daemon/.libs/abrtd 180635 2584 1968 185187 2d363 abrt.t3/abrt-0.0.8.5/src/Daemon/.libs/abrtd 34110 1340 768 36218 8d7a abrt.t2/abrt-0.0.8.5/src/CLI/.libs/abrt-cli 30202 1292 224 31718 7be6 abrt.t3/abrt-0.0.8.5/src/CLI/.libs/abrt-cli 22116 1688 376 24180 5e74 abrt.t2/abrt-0.0.8.5/src/Applet/.libs/abrt-applet 21254 1648 88 22990 59ce abrt.t3/abrt-0.0.8.5/src/Applet/.libs/abrt-applet Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fixed polkit to remember the autorizationJiri Moskovcak2009-09-101-2/+2
|
* added dbus wrappers for register/unregister plugindnovotny2009-09-091-0/+30
|
* PluginManager.cpp: small optimization: don't search twice in containersDenys Vlasenko2009-09-071-30/+43
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fix map_string_string_t typedef name to map_string_t; silly optimizationsDenys Vlasenko2009-09-021-3/+3
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* add job ids (== thread ids) to warning/update DBus messagesDenys Vlasenko2009-08-261-3/+3
| | | | | | | | renamed: comm_layer_inner_warning -> warn_client comm_layer_inner_status -> update_client Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* replace comm_layer_inner_debug() with log() everywhereDenys Vlasenko2009-08-261-4/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* eliminate AddOpenGPGPublicKey() and AddBlackListedPackage() stubsDenys Vlasenko2009-08-261-2/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* more sensible loggingDenys Vlasenko2009-08-251-15/+7
| | | | | | | | | | | comm_layer_inner_debug was jumping through the hoops in order to simply send a message to stderr. this can be made much simpler. also, set logmode to LOGMODE_SYSLOG in abrt daemon, making its log visible if it is daemonized. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* convert two PluginManager member functions to non-member onesDenys Vlasenko2009-08-241-83/+89
| | | | | | some cleanups for previous commits included too Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* hardcode CPluginManager constructor's parameters, they are constantDenys Vlasenko2009-08-241-10/+5
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* eliminate class DynamicLybrary by folding it into class ABRTPluginDenys Vlasenko2009-08-241-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Comment cannot start in the middle of the line.Zdenek Prikryl2009-08-201-9/+4
| | | | Comment has to start by Char # (first char in the line)
* fixed getting plugin's settingsZdenek Prikryl2009-08-141-5/+4
|
* .abrt directory in $HOME is created if it doesn't existZdenek Prikryl2009-08-141-2/+31
|
* created conf file has uid,gid of an userZdenek Prikryl2009-08-141-1/+9
|
* added comment charZdenek Prikryl2009-08-111-1/+1
|
* removed debug printsZdenek Prikryl2009-08-111-2/+0
|
* moved LoadSettings from plugins into PluginManagerZdenek Prikryl2009-08-111-6/+116
|
* dynamic_cast<> seems to be misbehaving. Disabling it for now.Denys Vlasenko2009-08-061-4/+4
| | | | | | abrt daemon is SEGVing without this Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* move lib/MiddleWare/PluginManager.* -> src/Daemon/PluginManager.*Denys Vlasenko2009-08-061-0/+287
This reduces code size by 14k. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>