[ ID = 2700 ] | CLIF |
Organisation name | Computational Linguistics in Flanders |
Short name or acronym | CLIF |
Organisation type | Association, SIG, Project |
Activity type | Language or Speech Technology research |
Address | ESAT/K.U.Leuven, Kasteelpark Arenberg 10 |
Postal Code | B-3001 |
City | Heverlee |
Country | Belgium |
Phone | +32 16 321057 |
Fax | +32 16 321723 |
Email | wambacq_(on)_esat.kuleuven.be |
Organisation URL | http://clif.esat.kuleuven.be/ |
Logo | Description |
 |
In 1995, the scientific research community Computational
Linguistics and Language Technology was founded, otherwise known as
CLIF (Computational Linguistics in Flanders). CLIF is funded by the
Fund for Scientific Research. It has become the central contact point
for computational linguistics and language and speech technology in
Flanders. In January 2000 the CLIF-project was extended until 2005;
it was then extended again until 2010
|
| Contact |
Name | Prof. Patrick Wambacq |
Function | |
Department | ESAT |
Email | wambacq_(on)_esat.kuleuven.be |
Phone | +32 16 321057 |
Fax | +32 16 321723 |
Update this profile
|
Last update: 2007-06-29 13:03:05
#!/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"
|