Move to solr 4 plus corrections to SparqlQueryExecutorTest with newlines and white space characters
This commit is contained in:
parent
b642f30391
commit
120be1e6b8
122 changed files with 17422 additions and 5288 deletions
28
solr/homeDirectoryTemplate/conf/velocity/debug.vm
Normal file
28
solr/homeDirectoryTemplate/conf/velocity/debug.vm
Normal file
|
@ -0,0 +1,28 @@
|
|||
#**
|
||||
* Show Debugging Information, if enabled
|
||||
*#
|
||||
|
||||
#if( $params.getBool("debugQuery",false) )
|
||||
<a href="#" onclick='jQuery(this).siblings("pre").toggle(); return false;'>
|
||||
toggle explain</a>
|
||||
|
||||
<pre style="display:none">
|
||||
$response.getExplainMap().get($doc.getFirstValue('id'))
|
||||
</pre>
|
||||
|
||||
<a href="#" onclick='jQuery(this).siblings("pre2").toggle(); return false;'>
|
||||
toggle all fields</a>
|
||||
|
||||
<pre2 style="display:none">
|
||||
#foreach($fieldname in $doc.fieldNames)
|
||||
<br>
|
||||
<span class="field-name">$fieldname :</span>
|
||||
<span>
|
||||
#foreach($value in $doc.getFieldValues($fieldname))
|
||||
$esc.html($value)
|
||||
#end
|
||||
</span>
|
||||
</br>
|
||||
#end
|
||||
</pre2>
|
||||
#end
|
Loading…
Add table
Add a link
Reference in a new issue