Re: Run an application periodically on django

2011-08-04 Thread emre yılmaz
use management commands for the cron jobs. "cd /var/www/project_directory && python manage.py custom_management_command" https://docs.djangoproject.com/en/dev/howto/custom-management-commands/ -- web developer http://www.emreyilmaz.me -- You received this message because you are subscribed

Re: user email

2011-03-28 Thread emre yılmaz
2011/3/28 luca72 : > Hello > How i can get all the email stored in the auth_user table of the > default djanco database? > > Thanks > use this: http://paste.pocoo.org/show/361380/ -- web developer http://www.emreyilmaz.me -- You received this message because you are

Re: Configuring common site URL paths for use in templates

2011-03-23 Thread emre yılmaz
> and then make these accessible in some random template using somthing like > the following: > > Can anyone suggest a good way of doing this? > 1) write your own context_processors http://docs.djangoproject.com/en/dev/ref/templates/api/#writing-your-own-context-processors 2) write your own