Move to solr 4 plus corrections to SparqlQueryExecutorTest with newlines and white space characters

This commit is contained in:
hudajkhan 2014-04-25 13:54:42 -04:00
parent b642f30391
commit 120be1e6b8
122 changed files with 17422 additions and 5288 deletions

View 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