|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2815 ] | ISSCO / TIM - Ecole de Traduction et d'Interprétation -University of Geneva |
---|---|
Organisation name | ISSCO / TIM - Ecole de Traduction et d'Interprétation -University of Geneva |
Short name or acronym | ISSCO / TIM - Ecole de Traduction et d'Interprétation -University of Geneva |
Organisation type | Center |
Activity type | Speech technology |
Address | Boulevard du Pont-d'Arve |
Postal Code | CH-1211 |
City | Genève 4 |
Country | Switzerland |
Phone | + +41 22 705 8684 |
Fax | + +41 22 705 8689 |
admin_(on)_issco.unige.ch | |
Organisation URL | http://issco-www.unige.ch |
Logo | Description |
![]() |
ISSCO was founded by the Dalle Molle Foundation in 1972 and was based in Lugano, Switzerland. It moved to Geneva in 1976. ISSCO's mandate was research into cognition and semantics, however over the years the institute has come to specialise in natural language processing and, in particular, in multilingual language processing and translation issues. |
Contact | |
Name | Maghi King |
Function | Director |
Department | |
Margaret.King_(on)_issco.unige.ch | |
Phone | + +41 22 705 8755 |
Fax | + +41 22 705 8689 |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |