|
|
Organisation profile: European Network in Human Language Technologies
[ ID = 0805 ] | ELSNET |
Organisation name | European Network in Human Language Technologies |
Short name or acronym | ELSNET |
Organisation type | Association, SIG, Project |
Activity type | Other Lang+Speech Technology expertise |
Address | Trans 10 |
Postal Code | 3512 JK |
City | Utrecht |
Country | Netherlands |
Phone | +31 30 253 6050 |
Fax | +31 30 253 6000 |
Email | elsnet_(on)_elsnet.org |
Organisation URL | http://www.elsnet.org |
Logo | Description |
 |
ELSNET is the European Network in Human Language
Technologies, created with funding from European Commission's
ESPRIT and HLT Programmes. ELSNET's objective is to bring
together the key players in language and speech technology,
both in industry and in academia. To encourage
interdisciplinary co-operation ELSNET organises a variety of
events and services for the language and speech community.
|
Member of elsnet
| Contact |
Name | Steven Krauwer |
Function | Coordinator |
Department | |
Email | steven.krauwer_(on)_elsnet.org |
Phone | +31 30 253 6050 |
Fax | +31 30 253 6000 |
Update this profile
|
Last update: 2005-06-10 16:23:41
#!/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"
|
|