line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Acme::MetaSyntactic::regions; |
2
|
1
|
|
|
1
|
|
97885
|
use strict; |
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
48
|
|
3
|
1
|
|
|
1
|
|
15
|
use Acme::MetaSyntactic::MultiList; |
|
1
|
|
|
|
|
24
|
|
|
1
|
|
|
|
|
91
|
|
4
|
|
|
|
|
|
|
our @ISA = qw( Acme::MetaSyntactic::MultiList); |
5
|
|
|
|
|
|
|
our $VERSION = '1.001'; |
6
|
|
|
|
|
|
|
__PACKAGE__->init(); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
1; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Acme::MetaSyntactic::regions - Administrative country subdivisions |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 DESCRIPTION |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Most countries have administrative subdivisions, sometimes more than one |
17
|
|
|
|
|
|
|
level deep. This theme lists the first level of administrative divisions |
18
|
|
|
|
|
|
|
for a number of countries. |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Depending on the country, they have differente names: regions, provinces, |
21
|
|
|
|
|
|
|
states, districts, emirates, parishes, dependencies, etc. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The main source for finding lists of regions is the ISO 3166-2 |
24
|
|
|
|
|
|
|
standard (I
|
25
|
|
|
|
|
|
|
and their subdivisions -- Part 2: Country subdivision code>). See |
26
|
|
|
|
|
|
|
L. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 CONTRIBUTORS |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Abigail, Philippe Bruhat (BooK). |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 CHANGES |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=over 4 |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=item * |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
2013-07-29 - v1.001 |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Abigail cleaned up the US list and added US uninhabited territories, |
41
|
|
|
|
|
|
|
in Acme-MetaSyntactic-Themes version 1.035. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=item * |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
2013-10-22 - v1.000 |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Introduced in Acme-MetaSyntactic-Themes version 1.024. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=item * |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
2012-10-02 |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
After several attempts to fill the list of regions by hand |
54
|
|
|
|
|
|
|
over the previous five months, finally used L |
55
|
|
|
|
|
|
|
to scrape all C> pages listed on |
56
|
|
|
|
|
|
|
L and L to |
57
|
|
|
|
|
|
|
turn the names into valid Perl identifiers. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=item * |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
2012-05-10 |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
Extended the theme idea to administrative regions of any country, |
64
|
|
|
|
|
|
|
and started collecting all region names. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
The default country remains C. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=item * |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
2005-10-20 |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Abigail submitted a I theme, with the names of the Dutch |
73
|
|
|
|
|
|
|
provinces. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=back |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head1 SEE ALSO |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
L, L. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=cut |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
__DATA__ |