|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0584 ] | Centre for Communication Interface Research (CCIR) |
---|---|
Organisation name | Centre for Communication Interface Research (CCIR) |
Short name or acronym | Centre for Communication Interface Research (CCIR) |
Organisation type | Center |
Activity type | Speech technology |
Address | Department of Electronics and Electrical Engineering The University of Edinburgh 80 South Bridge |
Postal Code | EH1 1HN |
City | Edinburgh |
Country | United Kingdom |
Phone | + |
Fax | + |
Organisation URL | http://www.ccir.ed.ac.uk/index.html |
Logo | Description |
![]() |
The Centre for Communication Interface Research is part of the Department of Electronics and Electrical Engineering at the University of Edinburgh. CCIR was set up to continue the extensive research into automated systems, focusing particularly on speech and telephone interfaces, which has been pursued by its members at the University since the mid-1980s. Over recent years CCIR's research has diversified into multimedia and virtual reality interfaces. CCIR collaborates closely with industrial and commercial partners in the design and evaluation of human-computer interfaces as well as undertaking more general studies of the human factor in interface design. |
Contact | |
Name | Professor Mervyn Jack |
Function | Director |
Department | |
maj_(on)_ccir.ed.ac.uk | |
Phone | + |
Fax | + |
![]() |
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" |