aboutsummaryrefslogtreecommitdiff
path: root/solr-8.1.1/example/files/conf/velocity/browse.vm
diff options
context:
space:
mode:
authorStanley Yip <33562077+yipstanley@users.noreply.github.com>2019-07-30 19:41:09 -0400
committerGitHub <noreply@github.com>2019-07-30 19:41:09 -0400
commit13f45e3c819aaafcff175256ffb8723642c22dca (patch)
tree00e38b12a22dcc52253e2d7c3e35efee42ad80cf /solr-8.1.1/example/files/conf/velocity/browse.vm
parent80e6356692da7bffaad2efccf01500173c488de0 (diff)
parenta2a73a1ad032979ea6eea06aa65354841e0ef0fa (diff)
Merge pull request #233 from browngraphicslab/text_box_ab
Text box ab
Diffstat (limited to 'solr-8.1.1/example/files/conf/velocity/browse.vm')
-rw-r--r--solr-8.1.1/example/files/conf/velocity/browse.vm32
1 files changed, 32 insertions, 0 deletions
diff --git a/solr-8.1.1/example/files/conf/velocity/browse.vm b/solr-8.1.1/example/files/conf/velocity/browse.vm
new file mode 100644
index 000000000..535a7713b
--- /dev/null
+++ b/solr-8.1.1/example/files/conf/velocity/browse.vm
@@ -0,0 +1,32 @@
+<div id="query-box">
+ <form id="query-form" action="#{url_for_home}" method="GET">
+ $resource.find:
+ <input type="text" id="q" name="q" style="width: 50%" value="$!esc.html($request.params.get('q'))"/>
+ <input type="submit" value="$resource.submit"/>
+ <div id="debug_query" class="debug">
+ <span id="parsed_query">$esc.html($response.response.debug.parsedquery)</span>
+ </div>
+
+ <input type="hidden" name="type" value="#current_type"/>
+ #if("#current_locale"!="")<input type="hidden" value="locale" value="#current_locale"/>#end
+ #foreach($fq in $response.responseHeader.params.getAll("fq"))
+ <input type="hidden" name="fq" id="allFQs" value="$esc.html($fq)"/>
+ #end
+ </form>
+
+ <div id="constraints">
+ #foreach($fq in $response.responseHeader.params.getAll("fq"))
+ #set($previous_fq_count=$velocityCount - 1)
+ #if($fq != '')
+ &gt; $fq<a href="#url_for_filters($response.responseHeader.params.fq.subList(0,$previous_fq_count))">x</a>
+ #end
+ #end
+ </div>
+
+</div>
+
+
+<div id="browse_results">
+ #parse("results.vm")
+</div>
+