Expert profile: Dr Mark Tatham
| [ ID = 0737 ] |
Dr Mark Tatham |
| Name |
Tatham, Dr Mark |
| Job Title | Emeritus Professor |
| Organisation |
University of Essex |
| Address | Dept Language and Linguistics, Essex University |
| Postal Code | GB - CO4 3SQ |
| City | Colchester |
| Country | United Kingdom |
| Phone | + 44 709 205 1866 |
| Fax | + |
| Mobile | + |
| Email |
mark.tatham_(on)_essex.ac.uk
[@ replaced for spam protection] |
| Organisation URL |
http://www.morton-tatham.co.uk |
| Personal URL |
http://www.morton-tatham.co.uk |
| Membership |
ISCA UK Institute of Acoustics, UK Institution of Electrical Engineers, UK Royal Society for the Arts |
| Languages | English French |
| Specialism |
Web Applications |
| Photograph | Description or CV |
 |
|
Update your profile
|
Last update: 2008-08-28 14:45:27
#!/usr/bin/ksh
# cntr.cgi --
# version 0
DOC=$DOCUMENT_ROOT$DOCUMENT_URI
VSTART=28-08-2008
WRONGLOG=${DOCUMENT_ROOT}/cntr.txt
echo Content-type:text/html
echo
case $DOC in
*experts*) CDIR=${DOCUMENT_ROOT}/cntex ;;
*orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;;
*) WRONG=yes ;;
esac
CFILE=${DOC##*/}
case ${CFILE} in
[0-9][0-9][0-9][0-9].html) WRONG=no ;;
*) WRONG=yes ;;
esac
[ $WRONG = yes ] &&
{ echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG
exit
}
CCNT=${CDIR}/${CFILE%.html}.txt
CLCK=${CDIR}/${CFILE%.html}.lck
[ -s $CCNT ] && COUNT=$(head -1 $CCNT)
COUNT=$(( ${COUNT:-0} + 1 ))
[ -f $CLCK ] ||
{ touch $CLCK
echo $COUNT > $CCNT
rm -f $CLCK
}
echo " Visits since $VSTART: $COUNT"
|
|