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 / [EMAIL PROTECTED] / http://blog.ianbicking.org _______________________________________________ Web-SIG mailing list [email protected] Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com
