<feed xmlns='http://www.w3.org/2005/Atom'>
<title>abrt.git/src/daemon/PluginManager.cpp, branch 2.0.3</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>remove old plugin machinery. -10k and -1 library dependence in abrtd</title>
<updated>2011-01-19T16:14:05+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-01-19T16:14:05+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=480cac7647d567c3c3cb148c5a4750091b651934'/>
<id>480cac7647d567c3c3cb148c5a4750091b651934</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 C++-ism ssprintf from abrtlib.h</title>
<updated>2011-01-11T17:53:22+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-01-11T17:53:22+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=e7fde9b01293d7bfdfe644b73f8ac679211d0b08'/>
<id>e7fde9b01293d7bfdfe644b73f8ac679211d0b08</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>small fixes to map_string_t conversion suggested by Karel</title>
<updated>2010-12-13T22:08:04+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2010-12-13T22:08:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=529935edd6733438531232b28174541ca6f92692'/>
<id>529935edd6733438531232b28174541ca6f92692</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>removal of C++isms from libabrt, part 1</title>
<updated>2010-12-08T13:51:47+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2010-12-08T13:51:47+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=816f3e001271ed8ab7fdadb6d90aeb2c61362dac'/>
<id>816f3e001271ed8ab7fdadb6d90aeb2c61362dac</id>
<content type='text'>
This patch converts libabrt usage of C++ map&lt;string, string&gt;
to a glib-based container, GHashTable.

It is typedef-ed to map_string_h.
We can't typedef it to map_string_t, since other parts of ABRT
(daemon, cli) still use that name for C++ container.

Also, exceptions are removed everywhere.

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch converts libabrt usage of C++ map&lt;string, string&gt;
to a glib-based container, GHashTable.

It is typedef-ed to map_string_h.
We can't typedef it to map_string_t, since other parts of ABRT
(daemon, cli) still use that name for C++ container.

Also, exceptions are removed everywhere.

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>remove PLUGIN_DYNAMIC_LOAD_UNLOAD</title>
<updated>2010-11-19T15:34:04+00:00</updated>
<author>
<name>Nikola Pajkovsky</name>
<email>npajkovs@redhat.com</email>
</author>
<published>2010-11-19T15:34:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=ed9efa9366add566a20be6132c70df08dc50673a'/>
<id>ed9efa9366add566a20be6132c70df08dc50673a</id>
<content type='text'>
it contains polkit

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

Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>remove polkit</title>
<updated>2010-11-19T15:22:51+00:00</updated>
<author>
<name>Nikola Pajkovsky</name>
<email>npajkovs@redhat.com</email>
</author>
<published>2010-11-19T15:22:51+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=b0e2e3bc6c82626c978620a27b1c8a713a7fcbdc'/>
<id>b0e2e3bc6c82626c978620a27b1c8a713a7fcbdc</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>removing unused Reporter class and unused members of PluginManager class</title>
<updated>2010-11-17T21:24:21+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2010-11-17T21:24:21+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=474f5a3cd52b82d205d3d414eb04b96142e4eebf'/>
<id>474f5a3cd52b82d205d3d414eb04b96142e4eebf</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 unused SetPluginSettings(...)</title>
<updated>2010-11-16T16:23:23+00:00</updated>
<author>
<name>Nikola Pajkovsky</name>
<email>npajkovs@redhat.com</email>
</author>
<published>2010-11-16T14:44:53+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=a585af78aee0f6f57d30a2ba261644d05155f4e6'/>
<id>a585af78aee0f6f57d30a2ba261644d05155f4e6</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>Decouple settings handling from old-style plugins</title>
<updated>2010-11-09T23:10:22+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2010-11-09T23:10:22+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=9d2cb4518c3a8a72ccc714ddbc131aaa84506092'/>
<id>9d2cb4518c3a8a72ccc714ddbc131aaa84506092</id>
<content type='text'>
The breakage was discovered when i removed Logger class.
it turned out the fix is somewhat involved.
This change implements it as discussed with the rest of the team.

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The breakage was discovered when i removed Logger class.
it turned out the fix is somewhat involved.
This change implements it as discussed with the rest of the team.

Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
