(self)
| 508 | |
| 509 | @property |
| 510 | def _context(self): |
| 511 | depr('Switch to Plugin API v2 and access the Route object directly.') #0.12 |
| 512 | return dict(rule=self.rule, method=self.method, callback=self.callback, |
| 513 | name=self.name, app=self.app, config=self.config, |
| 514 | apply=self.plugins, skip=self.skiplist) |
| 515 | |
| 516 | def all_plugins(self): |
| 517 | ''' Yield all Plugins affecting this route. ''' |