| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Checkboxes are controlled by the following elements in .xml:
<requires-items> ITEM1,ITEM2 </requires-items>
<exclude-items-by-default> ITEM1,ITEM2 </exclude-items-by-default>
<exclude-items-always> ITEM1,ITEM2 </exclude-items-always>
<exclude-binary-items> yes / no </exclude-binary-items>
<include-items-by-default> ITEM1,ITEM2 </include-items-by-default>
exclude-items-by-default and exclude-items-always can be "*"
meaning "all". include-items-by-default specifies which items
are included (checked) is exclude-items-by-default is "*".
Else, all are checked by default.
the set of iters NOT included is passed in $EXCLUDE_FROM_REPORT
variable. bugzilla, kerneloops, mailx, print and rhtsupport
are made aware of this variable.
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
more flags
Now we have three functions instead of four:
int report_problem_in_dir(const char *dirname, int flags);
int report_problem_in_memory(problem_data_t *pd, int flags);
int report_problem(problem_data_t *pd);
(third one is a trivial wrapper around report_problem_in_memory),
and two new flags LIBREPORT_ANALYZE and LIBREPORT_RELOAD_DATA.
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
|