|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3247 ] | EPO |
---|---|
Organisation name | European Patent Office |
Short name or acronym | EPO |
Organisation type | Supra-governmental |
Activity type | Intellectual Property |
Address | Patentlaan 5 |
Postal Code | NL-2280 HV |
City | Rijswijk |
Country | Netherlands |
Phone | + +31 70 340 39 46 |
Fax | + |
rquelavoine_(on)_epo.org | |
Organisation URL | http://www.european-patent-office.org |
Logo | Description |
![]() |
The EPO is part of the WIPO, dealing with international patent applications according to the Patent Cooperation Treaty (PCT) in collaboration with the USPTO (USA) and JPO (Japan). The EPO also deals with european patent applications from all member states (see URL, already more extended than the EU). |
Contact | |
Name | Dr Régis Quélavoine |
Function | Patent Examiner |
Department | Directorate 1281 - G10L - Speech & Audio Processing |
rquelavoine_(on)_epo.org | |
Phone | + +31 70 340 3946 |
Fax | + |
![]() |
Last update: 2003-11-06 10:21:49 #!/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" |