<feed xmlns='http://www.w3.org/2005/Atom'>
<title>abrt.git/src/cli, branch 2.0.1</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>Implement the possibility to add text labels to even config GUI. Closes #199.</title>
<updated>2011-04-15T13:52:09+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-04-15T13:52:09+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=3ebfe02dd9c81b10f47ca258bb2a0ef080dbbbeb'/>
<id>3ebfe02dd9c81b10f47ca258bb2a0ef080dbbbeb</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>abrt-cli is one of several places where we hardcode usage of various</title>
<updated>2011-04-08T14:39:59+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-04-08T14:39:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=fcb0620a371475f154a5a1fb91a319ff3483ca0d'/>
<id>fcb0620a371475f154a5a1fb91a319ff3483ca0d</id>
<content type='text'>
elements of dump directory.

This patch changes it to generic handling, where abrt-cli doesn't know
anything about particular elements (like backtrace).

Changes in detail:

* crash_item-&gt;flags how has CD_FLAG_UNIXTIME bit.
* format_crash_item(item) returns malloced formatted string
  (currently only formatted time for items with CD_FLAG_UNIXTIME)
  or NULL, if item-&gt;content is to be used as-is
* crash_item-&gt;flags how has CD_FLAG_LIST bit, it is set on a
  small number of elements which are to be shown by abrt-cli -l.
* abrt-cli -l doesn't use fixed names, it looks at CD_FLAG_LIST.
* abrt-cli -i doesn't use fixed names, it prints all one-line elements:

Directory       : /var/spool/abrt/ccpp-1298264192-2705
analyzer        : CCpp
architecture    : x86_64
cmdline         : metacity
comment         : Abrt testing, please disregard
component       : metacity
coredump        : /var/spool/abrt/ccpp-1298264192-2705/coredump
count           : 1
crash_function  : pa_atomic_load
executable      : /usr/bin/metacity
global_uuid     : 1e8b716d2094fb22dccdb5321ac0cf6f14eb6689
hostname        : dhcp-25-227.brq.redhat.com
kernel          : 2.6.34.7-61.fc13.x86_64
os_release      : Fedora release 13 (Goddard)
package         : metacity-2.30.0-3.fc13
rating          : 4
reason          : Process /usr/bin/metacity was killed by signal 11 (SIGSEGV)
time            : Mon 21 Feb 2011 05:56:32 AM CET
uid             : 500
uuid            : 453085d0f703b96ddc3a5172dd7d5a29479f5b3f

* abrt-cli -i --backtrace is removed. Instead, abrt-cli -i --full
  is to be used. It shows all elements, one-line and multi-line ones.

* abrt-cli code now has an example how to list crast_data_t
  in the sorted-by-key order.

Further ideas:
abrt-cli needs -o elem1,elem2,elem3 option which tells which elements to
show, and/or -O elem1,elem2,elem3 option which tells elements to NOT
show. Rationale: abrt-cli -i --full output is way too long because of
smaps, need a way to suppress unneeded elements display

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
elements of dump directory.

This patch changes it to generic handling, where abrt-cli doesn't know
anything about particular elements (like backtrace).

Changes in detail:

* crash_item-&gt;flags how has CD_FLAG_UNIXTIME bit.
* format_crash_item(item) returns malloced formatted string
  (currently only formatted time for items with CD_FLAG_UNIXTIME)
  or NULL, if item-&gt;content is to be used as-is
* crash_item-&gt;flags how has CD_FLAG_LIST bit, it is set on a
  small number of elements which are to be shown by abrt-cli -l.
* abrt-cli -l doesn't use fixed names, it looks at CD_FLAG_LIST.
* abrt-cli -i doesn't use fixed names, it prints all one-line elements:

Directory       : /var/spool/abrt/ccpp-1298264192-2705
analyzer        : CCpp
architecture    : x86_64
cmdline         : metacity
comment         : Abrt testing, please disregard
component       : metacity
coredump        : /var/spool/abrt/ccpp-1298264192-2705/coredump
count           : 1
crash_function  : pa_atomic_load
executable      : /usr/bin/metacity
global_uuid     : 1e8b716d2094fb22dccdb5321ac0cf6f14eb6689
hostname        : dhcp-25-227.brq.redhat.com
kernel          : 2.6.34.7-61.fc13.x86_64
os_release      : Fedora release 13 (Goddard)
package         : metacity-2.30.0-3.fc13
rating          : 4
reason          : Process /usr/bin/metacity was killed by signal 11 (SIGSEGV)
time            : Mon 21 Feb 2011 05:56:32 AM CET
uid             : 500
uuid            : 453085d0f703b96ddc3a5172dd7d5a29479f5b3f

