|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1750 ] | Institute of Formal and Applied Linguistics (UFAL) |
---|---|
Organisation name | Institute of Formal and Applied Linguistics (UFAL) |
Short name or acronym | Institute of Formal and Applied Linguistics (UFAL) |
Organisation type | Center |
Activity type | Speech technology |
Address | Malostranske namesti 25 |
Postal Code | CZ-118 00 |
City | Prague |
Country | Czech Republic |
Phone | + +420 2 2191 4252 |
Fax | + +420 2 2191 4309 |
ufal-l_(on)_ufal.ms.mff.cuni.cz | |
Organisation URL | http://ufal.ms.mff.cuni.cz/ |
Logo | Description |
The Institute of Formal and Applied Linguistics was established (UFAL)in 1990 after the political changes as a continuation of the research and teaching carried out by the former Laboratory of Algebraic Linguistics since the early 60s at the Faculty of Philosophy and later at the Faculty of Mathematics and Physics. Together with the `sister' Institute of Theoretical and Computational Linguistics (Faculty of Philosophy) we aim at the development of teaching programs and research in the domain of theoretical and computational linguistics at the respective Faculties, collaborating closely with other departments such as the Institute of the Czech National Corpus at the Faculty of Philosophy and the Department of Computer Science at the Faculty of Mathematics and Physics. | |
Member of elsnet | Contact |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
Update this profile | Last update: 2002-05-10 12:39:25 #!/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" |