嵌入 bugzilla 报告

发布于 2024-10-10 14:20:03 字数 1700 浏览 6 评论 0原文

我正在尝试找到一种将 bugzilla 的表格报告嵌入到另一个 HTML 文档中的方法。有谁知道如何做到这一点?所有嵌入都必须发生在客户端。我无法访问后端 Web 服务器来实现内容的解析/内联。我想,我可以使用 iframe,但我还没有找到一种方法来告诉 bugzilla 不要发出其标准页眉和页脚。

有人有在客户端将 bugzilla 报告嵌入到 HTML 文档中的经验吗?

这是一个示例报告... https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=bug_status&y_axis_field=bug_severity& ;z_axis_field=&query_format=报告表&short_desc_type=allwordssubstr&short_desc=&分类=技术&产品=Sapphire&target_milestone=0.3&longdesc_type=allwordssubstr&longdesc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&状态_whiteboard_type= allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&emailtype1=substring&email1=&emailtype2=substring&email2=&bug_id_type=anyexact&bug_id=&votes=&chfieldfrom=&chfieldto=现在& chfieldvalue=&format=table&action=wrap&field0-0-0=noop&type0-0-0=noop&value0-0-0=

I am trying to find a way to embed bugzilla's tabular reports in another HTML document. Does anyone know a way to do this? All embedding must happen client-side. I don't have access to backend web server to implement parsing/inlining of contenting. I figure, I could use an iframe, but i haven't found a way to tell bugzilla not to emit its standard header and footer.

Does anyone have experience embedding bugzilla reports into an HTML document on the client side?

Here is an example report... https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=bug_status&y_axis_field=bug_severity&z_axis_field=&query_format=report-table&short_desc_type=allwordssubstr&short_desc=&classification=Technology&product=Sapphire&target_milestone=0.3&longdesc_type=allwordssubstr&longdesc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&emailtype1=substring&email1=&emailtype2=substring&email2=&bug_id_type=anyexact&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&format=table&action=wrap&field0-0-0=noop&type0-0-0=noop&value0-0-0=

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

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

发布评论

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

评论(2

辞慾 2024-10-17 14:20:03

您希望错误列表请求中包含 &format=simple 参数,例如:

https://bugzilla.mozilla.org/buglist.cgi?bug_id=1000,1001,1002&format=simple

输入这样的 URL(自然是指向您的 Bugzilla) ) 在

格尔夫

You want the &format=simple parameter on your buglist request, e.g.:

https://bugzilla.mozilla.org/buglist.cgi?bug_id=1000,1001,1002&format=simple

Put a URL like that (to your Bugzilla, naturally) in the src attribute of an <iframe>.

Gerv

再浓的妆也掩不了殇 2024-10-17 14:20:03

一点 javascript 来请求 html 和足够的解析来找到正确的代码片段可能是您唯一的选择。
http://ejohn.org/blog/pure-javascript-html-parser/ 可能是一个不错的解析选项。

A little javascript to request the html and enough parsing to find the right snippet might be your only option.
http://ejohn.org/blog/pure-javascript-html-parser/ might be a good parsing option.

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