A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, mdb.master has been updated
via c2f15990c70cb6b1cb3e081d1109e8a629ff1e92 (commit)
via f5b8d017dffa3d0dd8b0ee803a999e97acf489ff (commit)
from 66f2b7b2ec4318557be079ad4764becf4e36ec73 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c2f15990c70cb6b1cb3e081d1109e8a629ff1e92
Author: Howard Chu <hyc(a)symas.com>
Date: Tue Oct 23 04:48:04 2012 -0700
Fix flag checks in mdb_open
commit f5b8d017dffa3d0dd8b0ee803a999e97acf489ff
Author: Howard Chu <hyc(a)symas.com>
Date: Tue Oct 23 04:32:55 2012 -0700
fix Windows mdb_env_copy(), WriteFile overflow
-----------------------------------------------------------------------
Summary of changes:
libraries/libmdb/mdb.c | 30 ++++++++++++++++++++++--------
1 files changed, 22 insertions(+), 8 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via f51efd4b0345baea1a9c977d0763292891c37436 (commit)
via 66f2b7b2ec4318557be079ad4764becf4e36ec73 (commit)
via 5f2ddb5532df92c765f2f36a7606ed6ef28d23db (commit)
via 5c1ee7f7ba9580d5ff29e74cbb02eee335c33d94 (commit)
via 617769bce5bcac809791adb11301e40d27c31566 (commit)
via 754cd88819cceafe503b7a5c428b52c6abbcb748 (commit)
via 7f0771a3ed4ec42bd57f246919aba1dd755a207c (commit)
via 65d40eb5d2c7c28df05e2c1d9b21d90e2a82e0b5 (commit)
via 94965307c831be615f5fbb771c348fd72217adc0 (commit)
via 88b7bb46394a53675b452b70e5a7a109626bdd3f (commit)
via e9d87866c49acdba4118259fb05de2dafb4d698f (commit)
via 092f9a5c66425535f9d538d8fefd0049ad65f452 (commit)
via 462d9dfd104397652a905e8f685289bd4ac8a6e1 (commit)
via e40713b631506dcab54402c26a826bd2d421dcb0 (commit)
via f037dd2d19978256182a0f91f9a8178d37a8193f (commit)
via ebb6859ea5f4ca44ca528e49b17800f9992703e7 (commit)
via 756ce8e10ca52ff4516b56d42308116fac3c185d (commit)
via a3f33dd20e71b9c94e94a0e1125fcee8d35fc70f (commit)
via 38fb8e6eb1c2db048fd2473bfcdd5eb16ec54517 (commit)
via ab3fea51dc890feaca7075643efe9410949e5363 (commit)
via 2b960613e03dbc5b371378abfd051c8e75821171 (commit)
from b555730139df4191fc48e2a3d106b4c2e80d6759 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f51efd4b0345baea1a9c977d0763292891c37436
Merge: b555730 66f2b7b
Author: Howard Chu <hyc(a)openldap.org>
Date: Mon Oct 22 17:05:26 2012 -0700
Merge remote-tracking branch 'origin/mdb.master'
-----------------------------------------------------------------------
Summary of changes:
libraries/libmdb/.gitignore | 1 +
libraries/libmdb/Makefile | 3 +-
libraries/libmdb/mdb.c | 340 +++++++++++++++++++++++++++++++++---------
libraries/libmdb/mdb.h | 90 +++++++++++-
libraries/libmdb/mdb_copy.c | 43 ++++++
libraries/libmdb/mdb_stat.c | 162 ++++++++++++++++++--
libraries/libmdb/mdb_stata.c | 84 -----------
7 files changed, 552 insertions(+), 171 deletions(-)
create mode 100644 libraries/libmdb/mdb_copy.c
delete mode 100644 libraries/libmdb/mdb_stata.c
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, mdb.master has been updated
via 66f2b7b2ec4318557be079ad4764becf4e36ec73 (commit)
from 5f2ddb5532df92c765f2f36a7606ed6ef28d23db (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 66f2b7b2ec4318557be079ad4764becf4e36ec73
Author: Howard Chu <hyc(a)symas.com>
Date: Mon Oct 22 17:03:15 2012 -0700
Make sure mdb_open flags are committed on main DB
If no data was modified in the txn, mdb_open flag changes were dropped.
-----------------------------------------------------------------------
Summary of changes:
libraries/libmdb/mdb.c | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, mdb.master has been updated
via 5f2ddb5532df92c765f2f36a7606ed6ef28d23db (commit)
via 5c1ee7f7ba9580d5ff29e74cbb02eee335c33d94 (commit)
from 617769bce5bcac809791adb11301e40d27c31566 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5f2ddb5532df92c765f2f36a7606ed6ef28d23db
Author: Howard Chu <hyc(a)symas.com>
Date: Mon Oct 22 16:13:06 2012 -0700
Minor cleanup
commit 5c1ee7f7ba9580d5ff29e74cbb02eee335c33d94
Author: Howard Chu <hyc(a)symas.com>
Date: Mon Oct 22 15:58:46 2012 -0700
Fix MDB_PREV
Could return 1 garbage record before actual data, if starting from EOF
-----------------------------------------------------------------------
Summary of changes:
libraries/libmdb/mdb.c | 29 ++++++++++++++++++-----------
1 files changed, 18 insertions(+), 11 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP-www (openldap-www.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via ea8ed1358f8a14e67223b2c6762a67bc042b1311 (commit)
via a455f4d5c63480579b5e90bb4edef6939deba3b5 (commit)
via 495e0d26c9db49f6c0b1580beaa2d634ff916e1a (commit)
via 615a3310ba6078041c998712aa53808ccebf98a6 (commit)
from 2fcc806aa12426923394327bd1e729b5a132600d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit ea8ed1358f8a14e67223b2c6762a67bc042b1311
Author: Kurt Zeilenga <Kurt(a)OpenLDAP.org>
Date: Fri Oct 19 14:46:20 2012 -0700
misc updates
updated munged rant, add leaked rant.
mostly sponsors/contributors acknowledgement changes
commit a455f4d5c63480579b5e90bb4edef6939deba3b5
Author: Kurt Zeilenga <Kurt(a)OpenLDAP.org>
Date: Mon Sep 10 16:29:09 2012 -0700
Howard's paper
commit 495e0d26c9db49f6c0b1580beaa2d634ff916e1a
Author: Kurt Zeilenga <Kurt(a)OpenLDAP.org>
Date: Mon Sep 10 16:28:25 2012 -0700
various changes, mostly making PDF docs more accessible
commit 615a3310ba6078041c998712aa53808ccebf98a6
Author: Kurt Zeilenga <Kurt(a)OpenLDAP.org>
Date: Thu Mar 22 05:09:37 2012 -0700
misc updates
-----------------------------------------------------------------------
Summary of changes:
pages/.wmlrc | 6 ++--
pages/foundation/index.wml | 38 +++++--------------
pages/foundation/sponsors.wml | 67 ++++++++++++++++++----------------
pages/images/symas-sp.png | Bin 0 -> 6302 bytes
pages/index.wml | 45 ++++++++++++-----------
pages/privacy.wml | 2 +-
pages/project/index.wml | 21 +----------
pages/project/kurt/leaked.wml | 71 +++++++++++++++++++++++++++++++++++++
pages/project/kurt/munged.wml | 71 ++++++++++++++++++++++++-------------
pages/pub/hyc/mdm-paper.pdf | Bin 0 -> 216760 bytes
pages/pub/hyc/mdm-slides.pdf | Bin 0 -> 628687 bytes
pages/pub/index.wml | 10 +++++
pages/software/cvsrepo.wml | 16 +-------
pages/software/download/index.wml | 51 +-------------------------
pages/software/index.wml | 3 ++
pages/software/release/index.wml | 1 +
templates/openldap/common.wml | 31 ++++------------
17 files changed, 216 insertions(+), 217 deletions(-)
create mode 100644 pages/images/symas-sp.png
create mode 100644 pages/project/kurt/leaked.wml
create mode 100644 pages/pub/hyc/mdm-paper.pdf
create mode 100644 pages/pub/hyc/mdm-slides.pdf
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap-www.git
A ref change was pushed to the OpenLDAP-Fortress-Core (openldap-fortress-core.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via 620e8c7da8c2b8236e486f923bd14c8148d08de6 (commit)
from 6db2eb6bad80db2310d8d61f11eeb49e4e170c5c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 620e8c7da8c2b8236e486f923bd14c8148d08de6
Author: Shawn McKinney <smckinn(a)smckinnlt-lr02.(none)>
Date: Sun Oct 21 16:36:15 2012 -0500
RC16 - Cleanup
-----------------------------------------------------------------------
Summary of changes:
ldap/schema/fortress.schema | 2 +-
src/main/java/com/jts/fortress/rbac/HierUtil.java | 117 ---------------------
2 files changed, 1 insertions(+), 118 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap-fortress-core.git
A ref change was pushed to the OpenLDAP-Fortress-Realm (openldap-fortress-realm.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via 624a70fcb54b20f77616da7fecab7429c1a59d25 (commit)
from 5c7fc60e1151c862169e43d14133b64db3a28737 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 624a70fcb54b20f77616da7fecab7429c1a59d25
Author: Shawn McKinney <smckinn(a)smckinnlt-lr02.(none)>
Date: Sun Oct 21 16:30:58 2012 -0500
RC16 - IETF RBAC Role draft
-----------------------------------------------------------------------
Summary of changes:
build.xml | 2 +-
buildWs.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap-fortress-realm.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via b555730139df4191fc48e2a3d106b4c2e80d6759 (commit)
from c2783b9c5ebf31e55dcac63b877e0884515509cd (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b555730139df4191fc48e2a3d106b4c2e80d6759
Author: Howard Chu <hyc(a)openldap.org>
Date: Sat Oct 20 09:34:13 2012 -0700
ITS#7402 tweak prev commit, use hex for txn IDs
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/back-bdb/add.c | 4 ++--
servers/slapd/back-bdb/config.c | 2 +-
servers/slapd/back-bdb/delete.c | 4 ++--
servers/slapd/back-bdb/modify.c | 4 ++--
servers/slapd/back-bdb/modrdn.c | 4 ++--
servers/slapd/back-bdb/tools.c | 6 +++---
6 files changed, 12 insertions(+), 12 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via c2783b9c5ebf31e55dcac63b877e0884515509cd (commit)
via 48f6a47c1edb22f923fe1eba6cc0d42348bcd24e (commit)
from 0e05417b58bfcfbc0bda2212869a0344a2b6bdc9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c2783b9c5ebf31e55dcac63b877e0884515509cd
Author: Howard Chu <hyc(a)openldap.org>
Date: Sat Oct 20 09:27:23 2012 -0700
ITS#7402 fix potential txn leak in online indexer
commit 48f6a47c1edb22f923fe1eba6cc0d42348bcd24e
Author: Howard Chu <hyc(a)openldap.org>
Date: Sat Oct 20 09:25:14 2012 -0700
ITS#7402 add txnID to debug output to aid tracing
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/back-bdb/add.c | 4 ++++
servers/slapd/back-bdb/config.c | 19 ++++++++++---------
servers/slapd/back-bdb/delete.c | 4 ++++
servers/slapd/back-bdb/modify.c | 4 ++++
servers/slapd/back-bdb/modrdn.c | 4 ++++
servers/slapd/back-bdb/tools.c | 6 ++++++
6 files changed, 32 insertions(+), 9 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git