Your message dated Mon, 24 Aug 2026 00:58:19 +0200
with message-id <[email protected]>
and subject line Re: Bug#689561: wiki: add support for checking status of bugs 
in bugzilla
has caused the Debian Bug report #689561,
regarding wiki: add support for checking status of bugs in bugzilla
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
689561: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689561
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: wiki.debian.org
Severity: wishlist

We should add support for checking the status of bugs in bugzilla
installations. Below is a proof-of-concept python script that we can use
to create this. The script should have a list of known bugzilla
installations and only contact those. The JavaScript should recognise
URLs of the form ..../show_bug.cgi?id=1234 or /1234 on the known
hostnames and then contact the bugzilla script and return the results.

import xmlrpclib
import cgi
try:
        import json
except ImportError:
        import simplejson as json

url = 'https://bugzilla.gnome.org/xmlrpc.cgi'
proxy = xmlrpclib.ServerProxy(url)
bugs = proxy.Bug.get_bugs({'ids': [123456]})
payload = .........
output = json.dumps(payload)
print
print output

-- 
bye,
pabs

http://wiki.debian.org/PaulWise

Attachment: signature.asc
Description: This is a digitally signed message part


--- End Message ---
--- Begin Message ---
On Thu, Oct 04, 2012 at 09:19:05AM +0800, Paul Wise wrote:
> We should add support for checking the status of bugs in bugzilla
> installations. Below is a proof-of-concept python script that we can use
> to create this. The script should have a list of known bugzilla
> installations and only contact those. The JavaScript should recognise
> URLs of the form ..../show_bug.cgi?id=1234 or /1234 on the known
> hostnames and then contact the bugzilla script and return the results.

Closing out this never implemented idea; seems unlikely it will 
happen for MoinMoin and maybe also not for MW.

C.

--- End Message ---

Reply via email to