|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2693 ] | Computational Linguistics - University of Toronto | 
|---|---|
| Organisation name | Computational Linguistics - University of Toronto | 
| Short name or acronym | Computational Linguistics - University of Toronto | 
| Organisation type | Center | 
| Activity type | |
| Address | 10 King's College Road | 
| Postal Code | M5S 3G4 | 
| City | Toronto, ON | 
| Country | Canada | 
| Phone | + +1 416 978 6025 | 
| Fax | + +1 416 978 1931 | 
| dcs-office_(on)_cs.utoronto.ca | |
| Organisation URL | http://www.cs.toronto.edu/compling/ | 
| Logo | Description | 
![]()  | 
The Computational Linguistics research group of the Department of Computer Science, University of Toronto, carries out research on many topics in the area.  | 
| Contact | |
| Name | Professor Graeme Hirst | 
| Function | |
| Department | Computer Science | 
| dcs-office_(on)_cs.utoronto.ca | |
| Phone | + +1 416 978 8747 | 
| Fax | + +1 416 978 1455 | 
| 
 
 | 
Last update: 2002-04-15 16:06: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" |