summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Date/time honors current system localeKarel Klic2009-10-121-2/+2
|
* Merge branch 'master' of git://git.fedorahosted.org/git/abrtKarel Klic2009-10-1213-95/+102
|\
| * removed JobStarted signal; fixed a small bug in build-id scanning codeDenys Vlasenko2009-10-096-24/+3
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * *: add "force" param to CreateReport dbus call. If !0, regenerates backtraceDenys Vlasenko2009-10-097-18/+31
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * GUI: added option to show password in plugin settings guiJiri Moskovcak2009-10-081-0/+14
| | | | | | | | | | | | - if there is an entry with visibility set to False and toggle button called the same name as entry, we make the toggle button to reveal the password in respective entry
| * GUI: fixed report cells editing rhbz#527763Jiri Moskovcak2009-10-081-2/+5
| | | | | | | | | | - changed cell behavior, so now it remembers the text even on "focus-out" and forgets the new text only if escape is pressed
| * abrt-gui: make it safe wrt abrtd restartsDenys Vlasenko2009-10-071-53/+39
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * fixed saving/reading user configJiri Moskovcak2009-10-071-0/+12
| | | | | | | | | | | | | | - if user changes else then the password, the keyring was duped and the next time the old one was returned, so we need to make sure that the keyring is only updated (so far by removing the old one and creating a new one)
* | abrt->abrtd in Usage msgKarel Klic2009-10-071-1/+1
|/
* rename abrt.8 to abrtd.8Denys Vlasenko2009-10-062-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* small code fixes, no logic changesJiri Moskovcak2009-10-061-2/+2
| | | | | - has_key has been deprecated, so I removed it to avoid deprecation warning
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-10-061-1/+4
|\
| * Fix Bug 526220 - [abrt] crash detected in abrt-gui-0.0.9-2.fc12Denys Vlasenko2009-10-061-1/+4
| | | | | | | | | | | | Caused by lack of sanity checking on .conf contents... Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | GUI: call Report() with the latest pluginsettingsJiri Moskovcak2009-10-062-2/+6
|/ | | | | | - pluginlist is cached so it should be refreshed before Report() is called otherwise we get the old settings to the daemon
* GUI: code cleanup, removed some debugging messagesJiri Moskovcak2009-10-053-10/+3
|
* removed unsecure reading/writting from ~HOME directoryJiri Moskovcak2009-10-0510-52/+144
| | | | | | - daemon eunning under root can't read/write from ~HOME, so reading/writting config files have been moved to client (GUI) - uses gnome keyring to store the credentials
* manual mergeJiri Moskovcak2009-10-053-8/+37
|
* adding trivial pyhook.conf.5Denys Vlasenko2009-10-012-1/+19
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-gui: correct "update" signal signatureDenys Vlasenko2009-10-011-8/+8
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-gui: partially remove job_id parameterDenys Vlasenko2009-10-012-4/+4
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-gui: remove pending_jobs member, it is no longer necessaryDenys Vlasenko2009-09-301-17/+4
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fix all instances of dent->d_type == DT_REG checksDenys Vlasenko2009-09-301-2/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-gui: make "report" toolbar button work even if abrtd is not runningDenys Vlasenko2009-09-302-11/+21
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt-gui: move dbus signal handlers init where they should beDenys Vlasenko2009-09-301-26/+11
| | | | | | | | | | | | | Old code was installing dbus signal handlers as if they are somehow related to the remote object we work with, but this is wrong - in reality, dbus signal handlers are installed on the dbus connection, they are not related to the object. Now code better reflect this. Also, remove AnalyzeComplete dbus handler - there is not such dbus signal. Run tested. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* remove DBusManager::uniq_nameDenys Vlasenko2009-09-299-87/+80
| | | | | | also fix some whitespace damage Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* set LIMIT_MESSAGE to 16k, typo fix and daemon now reads config information ↵Nikola Pajkovsky2009-09-291-6/+38
| | | | from dbus
* build fix for prev commitDenys Vlasenko2009-09-291-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* add support for abrtd autostartDenys Vlasenko2009-09-294-8/+24
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: send the reporters settings as an argument for Report()Jiri Moskovcak2009-09-293-6/+15
| | | | | - daemon shouldn't read from $HOME dir, as it is unsecure and won't work on NFS mounted homes.
* GUI: reversed the dumplist, so the latest crashes are at the topJiri Moskovcak2009-09-291-1/+1
|
* add 16k cap for comment and how to reproduceNikola Pajkovsky2009-09-251-0/+32
|
* abrtd: add an optional 2nd parameter to Report dbus callDenys Vlasenko2009-09-244-111/+70
| | | | | | Also, simplified dbus code a bit. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* added docs/DESIGNDenys Vlasenko2009-09-241-0/+5
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* comment out unused code in appletDenys Vlasenko2009-09-222-62/+66
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* typo fix. no code changesDenys Vlasenko2009-09-221-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Version 0.0.90.0.9Jiri Moskovcak2009-09-222-10/+3
|
* GUI: save/load comment and "how to reproduce"Jiri Moskovcak2009-09-212-2/+11
|
* fixed savind comments and how to reproduce filesZdenek Prikryl2009-09-211-17/+27
|
* better logic for deleting crashes from overflowing /var/cache/abrtDenys Vlasenko2009-09-211-17/+37
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* comments and how to reproduce are stored nowNikola Pajkovsky2009-09-212-0/+38
|
* reduce verbosity a bitDenys Vlasenko2009-09-211-8/+10
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fixed action name for inst. debuginfosdnovotny2009-09-161-2/+2
|
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-09-2114-573/+268
|\
| * remove a few #include <iostream>'sDenys Vlasenko2009-09-181-1/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * remove a few C++-isms where they did not buy any convenience anywayDenys Vlasenko2009-09-187-45/+40
| | | | | | | | | | | | | | | | | | | | | | | | 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>
| * add end-of-line to a few files which didn't have it on last lineDenys Vlasenko2009-09-181-1/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * abrt-applet: remove dbus-c++ glue. -50k of codeDenys Vlasenko2009-09-188-526/+226
| | | | | | | | | | | | | | | | | | | | 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>
* | GUI: fixed word wrap in Comment field rhbz#524349Jiri Moskovcak2009-09-211-1/+2
|/
* updated translation stringsJiri Moskovcak2009-09-187-6/+6
|
* translate correctionNikola Pajkovsky2009-09-181-1/+1
|