|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3906 ] | UniHB | 
|---|---|
| Organisation name | University of Bremen | 
| Short name or acronym | UniHB | 
| Organisation type | University | 
| Activity type | Language or Speech Technology research | 
| Address | Bibliothekstr 1., Building GW2 | 
| Postal Code | 28334 | 
| City | Bremen | 
| Country | Germany | 
| Phone | +49 421-218-68120 | 
| Fax | +49 421-218-98-68120 | 
| bateman_(on)_uni-bremen.de | |
| Organisation URL | http://www.diaspace.uni-bremen.de/ | 
| Logo | Description | 
| 
 | 
Development of human-robot and human-computer interactive systems, with particular focus on spatial dialogues. Systems are ontology-based, involving analysis (CCG), generation (SFG), information-state, and formal dialogue control.  | 
| Contact | |
| Name | Prof. John Bateman | 
| Function | Head of Working Group, PI, Prof of linguistics | 
| Department | Linguistics | 
| bateman_(on)_uni-bremen.de | |
| Phone | +49 421-218-68120 | 
| Fax | +49 421-218-98-68120 | 
| 
 
 | 
Last update: 2008-09-05 11:31:23 #!/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" |