|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2713 ] | Centre for Computational Linguistics - UMIST Manchester |
---|---|
Organisation name | Centre for Computational Linguistics - UMIST Manchester |
Short name or acronym | Centre for Computational Linguistics - UMIST Manchester |
Organisation type | Center |
Activity type | Speech technology |
Address | P.O. Box 88 |
Postal Code | M60 1QD |
City | Manchester |
Country | United Kingdom |
Phone | + +44 161 200 3100 |
Fax | + +44 161 200 3099 |
secretaries_(on)_ccl.umist.ac.uk | |
Organisation URL | http://mull.ccl.umist.ac.uk/research/ccl/ |
Logo | Description |
![]() |
The Centre is involved in teaching and research covering pure and applied topics in language studies, linguistics and computational linguistics. We want to know more about language and linguistics in general; we want to have theoretical models which can be tested by being implemented as computer programs; and we would like our theoretical work to be useful. The research being done by any individual at any given time may be more or less theoretical, more or less constrained by the requirement for implementation, more or less driven by the hope that it can actually be used, now, to do something useful. |
Contact | |
Name | Professor Harold Somers |
Function | Head of Department |
Department | Language Engineering |
Harold.Somers_(on)_umist.ac.uk | |
Phone | + +44 161 200 3107 |
Fax | + +44 161 200 3099 |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |