A search interface for data from 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 API. https://patents.copim.ac.uk
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

32 linhas
823B

  1. <?php
  2. # @name: compare.php
  3. # @version: 0.1
  4. # @creation_date: 2021-09-30
  5. # @license: The MIT License <https://opensource.org/licenses/MIT>
  6. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  7. # @purpose: Displays two random records from the Solr index
  8. ?>
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <link rel="stylesheet" type="text/css" href="css/style.css">
  13. <script>
  14. function resizeIframe(obj) {
  15. obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
  16. }
  17. </script>
  18. </head>
  19. <body>
  20. <div class="box">
  21. <iframe src="./random.php" frameborder="0" scrolling="no" onload="resizeIframe(this)" align="left"> </iframe>
  22. </div>
  23. <div class="box">
  24. <iframe src="./random.php" frameborder="0" scrolling="no" onload="resizeIframe(this)" align="right"></iframe>
  25. </div>
  26. </body>
  27. </html>