|
|
Organisation profile: Rochelle Communications, Inc.
[ ID = 0525 ] | Rochelle |
Organisation name | Rochelle Communications, Inc. |
Short name or acronym | Rochelle |
Organisation type | Company |
Activity type | Call centersSpeech technology |
Address | P.O. Box 141189 |
Postal Code | 78714 |
City | Austin, TX |
Country | United States |
Phone | + +1 512 339 8188 |
Fax | + |
Email | info_(on)_rochelle.com |
Organisation URL | http://www.rochelle.com |
Logo | Description |
 |
Rochelle Communications, Inc. is an Austin, Texas-based
manufacturer of Caller ID and analog telecommunication test equipment
and multi-line Computer Telephone Integration (CTI) products. Known
for precision and innovation, Rochelle is the leading supplier of
Caller ID telephone test equipment in the world. Telecom product
developers and manufacturers rely on Rochelle because of our expertise
with new and emerging international standards as well as our
commitment to excellent customer service. Our customers know that,
even as new standards are being released, our research team is already
working to incorporate them into our test solutions.
|
| Contact |
Name | President Gilbert Amine |
Function | |
Department | |
Email | gamine_(on)_rochelle.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2003-02-04 17:43:08
#!/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"
|
|