Organisation profile: Webdunia.com (I) Pvt. Ltd
[ ID = 4253 ] | webd |
Organisation name | Webdunia.com (I) Pvt. Ltd |
Short name or acronym | webd |
Organisation type | Private company |
Activity type | Translation or Localisation center with specific expertise in Language or Speech Technology |
Address | Labh-Ganga, 582, MG Road, |
Postal Code | 452003 |
City | Indore |
Country | India |
Phone | +91 7314273409 |
Fax | +91 7312548555 |
Email | janmejay_(on)_webdunia.net |
Organisation URL | http://www.webdunia.net |
Logo | Description |
 |
Webdunia is a decade old localization company and a preferred vendor for Microsoft, Google and Yahoo in India. Webdunia deals in localization and translation services in all Indic and South East Asian languages. The areas of expertise are software localization, medical translations, mobile and communication related translations, user manual translations, multilingual website designing, development and translations, other language services.
|
| Contact |
Name | Mr Janmejay Singh Sikarwar |
Function | Project Manager |
Department | Localization |
Email | janmejay_(on)_webdunia.net |
Phone | +91 7313011247 |
Fax | +91 7312548555 |
Update this profile
|
Last update: 2010-04-14 12:01:29
#!/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"
|
|