summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-04-14 20:25:21 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2011-04-14 20:25:21 +0200
commitaa77bb9ee015eace791d5331b5ce5fe9e5e14634 (patch)
tree25fe8f74dcc0d757a830a926b905ff43e842a01c /src/plugins
parent5fa98f594e9f4186a7c2042a422fdcfc65e7d30c (diff)
downloadabrt-aa77bb9ee015eace791d5331b5ce5fe9e5e14634.tar.gz
abrt-aa77bb9ee015eace791d5331b5ce5fe9e5e14634.tar.xz
abrt-aa77bb9ee015eace791d5331b5ce5fe9e5e14634.zip
wizard: implement long descriptions
The change is somewhat big because I can no longer (ab)use tooltip to store event name. So I created a bit more generic method of remembering which events are shown and selected. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/analyze_LocalGDB.xml.in3
-rw-r--r--src/plugins/analyze_RetraceServer.xml.in4
2 files changed, 7 insertions, 0 deletions
diff --git a/src/plugins/analyze_LocalGDB.xml.in b/src/plugins/analyze_LocalGDB.xml.in
index 54209e70..f85072d0 100644
--- a/src/plugins/analyze_LocalGDB.xml.in
+++ b/src/plugins/analyze_LocalGDB.xml.in
@@ -2,4 +2,7 @@
<event>
<_name>Local GNU Debugger</_name>
<_description>Download debuginfo packages and generate backtrace locally using GDB</_description>
+ <_long_description>Needs to downloads debuginfo packages, which might take significant time, and take up disk space.
+ However, unlike RetraceServer, doesn't send coredump to remote machines.
+ </_long_description>
</event>
diff --git a/src/plugins/analyze_RetraceServer.xml.in b/src/plugins/analyze_RetraceServer.xml.in
index b3c7da24..7f7f0362 100644
--- a/src/plugins/analyze_RetraceServer.xml.in
+++ b/src/plugins/analyze_RetraceServer.xml.in
@@ -2,6 +2,10 @@
<event>
<name>Retrace Server</name>
<_description>Send core dump to remote retrace server for analysis</_description>
+ <_long_description>Uploads coredump to a server, which generates backtrace and returns it.
+ Pros: no need for debuginfo downloads. Retrace server's database of debuginfos is more complete. Retrace server may generate better backtraces.
+ Cons: coredump you upload contains all the data from the crashed program, including your private data, if any.
+ </_long_description>
<options>
<option type="text" name="RETRACE_SERVER_URL">
<_label>Retrace server URL</_label>