|
|
|
Organisation profile: AgileTaxi
| [ ID = 4711 ] | AgileTaxi |
| Organisation name | AgileTaxi |
| Short name or acronym | AgileTaxi |
| Organisation type | Private company |
| Activity type | Other Translation or Localisation related expertise |
| Address | 145-157 St John Street, EC1V 4PW, London, England |
| Postal Code | EC1V 4PW |
| City | London |
| Country | United Kingdom |
| Phone | +44 2037348345 |
| Fax | + |
| Email | marketing_(on)_agiletaxi.com |
| Organisation URL | http://www.agiletaxi.com |
| Logo | Description |
 |
We create meaningful user experiences that people remember and are happy to use
everyday.
Passionated by the way software can transform our lives and our businesses,
CallSoft delivers answers to the interface problem. We offer tailored solutions
that seamlessly integrate with your business.
Services:
Web development
Application Development
UX Design
Multichannel Marketing
CTI Solution
Support
|
|
| Contact |
| Name |
your title John Maisner |
| Function | Administrative Manager |
| Department | Administrative |
| Email | marketing_(on)_agiletaxi.com |
| Phone | +44 2037348345 |
| Fax | + |
Update this profile
|
Last update: 2014-12-29 13:12:20
#!/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"
|
|