On Fri, 2011-08-19 at 12:59 -0700, Chris Pyper wrote: > Wow, nice call! Yes, I am using Django. First, I am a little unclear > as to what document ordering of controls is.
See http://plope.com/peppercorn/view for a discussion of what this means. > Secondly, the > documentation mentions that deform is compatible with any framework. Any framework that doesn't lose document control ordering anyway. WebOb's request, Werkzeug's request, and Zope's request already very carefully maintain document ordering. So basically.. every framework except Django. > Is there something I can write to re-order the controls? The information is lost when you use the Django request APIs, so there's no convenient data structure laying around that allows you to know how to reorder it. The information is still in the request's body, but I don't know how you'd get at it; it would likely mean poking around in Django request internals. I don't have enough empathy myself to open a ticket in the Django tracker about it. I spoke with James Bennett about this in IRC, and he didn't seem to care enough either. - C -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
