|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3072 ] | GOOZE | 
|---|---|
| Organisation name | GOOZE | 
| Short name or acronym | GOOZE | 
| Organisation type | Company | 
| Activity type | Speech Technology | 
| Address | Mannebeekstraat 21 | 
| Postal Code | 8790 | 
| City | Waregem | 
| Country | Belgium | 
| Phone | + +32 56 620 540 | 
| Fax | + +32 56 620 541 | 
| info_(on)_gooze.be | |
| Organisation URL | http://www.gooze.be | 
| Logo | Description | 
![]()  | 
GOOZE - Architectural Access Control Gooze manufacturers access control Videophones Intercoms Access Control Home Automation Domotica  | 
| Contact | |
| Name | Mr Stefaan Tavernier | 
| Function | |
| Department | |
| info_(on)_gooze.be | |
| Phone | + +32 56 620 540 | 
| Fax | + +32 56 620 541 | 
| 
 
 | 
Last update: 2002-06-20 17:58:05 #!/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" |