* abrt-cli -i --backtrace is removed. Instead, abrt-cli -i --full
  is to be used. It shows all elements, one-line and multi-line ones.

* abrt-cli code now has an example how to list crast_data_t
  in the sorted-by-key order.

Further ideas:
abrt-cli needs -o elem1,elem2,elem3 option which tells which elements to
show, and/or -O elem1,elem2,elem3 option which tells elements to NOT
show. Rationale: abrt-cli -i --full output is way too long because of
smaps, need a way to suppress unneeded elements display

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>cli: show screen_name when abrt asks for reporters</title>
<updated>2011-04-06T14:46:24+00:00</updated>
<author>
<name>Nikola Pajkovsky</name>
<email>npajkovs@redhat.com</email>
</author>
<published>2011-03-31T12:52:30+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=8b670652df82d9f7a83dce4daa939285994100f5'/>
<id>8b670652df82d9f7a83dce4daa939285994100f5</id>
<content type='text'>
Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>cli: report.cpp -&gt; report.c</title>
<updated>2011-04-06T14:46:24+00:00</updated>
<author>
<name>Nikola Pajkovsky</name>
<email>npajkovs@redhat.com</email>
</author>
<published>2011-03-31T08:44:03+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=d9cbcb746e30440668ddab1265d4631927b99eea'/>
<id>d9cbcb746e30440668ddab1265d4631927b99eea</id>
<content type='text'>
no code changed

Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
no code changed

Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>cli: remove last c++ism</title>
<updated>2011-04-06T14:46:18+00:00</updated>
<author>
<name>Nikola Pajkovsky</name>
<email>npajkovs@redhat.com</email>
</author>
<published>2011-03-31T08:39:48+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=40bc29ffb205d8689f060cb6f0904618191b7621'/>
<id>40bc29ffb205d8689f060cb6f0904618191b7621</id>
<content type='text'>
Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'daemon/blacklist'</title>
<updated>2011-04-05T08:39:33+00:00</updated>
<author>
<name>Nikola Pajkovsky</name>
<email>npajkovs@redhat.com</email>
</author>
<published>2011-04-05T08:39:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=c1169b2a8292db34d99c327c6aeb315116cf0e00'/>
<id>c1169b2a8292db34d99c327c6aeb315116cf0e00</id>
<content type='text'>
* daemon/blacklist:
  rhbz#692465 - Blacklist doesn't work
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* daemon/blacklist:
  rhbz#692465 - Blacklist doesn't work
</pre>
</div>
</content>
</entry>
<entry>
<title>abrt-cli: don't require write permissions on dumpdir to print info</title>
<updated>2011-04-04T13:11:21+00:00</updated>
<author>
<name>Miroslav Lichvar</name>
<email>mlichvar@redhat.com</email>
</author>
<published>2011-04-01T13:55:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=5b5056f681b1d70ebc0ed613e56c1c3820b55fc4'/>
<id>5b5056f681b1d70ebc0ed613e56c1c3820b55fc4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>abrt-cli: analyze on info command only when backtrace was requested</title>
<updated>2011-04-04T13:11:21+00:00</updated>
<author>
<name>Miroslav Lichvar</name>
<email>mlichvar@redhat.com</email>
</author>
<published>2011-04-01T13:51:55+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=1276dd0bf10d089b89571900a27a9ff7a8187f16'/>
<id>1276dd0bf10d089b89571900a27a9ff7a8187f16</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>rhbz#692465 - Blacklist doesn't work</title>
<updated>2011-04-04T10:02:27+00:00</updated>
<author>
<name>Nikola Pajkovsky</name>
<email>npajkovs@redhat.com</email>
</author>
<published>2011-04-04T10:02:27+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=90fe3a9d0cd766d18d1142d8d6981193a5715643'/>
<id>90fe3a9d0cd766d18d1142d8d6981193a5715643</id>
<content type='text'>
parse_value() doesn't trim the string.

Lest say BlackList = coreutils, mono
the parsed list looks like -&gt; 'coreutils', ' mono'

Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
parse_value() doesn't trim the string.

Lest say BlackList = coreutils, mono
the parsed list looks like -&gt; 'coreutils', ' mono'

Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix memory leak</title>
<updated>2011-03-30T13:14:15+00:00</updated>
<author>
<name>Nikola Pajkovsky</name>
<email>npajkovs@redhat.com</email>
</author>
<published>2011-03-30T11:36:03+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=37960b280bc5fe60465ace007645d5d339c61040'/>
<id>37960b280bc5fe60465ace007645d5d339c61040</id>
<content type='text'>
Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
