<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ds.git/missing, branch existingdir</title>
<subtitle>Unnamed repository; edit this file to name it for gitweb.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/'/>
<entry>
<title>Bug 519459 -  Semi-hardcoded include and lib directories in db.m4</title>
<updated>2010-01-22T19:13:27+00:00</updated>
<author>
<name>Rich Megginson</name>
<email>rmeggins@redhat.com</email>
</author>
<published>2010-01-22T16:17:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/commit/?id=1292eef3093c98a7f92ad9d7071c03ad76bb43db'/>
<id>1292eef3093c98a7f92ad9d7071c03ad76bb43db</id>
<content type='text'>
https://bugzilla.redhat.com/show_bug.cgi?id=519459
Resolves: bug 519459
Bug Description: Semi-hardcoded include and lib directories in db.m4
Reviewed by: nkinder (Thanks!)
Branch: HEAD
Fix Description: Added --with-db-inc and --with-db-lib to configure.  For the
default case, check first in /usr/include/db4, then in /usr/include.
Platforms tested: RHEL5 x86_64
Flag Day: no
Doc impact: no
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://bugzilla.redhat.com/show_bug.cgi?id=519459
Resolves: bug 519459
Bug Description: Semi-hardcoded include and lib directories in db.m4
Reviewed by: nkinder (Thanks!)
Branch: HEAD
Fix Description: Added --with-db-inc and --with-db-lib to configure.  For the
default case, check first in /usr/include/db4, then in /usr/include.
Platforms tested: RHEL5 x86_64
Flag Day: no
Doc impact: no
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow modrdn to move subtree and rename non-leaf node</title>
<updated>2010-01-22T18:36:16+00:00</updated>
<author>
<name>Noriko Hosoi</name>
<email>nhosoi@redhat.com</email>
</author>
<published>2010-01-22T17:47:52+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/commit/?id=b5e653a844af60596f9bc6b16349ee902ddb51f5'/>
<id>b5e653a844af60596f9bc6b16349ee902ddb51f5</id>
<content type='text'>
This patch includes
- replacing the entrydn index with the entryrdn index
- replacing a full DN in each entry in the DB with an RDN
- extending Slapi_Entry, entry2str, and str2entry to absorb the changes
  made on the entry
- adding DN/RDN helper functions
- adding DN cache
- adding a utility and a migration script to convert the DN format database
  to the RDN format
- extending a database dump utility dbscan to support the entryrdn
- slapi_dn_syntax_check by nkinder@redhat.com is added to check the dn before
  modify operations
- big fix for 171338 - Enhancement: winsync modrdn not synced

In addition to the above, compile warnings and memory leaks found in testing
the new feature are fixed.

For more details, see the feature design document at:
    http://directory.fedoraproject.org/wiki/Subtree_Rename

and bugzilla at:
    https://bugzilla.redhat.com/show_bug.cgi?id=171338
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch includes
- replacing the entrydn index with the entryrdn index
- replacing a full DN in each entry in the DB with an RDN
- extending Slapi_Entry, entry2str, and str2entry to absorb the changes
  made on the entry
- adding DN/RDN helper functions
- adding DN cache
- adding a utility and a migration script to convert the DN format database
  to the RDN format
- extending a database dump utility dbscan to support the entryrdn
- slapi_dn_syntax_check by nkinder@redhat.com is added to check the dn before
  modify operations
- big fix for 171338 - Enhancement: winsync modrdn not synced

In addition to the above, compile warnings and memory leaks found in testing
the new feature are fixed.

For more details, see the feature design document at:
    http://directory.fedoraproject.org/wiki/Subtree_Rename

and bugzilla at:
    https://bugzilla.redhat.com/show_bug.cgi?id=171338
