]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/bsdconfig/timezone/share/continents.subr
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / bsdconfig / timezone / share / continents.subr
1 if [ ! "$_TIMEZONE_CONTINENTS_SUBR" ]; then _TIMEZONE_CONTINENTS_SUBR=1
2 #
3 # Copyright (c) 2011-2012 Devin Teske
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 # SUCH DAMAGE.
26 #
27 # $FreeBSD$
28 #
29 ############################################################ INCLUDES
30
31 BSDCFG_SHARE="/usr/share/bsdconfig"
32 . $BSDCFG_SHARE/common.subr || exit 1
33 f_dprintf "%s: loading includes..." timezone/continents.subr
34
35 BSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="090.timezone"
36 f_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr
37
38 ############################################################ CONFIGURATION
39
40 #
41 # List of worldly continents/oceans (export'ed for awk(1) ENVIRON visibility)
42 #
43 export CONTINENTS="
44         africa
45         america
46         antarctica
47         arctic
48         asia
49         atlantic
50         australia
51         europe
52         indian
53         pacific
54         utc
55 "
56
57 #
58 # Directory name of each continent/ocean (in _PATH_ZONEINFO)
59 #
60 export continent_africa_name="Africa"
61 export continent_america_name="America"
62 export continent_antarctica_name="Antarctica"
63 export continent_arctic_name="Arctic"
64 export continent_asia_name="Asia"
65 export continent_atlantic_name="Atlantic"
66 export continent_australia_name="Australia"
67 export continent_europe_name="Europe"
68 export continent_indian_name="Indian"
69 export continent_pacific_name="Pacific"
70 export continent_utc_name="UTC"
71
72 #
73 # Export i18n menu texts of continents/oceans for awk(1) ENVIRON visibility
74 # NOTE: These are defined in messages.subr included above.
75 #
76 export continent_africa_title
77 export continent_america_title
78 export continent_antarctica_title
79 export continent_arctic_title
80 export continent_asia_title
81 export continent_atlantic_title
82 export continent_australia_title
83 export continent_europe_title
84 export continent_indian_title
85 export continent_pacific_title
86 export continent_utc_title
87
88 ############################################################ FUNCTIONS
89
90 # f_continent $cont $property
91 #
92 # Returns a single property of a given continent. Available properties are:
93 #
94 #       name        Directory name of continent/ocean as it appears in
95 #                   _PATH_ZONEINFO.
96 #       title       Menu text of this continent/ocean to be displayed in the
97 #                   continent-selection menu.
98 #       nitems      Number of submenu items associated with this
99 #                   continent/ocean.
100 #       tlc_N       2-character country code of the Nth submenu item associated
101 #                   with this continent displayed in the country-selection menu
102 #                   (which appears after continent selection).
103 #       menu_list   Menu-list of regions for this continent.
104 #
105 f_continent()
106 {
107         local cont="$1" property="$2"
108         eval echo \"\${continent_${cont}_$property}\"
109 }
110
111 # f_find_continent $title
112 #
113 # Returns continent identifier given continent title.
114 #
115 f_find_continent()
116 {
117         local cont
118         for cont in $CONTINENTS; do
119                 if [ "$1" = "$( f_continent $cont title )" ]; then
120                         echo "$cont"
121                         return $SUCCESS
122                 fi
123         done
124         return $FAILURE
125 }
126
127 # f_OCEANP $cont
128 #
129 # Returns "1" if the first argument is an ocean, otherwise NULL.
130 #
131 f_OCEANP()
132 {
133         case "$1" in
134         arctic|atlantic|indian|pacific)
135                 echo 1
136         esac
137 }
138
139 ############################################################ MAIN
140
141 f_dprintf "%s: Successfully loaded." timezone/continents.subr
142
143 fi # ! $_TIMEZONE_CONTINENTS_SUBR