|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1053 ] | Cellport Systems, Inc. |
---|---|
Organisation name | Cellport Systems, Inc. |
Short name or acronym | Cellport Systems, Inc. |
Organisation type | Company |
Activity type | Hands Free Cellular and in car Telematics |
Address | 4900 Pearl East Circle, Ste. 201E |
Postal Code | 80301 |
City | Boulder, CO |
Country | United States |
Phone | + +1 303 541 0722 |
Fax | + +1 303 541 0731 |
info_(on)_Cellport.com | |
Organisation URL | http://www.cellport.com |
Logo | Description |
![]() |
Based in Boulder, Colorado, Cellport Systems develops technologies for the deployment of advanced mobile voice and data systems, including Cellport 3000 and its mobile network servers. The company's vision is based on open technical architectures that manage the new and emerging application protocols (like IP, IDB, HTTP, HTML, FTP) for enabling a vast array of mobile, Internet-based applications in a cost-effective and timely manner. The company's technical solutions have been developed in conjunction with and adopted by many of the industry's leading companies and organizations, including DaimlerChrysler, the US Army and the Society of Automotive Engineers. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2003-01-13 17:50:35 #!/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" |