<feed xmlns='http://www.w3.org/2005/Atom'>
<title>abrt.git/lib/Plugins/CCpp.h, branch 0.0.6</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>moved LoadSettings from plugins into PluginManager</title>
<updated>2009-08-11T16:37:33+00:00</updated>
<author>
<name>Zdenek Prikryl</name>
<email>zdeny@dhcp-lab-218.englab.brq.redhat.com</email>
</author>
<published>2009-08-11T16:37:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=3335a8cc4e772ed027e400cfac10b17c1536ad9f'/>
<id>3335a8cc4e772ed027e400cfac10b17c1536ad9f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove redundant virtual destructors definitions</title>
<updated>2009-08-04T15:28:23+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-08-04T15:28:23+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=26904c7faff196b91c1ad50574f725cd1a033094'/>
<id>26904c7faff196b91c1ad50574f725cd1a033094</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/Plugins/CCpp.cpp: move functions out of class where appropriate.</title>
<updated>2009-08-03T15:57:59+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-08-03T15:57:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=1404fbfe4bf90d7f9dfe36deda484fe3e91b4472'/>
<id>1404fbfe4bf90d7f9dfe36deda484fe3e91b4472</id>
<content type='text'>
I was struggling to read the code where classes have member functions
with no apparent reasons to be such: they do not use any members
of the class.

Having them members of the class have only disadvantages:
they need to be declared in the class (thus you need to touch TWO files),
they cannot be shared among different classes,
they look confusing at callsites - the code falsely suggests
that function uses or alters object's state,
they also are a bit less efficient.

I was hesitating to do so before, but now I was told that
there is a plan to gradually move to C implementation...
then this change makes it a bit closer to that.

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I was struggling to read the code where classes have member functions
with no apparent reasons to be such: they do not use any members
of the class.

Having them members of the class have only disadvantages:
they need to be declared in the class (thus you need to touch TWO files),
they cannot be shared among different classes,
they look confusing at callsites - the code falsely suggests
that function uses or alters object's state,
they also are a bit less efficient.

I was hesitating to do so before, but now I was told that
there is a plan to gradually move to C implementation...
then this change makes it a bit closer to that.

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>added new interface for geting plugins' settings (will be used in gui)</title>
<updated>2009-07-31T15:08:49+00:00</updated>
<author>
<name>Zdenek Prikryl</name>
<email>zdeny@dhcp-lab-218.englab.brq.redhat.com</email>
</author>
<published>2009-07-31T15:08:49+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=de2c473ef6cb27a080bb0491f21d1280e2c971c5'/>
<id>de2c473ef6cb27a080bb0491f21d1280e2c971c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move PLUGIN_INFOs to .cpp files: same object must never be defined twice</title>
<updated>2009-07-31T13:13:38+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-07-31T13:13:38+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=e60c006499ec9a1604f85f84a98145535a7ad0a7'/>
<id>e60c006499ec9a1604f85f84a98145535a7ad0a7</id>
<content type='text'>
and if structure is defined in a .h file, that happens.
Since this particular structure has non-trivial destructor,
it was running twice and resulted in double-free.

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and if structure is defined in a .h file, that happens.
Since this particular structure has non-trivial destructor,
it was running twice and resulted in double-free.

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of git://git.fedorahosted.org/abrt</title>
<updated>2009-07-24T13:33:14+00:00</updated>
<author>
<name>Zdenek Prikryl</name>
<email>zprikryl@redhat.com</email>
</author>
<published>2009-07-24T13:33:14+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=f889932408f5912379f92e24c0e8f213a1f6c451'/>
<id>f889932408f5912379f92e24c0e8f213a1f6c451</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove GetGIDFromUID (two copies): getpwuid does the same</title>
<updated>2009-07-24T10:12:59+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-07-24T10:12:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=280334787ea74be1c5234849672c69dbfdb2f201'/>
<id>280334787ea74be1c5234849672c69dbfdb2f201</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Added first part of gui support in reporting</title>
<updated>2009-07-24T08:54:10+00:00</updated>
<author>
<name>Zdenek Prikryl</name>
<email>zprikryl@redhat.com</email>
</author>
<published>2009-07-24T08:54:10+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=a2a1ec29e008936654a146df244e4265668bfb31'/>
<id>a2a1ec29e008936654a146df244e4265668bfb31</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>typo fixes</title>
<updated>2009-07-23T09:21:34+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-07-23T09:21:34+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=bfd961a8e355c92b1ff1121b411c2303028b82d0'/>
<id>bfd961a8e355c92b1ff1121b411c2303028b82d0</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed security issue</title>
<updated>2009-06-30T07:14:12+00:00</updated>
<author>
<name>Zdenek Prikryl</name>
<email>zprikryl@redhat.com</email>
</author>
<published>2009-06-30T07:14:12+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=dcca51525ab4994cb8c1232e9698a534109288db'/>
<id>dcca51525ab4994cb8c1232e9698a534109288db</id>
<content type='text'>
User can read only his debugdump directories
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
User can read only his debugdump directories
</pre>
</div>
</content>
</entry>
</feed>
