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
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

148 rindas
2.6KB

  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"], $_GET["core"]);
  24. if(is_array($search_results)):
  25. foreach($search_results as $result):
  26. $publication_details = get_publication_details($result['doc_ref']);
  27. ?>
  28. Application ID:
  29. <?php
  30. echo $result['application_id'];
  31. ?>
  32. <br><br>
  33. EPO publication:
  34. <a href=<?php echo $result['epo_publication_url']; ?>>
  35. <?php
  36. echo $result['epo_publication_url'];
  37. ?>
  38. </a>
  39. <br><br>
  40. IPC publication:
  41. <a href=<?php echo $result['ipc_publication_url']; ?>>
  42. <?php
  43. echo $result['ipc_publication_url'];
  44. ?>
  45. </a>
  46. <br><br>
  47. Title:
  48. <?php
  49. echo $result['title'];
  50. ?>
  51. <br><br>
  52. <?php
  53. if (isset($publication_details['original_title'])):
  54. ?>
  55. Original language title:
  56. <?php
  57. echo $publication_details['original_title'];
  58. ?>
  59. <br><br>
  60. <?php
  61. endif;
  62. ?>
  63. <?php
  64. if ($result['abstract']):
  65. ?>
  66. Abstract:
  67. <?php
  68. echo $result['abstract'];
  69. ?>
  70. <br><br>
  71. <?
  72. endif;
  73. ?>
  74. <?php
  75. if (isset($publication_details['original_abstract'])):
  76. ?>
  77. Original language abstract:
  78. <?php
  79. echo $publication_details['original_abstract'];
  80. ?>
  81. <br><br>
  82. <?php
  83. endif;
  84. ?>
  85. <?php
  86. if (check_for_images($result['doc_ref'])):
  87. ?>
  88. <iframe src="./ops_image.php?doc_ref=<?php echo $result['doc_ref'] ?>#view=fitH" height="780px" width="100%">
  89. </iframe>
  90. <br><br>
  91. <?php
  92. endif;
  93. ?>
  94. <?php
  95. endforeach;
  96. else:
  97. echo $search_results;
  98. endif;
  99. ?>
  100. </div>
  101. </body>
  102. </html>