home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Editores / Perl5 / perl / lib / site / auto / URI / URL / crack.al < prev    next >
Encoding:
Text File  |  1997-08-10  |  491 b   |  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.