Re: [Ryu-devel] Proposal: Advanced WSGI API

2013-09-23 Thread Satoshi Kobayashi
Thank you for reviewed members. I sent the patch. Thanks! Satoshi 2013/9/9 Satoshi Kobayashi > Hi, > > (I retransmit it because the transmission did not reach well) > > Currently, HTTP routing and implementation are separated. Example: > > -- > class SampleApiApp(app

Re: [Ryu-devel] Proposal: Advanced WSGI API

2013-09-23 Thread FUJITA Tomonori
Sorry about the delay. On Wed, 4 Sep 2013 15:00:36 +0900 Satoshi Kobayashi wrote: > Currently, HTTP Routing and implementations are separated on a WSGI > application. However, I like that they are in the same place. For example, > they are Flask of Python, and Bottle and JAX-RS of Java. > > The

Re: [Ryu-devel] Proposal: Advanced WSGI API

2013-09-09 Thread YAMAMOTO Takashi
hi, > Hi, > > (I retransmit it because the transmission did not reach well) > > Currently, HTTP routing and implementation are separated. Example: > > -- > class SampleApiApp(app_manager.RyuApp): > \x85. > def __init__(self, *args, **kwargs): > \x85.

Re: [Ryu-devel] Proposal: Advanced WSGI API

2013-09-08 Thread Satoshi Kobayashi
Hi, (I retransmit it because the transmission did not reach well) Currently, HTTP routing and implementation are separated. Example: -- class SampleApiApp(app_manager.RyuApp): …. def __init__(self, *args, **kwargs): …. wsgi = kwargs['wsgi']

[Ryu-devel] Proposal: Advanced WSGI API

2013-09-03 Thread Satoshi Kobayashi
Hi, Currently, HTTP Routing and implementations are separated on a WSGI application. However, I like that they are in the same place. For example, they are Flask of Python, and Bottle and JAX-RS of Java. Then, I would like to propose the following API which based on decorator. --8<--