|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2798 ] | Lorraine Laboratory for Research into Information Technology and its Applications (LOIRA) |
---|---|
Organisation name | Lorraine Laboratory for Research into Information Technology and its Applications (LOIRA) |
Short name or acronym | Lorraine Laboratory for Research into Information Technology and its Applications (LOIRA) |
Organisation type | Center |
Activity type | Speech technology |
Address | Campus Scientifique |
Postal Code | BP 239 - F54506 |
City | Vanduvre-lès-Nancy |
Country | France |
Phone | + +33 383593000 |
Fax | + +33 383278319 |
Organisation URL | http://www.loria.fr |
Logo | Description |
![]() |
LORIA, the Lorraine Laboratory for Research into Information Technology and its Applications, is a combined Research Unit ((UMR 7503) common to the following organisations: + Centre National de la Recherche Scientifique (CNRS): the National Center for Scientific Research + Institut National Polytechnique de Lorraine (INPL): the National Polytechnical Institute of Lorraine + Institut National de Recherche en Informatique et en Automatique (INRIA): the National Institute for Research into Information Technology and Automation + Université Henri Poincaré, Nancy1: the University Henri Poincaré, Nancy1 + Université Nancy2 : the Universuty Nancy2 This Unit, which was officially established on December 19, 1997 by the signing of the four-year contract with the Ministry of Education, Research and Technology, by agreement between the five partners, thus succeeds the Nancy Center for Information Technology Research (CRIN) and the units shared by the latter and the INRIA Research Unit in Lorraine. |
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" |