|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3120 ] | VoxGen |
---|---|
Organisation name | Vox Generation Limited |
Short name or acronym | VoxGen |
Organisation type | Private company |
Activity type | Lang+Speech Technology provider |
Address | Manor House, 21 Soho Square |
Postal Code | W1D 3QP |
City | London |
Country | United Kingdom |
Phone | +44 0870 350 2100 |
Fax | +44 0870 350 2101 |
sales_(on)_voxgen.com | |
Organisation URL | http://www.voxgen.com |
Logo | Description |
![]() |
Global leaders in the design, development and delivery of speech and multimodal software solutions for telephony and internet based services (ISO9001, ISO/IEC27001 certified). |
Contact | |
Name | Mr Tim Morgan |
Function | CTO |
Department | Technical |
tmorgan_(on)_voxgen.com | |
Phone | +44 0870 350 2100 |
Fax | +44 0870 350 2101 |
![]() |
Last update: 2007-08-14 13:06:12 #!/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" |