Solr UI、突出显示和 EscapeTool

发布于 2024-11-07 04:01:54 字数 845 浏览 0 评论 0原文

我正在使用默认 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋风の叶未落 2024-11-14 04:01:54

您可以使用不同的突出显示标记,例如在输入中使用不太可能的内容

<str name="hl.simple.pre">:-:${</str>
<str name="hl.simple.post">}:-:</str>

,然后将其替换回您喜欢的突出显示标记(例如

You could use a different highlight tag, e.g use something very unlikely in the input

<str name="hl.simple.pre">:-:${</str>
<str name="hl.simple.post">}:-:</str>

and then replace that back to your preferred highlight tag (e.g. <em>)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文