nUnrouteable address

2010-11-30 Thread mangamonk
here are my email configurations in settings.py EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST = 'smtp.domain.org' EMAIL_HOST_PASSWORD = 'password' EMAIL_HOST_USER = 'webmas...@domain.org' EMAIL_PORT = '587' DEFAULT_FROM_EMAIL = 'webmas...@domain.org' SERVER_EMAIL = 'webm

Re: unbalanced parenthesis

2009-01-05 Thread mangamonk
thank you! On Jan 5, 4:32 pm, "Alex Koshelev" wrote: > You've forgotten ")" after `(?P\d{4}` > > On Mon, Jan 5, 2009 at 7:30 PM, mangamonk wrote: > > > I'm trying to complete the practical django applications tutorial.. > > > error

unbalanced parenthesis

2009-01-05 Thread mangamonk
I'm trying to complete the practical django applications tutorial.. error at /weblog/ unbalanced parenthesis Request Method: GET Request URL:http://127.0.0.1:8000/weblog/ Exception Type: error Exception Value:unbalanced parenthesis /home/mark/django_projects/coltrane

Re: python path

2008-12-09 Thread mangamonk
n the project folder I would be able to access manage.py from the site-packages directory and therefore be able to run.. [EMAIL PROTECTED]:~/django_projects$ python manage.py syncdb On Dec 9, 12:31 pm, mangamonk <[EMAIL PROTECTED]> wrote: > >>>import sys; sys.path > > [&#

Re: python path

2008-12-09 Thread mangamonk
/var/lib/python-support/python2.5', '/usr/lib/python2.5/site-packages/gtk-2.0', '/var/lib/python-support/python2.5/gtk-2.0'] On Dec 9, 12:02 pm, mangamonk <[EMAIL PROTECTED]> wrote: > I'm working through 'practical django projects' > on page 46, in

python path

2008-12-09 Thread mangamonk
I'm working through 'practical django projects' on page 46, in order to develop stanalone application, I need to add my django 'project' to the python path. therefore.. export PYTHONPATH=/home/mark/django_projects/:$PYTHONPATH then a little later in the tutorial after setting up the 'coltrane ap

Re: Customizing the Admin Interface's Look and Feel - ch 6

2008-02-08 Thread mangamonk
admin' > > Regrads, > Marcin > > On Feb 7, 6:35 pm, mangamonk <[EMAIL PROTECTED]> wrote: > > > I'm trying to make a change to my templates here.. > > > /django_trunk/mysite/templates/admin/base_site.html > > > But the templates being used are

Customizing the Admin Interface's Look and Feel - ch 6

2008-02-07 Thread mangamonk
I'm trying to make a change to my templates here.. /django_trunk/mysite/templates/admin/base_site.html But the templates being used are sitting here.. /django_trunk/django/contrib/admin/templates/admin/base_site.html How do I get my site sitting at http://127.0.0.1:8000/admin/ to use my applic