|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1185 ] | Vladimír Benko |
---|---|
Name | Benko, Vladimír |
Job Title | researcher/teacher |
Organisation | Slovak Academy of Sciences, Ľ. túr Institute of Linguistics |
Address | Pannská 26 |
Postal Code | SK-81101 |
City | Bratislava |
Country | Slovakia |
Phone | +421 2 54431762 |
Fax | +421 2 54431756 |
Mobile | + |
vladob_(on)_juls.savba.sk [@ replaced for spam protection] | |
Organisation URL | http://www.juls.savba.sk |
Personal URL | http://www.juls.savba.sk/~vladob |
Membership | ACL Euralex |
Languages | English Russian, Slovak/Czech |
Specialism | Computational Lexicography
Corpus Linguistics Web Corpora Construction Morphosyntactic Annotation Sketch Grammars |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2016-01-21 11:20:22 #!/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" |