|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2842 ] | Angel |
---|---|
Organisation name | Angel |
Short name or acronym | Angel |
Organisation type | Company |
Activity type | Speech technology |
Address | 1861 International Drive |
Postal Code | 22102 |
City | McLean |
Country | United States |
Phone | + +1 703 394 5061 |
Fax | + |
info_(on)_angel.com | |
Organisation URL | http://www.angel.com |
Logo | Description |
![]() |
Angel provides a set of innovative technologies that will drive explosive growth of the Global Voice Web. Angels Site Builder allows anyone to create and deploy interactive voice sites in minutes, using only a Web browser. By significantly lowering both the technical and cost barriers, Angel has created a viable market opportunity to extend the Voice Web to millions of small businesses, communities and even individuals. Angels VoiceXML-based Open Network Gateway provides partnership opportunities for telecommunications companies to integrate Angel technology with their infrastructure and offer co-branded solutions to their customers. A preview version of Angels offering is now available for registered users. Sign up for this sneak preview today at www.angel.com, and become one of the worlds first voice site owners. Angels full suite of services will be generally available in Q3 2001. |
Contact | |
Name | Mr. Michael Zirngibl |
Function | General Manager |
Department | |
zirngibl_(on)_angel.com | |
Phone | + +1 703 394 5061 |
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" |