<feed xmlns='http://www.w3.org/2005/Atom'>
<title>abrt.git/src/plugins/abrt-action-install-debuginfo, 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>abrt-action-install-debuginfo: fix for download error</title>
<updated>2011-05-19T09:57:09+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-05-19T09:57:09+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=3ca62f220eeb8c84a5536333117694d1c5a4fa0f'/>
<id>3ca62f220eeb8c84a5536333117694d1c5a4fa0f</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>Remove .py from abrt-action-install-debuginfo.py</title>
<updated>2011-05-16T21:10:37+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-05-16T21:10:37+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=79085fda802056f096b61a526e95e08136faf95d'/>
<id>79085fda802056f096b61a526e95e08136faf95d</id>
<content type='text'>
Rename abrt-action-install-debuginfo to
abrt-action-install-debuginfo-to-abrt-cache

Yes, it's ugly long...

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rename abrt-action-install-debuginfo to
abrt-action-install-debuginfo-to-abrt-cache

Yes, it's ugly long...

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>new debuginfo install script rewritten in python</title>
<updated>2010-11-29T13:00:41+00:00</updated>
<author>
<name>Jiri Moskovcak</name>
<email>jmoskovc@redhat.com</email>
</author>
<published>2010-11-29T13:00:41+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=72a48e59e5898116b88daccfee6370aea81c764c'/>
<id>72a48e59e5898116b88daccfee6370aea81c764c</id>
<content type='text'>
- using python alows us to use the yum API, so we can read the progress,
  file sizes, requires disk space, etc.. and seems to be faster the using
  yum --whatprovides + yumdownloader
- it's easier to translate
- we can drop dependency on yum-utils
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- using python alows us to use the yum API, so we can read the progress,
  file sizes, requires disk space, etc.. and seems to be faster the using
  yum --whatprovides + yumdownloader
- it's easier to translate
- we can drop dependency on yum-utils
</pre>
</div>
</content>
</entry>
<entry>
<title>abrt-action-install-debuginfo: removed generation of MISSING: string</title>
<updated>2010-11-24T16:30:24+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2010-11-24T16:30:24+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=800d2cbb1d75c91bd45b162676ac9220a24588e2'/>
<id>800d2cbb1d75c91bd45b162676ac9220a24588e2</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>remove sqlite DB</title>
<updated>2010-11-23T14:51:54+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2010-11-23T14:51:54+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=86fc61db75385d6fb452b4cf88aec1deffa3a5be'/>
<id>86fc61db75385d6fb452b4cf88aec1deffa3a5be</id>
<content type='text'>
This change removes sqlite database.

Database was used to find dump dirs by [UID:]UUID.
This patch uses more natural way: dump dirs are addressed by their
directory names.

DB was also used to produce a list of dump dirs.
Now it is done by iterating over the /var/spool/abrt directory.

And finally, DB was also used to find duplicate UUIDs.
Now it is done by iterating over the /var/spool/abrt directory.

Crash count, "inform all" and reporting result message are moved
from DB field to a file in dump dir.

"Reported" DB field is deleted -
if message != "", then this dump was reported.

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change removes sqlite database.

Database was used to find dump dirs by [UID:]UUID.
This patch uses more natural way: dump dirs are addressed by their
directory names.

DB was also used to produce a list of dump dirs.
Now it is done by iterating over the /var/spool/abrt directory.

And finally, DB was also used to find duplicate UUIDs.
Now it is done by iterating over the /var/spool/abrt directory.

Crash count, "inform all" and reporting result message are moved
from DB field to a file in dump dir.

"Reported" DB field is deleted -
if message != "", then this dump was reported.

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>move files from lib/plugins to src/plugins</title>
<updated>2010-11-10T17:27:05+00:00</updated>
<author>
<name>Jiri Moskovcak</name>
<email>jmoskovc@redhat.com</email>
</author>
<published>2010-11-10T16:01:31+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=3fce116492052267e5e1a634e5404b1b518f7ef3'/>
<id>3fce116492052267e5e1a634e5404b1b518f7ef3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
