|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1473 ] | Autorité de régulation des télécommunications |
---|---|
Organisation name | Autorité de régulation des télécommunications |
Short name or acronym | Autorité de régulation des télécommunications |
Organisation type | Association |
Activity type | Call centers |
Address | 7, Square Max Hymans |
Postal Code | 75730 |
City | PARIS Cedex 15 |
Country | France |
Phone | + +33 1 40 47 70 00 |
Fax | + +33 1 40 47 71 98 |
courrier_(on)_art-telecom.fr | |
Organisation URL | http://www.art-telecom.fr |
Logo | Description |
![]() |
To implement European directives, the French law of 26 July 1996 opened up the telecommunications sector to full competition from 1 January 1998. This law thus provides for telecommunications activities to be carried out freely. Regulation involves the application, by the competent authority, of all legal, economic and technical arrangements that will allow for telecommunications activities to be exercised effectively. For regulation to be equitable, it must be ensured completely independently from the different operators present on the market. As with all EU member States legislation, French law has established this separation by creating an independent regulatory body, the French Telecommunications Regulatory Authority. |
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" |