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.

abstracts.html 1.0KB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="action">
  4. <button onClick="refresh(this)" type="button" value="Refresh" title="new iteration">↻</button>
  5. </div>
  6. <div id="rdn-abstracts">
  7. <div class="row">
  8. <div class="col m-5">
  9. <p class="h1 text-center">Reading Fragments</p>
  10. <!-- The following total reading time is based on the calculation of approx. 43,647,513 words in all the documents divided by 200 as the average reading speed of 200 wpm -->
  11. <p class="mt-2 text-center">a <span id="time"></span> minute read out of 218238 minutes reading time</p>
  12. <a href="{{ url_for('main.index') }}" class="h1 text-left"> ⇽ </a>
  13. </div>
  14. </div>
  15. <div id="alltext">
  16. {% for abstract in abstracts %}
  17. <p>
  18. {{ abstract['abstract'] }}
  19. </p>
  20. <span class="joint">&</span>
  21. {% endfor %}
  22. </div>
  23. </div>
  24. <script type="text/javascript">
  25. // code adapted from w3collective
  26. const text = document.getElementById("alltext").innerText;
  27. readingTime(text);
  28. </script>
  29. {% endblock %}