Changeset 3816
- Timestamp:
- 06/10/08 10:57:33 (3 months ago)
- Files:
-
- autoqueryplugin/0.11/autoquery/autoquery.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
autoqueryplugin/0.11/autoquery/autoquery.py
r3703 r3816 79 79 if template == 'ticket.html': 80 80 query = self.env.href() + '/query?%s=%s' + self.query_args 81 data['query_link'] = lambda x, y: query % (x, urllib.quote_plus(y)) 81 def query_link(x, y): 82 try: 83 y = urllib.quote_plus(y) 84 except KeyError: 85 pass 86 return query % ( x, y ) 87 88 data['query_link'] = query_link 82 89 template = 'autoquery_ticket.html' 83 90 return (template, data, content_type)
