|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3295 ] | Intelligence Knowledge Management |
|---|---|
| Organisation name | i-KM |
| Short name or acronym | Intelligence Knowledge Management |
| Organisation type | KM and HLT |
| Activity type | |
| Address | 794 chemin Pouchol |
| Postal Code | 06670 |
| City | Levens |
| Country | France |
| Phone | + 33 - 6 - 63 97 31 22 |
| Fax | + |
| jmblancherie_(on)_i-km.com | |
| Organisation URL | http://www.i-km.com |
| Logo | Description |
![]() |
Knowledge Management - Business Intelligence - Human Language Technologies - NLP Evaluation - collaborative P2P expert networks in the field of Human Resources, Business Intelligence and Knowledge Management |
| Contact | |
| Name | Mrs Marianne Dabbadie |
| Function | NLP Project Director |
| Department | |
| Phone | + 33 - 6 - 20 30 97 63 |
| Fax | + 33 - 2 - 31 52 43 62 |
|
|
Last update: 2004-01-27 11:36:02 #!/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" |