[google-appengine] Re: App Engine Patch - dumpdata then loaddata

2009-03-25 Thread Big Stu
Alright, I think I optimistically read Waldemars note about how DateTimeProperty was the only property that is supported. I'll shelf this for now. I'll take a stab at this at implementing the other properties at some point soon. Stu On Mar 24, 7:45 pm, Big Stu stu.dohe...@gmail.com wrote:

[google-appengine] Re: App Engine Patch - dumpdata then loaddata

2009-03-24 Thread Big Stu
I'm working with the most recent GAE Patch but still seem to have the problem. This issue here with GAE-Helper describes what I'm seeing exactly: Issue 70:Deserializer does not decode datetime fields properly http://code.google.com/p/google-app-engine-django/issues/detail?id=70 Is

[google-appengine] Re: App Engine Patch - dumpdata then loaddata

2009-03-24 Thread Big Stu
I just found out how insanely easy it is to open, edit, and save a file within a zip file under vim. I came across it on this link: http://blog.vorpal.cc/category/linux/vim-can-open-zip-files.html On Mar 24, 12:34 pm, Big Stu stu.dohe...@gmail.com wrote: I'm working with the most recent GAE

[google-appengine] Re: App Engine Patch - dumpdata then loaddata

2009-03-24 Thread Big Stu
So, I editing the django1.0/core/serializers/python.py file to have the changes mentioned in Issue 70 for Google App Engine Helper, and I'm not getting this error: Installing json fixture 'data' from absolute path. Problem installing fixture 'data.json': Traceback (most recent call last): File

[google-appengine] Re: App Engine Patch - dumpdata then loaddata

2009-03-24 Thread Big Stu
So, I editing the django1.0/core/serializers/python.py file to have the changes mentioned in Issue 70 for Google App Engine Helper, and I'm not getting this error: Installing json fixture 'data' from absolute path. Problem installing fixture 'data.json': Traceback (most recent call last): File

[google-appengine] Re: App Engine Patch - dumpdata then loaddata

2009-03-24 Thread Big Stu
Looks like this BadValueError is happening when the deserializer tries to parse the data field of the sessions.session model. On Mar 24, 7:30 pm, Big Stu stu.dohe...@gmail.com wrote: So, I editing the django1.0/core/serializers/python.py file to have the changes mentioned in Issue 70 for

[google-appengine] Re: App Engine Patch - dumpdata then loaddata

2009-03-21 Thread Waldemar Kornewald
On Mar 20, 3:31 pm, Big Stu stu.dohe...@gmail.com wrote: Hi Waldemar,   Thanks for following up, and thanks for all your hard work with App Engine Patch.  I'm having a lot of fun learning about app engine and django in my spare time, and hope to one day move my full time career into this

[google-appengine] Re: App Engine Patch - dumpdata then loaddata

2009-03-20 Thread Big Stu
Hi Waldemar, Thanks for following up, and thanks for all your hard work with App Engine Patch. I'm having a lot of fun learning about app engine and django in my spare time, and hope to one day move my full time career into this stuff. Django, GAE, and your stuff will have a huge hand in

[google-appengine] Re: App Engine Patch - dumpdata then loaddata

2009-03-19 Thread Waldemar Kornewald
On Mar 18, 6:19 pm, Big Stu stu.dohe...@gmail.com wrote: I'm having a problem with my App Engine Patch project where if I dumpdata from my app engine server using: ./manage.py dumpdata --format json data.json Then reset the servers data: ./manage.py reset And then try to reload that

[google-appengine] Re: App Engine Patch - dumpdata then loaddata

2009-03-18 Thread Big Stu
If I try using a different serializer (yaml) I get this complaint: Error: Unable to serialize database: cannot represent an object: s...@localhost So json doesn't like date formats, and yaml doesn't like the email address field. Anyone know whats up here? THanks Stu