On 8/19/05, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote: > integrate with the admin interface. What I mean is this: given a > model with a standard integer primary key, the admin URL is something > like ``/app/module/14/``. It's also simple if the object has a non- > integer key; something like ``/app/module/foo/``. However, for a > model with a multiple key, what's the URL?
/app/module/rowid/? Probly not cross-DB.. /app/module/keyAvalue/keyBvalue/keyCvalue (point being that keys are supplied in alpha-order, or some other total ordering)? >If something as simple as > URL resolution in the admin is going to cause problems, imagine all > the other places where it will break... Of course you're right. :)
