|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2398 ] | Violeta Seretan |
---|---|
Name | Seretan, Violeta |
Job Title | maître-assistante |
Organisation | University of Geneva |
Address | 2, Rue de Candolle |
Postal Code | 1205 |
City | Geneva |
Country | Switzerland |
Phone | + |
Fax | + |
Mobile | + |
violeta.seretan_(on)_gmail.com [@ replaced for spam protection] | |
Organisation URL | http://www.latl.unige.ch/ |
Personal URL | |
Membership | ACL |
Languages | English French, Italian, Romanian |
Specialism | Computational Linguistics
Corpus Linguistics Discourse analysis Discourse Theories Grammar Language Resources Lexical Acquisition Lexical and Terminological Databases Lexical Semantics Lexicons Parsing Syntax Translation and Foreign Language Production |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2010-04-14 13:54:28 #!/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" |