|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3226 ] | MultiCorpora R&D Inc. |
---|---|
Organisation name | MultiCorpora R&D Inc. |
Short name or acronym | MultiCorpora R&D Inc. |
Organisation type | Corporation |
Activity type | |
Address | 102-490 St. Joseph Blvd. |
Postal Code | J8Y 3Y7 |
City | Gatineau |
Country | Canada |
Phone | + +1 819-778-7070 |
Fax | + +1 819-778-0801 |
info_(on)_multicorpora.com | |
Organisation URL | http://www.multicorpora.com |
Logo | Description |
![]() |
MultiCorpora R&D Inc. is the provider of MultiTrans, a translation support and language management solution that has helped language-industry professionals and global organizations to dramatically improve cycle time and consistency for all types of multilingual content. MultiTrans provides authors, translators, terminologists and content consumers with unparalleled capabilities for translation support, language comprehension and terminology management. For more information, please visit www.multicorpora.com. |
Contact | |
Name | Vice-President Dan Gervais |
Function | |
Department | |
dgervais_(on)_multicorpora.com | |
Phone | + +1 819-778-7070 |
Fax | + +1 819-778-0801 |
![]() |
Last update: 2003-08-18 17:43:48 #!/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" |