| 
 | |||||||||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3273 ] | Tecnolettra Research Group- Universitat Jaume I de Castelló | 
|---|---|
| Organisation name | Language, Terminology and Translation Technology - Universitat Jaume I | 
| Short name or acronym | Tecnolettra Research Group- Universitat Jaume I de Castelló | 
| Organisation type | University | 
| Activity type | Language or Speech Technology research | 
| Address | Campus de Riu Sec | 
| Postal Code | 12071 | 
| City | Castelló | 
| Country | Spain | 
| Phone | +34 964 72 8000 | 
| Fax | +34 964 72 9266 | 
| alcina_(on)_trad.uji.es | |
| Organisation URL | http://tecnolettra.uji.es | 
| Logo | Description | 
|  | Assisted Translation, Machine Translation, terminological databases, dictionaries, ontology. e-Learning. | 
| Contact | |
| Name | Dra. Amparo Alcina | 
| Function | Research Group Leader | 
| Department | Traducción y Comunicación | 
| alcina_(on)_trad.uji.es | |
| Phone | +34 964 729759 | 
| Fax | +34 964729266 | 
|  Update this profile | Last update: 2007-10-07 12:06: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" |