|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 0310 ] | Parity Software Development Corporation |
|---|---|
| Organisation name | Parity Software Development Corporation |
| Short name or acronym | Parity Software Development Corporation |
| Organisation type | Company |
| Activity type | Call centers Speech technology |
| Address | Three Harbor Drive |
| Postal Code | 94965 |
| City | Sausalito, CA |
| Country | United States |
| Phone | + +1 415 332 5656 |
| Fax | + +1 415 332 5657 |
| web_(on)_Parity.com | |
| Organisation URL | http://www.parity.com |
| Logo | Description |
![]() |
Parity Software Development Corporation supplies telephony software tools and hardware components to computer telephony systems integrators, VARs, consultants and developers. Their main product, VOS, is a family of cross-platform, rapid application development tools for telephony applications. VOS gives you a unique combination of a high-performance run-time engine, user-friendly tools and an easily learned language. |
| 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" |