Organisation profile: Dataquest
| [ ID = 1379 ] | Dataquest |
| Organisation name | Dataquest |
| Short name or acronym | Dataquest |
| Organisation type | Company |
| Activity type | Call centers |
| Address | 251 River Oaks Parkway |
| Postal Code | 95134 |
| City | San Jose, CA |
| Country | United States |
| Phone | + +1 408 468 8009 |
| Fax | + +1 408 468 8088 |
| Email | dpginquiry_(on)_dataquest.com |
| Organisation URL | http://gartner6.gartnerweb.com/dq/static/dq.html |
| Logo | Description |
 |
|
|
| Contact |
| Name | |
| Function | |
| Department | |
| Email | |
| Phone | + |
| Fax | + |
Update this profile
|
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"
|
|