Re: Django app to update site through email

2012-08-11 Thread Marwan Al-Sabbagh
thats interesting. I was gonna use python's imaplib to periodically check an email's inbox using IMAP, and run an action whenever new emails are discovered. We are running MS Exchange as our email server so I needed something more generic that would work essentially with any Email server that suppo

Re: Created & updated date/time in models

2012-08-11 Thread Melvyn Sopacua
On 8-8-2012 23:02, Lachlan Musicman wrote: > From what I can see, the admin interface already keeps this data for > each object (exception: no create_date for data imported via fixtures > apparently). Three options: 1) Add the fields you want to each model 2) Bypass django and use triggers to pop

DjangoSEO framework.....seo_mymetadatamodelinstance._content_type_id may not be NULL

2012-08-11 Thread Jak
I am trying to install the djangoSEO framework, and I'm having some difficultly. The models are showing up in the admin, but when I click save after adding the meta tags I get seo_mymetadatamodelinstance._content_type_id may not be NULL. I tried googleing this error, but haven't found anything.

Re: Issue Deploying Django

2012-08-11 Thread Mario Lacunza
Dont forget ask to webfaction about it too before you buy the package, you have root access in WF and you can install whaterver you want I guess. Anyways ask WF support. http://www.webfaction.com?affiliate=lacunza Saludos / Best regards Mario Lacunza Email:: mlacu...@gmail.com Personal Websit

Re: Issue Deploying Django

2012-08-11 Thread JJ Zolper
Thank you mark for the great response. Let me add on to the reason I started this thread for any who missed it. I need to be able to have the capability to install geospatial libraries such as GEOS, PROJ, PostGIS, and possibly GDAL. On my current host i do not have root privleges and so if for

Re: Added wiring for basic authentication?

2012-08-11 Thread Alexis Roda
Al 11/08/12 19:48, En/na Jonathan Hayward ha escrit: I have a Django project with the root view @login_required, and I'm not sure how to populate /accounts so that that heirarchy will hangle login-related information. The Django Book at https://docs.djangoproject.com/en/dev/topics/auth/ seems to

Re: how to organize models

2012-08-11 Thread Alexis Roda
Al 11/08/12 15:57, En/na Jojo ha escrit: Hi, I'm developing my first web application with Django. The model is growing up quite fast and I started to split the code in different files I putted under models directory with its __init__.py file. Everything works fine, but syncdb doesn't recognize ne

Added wiring for basic authentication?

2012-08-11 Thread Jonathan Hayward
I have a Django project with the root view @login_required, and I'm not sure how to populate /accounts so that that heirarchy will hangle login-related information. The Django Book at https://docs.djangoproject.com/en/dev/topics/auth/ seems to say that it will happen automagically with my default s

Re: Issue Deploying Django

2012-08-11 Thread Mark Gemmill
Like William, I'd have to say I've had pretty good luck with Webfaction. You can do just about anything you want and the support is very good. They have standard setup scripts for various types of apps, including Django, but if you want to do something custom you have a lot of freedom. For inst

how to organize models

2012-08-11 Thread Jojo
Hi, I'm developing my first web application with Django. The model is growing up quite fast and I started to split the code in different files I putted under models directory with its __init__.py file. Everything works fine, but syncdb doesn't recognize new models, and consequently doesn't crea

Re: Django app to update site through email

2012-08-11 Thread m1chael
Hello, I did this recently with postfix. These are my notes: [add to /etc/aliases] support:"|/home/support/support.py" [add to /etc/postfix/virtual] t...@thesupport.com support * then run newaliases And my script looks like this: #!/usr/bin/python import sys, time, email, email.Mes

Re: Django app to update site through email

2012-08-11 Thread Marwan Al-Sabbagh
It's a very cool idea. I wanted to do something similar to this where I would email users notification for approvals and they could reply to the email with their approval. I'm curious you said you have already implemented this. How did you end up doing it. On 10 August 2012 18:23, Paul Backhouse