svn commit: samba r6479 - in branches/SAMBA_4_0/source/lib/ldb: . web

tridge at samba.org tridge at samba.org
Tue Apr 26 04:02:57 GMT 2005


Author: tridge
Date: 2005-04-26 04:02:57 +0000 (Tue, 26 Apr 2005)
New Revision: 6479

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=6479

Log:
- added a simple web page

- fixed configure.in ordering




Added:
   branches/SAMBA_4_0/source/lib/ldb/autogen.sh
   branches/SAMBA_4_0/source/lib/ldb/web/
   branches/SAMBA_4_0/source/lib/ldb/web/index.html
Modified:
   branches/SAMBA_4_0/source/lib/ldb/configure.in


Changeset:
Added: branches/SAMBA_4_0/source/lib/ldb/autogen.sh
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/autogen.sh	2005-04-26 03:59:59 UTC (rev 6478)
+++ branches/SAMBA_4_0/source/lib/ldb/autogen.sh	2005-04-26 04:02:57 UTC (rev 6479)
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+(autoheader && autoconf) || exit 1
+
+echo "Now run ./configure and then make."
+exit 0
+


Property changes on: branches/SAMBA_4_0/source/lib/ldb/autogen.sh
___________________________________________________________________
Name: svn:executable
   + *

Modified: branches/SAMBA_4_0/source/lib/ldb/configure.in
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/configure.in	2005-04-26 03:59:59 UTC (rev 6478)
+++ branches/SAMBA_4_0/source/lib/ldb/configure.in	2005-04-26 04:02:57 UTC (rev 6479)
@@ -1,9 +1,9 @@
 AC_DEFUN([SMB_MODULE_DEFAULT], [echo -n ""])
 AC_DEFUN([SMB_LIBRARY_ENABLE], [echo -n ""])
 AC_INIT(include/ldb.h)
+AC_PROG_CC
 AC_FUNC_MMAP
 AC_PATH_PROG(YODL2MAN,yodl2man)
 AC_PATH_PROG(GCOV,gcov)
-AC_PROG_CC
 sinclude(config.m4)
 AC_OUTPUT(Makefile)

Added: branches/SAMBA_4_0/source/lib/ldb/web/index.html
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/web/index.html	2005-04-26 03:59:59 UTC (rev 6478)
+++ branches/SAMBA_4_0/source/lib/ldb/web/index.html	2005-04-26 04:02:57 UTC (rev 6479)
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+<HEAD>
+<TITLE>ldb</TITLE>
+</HEAD>
+<BODY BGCOLOR="#ffffff" TEXT="#000000" VLINK="#292555" LINK="#292555" ALINK="#cc0033">
+
+<h1>ldb</h1>
+
+ldb is a LDAP-like embedded database. It is not at all LDAP standards
+complient, so if you want a standards complient database then please
+see the excellent <a href="http://www.openldap.org/">OpenLDAP</a>
+project.<p>
+
+What ldb does is provide a fast database with an LDAP-like API
+designed to be used within an application. In some ways it can be seen
+as a intermediate solution between key-value pair databases and a real
+LDAP database.<p>
+
+ldb is the database engine used in Samba4.
+
+<h2>Features</h2>
+
+The main features that separate ldb from other solutions are:
+
+<ul>
+<li>Safe multi-reader, multi-writer, using byte range locking
+<li>LDAP-like API
+<li>fast operation
+<li>choice of local tdb or remote LDAP backends
+<li>integration with <a href="http://talloc.samba.org">talloc</a>
+<li>schema-less operation, for trivial setup
+<li>modules for extensions (such as schema support)
+<li>easy setup of indexes and attribute properties
+<li>ldbedit tool for database editing (reminiscent of 'vipw')
+<li>ldif for import/export
+</ul>
+
+<h2>Documentation</h2>
+
+Currently ldb is completely lacking in programmer or user
+documentation. This is your opportunity to make a contribution! Start
+with the public functions declared in <a
+href="http://samba.org/ftp/unpacked/samba4/source/lib/ldb/include/ldb.h">ldb.h</a>
+and the example code in the <a
+href="http://samba.org/ftp/unpacked/samba4/source/lib/ldb/tools/">tools
+directory</a>. Documentation in the same docbook format used by Samba
+would be preferred.
+
+<h2>Discussion and bug reports</h2>
+
+ldb does not currently have its own mailing list or bug tracking
+system. For now, please use the <a
+href="https://lists.samba.org/mailman/listinfo/samba-technical">samba-technical</a>
+mailing list, and the <a href="http://bugzilla.samba.org/">Samba
+bugzilla</a> bug tracking system.
+
+<h2>Download</h2>
+
+You can download the latest release either via rsync or anonymous
+svn. To fetch via svn use the following command:
+
+<pre>
+  svn co svn://svnanon.samba.org/samba/branches/SAMBA_4_0/source/lib/ldb ldb
+</pre>
+
+To fetch via rsync use this command:
+
+<pre>
+  rsync -Pavz samba.org::ftp/unpacked/samba4/source/lib/ldb .
+</pre>
+
+<hr>
+<tiny>
+<a href="http://samba.org/~tridge/">Andrew Tridgell</a><br>
+ldb AT tridgell.net
+</tiny>
+
+</BODY>
+</HTML>



More information about the samba-cvs mailing list