You'll probably find it much easier to use Django to serve those static
files, rather than trying to duplicate Django functionality in
modpython.
--Ned.
Mario Gonzalez ( mario__ ) wrote:
Hi, I'm writing a code for a media server and I want to serve static
files to authenticated users only
Hi, I'm writing a code for a media server and I want to serve static
files to authenticated users only. I check against Django's session
table (django_session) and that's ok (IMO) but in session_data there
isn't the userid and I need it for security reasons; So I sent you
what I'm doing so far and