Solr UI、突出显示和 EscapeTool
我正在使用默认 Solr 工具包中的“Escape Tool”工具。我用它来显示可能嵌入了 html 标签的文本字段。我在速度 UI 文档级别执行此操作。即我在它显示之前将其转义。
我想打开突出显示,并已通过 solrconfig 成功完成此操作:
<str name="hl">false</str>
<str name="hl.fl">*</str>
<str name="hl.usePhraseHighlighter">true</str>
<str name="hl.requireFieldMatch">true</str>
<str name="hl.regex.maxAnalyzedChars">10000</str>
<str name="hl.useFastVectorHighlighter">true</str>
不幸的是,转义工具转义了默认标记 (em),因此它并没有真正按照其预期方式工作。在突出显示发生之前移动转义程序听起来像是最佳解决方案。我不太熟悉 UI 在输出上应用事物的顺序。
一种方法是在插入时转义字段:http://velocity.apache。 org/engine/devel/webapps.html 使用 org.apache.velocity.app.event.implement.EscapeHtmlReference。但我想知道是否有一种方法可以在不修改存储内容的情况下做到这一点?
谢谢!
I'm using the tool "Escape Tool" from the default Solr toolkit. I use it to display text fields that might have html tags embedded in them. I do this at the velocity UI document level. I.e. I escape it right before it displays.
I want to turn on highlighting, and have successfully done so via solrconfig:
<str name="hl">false</str>
<str name="hl.fl">*</str>
<str name="hl.usePhraseHighlighter">true</str>
<str name="hl.requireFieldMatch">true</str>
<str name="hl.regex.maxAnalyzedChars">10000</str>
<str name="hl.useFastVectorHighlighter">true</str>
Unfortunately, the escape tool escapes the default tag (em) so it doesn't really work the way its intended. Moving the escape procedure before the highlighting takes place sounds like the optimal solution. I'm not too familiar with the order things are applied by the UI on output.
One way to do it is to escape the fields on insertion: http://velocity.apache.org/engine/devel/webapps.html using org.apache.velocity.app.event.implement.EscapeHtmlReference. But I was wondering if there was a way to do it without modifying the content stored?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用不同的突出显示标记,例如在输入中使用不太可能的内容
,然后将其替换回您喜欢的突出显示标记(例如
)
You could use a different highlight tag, e.g use something very unlikely in the input
and then replace that back to your preferred highlight tag (e.g.
<em>
)