Re: download file

2009-09-02 Thread Andrew McGregor
> Hello can you tell me where i can find example how to download file > with django CURL? http://pycurl.sourceforge.net/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: Parsing / Deserializing a JSON String

2009-09-02 Thread Andrew McGregor
s?  Is there > another method I should be using? I am obviously a bit of a newbie at > this so any help would be greatly appreciated. Are you manually deserialising the data? http://pypi.python.org/pypi/simplejson/ -- Andrew McGregor 07940 22 33 11 --~--~-~--~~~--

Re: Is valid {% ifequal model.name "Mymodelname" %}??

2009-09-02 Thread Andrew McGregor
lp me? As part of your select could you tag the name as a hard coded column name and then check for it as a regular field? SELECT 'Mymodelname' AS `name`, other, fields, * FROM Mymodelname WHERE ... Not sure how you do it as a QueryS

Re: Parsing / Deserializing a JSON String

2009-09-02 Thread Andrew McGregor
On Wed, Sep 2, 2009 at 6:47 PM, Eric wrote: > > Im using the Django deserialization method shown here: > > http://docs.djangoproject.com/en/dev/topics/serialization/ > ok, try pasting your json (the original, not your re-typed version) here: http://www.jsonlint.com/ -- Andrew

Re: djangol_tables

2009-09-03 Thread Andrew McGregor
a 3rd party module? If so, have you installed it? If you have, have you added it to sys.path so Django knows where to find it? -- Andrew McGregor 07940 22 33 11 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

Re: Same application with different URLs

2009-09-04 Thread Andrew McGregor
Different apache processes could be out of sync and running different django configs, thus giving different outcomes. -- Andrew McGregor 07940 22 33 11 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django us

Re: How to organize django projects on a productive server?

2009-09-15 Thread Andrew McGregor
t unit tests are run and a bunch of other sanity checks. If OK then the commit works. Spend a fiver on Agile Python Development. http://www.amazon.co.uk/gp/offer-listing/1590599810/ref=dp_olp_used?ie=UTF8&qid=1253043898&sr=8-1&cond

Re: list some django-powered web sites

2009-09-24 Thread Andrew McGregor
always a hot topic, what are you considering instead of Django? -- Andrew McGregor 07940 22 33 11 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: reservation & booking system

2009-09-29 Thread Andrew McGregor
ecause there is nothing of > any use around?! > > It would be great if you Guys 'n' Girls could share some ideas regarding > suitable modules etc. If your transactions are low to moderate then consider BookingBug.com as a 3rd par