Changeset 2614
- Timestamp:
- 09/03/07 06:07:21 (1 year ago)
- Files:
-
- xmlrpcplugin/trunk/tracrpc/ticket.py (modified) (1 diff)
- xmlrpcplugin/trunk/tracrpc/web_ui.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
xmlrpcplugin/trunk/tracrpc/ticket.py
r2609 r2614 29 29 yield ('TICKET_VIEW', ((list, int),), self.get) 30 30 yield ('TICKET_CREATE', ((int, str, str), (int, str, str, dict), (int, str, str, dict, bool)), self.create) 31 yield ('TICKET_A PPEND', ((list, int, str), (list, int, str, dict), (list, int, str, dict, bool)), self.update)31 yield ('TICKET_ADMIN', ((list, int, str), (list, int, str, dict), (list, int, str, dict, bool)), self.update) 32 32 yield ('TICKET_ADMIN', ((None, int),), self.delete) 33 33 yield ('TICKET_VIEW', ((dict, int), (dict, int, int)), self.changeLog) xmlrpcplugin/trunk/tracrpc/web_ui.py
r2612 r2614 34 34 # Dump RPC functions 35 35 content_type = req.get_header('Content-Type') or 'text/html' 36 self.env.log.debug(content_type)37 36 if not self.content_type_re.match(content_type): 38 37 namespaces = {}
