summaryrefslogtreecommitdiffstats
path: root/src/CLI/CLI.cpp
Commit message (Collapse)AuthorAgeFilesLines
* include abrt version in bug descriptionsDenys Vlasenko2009-11-181-7/+6
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* build fixesJiri Moskovcak2009-11-121-1/+0
|
* src/CLI/*: fix an unterminated argv + simplificationsDenys Vlasenko2009-10-311-59/+59
| | | | | | | | | | | | | | | 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-2/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Initial implementation of crash report editor. Splitted CLI.cpp into ↵Karel Klic2009-10-201-219/+7
| | | | multiple files for clarity.
* ABRTSocket renamed DisConnect to Disconnect, CLI added localization support ↵Karel Klic2009-10-191-55/+164
| | | | and commandline editor work in progress
* Added --version, -V, --help, -? options. Fixed crash caused by unknown option.Karel Klic2009-10-121-39/+79
|
* abrtd: add an optional 2nd parameter to Report dbus callDenys Vlasenko2009-09-241-4/+4
| | | | | | Also, simplified dbus code a bit. 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-20/+29
| | | | | | | | | | | | 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>
* abrt-applet: remove dbus-c++ glue. -50k of codeDenys Vlasenko2009-09-181-1/+1
| | | | | | | | | | text data bss dec hex filename 70529 2144 1528 74201 121d9 abrt.t0/UNPACKED/usr/bin/abrt-applet 22116 1688 376 24180 5e74 abrt.t1/UNPACKED/usr/bin/abrt-applet Also, we do not use dbus-c++ anymore, which is 200k of code Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* remove C++ dbus glue in src/CLI; fix a bug in --reportDenys Vlasenko2009-09-171-140/+220
| | | | | | | Several kb of code removed. The nly remaining use of C++ glue is desktop applet. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* trailing whitespace removal. no code changesDenys Vlasenko2009-08-061-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Code cleanupJiri Moskovcak2009-07-201-3/+1
|
* CLI: Added support for dbusJiri Moskovcak2009-07-071-14/+29
|
* new default socket pathZdenek Prikryl2009-06-171-2/+2
|
* remaned to proper name (Command Line Interface)Zdenek Prikryl2009-06-171-0/+177