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.

results_list.vm 800B

123456789101112131415161718192021
  1. <ul id="tabs">
  2. <li><a href="#url_for_type('all')" #if("#current_type"=="all")class="selected"#end>$resource.type.all ($response.response.facet_counts.facet_queries.all_types)</a></li>
  3. #foreach($type in $response.response.facet_counts.facet_fields.doc_type)
  4. #if($type.key)
  5. <li><a href="#url_for_type($type.key)" #if($type.value=="0")class="no_results"#end #if("#current_type"==$type.key)class="selected"#end> #label("type.${type.key}.label", $type.key) ($type.value)</a></li>
  6. #else
  7. #if($type.value > 0)
  8. <li><a href="#url_for_type('unknown')" #if("#current_type"=="unknown")class="selected"#end>$resource.type.unknown ($type.value)</a></li>
  9. #end
  10. #end
  11. #end
  12. </ul>
  13. <div id="results">
  14. #foreach($doc in $response.results)
  15. #parse("hit.vm")
  16. #end
  17. </div>