|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2401 ] | CNTS |
---|---|
Organisation name | Centrum voor Nederlandse Taal en Spraak |
Short name or acronym | CNTS |
Organisation type | Center |
Activity type | Speech technology |
Address | Universiteit Antwerpen - UIA, Universiteitsplein 1 |
Postal Code | B-2610 |
City | Wilrijk |
Country | Belgium |
Phone | + +32 3 820 27 66 |
Fax | + +32 3 820 27 62 |
daelem_(on)_uia.ua.ac.be | |
Organisation URL | http://cnts.uia.ac.be/cnts/ |
Logo | Description |
![]() |
CNTS is a research center of the Department of Germanic Languages of the University of Antwerp (UA) in Antwerp, Belgium, engaged in research in Dutch linguistics, (computational) psycholinguistics and language technology. |
Member of elsnet | Contact |
Name | Walter Daelemans |
Function | Professor |
Department | Linguistics, Department of Germanic languages and literature |
daelem_(on)_uia.ua.ac.be | |
Phone | + +32 3 820 27 66 |
Fax | + +32 3 820 27 62 |
![]() |
Last update: 2002-05-10 12:36: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" |