Reputation: 29139
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?
Upvotes: 0
Views: 569
Reputation: 287
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
Upvotes: 1
Reputation: 840
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.
Upvotes: 0