[Web-SIG] [Paste] Re: PasteDeploy 0.1

Ian Bicking ianb at colorstudy.com
Tue Aug 23 22:37:17 CEST 2005


Michal Wallace wrote:
>    GET / = config:static_root.ini
>    POST /cms = config:filebrowser.ini
>    * /blog = config:blog.ini

One interesting thing about this sort of thing is, REST or no, you 
probably aren't going to do method-based dispatch on a server level, 
since it's hard to actually partition applications that way.  For 
example, you could almost put a transparent webdav layer on top of 
something else, except GET is overloaded, and you'd actually end up with 
some user-agent-based dispatch, which doesn't seem particularly RESTful.

But I can imagine using this deployment format as an internal format 
when setting up your otherwise-encapsulated application.


-- 
Ian Bicking  /  ianb at colorstudy.com  /  http://blog.ianbicking.org


More information about the Web-SIG mailing list