|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3211 ] | INRIA |
---|---|
Organisation name | Institut National de Recherche en Informatique et Automatique |
Short name or acronym | INRIA |
Organisation type | Research Institute |
Activity type | Computer Science and Control |
Address | Domaine de Voluceau |
Postal Code | 78153 |
City | Le chesnay |
Country | France |
Phone | + +33 1 39 63 55 11 |
Fax | + +33 1 39 63 53 30 |
Organisation URL | http://www.inria.fr |
Logo | Description |
![]() |
Created in 1967 at Rocquencourt near to Paris, INRIA (The National Institute for Research in Computer Science and Control) is a public scientific and technological establishment (EPST) under the double supervision of the Research Ministry and the Ministry of Economy, Finance and Industry. INRIA aims to network skills and talents from the fields of information and computer science and technology from the entire French research system. This network allows scientific excellence to be used for technological progress, for creating employment and wealth and for new uses in response to socio-economic needs. INRIA's decentralized organization (6 Research Units), its small autonomous teams, and regular evaluation enable INRIA to develop its partnerships, with 95 research projects shared with universities, grandes Ecoles and research organizations. It is also strengthening its involvement in the development of research results and technology transfer: 400 R & D contracts with industry and 50 technology companies have been born of the Institute. |
Contact | |
Name | Dr Eric Villemonte de la Clergerie |
Function | Scientific Leader |
Department | Atoll |
Eric.De_La_Clergerie_(on)_inria.fr | |
Phone | + +33 1 39 63 54 10 |
Fax | + |
![]() |
Last update: 2003-08-06 21:53:40 #!/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" |