|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 1779 ] | Dr. Graham Russell |
|---|---|
| Name | Russell, Dr. Graham |
| Job Title | |
| Organisation | RALI |
| Address | RALI-DIRO, Université de Montréal, C.P. 6128, succursale Centre-ville |
| Postal Code | H3C 3J7 |
| City | Montréal, Québec |
| Country | Canada |
| Phone | + +1 514 343 6111 ext 3509 |
| Fax | + +1 514 343 2496 |
| Mobile | + |
| russell_(on)_iro.umontreal.ca [@ replaced for spam protection] | |
| Organisation URL | http://rali.iro.umontreal.ca |
| Personal URL | http://www.iro.umontreal.ca/~russell/ |
| Membership | |
| Languages | English French, German |
| Specialism | Language technology:
machine translation automated translation analysis translation technology automated translation quality assurance automated language identification computational lexicons computational morphology information extraction |
| Photograph | Description or CV |
![]() |
|
|
|
Last update: 2004-08-20 23:42:19 #!/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" |