home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / auto / URI / URL / crack.al < prev    next >
Text File  |  1997-12-13  |  467b  |  21 lines

  1. # NOTE: Derived from :lib:URI:URL.pm.  Changes made here will be lost.
  2. package URI::URL;
  3.  
  4. sub crack
  5. {
  6.     # should be overridden by subclasses
  7.     my $self = shift;
  8.     ($self->scheme,  # 0: scheme
  9.      undef,          # 1: user
  10.      undef,          # 2: passwd
  11.      undef,          # 3: host
  12.      undef,          # 4: port
  13.      undef,          # 5: path
  14.      undef,          # 6: params
  15.      undef,          # 7: query
  16.      undef           # 8: fragment
  17.     )
  18. }
  19.  
  20. 1;
  21.