|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2054 ] | MONET | 
|---|---|
| Organisation name | MONET Network of Excellence in Model Based Systems and Qualitative Reasoning | 
| Short name or acronym | MONET | 
| Organisation type | Specialty society | 
| Activity type | Speech technology | 
| Address | |
| Postal Code | |
| City | |
| Country | United Kingdom | 
| Phone | + | 
| Fax | + | 
| monet_(on)_aber.ac.uk | |
| Organisation URL | http://monet.aber.ac.uk | 
| Logo | Description | 
![]()  | 
MONET is a Network of Industrialists, Academics and Researchers with a common long-term technological development objective in Model Based Systems & Qualitative Reasoning (MBS & QR). The MONET European Network of Excellence is aimed at providing a long-term framework for research co-operation and integration that will assist in the co-ordination of European research in model-based systems and qualitative reasoning through technology transfer into industry. The Network is co-ordinated from the MONET Project Office within the Department of Computer Science, University of Wales, Aberystwyth, UK.  | 
| Contact | |
| Name | Mr Iain Russell | 
| Function | Project Coordinator | 
| Department | |
| monet_(on)_aber.ac.uk | |
| Phone | + 01790 628521 | 
| Fax | + | 
| 
 
 | 
Last update: 2002-04-15 17:32:48 #!/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" |