UseXML parser instead ofHTML to fix potential collision with other plugins.
r5473 | r5584 | |
---|---|---|
271 | 271 | tickets = [] |
272 | 272 | |
273 | copy = genshi. | |
273 | copy = genshi.XML(html) | |
274 | 274 | nodes = genshi.path.Path('//td[contains(@class, "ticket")]//a/text()') |
275 | 275 | tickets += [int(a[1][1:]) for a in nodes.select(copy)] |
276 | 276 | |
277 | copy = genshi. | |
277 | copy = genshi.XML(html) | |
278 | 278 | nodes = genshi.path.Path('//td[contains(@class, "id")]//a/text()') |
279 | 279 | tickets += [int(a[1][1:]) for a in nodes.select(copy)] |
280 | 280 | |
281 | copy = genshi. | |
281 | copy = genshi.XML(html); | |
282 | 282 | tktDict = {} |
283 | 283 | for tno in tickets: |
r5473 | r5584 | |
---|---|---|
5 | 5 | setup( |
6 | 6 | name='GridFlow', |
7 | version='0.11. | |
7 | version='0.11.2', | |
8 | 8 | description='Invoke workflows directly from report and query results', |
9 | 9 | author='David Champion', |