home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / URI / URL / prospero.pm < prev    next >
Text File  |  1996-08-01  |  798b  |  28 lines

  1. package URI::URL::prospero;
  2. require URI::URL::_generic;
  3. @ISA = qw(URI::URL::_generic);
  4.  
  5. # RFC 1738 says:
  6. #
  7. #   A prospero URLs takes the form:
  8. #
  9. #      prospero://<host>:<port>/<hsoname>;<field>=<value>
  10. #
  11. #   where <host> and <port> are as described in Section 3.1. If :<port>
  12. #   is omitted, the port defaults to 1525. No username or password is
  13. #   allowed.
  14. #
  15. #   The <hsoname> is the host-specific object name in the Prospero
  16. #   protocol, suitably encoded.  This name is opaque and interpreted by
  17. #   the Prospero server.  The semicolon ";" is reserved and may not
  18. #   appear without quoting in the <hsoname>.
  19.  
  20. sub default_port { 1525 }       # says rfc1738, section 3.11
  21.  
  22. sub _parse {
  23.     my($self, $init) = @_;
  24.     $self->URI::URL::_generic::_parse($init, qw(netloc path params frag));
  25. }
  26.  
  27. 1;
  28.