|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2694 ] | Laboratoire d'Automatique Documentaire et Linguistique (LADL) - University of Marne-la-Vallée |
---|---|
Organisation name | Laboratoire d'Automatique Documentaire et Linguistique (LADL) - University of Marne-la-Vallée |
Short name or acronym | Laboratoire d'Automatique Documentaire et Linguistique (LADL) - University of Marne-la-Vallée |
Organisation type | Center |
Activity type | Speech technology |
Address | Institut Gaspard Monge, Université de Marne-la-Vallée, 5 Bd Descartes |
Postal Code | F-77454 |
City | Champs-sur-Marne, Marne-La-Vallee Cedex 2 |
Country | France |
Phone | + +33 1 60 95 77 50 |
Fax | + +33 1 60 95 77 55 |
mmathis_(on)_univ-mlv.fr | |
Organisation URL | http://ladl.univ-mlv.fr/index.html |
Logo | Description |
![]() |
The Laboratoire d'Automatique Documentaire et Linguistique (LADL) is a research laboratory of the University Paris 7, (Department of Computer Science) also supported by the Centre National de la Recherche Scientifique (CNRS, (Linguistics)). The size is about 30 people, including graduate students. The research programme of the LADL is centered on the construction of fundamental tools for natural language processing. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |