tweaks to suggest popup to avoid overlay issue, lowercased flare as that seems a good persona, and added commas on document display

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@510678 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2007-02-22 22:05:16 +00:00
parent 8680e2a02a
commit bebe033fb5
3 changed files with 8 additions and 2 deletions

View File

@ -72,7 +72,7 @@
<td class="title" colspan="2"><%=doc['title_text']%></td>
</tr>
<% doc.each do |k,v|; highlighting = @response.highlighted(doc['id'], k) %>
<tr><td class="field"><%=k%>:</td><td><%= highlighting ? "...#{highlighting}..." : v%></td></tr>
<tr><td class="field"><%=k%>:</td><td><%= highlighting ? "...#{highlighting}..." : (v.respond_to?('join') ? v.join(',') : v.to_s)%></td></tr>
<% end %>
</table>
</td>

View File

@ -1,6 +1,6 @@
<html>
<head>
<title>Solr Flare: <%=controller.action_name%></title>
<title>Solr flare: <%=controller.action_name%></title>
<%= javascript_include_tag :defaults %>
<%= stylesheet_link_tag 'flare'%>
</head>

View File

@ -158,3 +158,9 @@ em {
color: #999;
font-style: italic;
}
div.auto_complete {
padding-left: 20px;
padding-top: 10px;
background: #fff;
}