Updated Changes and added a few lines of documentation.
authorAnders S. Mortensen <sondberg@indexdata.dk>
Mon, 16 Sep 2002 14:00:16 +0000 (14:00 +0000)
committerAnders S. Mortensen <sondberg@indexdata.dk>
Mon, 16 Sep 2002 14:00:16 +0000 (14:00 +0000)
Changes
SimpleServer.pm

diff --git a/Changes b/Changes
index 5becb14..8751c71 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 Revision history for Perl extension Net::Z3950::Server.
 
 0.06  (in progress)
 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
        - 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
index 5a8e32d..b853b38 100644 (file)
 ##
 
 ## $Log: SimpleServer.pm,v $
 ##
 
 ## $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.
 ##
 ## Add RPN structure documentation to SimpleServer.pm's POD.
 ## Add README to MANIFEST.
 ##
@@ -78,7 +81,7 @@ require AutoLoader;
 @EXPORT = qw(
        
 );
 @EXPORT = qw(
        
 );
-$VERSION = '0.05';
+$VERSION = '0.06';
 
 bootstrap Net::Z3950::SimpleServer $VERSION;
 
 
 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
             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
          };
 
             HANDLE    =>  undef    ## Handler of Perl data structure
          };