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
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.

id_search.php 2.5KB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?php
  2. # @name: id_search.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: Searches the Solr index by ID for one particular record
  8. include '../solr.php';
  9. include '../ops_api.php'
  10. ?>
  11. <!DOCTYPE html>
  12. <html lang="en">
  13. <head>
  14. <meta charset="utf-8">
  15. <meta name="viewport" content="width=device-width, initial-scale=1">
  16. <link rel="stylesheet" type="text/css" href="css/style.css">
  17. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  18. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
  19. </head>
  20. <body>
  21. <div class="container">
  22. <?php
  23. $search_results = solr_search_id($_GET["id"]);
  24. foreach($search_results as $result):
  25. $publication_details = get_publication_details($result['doc_ref']);
  26. ?>
  27. Application ID:
  28. <?php
  29. echo $result['application_id'];
  30. ?>
  31. <br><br>
  32. EPO publication:
  33. <a href=<?php echo $result['epo_publication_url']; ?>>
  34. <?php
  35. echo $result['epo_publication_url'];
  36. ?>
  37. </a>
  38. <br><br>
  39. IPC publication:
  40. <a href=<?php echo $result['ipc_publication_url']; ?>>
  41. <?php
  42. echo $result['ipc_publication_url'];
  43. ?>
  44. </a>
  45. <br><br>
  46. Title:
  47. <?php
  48. echo $result['title'];
  49. ?>
  50. <br><br>
  51. <?php
  52. if (isset($publication_details['original_title'])):
  53. ?>
  54. Original language title:
  55. <?php
  56. echo $publication_details['original_title'];
  57. ?>
  58. <br><br>
  59. <?php
  60. endif;
  61. ?>
  62. <?php
  63. if ($result['abstract']):
  64. ?>
  65. Abstract:
  66. <?php
  67. echo $result['abstract'];
  68. ?>
  69. <br><br>
  70. <?
  71. endif;
  72. ?>
  73. <?php
  74. if (isset($publication_details['original_abstract'])):
  75. ?>
  76. Original language abstract:
  77. <?php
  78. echo $publication_details['original_abstract'];
  79. ?>
  80. <br><br>
  81. <?php
  82. endif;
  83. ?>
  84. <?php
  85. if (check_for_images($result['doc_ref'])):
  86. ?>
  87. <iframe src="./ops_image.php?doc_ref=<?php echo $result['doc_ref'] ?>#view=fitH" height="780px" width="100%">
  88. </iframe>
  89. <br><br>
  90. <?php
  91. endif;
  92. ?>
  93. <?php
  94. endforeach;
  95. ?>
  96. </div>
  97. </body>
  98. </html>