home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / gdbm-1.7.1-bin.lha / info / gdbm.info (.txt)
GNU Info File  |  1994-02-22  |  24KB  |  508 lines

  1. This is Info file gdbm.info, produced by Makeinfo-1.49 from the input
  2. file ./gdbm.texinfo.
  3.    This file documents the GNU dbm utility.
  4.    Copyright (C) 1989-1993 Free Software Foundation, Inc.
  5.    Permission is granted to make and distribute verbatim copies of this
  6. manual provided the copyright notice and this permission notice are
  7. preserved on all copies.
  8.    Permission is granted to copy and distribute modified versions of
  9. this manual under the conditions for verbatim copying, provided also
  10. that the entire resulting derived work is distributed under the terms
  11. of a permission notice identical to this one.
  12.    Permission is granted to copy and distribute translations of this
  13. manual into another language, under the above conditions for modified
  14. versions.
  15. File: gdbm.info,  Node: Top,  Next: Copying,  Prev: (dir),  Up: (dir)
  16.    GNU `dbm' is a library of functions implementing a hashed database
  17. on a disk file.  This manual documents GNU `dbm' Version 1.7.1
  18. (`gdbm').  The software was written by Philip A. Nelson. This document
  19. was originally written by Pierre Gaumond from texts written by Phil.
  20. * Menu:
  21. Introduction:
  22. * Copying::                    Your rights.
  23. * Intro::                      Introduction to GNU dbm.
  24. * List::                       List of functions.
  25. Functions:
  26. * Open::                       Opening the database.
  27. * Close::                      Closing the database.
  28. * Store::                      Inserting and replacing records in the database.
  29. * Fetch::                      Searching records in the database.
  30. * Delete::                     Removing records from the database.
  31. * Sequential::                 Sequential access to records.
  32. * Reorganization::             Database reorganization.
  33. * Sync::                       Insure all writes to disk have competed.
  34. * Errors::                     Convert internal error codes into English.
  35. * Options::                    Setting internal options.
  36. Other topics:
  37. * Variables::                  Two useful variables.
  38. * Compatibility::              Compatibility with UNIX dbm and ndbm.
  39. * Conversion::                 Converting dbm files to gdbm format.
  40. * Bugs::                       Problems and bugs.
  41. File: gdbm.info,  Node: Copying,  Next: Intro,  Prev: Top,  Up: Top
  42. Copying Conditions.
  43. *******************
  44.    This library is "free"; this means that everyone is free to use it
  45. and free to redistribute it on a free basis.  GNU `dbm' (`gdbm') is not
  46. in the public domain; it is copyrighted and there are restrictions on
  47. its distribution, but these restrictions are designed to permit
  48. everything that a good cooperating citizen would want to do.  What is
  49. not allowed is to try to prevent others from further sharing any
  50. version of `gdbm' that they might get from you.
  51.    Specifically, we want to make sure that you have the right to give
  52. away copies `gdbm', that you receive source code or else can get it if
  53. you want it, that you can change these functions or use pieces of them
  54. in new free programs, and that you know you can do these things.
  55.    To make sure that everyone has such rights, we have to forbid you to
  56. deprive anyone else of these rights.  For example, if you distribute
  57. copies `gdbm', you must give the recipients all the rights that you
  58. have.  You must make sure that they, too, receive or can get the source
  59. code.  And you must tell them their rights.
  60.    Also, for our own protection, we must make certain that everyone
  61. finds out that there is no warranty for anything in the `gdbm'
  62. distribution. If these functions are modified by someone else and
  63. passed on, we want their recipients to know that what they have is not
  64. what we distributed, so that any problems introduced by others will not
  65. reflect on our reputation.
  66.    `gdbm' is currently distributed under the terms of the GNU General
  67. Public License, Version 2.  (*NOT* under the GNU General Library Public
  68. License.)  A copy the GNU General Public License is included with the
  69. distribution of `gdbm'.
  70. File: gdbm.info,  Node: Intro,  Next: List,  Prev: Copying,  Up: Top
  71. Introduction to GNU `dbm'.
  72. **************************
  73.    GNU `dbm' (`gdbm')is a library of database functions that use
  74. extendible hashing and works similar to the standard UNIX `dbm'
  75. functions.  These routines are provided to a programmer needing to
  76. create and manipulate a hashed database. (`gdbm' is *NOT* a complete
  77. database package for an end user.)
  78.    The basic use of `gdbm' is to store key/data pairs in a data file.
  79. Each key must be unique and each key is paired with only one data item.
  80. The keys can not be directly accessed in sorted order.  The basic unit
  81. of data in `gdbm' is the structure:
  82.        typedef struct {
  83.                   char *dptr;
  84.                   int  dsize;
  85.                } datum;
  86.    This structure allows for arbitrary sized keys and data items.
  87.    The key/data pairs are stored in a `gdbm' disk file, called a `gdbm'
  88. database.  An application must open a `gdbm' database to be able
  89. manipulate the keys and data contained in the database. `gdbm' allows
  90. an application to have multiple databases open at the same time.  When
  91. an application opens a `gdbm' database, it is designated as a `reader'
  92. or a `writer'.  A `gdbm' database opened by at most one writer at a
  93. time.  However, many readers may open the database open simultaneously.
  94.  Readers and writers can not open the `gdbm' database at the same time.
  95. File: gdbm.info,  Node: List,  Next: Open,  Prev: Intro,  Up: Top
  96. List of functions.
  97. ******************
  98.    The following is a quick list of the functions contained in the
  99. `gdbm' library. The include file `gdbm.h', that can be included by the
  100. user, contains a definition of these functions.
  101.      #include <gdbm.h>
  102.      
  103.      GDBM_FILE gdbm_open(name, block_size, flags, mode, fatal_func);
  104.      void gdbm_close(dbf);
  105.      int gdbm_store(dbf, key, content, flag);
  106.      datum gdbm_fetch(dbf, key);
  107.      int gdbm_delete(dbf, key);
  108.      datum gdbm_firstkey(dbf);
  109.      datum gdbm_nextkey(dbf, key);
  110.      int gdbm_reorganize(dbf);
  111.      void gdbm_sync(dbf);
  112.      int gdbm_exists(dbf, key);
  113.      char *gdbm_strerror(errno);
  114.      int gdbm_setopt(dbf, option, value, size)
  115.    The `gdbm.h' include file is often in the `/gnu/include'
  116. directory. (The actual location of `gdbm.h' depends on your local
  117. installation of `gdbm'.)
  118. File: gdbm.info,  Node: Open,  Next: Close,  Prev: List,  Up: Top
  119. Opening the database.
  120. *********************
  121.    Initialize `gdbm' system. If the file has a size of zero bytes, a
  122. file initialization procedure is performed, setting up the initial
  123. structure in the file.
  124.    The procedure for opening a `gdbm' file is:
  125.      GDBM_FILE dbf;
  126.      
  127.      dbf = gdbm_open(name, block_size, flags, mode, fatal_func);
  128.    The parameters are:
  129. char *name
  130.      The name of the file (the complete name, `gdbm' does not append any
  131.      characters to this name).
  132. int block_size
  133.      It is used during initialization to determine the size of various
  134.      constructs. It is the size of a single transfer from disk to
  135.      memory. This parameter is ignored if the file has been previously
  136.      initialized. The minimum size is 512. If the value is less than
  137.      512, the file system blocksize is used, otherwise the value of
  138.      `block_size' is used.
  139. int flags
  140.      If `flags' is set to GDBM_READER, the user wants to just read the
  141.      database and any call to `gdbm_store' or `gdbm_delete' will fail.
  142.      Many readers can access the database at the same time. If `flags'
  143.      is set to GDBM_WRITER, the user wants both read and write access
  144.      to the database and requires exclusive access. If `flags' is set
  145.      to GDBM_WRCREAT, the user wants both read and write access to the
  146.      database and if the database does not exist, create a new one. If
  147.      `flags' is set to GDBM_NEWDB, the user want a new database
  148.      created, regardless of whether one existed, and wants read and
  149.      write access to the new database.  For all writers (GDBM_WRITER,
  150.      GDBM_WRCREAT and GDBM_NEWDB) the value GDBM_FAST can be added to
  151.      the `flags' field using logical or.  This option causes `gdbm' to
  152.      write the database without any disk file synchronization.  This
  153.      allows faster writes, but may produce an inconsistent database in
  154.      the event of abnormal termination of the writer. Any error
  155.      detected will cause a return value of NULL and an appropriate
  156.      value will be in `gdbm_errno' (see Variables). If no errors occur,
  157.      a pointer to the `gdbm' file descriptor will be returned.
  158. int mode
  159.      File mode (see chmod(2) and open(2) if the file is created).
  160. void (*fatal_func) ()
  161.      A function for `gdbm' to call if it detects a fatal error. The only
  162.      parameter of this function is a string. If the value of NULL is
  163.      provided, `gdbm' will use a default function.
  164.    The return value, `dbf', is the pointer needed by all other
  165. functions to access that `gdbm' file. If the return is the NULL pointer,
  166. `gdbm_open' was not successful. The errors can be found in `gdbm_errno'
  167. for `gdbm' errors and in `errno' for file system errors (for error
  168. codes, see `gdbm.h').
  169.    In all of the following calls, the parameter `dbf' refers to the
  170. pointer returned from `gdbm_open'.
  171. File: gdbm.info,  Node: Close,  Next: Store,  Prev: Open,  Up: Top
  172. Closing the database.
  173. *********************
  174.    It is important that every file opened is also closed. This is
  175. needed to update the reader/writer count on the file. This is done by:
  176.      gdbm_close(dbf);
  177.    The parameter is:
  178. GDBM_FILE dbf
  179.      The pointer returned by `gdbm_open'.
  180.    Closes the `gdbm' file and frees all memory associated with the file
  181. `dbf'.
  182. File: gdbm.info,  Node: Store,  Next: Fetch,  Prev: Close,  Up: Top
  183. Inserting and replacing records in the database.
  184. ************************************************
  185.    The function `gdbm_store' inserts or replaces records in the
  186. database.
  187.      ret = gdbm_store(dbf, key, content, flag);
  188.    The parameters are:
  189. GDBM_FILE dbf
  190.      The pointer returned by `gdbm_open'.
  191. datum key
  192.      The `key' data.
  193. datum content
  194.      The data to be associated with the key.
  195. int flag
  196.      Defines the action to take when the key is already in the
  197.      database. The value GDBM_REPLACE (defined in `gdbm.h') asks that
  198.      the old data be replaced by the new `content'. The value
  199.      GDBM_INSERT asks that an error be returned and no action taken if
  200.      the `key' already exists.
  201.    The values returned in `ret' are:
  202.      The item was not stored in the database because the caller was not
  203.      an official writer or either `key' or `content' have a NULL dptr
  204.      field. Both `key' and `content' must have the dptr field be a
  205.      non-NULL value. Since a NULL dptr field is used by other functions
  206.      to indicate an error, a NULL field cannot be valid data.
  207.      The item was not stored because the argument `flag' was
  208.      GDBM_INSERT and the `key' was already in the database.
  209.      No error. `content' is keyed by `key'. The file on disk is updated
  210.      to reflect the structure of the new database before returning from
  211.      this function.
  212.    If you store data for a `key' that is already in the data base,
  213. `gdbm' replaces the old data with the new data if called with
  214. GDBM_REPLACE. You do not get two data items for the same `key' and you
  215. do not get an error from `gdbm_store'.
  216.    The size in `gdbm' is not restricted like `dbm' or `ndbm'. Your data
  217. can be as large as you want.
  218. File: gdbm.info,  Node: Fetch,  Next: Delete,  Prev: Store,  Up: Top
  219. Searching for records in the database.
  220. **************************************
  221.    Looks up a given `key' and returns the information associated with
  222. that key. The pointer in the structure that is  returned is a pointer
  223. to dynamically allocated memory block. To search for some data:
  224.      content = gdbm_fetch(dbf, key);
  225.    The parameters are:
  226. GDBM_FILE dbf
  227.      The pointer returned by `gdbm_open'.
  228. datum key
  229.      The `key' data.
  230.    The datum returned in `content' is a pointer to the data found. If
  231. the dptr is NULL, no data was found. If dptr is not NULL, then it points
  232. to data allocated by malloc. `gdbm' does not automatically free this
  233. data. The user must free this storage when done using it. This
  234. eliminates the need to copy the result to save it for later use (you
  235. just save the pointer).
  236.    You may also search for a particular key without retrieving it,
  237. using:
  238.      ret = gdbm_exists(dbf, key);
  239.    The parameters are:
  240. GDBM_FILE dbf
  241.      The pointer returned by `gdbm_open'.
  242. datum key
  243.      The `key' data.
  244.    Unlike `gdbm_fetch', this routine does not allocate any memory, and
  245. simply returns true or false, depending on whether the `key' exists, or
  246. File: gdbm.info,  Node: Delete,  Next: Sequential,  Prev: Fetch,  Up: Top
  247. Removing records from the database.
  248. ***********************************
  249.    To remove some data from the database:
  250.      ret = gdbm_delete(dbf, key);
  251.    The parameters are:
  252. GDBM_FILE dbf
  253.      The pointer returned by `gdbm_open'.
  254. datum key
  255.      The `key' data.
  256.    The ret value is -1 if the item is not present or the requester is a
  257. reader. The ret value is 0 if there was a successful delete.
  258.    `gdbm_delete' removes the keyed item and the `key' from the database
  259. `dbf'. The file on disk is updated to reflect the structure of the new
  260. database before returning from this function.
  261. File: gdbm.info,  Node: Sequential,  Next: Reorganization,  Prev: Delete,  Up: Top
  262. Sequential access to records.
  263. *****************************
  264.    The next two functions allow for accessing all items in the
  265. database. This access is not `key' sequential, but it is guaranteed to
  266. visit every `key' in the database once. The order has to do with the
  267. hash values. `gdbm_firstkey' starts the visit of all keys in the
  268. database. `gdbm_nextkey' finds and reads the next entry in the hash
  269. structure for `dbf'.
  270.      key = gdbm_firstkey(dbf);
  271.      
  272.      nextkey = gdbm_nextkey(dbf, key);
  273.    The parameters are:
  274. GDBM_FILE dbf
  275.      The pointer returned by `gdbm_open'.
  276. datum `key'
  277. datum nextkey
  278.      The `key' data.
  279.    The return values are both datum. If `key'.dptr or nextkey.dptr is
  280. NULL, there is no first `key' or next `key'. Again notice that dptr
  281. points to data allocated by malloc and `gdbm' will not free it for you.
  282.    These functions were intended to visit the database in read-only
  283. algorithms, for instance, to validate the database or similar
  284. operations.
  285.    File `visiting' is based on a `hash table'. `gdbm_delete'
  286. re-arranges the hash table to make sure that any collisions in the
  287. table do not leave some item `un-findable'. The original key order is
  288. NOT guaranteed to remain unchanged in ALL instances. It is possible
  289. that some key will not be visited if a loop like the following is
  290. executed:
  291.         key = gdbm_firstkey ( dbf );
  292.         while ( key.dptr ) {
  293.            nextkey = gdbm_nextkey ( dbf, key );
  294.            if ( some condition ) {
  295.               gdbm_delete ( dbf, key );
  296.               free ( key.dptr );
  297.            }
  298.            key = nextkey;
  299.         }
  300. File: gdbm.info,  Node: Reorganization,  Next: Sync,  Prev: Sequential,  Up: Top
  301. Database reorganization.
  302. ************************
  303.    The following function should be used very seldom.
  304.      ret = gdbm_reorganize(dbf);
  305.    The parameter is:
  306. GDBM_FILE dbf
  307.      The pointer returned by `gdbm_open'.
  308.    If you have had a lot of deletions and would like to shrink the space
  309. used by the `gdbm' file, this function will reorganize the database.
  310. `gdbm' will not shorten the length of a `gdbm' file (deleted file space
  311. will be reused) except by using this reorganization.
  312.    This reorganization requires creating a new file and inserting all
  313. the elements in the old file `dbf' into the new file. The new file is
  314. then renamed to the same name as the old file and `dbf' is updated to
  315. contain all the correct information about the new file. If an error is
  316. detected, the return value is negative. The value zero is returned
  317. after a successful reorganization.
  318. File: gdbm.info,  Node: Sync,  Next: Errors,  Prev: Reorganization,  Up: Top
  319. Database Synchronization
  320. ************************
  321.    If your database was opened with the GDBM_FAST flag, `gdbm' does not
  322. wait for writes to the disk to complete before continuing.  This allows
  323. faster writing of databases at the risk of having a corrupted database
  324. if the application terminates in an abnormal fashion.  The following
  325. function allows the programmer to make sure the disk version of the
  326. database has been completely updated with all changes to the current
  327. time.
  328.      gdbm_sync(dbf);
  329.    The parameter is:
  330. GDBM_FILE dbf
  331.      The pointer returned by `gdbm_open'.
  332.    This would usually be called after a complete set of changes have
  333. been made to the database and before some long waiting time.
  334. `gdbm_close' automatically calls the equivalent of `gdbm_sync' so no
  335. call is needed if the database is to be closed immediately after the
  336. set of changes have been made.
  337. File: gdbm.info,  Node: Errors,  Next: Options,  Prev: Sync,  Up: Top
  338. Error strings.
  339. **************
  340.    To convert a `gdbm' error code into English text, use this routine:
  341.      ret = gdbm_strerror(errno)
  342.    The parameter is:
  343. gdbm_error errno
  344.      The `gdbm' error code, usually `gdbm_errno'.
  345.    The appropiate phrase for reading by humans is returned.
  346. File: gdbm.info,  Node: Options,  Next: Variables,  Prev: Errors,  Up: top
  347. Seting options.
  348. ***************
  349.    `Gdbm' now supports the ability to set certain options on an already
  350. open database.
  351.      ret = gdbm_setopt(dbf, option, value, size)
  352.    The parameters are:
  353. GDBM_FILE dbf
  354.      The pointer returned by `gdbm_open'.
  355. int option
  356.      The option to be set.
  357. int *value
  358.      A pointer to the value to which `option' will be set.
  359. int size
  360.      The length of the data pointed to by `value'.
  361.    The only legal option currently is GDBM_CACHESIZE, which sets the
  362. size of the internal bucket cache.  This option may only be set once on
  363. each GDBM_FILE descriptor, and is set automatically to 100 upon the
  364. first access to the database.
  365.    The return value will be -1 upon failure, or 0 upon success.  The
  366. global variable `gdbm_errno' will be set upon failure.
  367.    For instance, to set a database to use a cache of 10, after opening
  368. it with `gdbm_open', but prior to accessing it in any way, the following
  369. code could be used:
  370.      int value = 10;
  371.      ret = gdbm_setopt(dbf, GDBM_CACHESIZE, &value, sizeof(int));
  372. File: gdbm.info,  Node: Variables,  Next: Compatibility,  Prev: Options,  Up: Top
  373. Two useful variables.
  374. *********************
  375.    The following two variables are variables that may need to be used:
  376. gdbm_error gdbm_errno
  377.      The variable that contains more information about `gdbm' errors
  378.      (`gdbm.h' has the definitions of the error values).
  379. char * gdbm_version
  380.      The string containing the version information.
  381. File: gdbm.info,  Node: Compatibility,  Next: Conversion,  Prev: Variables,  Up: Top
  382. Compatibility with standard `dbm' and `ndbm'.
  383. *********************************************
  384.    GNU `dbm' files are not `sparse'. You can copy them with the UNIX
  385. `cp' command and they will not expand in the copying process.
  386.    There is a compatibility mode for use with programs that already use
  387. UNIX `dbm' and UNIX `ndbm'.
  388.    GNU `dbm' has compatibility functions for `dbm'. For `dbm'
  389. compatibility functions, you need the include file `dbm.h'.
  390.    In this compatibility mode, no `gdbm' file pointer is required by
  391. the user, and Only one file may be opened at a time. All users in
  392. compatibility mode are assumed to be writers. If the `gdbm' file is a
  393. read only, it will fail as a writer, but will also try to open it as a
  394. reader. All returned pointers in datum structures point to data that
  395. `gdbm' WILL free. They should be treated as static pointers (as
  396. standard UNIX `dbm' does). The compatibility function names are the
  397. same as the UNIX `dbm' function names. Their definitions follow:
  398.      int dbminit(name);
  399.      int store(key, content);
  400.      datum fetch(key);
  401.      int delete(key);
  402.      datum firstkey();
  403.      datum nextkey(key);
  404.      int dbmclose();
  405.    Standard UNIX `dbm' and GNU `dbm' do not have the same data format
  406. in the file. You cannot access a standard UNIX `dbm' file with GNU
  407. `dbm'!  If you want to use an old database with GNU `dbm', you must use
  408. the `conv2gdbm' program.
  409.    Also, GNU `dbm' has compatibility functions for `ndbm'. For `ndbm'
  410. compatibility functions, you need the include file `ndbm.h'.
  411.    Again, just like `ndbm', any returned datum can be assumed to be
  412. static storage. You do not have to free that memory, the `ndbm'
  413. compatibility functions will do it for you.
  414.    The functions are:
  415.      DBM *dbm_open(name, flags, mode);
  416.      void dbm_close(file);
  417.      datum dbm_fetch(file, key);
  418.      int dbm_store(file, key, `content', flags);
  419.      int dbm_delete(file, key);
  420.      datum dbm_firstkey(file);
  421.      datum dbm_nextkey(file);
  422.      int dbm_error(file);
  423.      int dbm_clearerr(file);
  424.      int dbm_dirfno(file);
  425.      int dbm_pagfno(file);
  426.      int dbm_rdonly(file);
  427.    If you want to compile an old C program that used UNIX `dbm' or
  428. `ndbm' and want to use `gdbm' files, execute the following `cc' command:
  429.      cc ... -L /gnu/lib -lgdbm
  430. File: gdbm.info,  Node: Conversion,  Next: Bugs,  Prev: Compatibility,  Up: Top
  431. Converting `dbm' files to `gdbm' format.
  432. ****************************************
  433.    The program `conv2gdbm' has been provided to help you convert from
  434. `dbm' databases to `gdbm'. The usage is:
  435.      conv2gdbm [-q] [-b block_size] dbm_file [gdbm_file]
  436.    The options are:
  437.      Causes `conv2gdbm' to work quietly.
  438. block_size
  439.      Is the same as in `gdbm_open'.
  440. dbm_file
  441.      Is the name of the `dbm' file without the `.pag' or `.dir'
  442.      extensions.
  443. gdbm_file
  444.      Is the complete file name. If not included, the `gdbm' file name
  445.      is the same as the `dbm' file name without any extensions. That is
  446.      `conv2gdbm' `dbmfile' converts the files `dbmfile.pag' and
  447.      `dbmfile.dir' into a `gdbm' file called `dbmfile'.
  448. File: gdbm.info,  Node: Bugs,  Prev: Conversion,  Up: Top
  449. Problems and bugs.
  450. ******************
  451.    If you have problems with GNU `dbm' or think you've found a bug,
  452. please report it. Before reporting a bug, make sure you've actually
  453. found a real bug. Carefully reread the documentation and see if it
  454. really says you can do what you're trying to do. If it's not clear
  455. whether you should be able to do something or not, report that too; it's
  456. a bug in the documentation!
  457.    Before reporting a bug or trying to fix it yourself, try to isolate
  458. it to the smallest possible input file that reproduces the problem. Then
  459. send us the input file and the exact results `gdbm' gave you. Also say
  460. what you expected to occur; this will help us decide whether the
  461. problem was really in the documentation.
  462.    Once you've got a precise problem, send e-mail to:
  463.      Internet: `bug-gnu-utils@prep.ai.mit.edu'.
  464.      UUCP: `mit-eddie!prep.ai.mit.edu!bug-gnu-utils'.
  465.    Please include the version number of GNU `dbm' you are using. You
  466. can get this information by printing the variable `gdbm_version' (see
  467. Variables).
  468.    Non-bug suggestions are always welcome as well. If you have questions
  469. about things that are unclear in the documentation or are just obscure
  470. features, please report them too.
  471.    You may contact the author by:
  472.          e-mail:  phil@cs.wwu.edu
  473.         us-mail:  Philip A. Nelson
  474.                   Computer Science Department
  475.                   Western Washington University
  476.                   Bellingham, WA 98226
  477. Tag Table:
  478. Node: Top
  479. Node: Copying
  480. Node: Intro
  481. Node: List
  482. Node: Open
  483. Node: Close
  484. Node: Store
  485. Node: Fetch
  486. 11443
  487. Node: Delete
  488. 12691
  489. Node: Sequential
  490. 13356
  491. Node: Reorganization
  492. 15036
  493. Node: Sync
  494. 15991
  495. Node: Errors
  496. 16951
  497. Node: Options
  498. 17311
  499. Node: Variables
  500. 18430
  501. Node: Compatibility
  502. 18854
  503. Node: Conversion
  504. 21227
  505. Node: Bugs
  506. 22041
  507. End Tag Table
  508.