|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 0851 ] | Piet Mertens |
|---|---|
| Name | Mertens, Piet |
| Job Title | Prof. |
| Organisation | Linguistics department, Leuven University |
| Address | Blijde-Inkomststraat 21 |
| Postal Code | 3000 |
| City | Leuven |
| Country | Belgium |
| Phone | +32 16.32.47.63 |
| Fax | +32 16.32.47.67 |
| Mobile | + |
| Piet.Mertens_(on)_arts.kuleuven.be [@ replaced for spam protection] | |
| Organisation URL | http://www.kuleuven.be |
| Personal URL | |
| Membership | ELSNET |
| Languages | English Dutch, French |
| Specialism | Computational Linguistics
Computational Lexicography Parsing Text-To-Speech Prosody |
| Photograph | Description or CV |
![]() |
|
|
|
Last update: 2008-08-29 09:24:33 #!/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" |