aboutsummaryrefslogtreecommitdiff
path: root/solr-8.1.1/example/files/conf/velocity/browse.vm
diff options
context:
space:
mode:
authorkimdahey <claire_kim1@brown.edu>2020-01-16 11:31:41 -0500
committerkimdahey <claire_kim1@brown.edu>2020-01-16 11:31:41 -0500
commit6be0e19ed0bd13f3796f542affa5a2e52674650c (patch)
tree1be222ea9341ecd8020fad3149035fa650a8a07f /solr-8.1.1/example/files/conf/velocity/browse.vm
parent5cde81d8c6b4dcd8d0796f8669b668763957f395 (diff)
parente410cde0e430553002d4e1a2f64364b57b65fdbc (diff)
merged w master
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, 0 insertions, 32 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
deleted file mode 100644
index 535a7713b..000000000
--- a/solr-8.1.1/example/files/conf/velocity/browse.vm
+++ /dev/null
@@ -1,32 +0,0 @@
-<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>
-