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
25
solr/homeDirectoryTemplate/conf/velocity/hit_plain.vm
Normal file
25
solr/homeDirectoryTemplate/conf/velocity/hit_plain.vm
Normal file
|
@ -0,0 +1,25 @@
|
|||
#**
|
||||
* An extremely plain / debug version of hit.vm
|
||||
*#
|
||||
|
||||
<table>
|
||||
## For each field
|
||||
#foreach( $fieldName in $doc.fieldNames )
|
||||
## For each value
|
||||
#foreach( $value in $doc.getFieldValues($fieldName) )
|
||||
<tr>
|
||||
## Field Name
|
||||
<th align="right" valign="top">
|
||||
#if( $foreach.count == 1 )
|
||||
$fieldName:
|
||||
#end
|
||||
</th>
|
||||
## Field Value(s)
|
||||
<td align="left" valign="top">
|
||||
$esc.html($value) <br/>
|
||||
</td>
|
||||
</tr>
|
||||
#end ## end for each value
|
||||
#end ## end for each field
|
||||
</table>
|
||||
<hr/>
|
Loading…
Add table
Add a link
Reference in a new issue