| Home | Trees | Indices | Help |
|---|
|
|
1 import web 2235 return self.request(args, "GET")68 return self.request(args, "POST")911 argslist = args.partition('/') 12 plugin_name = argslist[0] 13 plugin = web.ctx.plugin_manager.get_plugin_by_name(plugin_name) 14 if not plugin: 15 print "plugin %s not found" % plugin_name 16 raise web.notfound() 17 18 if not plugin.is_enabled(): 19 print "plugin %s not enabled" % plugin_name 20 raise web.notfound() 21 22 return plugin._request(argslist[2], method)
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Wed Aug 4 09:57:34 2010 | http://epydoc.sourceforge.net |