|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 1365 ] | Doctor María de los Ángeles GÓMEZ-GONZÁLEZ |
|---|---|
| Name | GÓMEZ-GONZÁLEZ, Doctor María de los Ángeles |
| Job Title | Senior Lecturer with a Tenure position |
| Organisation | University of Santiago de Compostela |
| Address | Avda. de Castelao s/n |
| Postal Code | E-15705 |
| City | COMPOSTELA |
| Country | Spain |
| Phone | + +34 981 563 100 |
| Fax | + +34 981 574646 |
| Mobile | + |
| iadimly_(on)_usc.es [@ replaced for spam protection] | |
| Organisation URL | http://www.usc.es/, |
| Personal URL | http://web.usc.es/~iadimly |
| Membership | ELSNET linguist list, |
| Languages | English Spanish, Galician, Portuguese, English |
| Specialism | Grammar
Phonetics Discourse Analysis |
| Photograph | Description or CV |
| http://web.usc.es/~iadimly | |
|
|
Last update: 2002-12-23 21:59: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" |