Comment 3 for bug 185357

Revision history for this message
Markus Korn (thekorn) wrote :

A common use case for this would be:
    "show me all open bugs in ubuntu which were reported since 2008-01-01"

I suggest the following work flow in py-lp-bugs (the fastest solution I could imagine):
   1.) use the html-mode for BugList (this returns us many blocks of 50 bugs and not one big list as in the text-mode)
   2.) let launchpad sort the buglist by "newest first" ('?orderby=-datereported')
   3.) stop getting bug pages when the bug was reported before 2008-01-01

This work flow can easily be adapted for "reported on 2008-01-01" or "reported before 2008-01-01"

A correct implementation of this solution is blocked by Bug 194312, as we need Buglist to be a list to respect the order of the elements)

Markus