|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0949 ] | UiL OTS |
---|---|
Organisation name | Utrecht institute of Linguistics OTS |
Short name or acronym | UiL OTS |
Organisation type | Center |
Activity type | Language and Speech technology |
Address | Trans 10 |
Postal Code | 3512 JK |
City | Utrecht |
Country | Netherlands |
Phone | + +31 30 253 6006 |
Fax | + +31 30 253 6000 |
uil-ots_(on)_let.uu.nl | |
Organisation URL | http://www-uilots.let.uu.nl |
Logo | Description |
![]() |
The Utrecht institute of Linguistics OTS is a research institute of the Faculty of Arts of Utrecht University. UiL OTS seeks to promote intensive cooperation between several areas of linguistics and related disciplines outside linguistics such as logic, computer science, and cognitive sciences. Specific domains of interdisciplinary co-operation are: the lexicon, primary and secondary language acquisition, language teaching, human language processing, relations between language, logic and information, discourse and conversation analysis, language and speech pathology, text linguistics, text design and evaluation, and language and speech technology. UiL OTS takes as one of its main objectives the transfer of information to groups and institutions external to the university. |
Member of elsnet | Contact |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-23 12:00:35 #!/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" |