如何为 GAE 文档创建 Firefox 搜索插件?

发布于 2024-12-11 07:53:20 字数 1240 浏览 0 评论 0原文

这里的主要问题是搜索网址:

http://code.google.com/intl /it/query/#p=appengine&q=query

它不包含 ? 符号,也包含 # 符号。 此类 URL 未通过 XML 验证,因此我尝试了其他不同的方法(甚至包含附加参数),但尚未找到有效的解决方案。

这是我目前所拥有的(为了简化图像部分被截断):

<?xml version="1.0" encoding="UTF-8"?>  
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"  
                       xmlns:moz="http://www.mozilla.org/2006/browser/search/">  
  <ShortName>Google AppEngine</ShortName>  
  <Description>Search the GAE documents at Google Code website.</Description>  
  <InputEncoding>UTF-8</InputEncoding>  
  <Image width="16" height="16" type="image/x-icon">data:image/x-icon;base64,...</Image>  
  <Url type="text/html" method="GET" template="http://code.google.com/intl/it/query/#p=appengine">  
    <Param name="a" value="{moz:locale}"/>
    <Param name="q" value="{searchTerms}"/>  
  </Url>  
  <moz:SearchForm>http://code.google.com/intl/it/appengine/docs/</moz:SearchForm>  
</OpenSearchDescription>

The main problem here is with search url:

http://code.google.com/intl/it/query/#p=appengine&q=query

It doesn't contain ? symbol, also it has # symbol.
Such URL doesn't pass XML validation, so I've tried different other approaches (even inclusion of additional parameter), but haven't found working solution.

Here is what I have currently (image part is truncated for simplification):

<?xml version="1.0" encoding="UTF-8"?>  
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"  
                       xmlns:moz="http://www.mozilla.org/2006/browser/search/">  
  <ShortName>Google AppEngine</ShortName>  
  <Description>Search the GAE documents at Google Code website.</Description>  
  <InputEncoding>UTF-8</InputEncoding>  
  <Image width="16" height="16" type="image/x-icon">data:image/x-icon;base64,...</Image>  
  <Url type="text/html" method="GET" template="http://code.google.com/intl/it/query/#p=appengine">  
    <Param name="a" value="{moz:locale}"/>
    <Param name="q" value="{searchTerms}"/>  
  </Url>  
  <moz:SearchForm>http://code.google.com/intl/it/appengine/docs/</moz:SearchForm>  
</OpenSearchDescription>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

久隐师 2024-12-18 07:53:20

使用实体&&进行编码,XML将有效:

<?xml version="1.0" encoding="UTF-8"?>  
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"  
                       xmlns:moz="http://www.mozilla.org/2006/browser/search/">  
  <ShortName>Google AppEngine</ShortName>  
  <Description>Search the GAE documents at Google Code website.</Description>  
  <InputEncoding>UTF-8</InputEncoding>  
  <Image width="16" height="16" type="image/x-icon">data:image/x-icon;base64,25</Image>  
  <Url type="text/html" method="GET" template="http://code.google.com/intl/it/query/#p=appengine&q={searchTerms}"></Url>  
  <moz:SearchForm>http://code.google.com/intl/it/appengine/docs/</moz:SearchForm>  
</OpenSearchDescription>

将此XML复制到http://validator.w3.org/check 确认有效性。

Use entity & to encode the &, and the XML will be valid:

<?xml version="1.0" encoding="UTF-8"?>  
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"  
                       xmlns:moz="http://www.mozilla.org/2006/browser/search/">  
  <ShortName>Google AppEngine</ShortName>  
  <Description>Search the GAE documents at Google Code website.</Description>  
  <InputEncoding>UTF-8</InputEncoding>  
  <Image width="16" height="16" type="image/x-icon">data:image/x-icon;base64,25</Image>  
  <Url type="text/html" method="GET" template="http://code.google.com/intl/it/query/#p=appengine&q={searchTerms}"></Url>  
  <moz:SearchForm>http://code.google.com/intl/it/appengine/docs/</moz:SearchForm>  
</OpenSearchDescription>

Copy this XML to http://validator.w3.org/check to confirm the validilty.

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