|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0103 ] | Dr Alain Polguère |
---|---|
Name | Polguère, Dr Alain |
Job Title | Professor |
Organisation | University of Montreal |
Address | Dept. of Linguistics & Translation, CP 6128, succ. Centre-ville |
Postal Code | H3C 3J7 |
City | Montreal (Quebec) |
Country | Canada |
Phone | +1 514 343 6462 ext. 32486 |
Fax | +1 514 343 2284 |
Mobile | + |
Alain.Polguere_(on)_umontreal.ca [@ replaced for spam protection] | |
Organisation URL | http://www.olst.umontreal.ca |
Personal URL | |
Membership | Association pour le Traitement Automatique des LAngues (ATALA) |
Languages | English French |
Specialism | Computational Lexicography
Computational Linguistics Corpus Linguistics General Linguistics Lexical Acquisition Lexical and Terminological Databases Lexical Semantics Lexicons Natural Language Semantics Semantics Text Generation Word meaning Wordnets |
Photograph | Description or CV |
http://www.elsnet.org/expertcvs/blank.html | |
Update your profile | Last update: 2008-08-27 14:51:42 #!/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" |