<feed xmlns='http://www.w3.org/2005/Atom'>
<title>abrt.git/src/include/report, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/'/>
<entry>
<title>split libreport to a separate package</title>
<updated>2011-06-08T15:27:42+00:00</updated>
<author>
<name>Jiri Moskovcak</name>
<email>jmoskovc@redhat.com</email>
</author>
<published>2011-06-08T15:27:42+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=0e74f780545b1aa8f6a5277b3cfdc9887c37ed5e'/>
<id>0e74f780545b1aa8f6a5277b3cfdc9887c37ed5e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>wizard: hook selection checkboxes to reporters.</title>
<updated>2011-06-01T15:57:31+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-06-01T15:57:31+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=2fa751f6d98995e73db4d0edd0d22b9560281644'/>
<id>2fa751f6d98995e73db4d0edd0d22b9560281644</id>
<content type='text'>
Checkboxes are controlled by the following elements in .xml:

&lt;requires-items&gt; ITEM1,ITEM2 &lt;/requires-items&gt;
&lt;exclude-items-by-default&gt; ITEM1,ITEM2 &lt;/exclude-items-by-default&gt;
&lt;exclude-items-always&gt; ITEM1,ITEM2 &lt;/exclude-items-always&gt;
&lt;exclude-binary-items&gt; yes / no &lt;/exclude-binary-items&gt;
&lt;include-items-by-default&gt; ITEM1,ITEM2 &lt;/include-items-by-default&gt;

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 &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Checkboxes are controlled by the following elements in .xml:

&lt;requires-items&gt; ITEM1,ITEM2 &lt;/requires-items&gt;
&lt;exclude-items-by-default&gt; ITEM1,ITEM2 &lt;/exclude-items-by-default&gt;
&lt;exclude-items-always&gt; ITEM1,ITEM2 &lt;/exclude-items-always&gt;
&lt;exclude-binary-items&gt; yes / no &lt;/exclude-binary-items&gt;
&lt;include-items-by-default&gt; ITEM1,ITEM2 &lt;/include-items-by-default&gt;

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 &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>include/report/report.h: change API from having more functions to having more flags</title>
<updated>2011-05-24T17:48:13+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-05-24T17:48:13+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=128381fc93e56cefb2b02b973a2ef3380594c91f'/>
<id>128381fc93e56cefb2b02b973a2ef3380594c91f</id>
<content type='text'>
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 &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>assorted cleanups, memory leak fix (g_list_free in add_basics_to_problem_data)</title>
<updated>2011-05-22T19:28:58+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-05-22T19:28:58+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=1fef96e2031952fccc4cf9ed189b50fec9360a06'/>
<id>1fef96e2031952fccc4cf9ed189b50fec9360a06</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of git://git.fedorahosted.org/git/abrt</title>
<updated>2011-05-19T12:42:13+00:00</updated>
<author>
<name>Jiri Moskovcak</name>
<email>jmoskovc@redhat.com</email>
</author>
<published>2011-05-19T12:42:13+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=5ca690225fd1c3fb449b3cbeb1002aae9f951d28'/>
<id>5ca690225fd1c3fb449b3cbeb1002aae9f951d28</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>move vector of pd's cod to cli, its only user</title>
<updated>2011-05-19T12:22:20+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-05-19T12:22:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=d1751088e7cffcc686e51665f1c4f5e4f454bbb2'/>
<id>d1751088e7cffcc686e51665f1c4f5e4f454bbb2</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>report C API improvements</title>
<updated>2011-05-18T14:55:40+00:00</updated>
<author>
<name>Jiri Moskovcak</name>
<email>jmoskovc@redhat.com</email>
</author>
<published>2011-05-18T14:55:40+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=bccd10f39589870673ffd09de6bc09d6e00fab72'/>
<id>bccd10f39589870673ffd09de6bc09d6e00fab72</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>run_event.c: fix "EVENT=post-create component=mypkg doesn't work" bug. Closes bz#531365</title>
<updated>2011-05-17T13:53:45+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-05-17T13:53:45+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=a1275c845a4ba0b355395d7bc3473509f4695b8e'/>
<id>a1275c845a4ba0b355395d7bc3473509f4695b8e</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>smart_event.conf: suppress stray output of "which" command</title>
<updated>2011-05-17T13:51:53+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-05-17T13:51:53+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=b3ad2fb990b193906c3243673ac15b056eb148dc'/>
<id>b3ad2fb990b193906c3243673ac15b056eb148dc</id>
<content type='text'>
Also, fix some typos in comments

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also, fix some typos in comments

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed copyright text</title>
<updated>2011-05-16T09:58:18+00:00</updated>
<author>
<name>Jiri Moskovcak</name>
<email>jmoskovc@redhat.com</email>
</author>
<published>2011-05-16T09:58:18+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=fe8ca6b0f3d19e9c6fee2ade44d5e0f5a0258338'/>
<id>fe8ca6b0f3d19e9c6fee2ade44d5e0f5a0258338</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
