|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3388 ] | Telenet |
---|---|
Organisation name | Telenet GmbH Kommunikationssysteme |
Short name or acronym | Telenet |
Organisation type | Private company |
Activity type | Lang+Speech Technology integrator |
Address | Marsstr. 33 |
Postal Code | 80335 |
City | München |
Country | Germany |
Phone | + 0049/ 89/ 360 73 - 0 |
Fax | + 0049/ 89/ 360 73 - 125 |
info_(on)_telenet.de | |
Organisation URL | http://www.telenet.de |
Logo | Description |
![]() |
Telenet GmbH Kommunikationssysteme was founded in 1982 and established itself in various areas of the telecommunications market. Over the last ten years, Telenet has intensified its activities in automatic speech processing and since 2001 the company has focussed exclusively on this area. Telenet provides speech solutions, integrated according to the individual requirements of its customers. Furthermore, Telenet offers a range of related services such as consulting, training, application development, integration and service. In addition, automated testing of speech applications and entire call centre environments can be provided. Telenets success is based on the extensive experience of its employees which was acquired over many years. Furthermore, the company has well established contacts to numerous global partners. Telenet has a large number of installations and excellent references from well-known companies. If you need further information please write or call us at any time. |
Contact | |
Name | Anja Freiheit |
Function | |
Department | Marketing |
a.freiheit_(on)_telenet.de | |
Phone | + 0049/ 89/ 360 73-155 |
Fax | + 0049/ 89/ 360 73 - 125 |
![]() |
Last update: 2004-07-26 10:42:10 #!/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" |