|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4743 ] | GTS |
---|---|
Organisation name | GTS Translation |
Short name or acronym | GTS |
Organisation type | Private company |
Activity type | Other Language or Speech Technology expertise |
Address | 4747 Collins Ave. |
Postal Code | 33140 |
City | Miami Beach |
Country | United States |
Phone | +1 8662809038 |
Fax | +1 8662809039 |
info_(on)_gts-translation.com | |
Organisation URL | http://www.gts-translation.com |
Logo | Description |
![]() |
GTS develops software and workflows based on machine translation technology. This includes the GTS Translation Wordpress plugin which is installed in over 700 websites. Also includes an online web page translator which provides translation post editing. |
Contact | |
Name | Mr. David Grunwald |
Function | Manager |
Department | your department |
info_(on)_gts-translation.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2015-03-24 08:54:39 #!/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" |