/*
 *  tiny OAI-PMH data provider framework for php4(or higher)
 *  Yamamoto.T
 *  
 *  2006.9.7  ver. 0.85
 *  2006.9.15 ver. 0.86 bugfix
 *  2006.9.28 ver. 0.87 add comment
 *            ver. 0.88 add initialize/finalize
 *
 *  this script cannot run by itself. write your script that 'include' this.
 *    example:
 *      <?php
 *          include 'tinyoai.php.inc';
 *            ... define your functions ...
 *          oai_mainroutine();
 *      ?>
 *
 *  in your script, you must implement your original functions below:
 *    * fw_identify (optional)
 *    * fw_listsets (optional)
 *    * fw_listmetadataformats
 *    * fw_getrecord
 *    * fw_getrecords
 *    * fw_initialize / fw_finalize (if you need)
 *
 *  read README for details.
 */

TODO:
sample implementation will be needed.
