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
			 
			
		 
		
		
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | {% extends "base.html" %}
{% block content %}
<div class="action">
  <button onClick="refresh(this)" type="button" value="Refresh" title="new iteration">↻</button>
</div>
<div id="rdn-abstracts">
  <div class="row">
    <div class="col m-5">
      <p class="h1 text-center">Reading Fragments</p>
      <p class="mt-2 text-center">a <span id="time"></span> minute read out of 6375081 minutes reading time</p>
      <a href="{{ url_for('main.index') }}" class="h1 text-left"> ⇽ </a>
    </div>
  </div>
  <div id="alltext">
  {% for abstract in abstracts %}
    <p>
      {{ abstract['abstract'] }}
    </p>
    <span class="joint">&</span>
  {% endfor %}
  </div>
</div>
<script type="text/javascript">
  // code adapted from w3collective
  const text = document.getElementById("alltext").innerText;
  readingTime(text);
</script>
{% endblock %}
 |