Organisation profile: Canolfan Bedwyr, University of Wales, Bangor
| [ ID = 3539 ] | Canolfan Bedwyr |
| Organisation name | Canolfan Bedwyr, University of Wales, Bangor |
| Short name or acronym | Canolfan Bedwyr |
| Organisation type | University |
| Activity type | Language or Speech Technology research |
| Address | Bryn Haul, Heol Victoria |
| Postal Code | LL57 2EN |
| City | Bangor |
| Country | United Kingdom |
| Phone | +44 1248 383293 |
| Fax | +44 1248 383293 |
| Email | d.prys_(on)_bangor.ac.uk |
| Organisation URL | http://www.bangor.ac.uk/ar/cb |
| Logo | Description |
 |
Centre for research and development in speech and language technology for Welsh. Also translation from/into Welsh. Development of: text-to-speech synthesis, spelling checker, dictionary applications for PC's, online language learning aids, lemmatisers, POS taggers, phrase and word databases, Welsh/Irish translation database.
|
|
| Contact |
| Name | Dr Briony Williams |
| Function | Voice development team leader |
| Department | e-Welsh Unit |
| Email | b.williams_(on)_bangor.ac.uk |
| Phone | +44 1506 200862 |
| Fax | +44 1506 842599 |
Update this profile
|
Last update: 2005-05-27 16:17:56
#!/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"
|
|