Author: wrowe Date: Thu Nov 20 22:21:27 2008 New Revision: 719503 URL: http://svn.apache.org/viewvc?rev=719503&view=rev Log: Clean up dbm documentation and prepare for the next phase Backports: 719502 Modified: apr/apr-util/branches/1.3.x/include/apr_dbm.h Modified: apr/apr-util/branches/1.3.x/include/apr_dbm.h URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.3.x/include/apr_dbm.h?rev=719503&r1=719502&r2=719503&view=diff ============================================================================== --- apr/apr-util/branches/1.3.x/include/apr_dbm.h (original) +++ apr/apr-util/branches/1.3.x/include/apr_dbm.h Thu Nov 20 22:21:27 2008 @@ -63,10 +63,10 @@ * @param dbm The newly opened database * @param type The type of the DBM (not all may be available at run time) *
- *  GDBM for GDBM files
- *  SDBM for SDBM files
- *  DB   for berkeley DB files
- *  NDBM for NDBM files
+ *  db   for Berkeley DB files
+ *  gdbm for GDBM files
+ *  ndbm for NDBM files
+ *  sdbm for SDBM files (always available)
  *  default for the default DBM type
  *  
* @param name The dbm file name to open @@ -81,6 +81,9 @@ * @param cntxt The pool to use when creating the dbm * @remark The dbm name may not be a true file name, as many dbm packages * append suffixes for seperate data and index files. + * @bug In apr-util 0.9 and 1.x, the type arg was case insensitive. This + * was highly inefficient, and as of 2.x the dbm name must be provided in + * the correct case (lower case for all bundled providers) */ APU_DECLARE(apr_status_t) apr_dbm_open_ex(apr_dbm_t **dbm, const char* type, @@ -184,7 +187,7 @@ * actual file/path names which would be (created and) used. At most, two * files may be used; used2 may be NULL if only one file is used. * @param pool The pool for allocating used1 and used2. - * @param type The type of DBM you require info on + * @param type The type of DBM you require info on @see apr_dbm_open_ex * @param pathname The path name to generate used-names from. * @param used1 The first pathname used by the apr_dbm implementation. * @param used2 The second pathname used by apr_dbm. If only one file is