|
Revision 9765, 0.7 kB
(checked in by hanekomu, 5 years ago)
|
r6096@nbgr: marcel | 2008-04-18 16:33:18 +0200
lang/perl/Data-Semantic-URI: initial commit
|
| Line | |
|---|
| 1 | package Data::Semantic::URI::gopher; |
|---|
| 2 | |
|---|
| 3 | use strict; |
|---|
| 4 | use warnings; |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | our $VERSION = '0.03'; |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | use base qw(Data::Semantic::URI); |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | use constant REGEXP_KEYS => qw(URI gopher); |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | 1; |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | __END__ |
|---|
| 20 | |
|---|
| 21 | {% USE p = PodGenerated %} |
|---|
| 22 | |
|---|
| 23 | =head1 NAME |
|---|
| 24 | |
|---|
| 25 | {% p.package %} - semantics for gopher URIs |
|---|
| 26 | |
|---|
| 27 | =head1 WARNING |
|---|
| 28 | |
|---|
| 29 | This class is unfinished. I've released the distribution nevertheless because |
|---|
| 30 | it already contains other usable classes and so I can get CPAN tester results |
|---|
| 31 | early. |
|---|
| 32 | |
|---|
| 33 | =head1 SYNOPSIS |
|---|
| 34 | |
|---|
| 35 | my $obj = {% p.package %}->new; |
|---|
| 36 | if ($obj->is_well_formed($value)) { ... } |
|---|
| 37 | |
|---|
| 38 | =head1 DESCRIPTION |
|---|
| 39 | |
|---|
| 40 | =head1 METHODS |
|---|
| 41 | |
|---|
| 42 | =over 4 |
|---|
| 43 | |
|---|
| 44 | {% p.write_methods %} |
|---|
| 45 | |
|---|
| 46 | =back |
|---|
| 47 | |
|---|
| 48 | {% p.write_inheritance %} |
|---|
| 49 | |
|---|
| 50 | {% PROCESS standard_pod %} |
|---|
| 51 | |
|---|
| 52 | =cut |
|---|
| 53 | |
|---|