|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2217 ] | Institut de Recherche en Informatique de Toulouse (IRIT) |
---|---|
Organisation name | Institut de Recherche en Informatique de Toulouse (IRIT) |
Short name or acronym | Institut de Recherche en Informatique de Toulouse (IRIT) |
Organisation type | Center |
Activity type | Speech technology |
Address | Université Paul Sabatier, 118 route de Narbonne |
Postal Code | 31062 |
City | Toulouse Cedex 4 |
Country | France |
Phone | + +33 5 61 55 67 65 |
Fax | + +33 5 61 55 62 58 |
Organisation URL | http://www.irit.fr/Welcome.html.en |
Logo | Description |
![]() |
IRIT (Institut de Recherche en Informatique de Toulouse) is a Research Unit associated with Centre National de la Recherche Scientifique CNRS, Institut National Polytechnique de Toulouse INPT and Université Paul Sabatier UPS. About 320 persons work at IRIT, including 270 teachers and researchers (comprising 120 PhD students) and 35 engineers, technicians and administrative persons. Research Activities at IRIT are conducted in three departments involved in several research areas. + Programming, Systems and Algorithms + Artificial Intelligence and Cognitive Systems + Image, Sound and Text Computing |
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" |