summaryrefslogtreecommitdiffstats
path: root/src/CLI/dbus.cpp
Commit message (Collapse)AuthorAgeFilesLines
* lower-case devel headersNikola Pajkovsky2010-07-091-1/+1
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* English and message format fixesDenys Vlasenko2010-06-301-3/+3
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-cli: suppress misleading "crash 'XXXXXXXX' is not in database" messagesDenys Vlasenko2010-05-261-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Allow user to select which reporter he wants to use to report a crash using CLI.Karel Klic2010-03-181-2/+18
| | | | | | | The daemon skips reporters which are not in the list of reporters provided via Report() dbus call. Reviewed by: Jiri Moskovcak <jmoskovc@redhat.com> Reviewed by: Denys Vlasenko <vda.linux@googlemail.com>
* cli: pass reporters param in call_Report(); handle error returnsDenys Vlasenko2010-03-041-6/+29
| | | | | | | | | | | ... Do you want to send the report? [y/N]: y >! string expected in dbus message, but not found ('e') >! dbus call Report: parameter type mismatch Dbus call returned error: 'org.freedesktop.DBus.Error.Failed' Acked-by: Nikola Pajkovsky <npajkovs@redhat.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* *: UID:UUID -> crash_id conversionDenys Vlasenko2010-03-041-4/+4
| | | | | | | | | | | | | | | | | | | This fixes at least three instances where we did not check whether user is even allowed to report or delete a crash. Also fixes a few cases when root might inadvertently act on (e.g. delete) mote than one crash. Renamed FILENAME_UID to CD_UID - makes more sense this way. Added COL_INFORMALL and CD_INFORMALL. Nuked UID == -1 hacks. Renamed getReport() to start_job on Python side. Dropped a few unused parameters from server -> client dbus signals. Fixed CLI's way of reverencing crashes (see updated help text). Run-tested (GUI and CLI). Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Acked-by: Nikola Pajkovsky <npajkovs@redhat.com>
* Ask for login and password if missing from reporter plugin.Karel Klic2010-02-051-3/+25
|
* unify "crash data, "crash info" and "crash report" data types. they are the sameDenys Vlasenko2010-01-191-5/+5
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: make it so that even non-loaded plugins show up in "Plugins" dialogDenys Vlasenko2010-01-141-2/+4
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-cli: report success/failure of reporting. closes bug 71Denys Vlasenko2009-12-111-3/+10
| | | | | | See https://fedorahosted.org/abrt/ticket/71 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* make "abrt-cli --delete randomuuid" report that deletion failed. closes bug 59Denys Vlasenko2009-12-101-21/+37
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* small fix on top of DeleteDebugDump changeDenys Vlasenko2009-12-041-2/+0
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* rename CreateReport -> StartJob, GetJobResult -> CreateReportDenys Vlasenko2009-12-031-4/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* mergeKarel Klic2009-11-091-12/+67
|\
| * s/CC_DBUS_/ABRTD_DBUS_/gDenys Vlasenko2009-11-021-4/+4
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * src/CLI/*: fix an unterminated argv + simplificationsDenys Vlasenko2009-10-311-62/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
| * Receive and print Warning and Update messages during remode procedure callsKarel Klic2009-10-301-10/+66
| |
* | GetPluginsInfo implementationKarel Klic2009-11-091-0/+15
|/
* fix warning and whitespace damageDenys Vlasenko2009-10-211-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* new_call_msg and send_get_reply_and_unref made staticKarel Klic2009-10-201-2/+2
|
* Initial implementation of crash report editor. Splitted CLI.cpp into ↵Karel Klic2009-10-201-0/+130
multiple files for clarity.