|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0874 ] | Advanced Telecommunications Research Institute International (ATR) |
---|---|
Organisation name | Advanced Telecommunications Research Institute International (ATR) |
Short name or acronym | Advanced Telecommunications Research Institute International (ATR) |
Organisation type | Center |
Activity type | Speech technology |
Address | Hikaridai Seika-cho |
Postal Code | 619-0288 |
City | Kyoto |
Country | Japan |
Phone | + +81 77495 1111 |
Fax | + +81 77495 1108 |
www-admin_(on)_ctr.atr.co.jp | |
Organisation URL | http://www.atr.co.jp |
Logo | Description |
![]() |
The ATR Group was established in March 1986 with support from various sections of industry, academia and government to serve as a major center of basic and creative telecommunications R&D. Its basic policy is to promote research collaboration among researchers both at home and abroad. The ATR Group comprises nine corporations: R&D corporations, four corporations designed to manage research fruits, and an umbrella corporation, ATR International. While the former four are now conducting research, the latter four have completed their R&D programs and are now managing the fruits of their research to promote their propagation and wider application. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
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" |