home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl_ste.zip / auto / URI / URL / crack.al < prev    next >
Text File  |  1997-11-28  |  493b  |  21 lines

  1. # NOTE: Derived from ./blib/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.