From: Anders S. Mortensen Date: Mon, 16 Sep 2002 14:00:16 +0000 (+0000) Subject: Updated Changes and added a few lines of documentation. X-Git-Tag: release.0.0.8.lau~33 X-Git-Url: http://git.indexdata.com/?p=simpleserver-moved-to-github.git;a=commitdiff_plain;h=b6513f979a86cfbea9f8cc50c37c5d9869ba4878;ds=sidebyside Updated Changes and added a few lines of documentation. --- diff --git a/Changes b/Changes index 5becb14..8751c71 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,7 @@ Revision history for Perl extension Net::Z3950::Server. 0.06 (in progress) + - Added support for authentication - Add documentation for the object tree passed as the RPN member of the search-handler's argument hash. - We actually removed the vacuous Changelog and TODO files diff --git a/SimpleServer.pm b/SimpleServer.pm index 5a8e32d..b853b38 100644 --- a/SimpleServer.pm +++ b/SimpleServer.pm @@ -26,7 +26,10 @@ ## ## $Log: SimpleServer.pm,v $ -## Revision 1.14 2002-03-06 11:30:02 mike +## Revision 1.15 2002-09-16 14:00:16 sondberg +## Updated Changes and added a few lines of documentation. +## +## Revision 1.14 2002/03/06 11:30:02 mike ## Add RPN structure documentation to SimpleServer.pm's POD. ## Add README to MANIFEST. ## @@ -78,7 +81,7 @@ require AutoLoader; @EXPORT = qw( ); -$VERSION = '0.05'; +$VERSION = '0.06'; bootstrap Net::Z3950::SimpleServer $VERSION; @@ -276,6 +279,10 @@ The argument hash passed to the init handler has the form IMP_NAME => "", ## Z39.50 Implementation name IMP_VER => "", ## Z39.50 Implementation version ERR_CODE => 0, ## Error code, cnf. Z39.50 manual + USER => "xxx" ## If Z39.50 authentication is used, + ## this member contains user name + PASS => "yyy" ## Under same conditions, this member + ## contains the password in clear text HANDLE => undef ## Handler of Perl data structure };