Re: Custom Model Field Help

2007-06-04 Thread Sean
> > Additionally I have a strange problem where any time I include this > > custom field in a model, that model no longer appears in the Django > > admin. There doesn't seem to be any errors in the field/model since I > > can use it with out problems from the shell. > > I haven't looked at this p

Re: Custom Model Field Help

2007-06-03 Thread Sean
Cool! Thanks for the feedback and advice, I'll be excited to check out what you guys have come up with. On Jun 3, 10:23 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Mon, 2007-06-04 at 10:20 +0800, Russell Keith-Magee wrote: > > On 6/2/07, Sean <[EMAIL PROTECTED]> wrote: > > > > I have

Re: Custom Model Field Help

2007-06-03 Thread Malcolm Tredinnick
On Mon, 2007-06-04 at 10:20 +0800, Russell Keith-Magee wrote: > On 6/2/07, Sean <[EMAIL PROTECTED]> wrote: > > > > I have gotten the encryption and decryption code down and I have been > > able to override the appropriate functions so that the data is > > encrypted when it is saved to the database

Re: Custom Model Field Help

2007-06-03 Thread Russell Keith-Magee
On 6/2/07, Sean <[EMAIL PROTECTED]> wrote: > > I have gotten the encryption and decryption code down and I have been > able to override the appropriate functions so that the data is > encrypted when it is saved to the database. Unfortunately I have not > been able to figure out what function to o

Custom Model Field Help

2007-06-01 Thread Sean
Greetings, I am in the process of writing a custom model field. Its basically an encrypted char field, the idea is that when ever the field is saved to the database it would be encrypted and when it is loaded back from the database it would be decrypted. I have gotten the encryption and decrypt