1if [ ! "$_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 (INLUDING, 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 31BSDCFG_SHARE="/usr/share/bsdconfig" 32. $BSDCFG_SHARE/common.subr || exit 1 33f_dprintf "%s: loading includes..." timezone/continents.subr 34 35BSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="090.timezone" 36f_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# 43export 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# 60export continent_africa_name="Africa" 61export continent_america_name="America" 62export continent_antarctica_name="Antarctica" 63export continent_arctic_name="Arctic" 64export continent_asia_name="Asia" 65export continent_atlantic_name="Atlantic" 66export continent_australia_name="Australia" 67export continent_europe_name="Europe" 68export continent_indian_name="Indian" 69export continent_pacific_name="Pacific" 70export 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# 76export continent_africa_title 77export continent_america_title 78export continent_antarctica_title 79export continent_arctic_title 80export continent_asia_title 81export continent_atlantic_title 82export continent_australia_title 83export continent_europe_title 84export continent_indian_title 85export continent_pacific_title 86export 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# 105f_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# 115f_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# 131f_OCEANP() 132{ 133 case "$1" in 134 arctic|atlantic|indian|pacific) 135 echo 1 136 esac 137} 138 139############################################################ MAIN 140 141f_dprintf "%s: Successfully loaded." timezone/continents.subr 142 143fi # ! $_TIMEZONE_CONTINENTS_SUBR 144