home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-12-13 | 467 b | 21 lines | [TEXT/McPL] |
- # NOTE: Derived from :lib:URI:URL.pm. Changes made here will be lost.
- package URI::URL;
-
- sub crack
- {
- # should be overridden by subclasses
- my $self = shift;
- ($self->scheme, # 0: scheme
- undef, # 1: user
- undef, # 2: passwd
- undef, # 3: host
- undef, # 4: port
- undef, # 5: path
- undef, # 6: params
- undef, # 7: query
- undef # 8: fragment
- )
- }
-
- 1;
-