|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 0272 ] | ELRA | 
|---|---|
| Organisation name | European Language Resources Association | 
| Short name or acronym | ELRA | 
| Organisation type | Association, SIG, Project | 
| Activity type | Other Language or Speech Technology expertise | 
| Address | 55-57, rue Brillat Savarin | 
| Postal Code | 75013 | 
| City | Paris | 
| Country | France | 
| Phone | +33 1 43 13 33 33 | 
| Fax | +33 1 43 13 33 30 | 
| choukri_(on)_elda.fr | |
| Organisation URL | http://www.elra.info | 
| Logo | Description | 
![]()  | 
The European Language Resources Association (ELRA) was established as a non-profit organization in Luxembourg in February, 1995. The overall goal of ELRA is to provide a centralized organization for the validation, management, and distribution of speech, text, and terminology resources and tools, and to promote their use within the European telematics R&TD community.  | 
| Contact | |
| Name | Valerie Mapelli | 
| Function | |
| Department | |
| mapelli_(on)_elda.fr | |
| Phone | + | 
| Fax | + | 
| 
 
 | 
Last update: 2007-12-07 10:32:24 #!/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" |