summaryrefslogtreecommitdiffstats
path: root/src/CLI/report.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Improved echo switching as suggested by DenysKarel Klic2010-05-051-5/+14
|
* Do not echo password to terminal in abrt-cliKarel Klic2010-05-051-1/+27
|
* Changes to abrt-cli made by Denys Vlasenko on 2010-03-18.Karel Klic2010-04-201-16/+11
| | | | Reviewed by Karel Klic.
* Allow user to select which reporter he wants to use to report a crash using CLI.Karel Klic2010-03-181-44/+155
| | | | | | | 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>
* use FILENAME_BACKTRACE for oops text tooDenys Vlasenko2010-03-051-4/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* *: UID:UUID -> crash_id conversionDenys Vlasenko2010-03-041-3/+3
| | | | | | | | | | | | | | | | | | | 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>
* fix format security errorFrederic Crozat2010-03-021-1/+1
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* cli: add support for "--report @N" and "--report PARTIAL_UUID"Denys Vlasenko2010-02-231-18/+20
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Load plugin settings also from ~/.abrt/*.confKarel Klic2010-02-121-82/+114
|
* Remove newline from user input, separate run_report_editor from the reportKarel Klic2010-02-121-61/+122
|
* cli: fix trivial error counter bugDenys Vlasenko2010-02-091-5/+5
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Ask for login and password if missing from reporter plugin.Karel Klic2010-02-051-1/+54
|
* cli: fix the problem of not showing oops text in editorDenys Vlasenko2010-02-031-7/+9
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrtd: fix Report() dbus call gaping security holesDenys Vlasenko2010-01-211-6/+6
| | | | | | We were blindly trusting the values passed to us Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* move all FILENAME_xxx defines to inc/CrashTypes.hDenys Vlasenko2010-01-191-7/+8
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* unify "crash data, "crash info" and "crash report" data types. they are the sameDenys Vlasenko2010-01-191-7/+7
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-cli: report success/failure of reporting. closes bug 71Denys Vlasenko2009-12-111-70/+80
| | | | | | See https://fedorahosted.org/abrt/ticket/71 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* src/CLI/*: fix an unterminated argv + simplificationsDenys Vlasenko2009-10-311-27/+23
| | | | | | | | | | | | | | | 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>
* fix warning and whitespace damageDenys Vlasenko2009-10-211-39/+39
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Use defines instead of strings where possible.Karel Klic2009-10-211-22/+24
|
* Tell user about sending the report.Karel Klic2009-10-201-0/+6
|
* Inform whether some changes were detected in the crash report.Karel Klic2009-10-201-24/+84
|
* More comments.Karel Klic2009-10-201-4/+10
|
* Print error on unlink failure.Karel Klic2009-10-201-1/+2
|
* Code comments. Better UI texts.Karel Klic2009-10-201-27/+31
|
* Initial implementation of crash report editor. Splitted CLI.cpp into ↵Karel Klic2009-10-201-0/+344
multiple files for clarity.