diff options
author | David Tardon <dtardon@redhat.com> | 2013-12-07 15:30:19 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-12-07 16:37:04 +0100 |
commit | 1ac7e398553b9fa998bac3d6a36fe50ceb5809d5 (patch) | |
tree | 189b6a223c767c349557c86f8248729ee9801488 /bin | |
parent | 93b6e31c706cb5b98286fa6368f5483c26ff1505 (diff) |
enable more bugzillas
Change-Id: If77b213deba85d49e1e8d09015fa81aa6df6aa94
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/get-bugzilla-attachments-by-mimetype | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/get-bugzilla-attachments-by-mimetype b/bin/get-bugzilla-attachments-by-mimetype index 3957c0c75fab..97d9d2a84608 100755 --- a/bin/get-bugzilla-attachments-by-mimetype +++ b/bin/get-bugzilla-attachments-by-mimetype @@ -283,12 +283,14 @@ def get_launchpad_bugs(prefix): freedesktop = 'http://bugs.libreoffice.org/buglist.cgi' abisource = 'http://bugzilla.abisource.com/buglist.cgi' #added for abiword +gentoo = 'http://bugs.gentoo.org/buglist.cgi' gnome = 'http://bugzilla.gnome.org/buglist.cgi' # added for gnumeric kde = 'http://bugs.kde.org/buglist.cgi' # added for koffice/calligra openoffice = 'https://issues.apache.org/ooo/buglist.cgi' redhatrpc = 'https://bugzilla.redhat.com/xmlrpc.cgi' redhatbug = 'https://bugzilla.redhat.com/show_bug.cgi?id=' mozilla = 'https://bugzilla.mozilla.org/buglist.cgi' +mandriva = 'https://qa.mandriva.com/buglist.cgi' #Novell Bugzilla requires users to log in in order to get details of the bugs such as attachment bodies etc. #As a dirty workaround, we parse comments containing "Created an attachment (id=xxxxxx)" and download attachments manually @@ -461,6 +463,15 @@ for (mimetype,extension) in mimetypes.items(): for (mimetype,extension) in mimetypes.items(): get_through_rss_query(kde, mimetype, "kde", extension) +for (mimetype,extension) in mimetypes.items(): + get_through_rss_query(gentoo, mimetype, "gentoo", extension) + +for (mimetype,extension) in mimetypes.items(): + get_through_rss_query(mozilla, mimetype, "moz", extension) + +for (mimetype,extension) in mimetypes.items(): + get_through_rss_query(mandriva, mimetype, "mandriva", extension) + try: get_launchpad_bugs("lp") except ImportError: |