Fixing bug that caused search xml to be invalid, Fixing spelling mistake in search xml. NIHVIVO-2434

This commit is contained in:
briancaruso 2011-04-06 15:32:37 +00:00
parent 1de0056c3c
commit 8cc8247513

View file

@ -1,6 +1,6 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ --> <#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<responce> <response>
<lst name="responseHeader"> <lst name="responseHeader">
<str name="q">${querytext?xml}</str> <str name="q">${querytext?xml}</str>
@ -9,13 +9,13 @@
</#if> </#if>
</lst> </lst>
<result name="responce" numFound="${hitsLength}" start="${startIndex}" > <result name="response" numFound="${hitsLength}" start="${startIndex}" >
<#list individuals as individual> <#list individuals as individual>
<doc> <doc>
<str name="uri">${individual.uri}</str> <str name="uri">${individual.uri?xml}</str>
<str name="name">${individual.name}</str> <str name="name">${individual.name?xml}</str>
</doc> </doc>
</#list> </#list>
</result> </result>
</responce> </response>