|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1473 ] | Dr. Maite Taboada |
---|---|
Name | Taboada, Dr. Maite |
Job Title | Associate Professor |
Organisation | Simon Fraser University |
Address | Department of Linguistics - Simon Fraser University - 8888 University Dr. |
Postal Code | V5A 1S6 |
City | Burnaby, B.C. |
Country | Canada |
Phone | + 1-778-782-5585 |
Fax | + 1-778-782-5659 |
Mobile | + |
mtaboada_(on)_sfu.ca [@ replaced for spam protection] | |
Organisation URL | http://www.sfu.ca |
Personal URL | |
Membership | ACL |
Languages | English Spanish |
Specialism | Anaphora
Computational Linguistics Corpora Corpora and Dialogue Annotations Corpus Linguistics Dialogue Dialogue Design Dialogue Modelling Discourse analysis Discourse Theories Linguistics Machine Translation Natural Language Processing Pragmatics Semantics and Pragmatics in Speech Understanding Spoken Dialogue Systems |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-29 01:41:51 #!/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" |