1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
#!/bin/sh
# set -x
###
# # Set script variables used by several different scripts
###
echo "`date` Set variables used by different scripts"
###
# # top-level directories of HTML files
###
HTMLDIRS="/etc/htdig ${WWW_HOME}/bin ${WWW_HOME}/html /home/ftp/gnu/Manuals"
export HTMLDIRS
###
# # Variables containing two-letter country codes
###
# For documentation on Fix web tree permissions two-letter country codes, see
# http://www.gnu.org/server/standards/README.translations.html
#
# If you add a language "LG" here to either WEBLANG or TAGSLANG,
# you also should:
# - should add a team or no-team entry to
# http://www.gnu.org/server/standards/README.translations.html#TranslationsUnderway
# If you add a language "LG" here to WEBLANG,
# you also should:
# - add a diffmon-web-LG and the other aliases for a team in file
# /com/mailer/aliases on mail.gnu.org (mail.gnu.org is an MX to the
# actual machine - the shell command "dig mail.gnu.org" will show you
# the actual hostname).
#
# These are the languages that our web site has translation teams for!
# ==== Please keep these alphabetical !!! ====
WEBLANG="ca es fr hu ko it ja ru tr"
export WEBLANG
# ==== add a 2 letter language code to either WEBLANG or ====
# ==== TAGSLANG not both! TAGSLANG includes WEBLANG. ====
#
# These are the known languages that some of our web site is translated into!
# ==== Please keep these alphabetical !!! ====
TAGSLANG="$WEBLANG cs de en id nl no pl pt sh sv zh"
# TAGSLANG is used in the make.html.TAGS script
export TAGSLANG
# this compile-command lets you syntax check the script. -len
#
# local variables:
# eval: (make-local-variable 'compile-command)
# eval: (setq compile-command (concat "/bin/sh -n " buffer-file-name))
# quote-region-quote: "# "
# end:
|