<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sssd.git/common/refarray, branch sasl_ad_compat</title>
<subtitle>Experimental work on SSSD - Systen Security Services Daemon</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/'/>
<entry>
<title>Remove common directory</title>
<updated>2010-08-19T15:15:09+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-08-13T18:51:16+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=ad42d90b7e23978b62e36d6885d5fea0a105d6d0'/>
<id>ad42d90b7e23978b62e36d6885d5fea0a105d6d0</id>
<content type='text'>
All files formerly in common are now being built individually out
of the ding-libs repository.

git clone git://git.fedorahosted.org/git/ding-libs.git
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All files formerly in common are now being built individually out
of the ding-libs repository.

git clone git://git.fedorahosted.org/git/ding-libs.git
</pre>
</div>
</content>
</entry>
<entry>
<title>Extending refarray interface</title>
<updated>2010-04-30T11:51:19+00:00</updated>
<author>
<name>Dmitri Pal</name>
<email>dpal@redhat.com</email>
</author>
<published>2010-04-22T01:10:10+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=d91d82d86a01e4fec91ab4c06b1d7687bd0a8b33'/>
<id>d91d82d86a01e4fec91ab4c06b1d7687bd0a8b33</id>
<content type='text'>
Added functions to inert, delete, replace
swap the array elements.
Unit test and docs have been updated accordingly.

Fixing review comments for refarray.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added functions to inert, delete, replace
swap the array elements.
Unit test and docs have been updated accordingly.

Fixing review comments for refarray.
</pre>
</div>
</content>
</entry>
<entry>
<title>Adding interface documentation</title>
<updated>2010-04-08T12:53:36+00:00</updated>
<author>
<name>Dmitri Pal</name>
<email>dpal@redhat.com</email>
</author>
<published>2010-04-05T14:59:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=69e1a7254ff2be3d7b0b0d968f6ddeb638c0be86'/>
<id>69e1a7254ff2be3d7b0b0d968f6ddeb638c0be86</id>
<content type='text'>
Package refarray documentation by default
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Package refarray documentation by default
</pre>
</div>
</content>
</entry>
<entry>
<title>Split refarray off into a shared library</title>
<updated>2010-02-03T15:35:18+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-02-01T17:52:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=e4a1d122c1cb26296354f1a04c57409f04260d7a'/>
<id>e4a1d122c1cb26296354f1a04c57409f04260d7a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add license files for refarray</title>
<updated>2010-02-03T15:35:18+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-02-01T17:48:08+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=622e7d5442f7a066389ac4a2a6d971b478ebd574'/>
<id>622e7d5442f7a066389ac4a2a6d971b478ebd574</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>REFARRAY: New referenced array object</title>
<updated>2010-01-21T20:02:16+00:00</updated>
<author>
<name>Dmitri Pal</name>
<email>dpal@redhat.com</email>
</author>
<published>2009-12-23T20:14:51+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=743d22b5f0592d0dba1d4d9040d998c9d711603e'/>
<id>743d22b5f0592d0dba1d4d9040d998c9d711603e</id>
<content type='text'>
This object allows creation the arrays
with the reference count. Usefull when
there are many instances of some object
have to reference dynamically allocated array
which is common for all these instances.

In case of ELAPI the event object
keeps a referecne to the common array
of the sinks in the fail over order.

We decided that it will be a common object
not specific only to ELAPI.

All the review concerns related to this
object have been addressed in this patch.
It also has been moved to the common area.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This object allows creation the arrays
with the reference count. Usefull when
there are many instances of some object
have to reference dynamically allocated array
which is common for all these instances.

In case of ELAPI the event object
keeps a referecne to the common array
of the sinks in the fail over order.

We decided that it will be a common object
not specific only to ELAPI.

All the review concerns related to this
object have been addressed in this patch.
It also has been moved to the common area.
</pre>
</div>
</content>
</entry>
</feed>
