mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-01-27 00:33:34 +00:00
Loop Over AWL Directory Candidates
Using this method we're able to loop over the candidate directories
until we find what should be suitable AWL location. Further, adding
additional locations is as simple as adding a new line to ${awldirs}.
It does have the limitation that if the path has a new line in it
(/some/ridic
ulous/path), it'll treat it as two different paths. However, if
somebody seriously has that, they deserve the pain.
This commit is contained in:
parent
ccfff62118
commit
cfd5fd7555
@ -10,22 +10,29 @@ DBADIR="`dirname \"$0\"`"
|
||||
|
||||
INSTALL_NOTE_FN="`mktemp -t tmp.XXXXXXXXXX`"
|
||||
|
||||
testawldir() {
|
||||
[ -f "${1}/dba/awl-tables.sql" ]
|
||||
}
|
||||
|
||||
#
|
||||
# Attempt to locate the AWL directory
|
||||
AWLDIR="${DBADIR}/../../awl"
|
||||
if ! testawldir "${AWLDIR}"; then
|
||||
AWLDIR="/usr/share/awl"
|
||||
if ! testawldir "${AWLDIR}"; then
|
||||
AWLDIR="/usr/local/share/awl"
|
||||
if ! testawldir "${AWLDIR}"; then
|
||||
echo "Unable to find AWL libraries"
|
||||
exit 1
|
||||
# Candidate locations of the AWL directory
|
||||
awldirs="${DBADIR}/../../awl
|
||||
/usr/share/awl
|
||||
/usr/share/php/awl
|
||||
/usr/local/share/awl"
|
||||
|
||||
# Disable globbing and use newline as seperator
|
||||
set -f; IFS='
|
||||
'
|
||||
for d in $awldirs ; do
|
||||
if [ -f "${d}/dba/awl-tables.sql" ] ; then
|
||||
AWLDIR="${d}"
|
||||
break
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
# Renable file globbing and reset seperator
|
||||
set +f; unset IFS
|
||||
|
||||
if [ -z "${AWLDIR}" ] ; then
|
||||
echo "Unable to find AWL libraries"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
export AWL_DBAUSER=davical_dba
|
||||
|
||||
@ -10,17 +10,30 @@
|
||||
PODIR="po"
|
||||
LOCALEDIR="locale"
|
||||
APPLICATION="davical"
|
||||
AWL_LOCATION="../awl"
|
||||
|
||||
if [ ! -d "${AWL_LOCATION}" ]; then
|
||||
AWL_LOCATION="`find .. -type d -name 'awl-*.*'`"
|
||||
if [ ! -d "${AWL_LOCATION}" ]; then
|
||||
AWL_LOCATION=/usr/share/awl
|
||||
if [ ! -d "${AWL_LOCATION}" ]; then
|
||||
echo "I can't find a location for the AWL libraries and I need those strings too"
|
||||
exit 1
|
||||
awldirs="../awl
|
||||
`find .. -type d -name 'awl-*.*'`
|
||||
/usr/share/awl
|
||||
/usr/share/php/awl
|
||||
/usr/local/share/awl"
|
||||
|
||||
# Disable globbing and use newline as seperator
|
||||
set -f; IFS='
|
||||
'
|
||||
|
||||
for d in $awldirs ; do
|
||||
if [ -d "${d}" ] ; then
|
||||
AWL_LOCATION="${d}"
|
||||
break
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
# Renable file globbing and reset seperator
|
||||
set +f; unset IFS
|
||||
|
||||
if [ -z "${AWL_LOCATION}" ] ; then
|
||||
echo "I can't find a location for the AWL libraries and I need those strings too"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
egrep -l '(i18n|translate)' htdocs/*.php inc/*.php inc/ui/*.php > ${PODIR}/pofilelist.tmp1
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user