|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2083 ] | Marc Van Campenhoudt |
---|---|
Name | Van Campenhoudt, Marc |
Job Title | Professor -Director |
Organisation | Centre de recherche Termisti |
Address | 34 rue Joseph Hazard |
Postal Code | 1180 |
City | Brussels |
Country | Belgium |
Phone | +32 3401287 |
Fax | +32 3462134 |
Mobile | + |
mvc_(on)_termisti.be [@ replaced for spam protection] | |
Organisation URL | http://www.termisti.refer.org |
Personal URL | http://www.termisti.refer.org/marcweb.htm |
Membership | EURALEX, LTT, RIFAL |
Languages | English French, Spanish, Dutch |
Specialism | Computational Lexicography
Corpus Linguistics Corpus statistics Data Corpus Collection Discourse analysis Graph Representation of Lexicons Knowledge Management Lexical and Terminological Databases Lexical Semantics Linguistics Ontology Semantics Use of Translation Tools |
Photograph | Description or CV |
![]() |
http://www.termisti.refer.org/marcweb.htm |
![]() |
Last update: 2007-01-26 05:04:00 #!/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" |