|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3180 ] | ENABLER |
---|---|
Organisation name | European National Activities for Basic Language Resources |
Short name or acronym | ENABLER |
Organisation type | Network |
Activity type | Language Resources |
Address | Via Santa Maria N° 36 |
Postal Code | 56126 |
City | Pisa |
Country | Italy |
Phone | + +39 050 315 2873 |
Fax | + +39 050 315 2839 |
eagles_(on)_ilc.cnr.it | |
Organisation URL | http://www.enabler-network.org/ |
Logo | Description |
![]() |
The Enabler Network aims at improving cooperation among national activities established by national authorities for providing LRs for their languages. The action aims at: establishing a regular exchange of information; identifying and fostering possible synergies and cooperation; promoting the compatibility and interoperability of their results, thus facilitating the successful transfer of technologies and tools among languages and the construction of multilingual LRs; increasing the visibility and the strategic impact of those national activities in the field of HLT; contributing to the creation of an overall framework in which the public and private sectors, national efforts and international coordination could cooperate in order to answer the IST need for LRs. |
Contact | |
Name | Professor Antonio Zampolli |
Function | Director |
Department | Linguistics Department |
pisa_(on)_ilc.cnr.it | |
Phone | + +39 050 315 2837 |
Fax | + +39 050 315 2834 |
![]() |
Last update: 2003-06-24 17:42:56 #!/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" |