home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / URI / URL / _login.pm < prev    next >
Encoding:
Perl POD Document  |  1996-08-01  |  619 b   |  26 lines  |  [TEXT/McPL]

  1. package URI::URL::_login;
  2. require URI::URL::_generic;
  3. @ISA = qw(URI::URL::_generic);
  4.  
  5.  
  6. # Generic terminal logins.  This is used as a base class for 'telnet',
  7. # 'tn3270', and 'rlogin' URL schemes.
  8.  
  9.  
  10. sub _parse {
  11.     my($self, $init) = @_;
  12.     # All we want from _generic is the 'netloc' handling.
  13.     $self->URI::URL::_generic::_parse($init, 'netloc');
  14. }
  15.  
  16.  
  17. *path      = \&URI::URL::bad_method;
  18. *epath     = \&URI::URL::bad_method;
  19. *query     = \&URI::URL::bad_method;
  20. *equery    = \&URI::URL::bad_method;
  21. *params    = \&URI::URL::bad_method;
  22. *eparams   = \&URI::URL::bad_method;
  23. *frag      = \&URI::URL::bad_method;
  24.  
  25. 1;
  26.