|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3684 ] | Gedam Europe |
---|---|
Organisation name | Gedam Europe s.r.l. |
Short name or acronym | Gedam Europe |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | C.so Re umberto, 21 |
Postal Code | 10100 |
City | Torino |
Country | Italy |
Phone | +39 01119824516 |
Fax | +39 01119715006 |
info_(on)_gedameurope.com | |
Organisation URL | http://www.gedameurope.com |
Logo | Description |
![]() |
Gedam Europe s.r.l is a specialized company on the Voip products and services. The revolutionary GedamEurope approach to IP world , allows the implementation of the technology choosing whatever mix of existing traditional and new IP telephony makes sense. All the outsourced and inner resources of the company can be easily added as extensions to the same call center, allowing flexibility but maintaining centralized management and decision-making |
Contact | |
Name | Mr. Maurizio Vercellotti |
Function | Marketing Developer |
Department | Marketing |
maurizio.vercellotti_(on)_gedameurope.com | |
Phone | +39 01119824516 |
Fax | +39 01119715006 |
![]() |
Last update: 2006-07-05 15:08:45 #!/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" |