</pre>
</div>
</content>
</entry>
<entry>
<title>Dereference support</title>
<updated>2009-07-30T02:18:34+00:00</updated>
<author>
<name>Rich Megginson</name>
<email>rmeggins@redhat.com</email>
</author>
<published>2009-07-29T17:15:50+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/commit/?id=7c52ad591180095b747f08c92a1550d76c9e9532'/>
<id>7c52ad591180095b747f08c92a1550d76c9e9532</id>
<content type='text'>
This adds support for the newly proposed LDAP Dereference feature (not to
be confused with alias dereferencing).  The details of the proposed feature
can be found here:
http://www.openldap.org/devel/cvsweb.cgi/~checkout~/doc/drafts/draft-masarati-ldap-deref-xx.txt
This adds a new deref plugin to the directory server.  This is a pre op search
plugin.  In order to allow the plugin to rewrite the controls sent back with
each entry, I changed the way pre-search and pre-entry plugins work.  They now
have the ability to alter the entry and controls just before being sent back
to the client.
This plugin does not currently support internal operations.  It should be easy
to add a call to register the plugin for internal ops if we need to do that.
The code supports real, computed (e.g. memberOf), and virtual attributes
both as the attibute to dereference and in the list of attributes to return
from each dereferenced entry.  This will allow us to use attributes such as
nsRole as the derefattr.
Tested on RHEL5 x86_64 with various openldap 2.4.15+ and Net::LDAP clients.
valgrind output is clean
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds support for the newly proposed LDAP Dereference feature (not to
be confused with alias dereferencing).  The details of the proposed feature
can be found here:
http://www.openldap.org/devel/cvsweb.cgi/~checkout~/doc/drafts/draft-masarati-ldap-deref-xx.txt
This adds a new deref plugin to the directory server.  This is a pre op search
plugin.  In order to allow the plugin to rewrite the controls sent back with
each entry, I changed the way pre-search and pre-entry plugins work.  They now
have the ability to alter the entry and controls just before being sent back
to the client.
This plugin does not currently support internal operations.  It should be easy
to add a call to register the plugin for internal ops if we need to do that.
The code supports real, computed (e.g. memberOf), and virtual attributes
both as the attibute to dereference and in the list of attributes to return
from each dereferenced entry.  This will allow us to use attributes such as
nsRole as the derefattr.
Tested on RHEL5 x86_64 with various openldap 2.4.15+ and Net::LDAP clients.
valgrind output is clean
</pre>
</div>
</content>
</entry>
<entry>
<title>Generated autotools files for syntax validation feature.</title>
<updated>2009-05-11T17:23:34+00:00</updated>
<author>
<name>Nathan Kinder</name>
<email>nkinder@redhat.com</email>
</author>
<published>2009-05-11T17:23:34+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/commit/?id=75dbea2bc03a224900292dea1701f1b305f3fa06'/>
<id>75dbea2bc03a224900292dea1701f1b305f3fa06</id>
<content type='text'>
A change was also made to Makefile.am to avoid library versioning
for our C++ plug-in libraries.  This change should allow us to use
autogen.sh on recent platforms without running into issues during
build-time.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A change was also made to Makefile.am to avoid library versioning
for our C++ plug-in libraries.  This change should allow us to use
autogen.sh on recent platforms without running into issues during
build-time.
</pre>
</div>
</content>
</entry>
<entry>
<title>reran autogen.sh (automake V1.9.6, autoconf V2.59)</title>
<updated>2008-10-19T17:12:55+00:00</updated>
<author>
<name>Noriko Hosoi</name>
<email>nhosoi@redhat.com</email>
</author>
<published>2008-10-19T17:12:55+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/commit/?id=b330c3504778b2ec6bae877ff63122653874a72c'/>
<id>b330c3504778b2ec6bae877ff63122653874a72c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Related: 207457</title>
<updated>2008-10-17T22:12:48+00:00</updated>
<author>
<name>Nathan Kinder</name>
<email>nkinder@redhat.com</email>
</author>
<published>2008-10-17T22:12:48+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/commit/?id=567be2b6589e5fa3e11bb103f046bec55f37dd6b'/>
<id>567be2b6589e5fa3e11bb103f046bec55f37dd6b</id>
<content type='text'>
Summary: Add support for 64-bit counters (phase 1).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary: Add support for 64-bit counters (phase 1).
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolves: #450753</title>
<updated>2008-07-02T16:14:40+00:00</updated>
<author>
<name>Noriko Hosoi</name>
<email>nhosoi@redhat.com</email>
</author>
<published>2008-07-02T16:14:40+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/commit/?id=326df84b4cbc89587fc41dc17f1caf622b70c8c3'/>
<id>326df84b4cbc89587fc41dc17f1caf622b70c8c3</id>
<content type='text'>
Summary: Add CLI for dynamic reload schema file task
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary: Add CLI for dynamic reload schema file task
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolves: 450746</title>
<updated>2008-06-10T20:24:03+00:00</updated>
<author>
<name>Nathan Kinder</name>
<email>nkinder@redhat.com</email>
</author>
<published>2008-06-10T20:24:03+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/commit/?id=ece681b0ef2f480e886eb4ebd5eec39a95094209'/>
<id>ece681b0ef2f480e886eb4ebd5eec39a95094209</id>
<content type='text'>
Summary: Added CLI for creating memberOf fix-up task entry.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary: Added CLI for creating memberOf fix-up task entry.
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolves bug 434403</title>
<updated>2008-02-27T16:59:11+00:00</updated>
<author>
<name>Rich Megginson</name>
<email>rmeggins@redhat.com</email>
</author>
<published>2008-02-27T16:59:11+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/commit/?id=5d3e63039933b44435f28e7a3a4419cb00f10f73'/>
<id>5d3e63039933b44435f28e7a3a4419cb00f10f73</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial import of memberof plugin from FreeIPA (refactored from changeset 640:9c57bd91b32f if ipa-memberof.c).</title>
<updated>2008-02-19T06:04:56+00:00</updated>
<author>
<name>Nathan Kinder</name>
<email>nkinder@redhat.com</email>
</author>
<published>2008-02-19T06:04:56+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rmeggins/public_git/ds.git/commit/?id=fb11e2f49c03e4ed494a9643c35713365ee1f72b'/>
<id>fb11e2f49c03e4ed494a9643c35713365ee1f72b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
