A search interface for the Performing Patents Otherwise publication as part of the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office OPS API. https://patents.copim.ac.uk
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

patents.conf 272B

2 lat temu
12345678910111213141516
  1. upstream patents {
  2. server python:5000;
  3. }
  4. server {
  5. listen 80;
  6. location / {
  7. proxy_pass http://patents;
  8. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  9. proxy_set_header Host $http_host;
  10. proxy_redirect off;
  11. }
  12. }