> > That or using PUT to alter the state of the document > to deletable, before actual DELETE is issued. >
To say the truth, I'd even prohibit use of DELETE to actually delete smth. Deletion is way dangerous operation. Especially when cascading is on. When I have more time, I'll dive into versioned storage deep. And (at first glance) even the following scheme might help: PUT a flag to <URI> (or just PUT <URI>/delete) marks an object as a candidate for garbage collector; SQL queries should respect this fact by filtering out marked records; a time comes and the record is moved to archive table). -- Vladimir -- 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.
