Re: Static file serve with prior authentication?

2009-02-23 Thread Katja Loeffler
> You don't really want use django.views.static.serve in the real world OK ;). > http://docs.djangoproject.com/en/dev/howto/apache-auth/ Thanks! I'll have a look. Katja --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Static file serve with prior authentication?

2009-02-23 Thread Katja Loeffler
Hey there, I have been looking for a solution to make a file download with prior authentication ... Until now the only way I have to have a login page, after a successful login the users will be provided the link to the file and they can then download it. But this is not really "protected" sin

Re: App with time zones

2008-10-15 Thread Katja Loeffler
> I found couple of googlecode projects that seem like they may help me, > but they seem to be SERIOUSLY pre alpha!. > > Any pointers? or ideas on how i can go about this? anything would > help. When I had to deal with time zones once I used pytz for time zone conversions. http://pytz.sourcefor

Query over multivalue relationships

2008-10-15 Thread Katja Loeffler
Hi, I am relatively new to Django and I have a small problem making a query over the following Models ... class GeographicTemporalCoverage(models.Model): beginning_temporal_coverage_date = models.DateField() ending_temporal_coverage_date = models.DateField() class Coverage(models