Ticket #3522: searchall.py.diff
| File searchall.py.diff, 0.5 kB (added by kenny, 5 months ago) |
|---|
-
searchall.py
old new 1 1 ## AMB SearchAll - Search multiple trac projects at once 2 2 3 from genshi.builder import tag 4 3 5 from trac.core import * 4 6 from trac.web.href import Href 5 7 try: … … 84 86 85 87 for result in results: 86 88 yield (result[0], 87 '%s: %s' % (env.project_name, result[1]))\89 tag(env.project_name, ': ', result[1]))\ 88 90 + result[2:] 89
