|
|
Organisation profile: Institute of Linguistics, Faculty of Philosophy, University of Zagreb
[ ID = 3153 ] | ZZL |
Organisation name | Institute of Linguistics, Faculty of Philosophy, University of Zagreb |
Short name or acronym | ZZL |
Organisation type | Institute |
Activity type | Linguistics |
Address | Ivana Lucica 3 |
Postal Code | HR-10000 |
City | Zagreb |
Country | Croatia |
Phone | + +385 1 6120-142 |
Fax | + +385 1 6156-879 |
Email | zzl_(on)_ffzg.hr |
Organisation URL | http://www.ffzg.hr/zzl |
Logo | Description |
|
|
| Contact |
Name | doc. dr. sc. Marko Tadic |
Function | deputy director |
Department | |
Email | marko.tadic_(on)_ffzg.hr |
Phone | + +385 1 6120-142 |
Fax | + +385 1 6156-879 |
Update this profile
|
Last update: 2003-05-14 16:17:32
#!/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"
|
|