|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0526 ] | Trango Software Corporation |
---|---|
Organisation name | Trango Software Corporation |
Short name or acronym | Trango Software Corporation |
Organisation type | Company |
Activity type | Call centers |
Address | 45 Vogell Road, Suite 201 |
Postal Code | L4B 3P6 |
City | Richmond Hill, ON |
Country | Canada |
Phone | + +1 905 737 6388 |
Fax | + +1 905 737 0622 |
info_(on)_trangosoft.com | |
Organisation URL | http://www.trangosoft.com |
Logo | Description |
![]() |
Trango Software Corporation is a company dedicated to delivering 'best of breed' Computer Telephony Integration (CTI) products, as well as development and integration services. They have extensive experience in the call center marketplace. Their development processes are disciplined and innovative, with technical skills which span the breadth of CTI technologies and incorporate leading edge development tools and techniques. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |