Re: ' Change History' for audit, compliance

2008-11-11 Thread David Hall
s. >>> >>> >>> An application should provide information who changed what data, when >>> did they change the data , the old value and the new value etc >>> >>> >>> Can Django help automate this? >>> >>&

Django model version control

2008-10-01 Thread David Hall
I've just released an open-source version control application for Django. It is available for download from Google code. http://code.google.com/p/django-reversion/ Features include: - Roll back to any point in a model's history - an unlimited undo facility! - Recover deleted models - never

Re: Django model version control

2008-10-01 Thread David Hall
-reversion deals with maintaining versions of the model data. It does not integrate with subversion. Instead, it uses the django serialization framework to store serialized models in a special database table. David. David Hall wrote: > I've just released an open-source version control app

Re: Django model version control

2008-10-02 Thread David Hall
e() ...bar.save() This will group the two changes together. They can then be rolled back as a single unit. David. Marek Stępniowski wrote: > On Wed, Oct 1, 2008 at 5:25 PM, David Hall <[EMAIL PROTECTED]> wrote: >> I've just released an open-source version control applicati

Re: Django model version control

2008-10-02 Thread David Hall
> Bas > > > On Wed, 2008-10-01 at 16:52 +0100, David Hall wrote: >> This discussion has been moved from django-developers. >> >> To answer a pending question: This application is for tracking versions >> of data, not performing database schema migrati

Re: Django model version control

2008-10-04 Thread David Hall
ical table (except the ID field would be a foreign key, not a >> primary one). Any time a migration is run on that model, the same >> migration could be run on the "twin" table, too. >> >> Erik >> >> On 02.10.2008, at 18:34, David Hall wrote: >> >&

Re: Django model version control

2008-10-04 Thread David Hall
a candidate for the currently-inactive fullhistory branch. As such, your feedback and suggestions are vital to making this application as bombproof as possible. David. David Hall wrote: > I've just released an open-source version control application for > Django. It is available for

Re: Django model version control

2008-10-06 Thread David Hall
omments! David. jonknee wrote: > On Oct 1, 11:25 am, David Hall <[EMAIL PROTECTED]> wrote: >> I've just released an open-source version control application for >> Django. It is available for download from Google code. > > Neat idea! I installed it and while it works

Re: seeking help in model design...

2008-10-07 Thread David Hall
to one type at a time. From the manual/book - i belive that > GenericForeignKey is the way to go. ie, insert a GenericForeignKey > field into the Node. Does this sound like a good approach? > > Many Thanks in Advance, > > Paul > > -- David Hall Technical Lead

Re: seeking help in model design...

2008-10-07 Thread David Hall
each derived model > incompatible with each other? > > cheers, > > paul > > > On Oct 7, 11:16 am, David Hall <[EMAIL PROTECTED]> wrote: >> Hi Paul, >> >> You've got a couple of options for this. The first uses inheri

Re: Using RequireJS with Django

2012-11-01 Thread David Hall
I realise that this is an old topic, but I hope this is useful to other people looking to use RequireJS with Django. You should take a look at django-require, which takes care of integrating the r.js optimizer with Django. I've just pushed up the 1.0.0 release. https://github.com/etianen/django