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.

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <html>
  2. <head>
  3. #parse("head.vm")
  4. </head>
  5. <body>
  6. <div id="header">
  7. <a href="#url_for_home"><img src="#{url_root}/img/solr.svg" id="logo" title="Solr"/></a> $resource.powered_file_search
  8. </div>
  9. <div id="header2" onclick="javascript:locale_select()">
  10. <ul class="menu">
  11. <li>
  12. <a href="#"><img src="#{url_for_solr}/admin/file?file=/velocity/img/globe_256.png&contentType=image/png" id="locale_pic" title="locale_select" width="30px" height="27px"/></a>
  13. <ul>
  14. <li><a href="#url_for_locale('fr_FR')" #if("#current_locale"=="fr_FR")class="hidden"#end>
  15. <img src="#{url_for_solr}/admin/file?file=/velocity/img/france_640.png&contentType=image/png" id="french_flag" width="40px" height="40px"/>Fran&ccedil;ais</a></li>
  16. <li><a href="#url_for_locale('de_DE')" #if("#current_locale"=="de_DE")class="hidden"#end>
  17. <img src="#{url_for_solr}/admin/file?file=/velocity/img/germany_640.png&contentType=image/png" id="german_flag" width="40px" height="40px"/>Deutsch</a></li>
  18. <li><a href="#url_for_locale('')" #if("#current_locale"=="")class="hidden"#end>
  19. <img src="#{url_for_solr}/admin/file?file=/velocity/img/english_640.png&contentType=image/png" id="english_flag" width="40px" height="40px"/>English</a></li>
  20. </ul>
  21. </li>
  22. </ul>
  23. </div>
  24. #if($response.response.error.code)
  25. <div class="error">
  26. <h1>ERROR $response.response.error.code</h1>
  27. $response.response.error.msg
  28. </div>
  29. #else
  30. <div id="content">
  31. $content
  32. </div>
  33. #end
  34. <div id="footer">
  35. #parse("footer.vm")
  36. </div>
  37. </body>
  38. </html>