|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2306 ] | SEPLN |
|---|---|
| Organisation name | Sociedad Española para el Procesamiento del Lenguaje Natural (SEPLN) |
| Short name or acronym | SEPLN |
| Organisation type | Association |
| Activity type | Speech technology |
| Address | Universidad de Alicante (Departamento de Lenguajes y Sistemas Informáticos) |
| Postal Code | 03080 |
| City | Alicante |
| Country | Spain |
| Phone | + |
| Fax | + |
| secretaria.sepln_(on)_dlsi.ua.es | |
| Organisation URL | http://www.sepln.org |
| Logo | Description |
![]() |
SEPLN es una asociación sin ánimo de lucro formada por socios numerarios e institucionales que se creó en el año 1984 con el objetivo de promocionar y difundir todo tipo de actividades referentes a la enseñanza, investigación y desarrollo sobre el procesamiento del lenguaje natural, tanto a nivel nacional como internacional. |
| Contact | |
| Name | Dr. Manuel Palomar Sanz |
| Function | President |
| Department | |
| mpalomar_(on)_dlsi.ua.es | |
| Phone | + |
| Fax | + |
|
|
Last update: 2002-04-16 18:40:24 #!/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" |