> from the "Django with mod python" documentation.
Should have included the link:
http://www.djangoproject.com/documentation/modpython/#multiple-django-installations-on-the-same-apache
Bob
--~--~-~--~~~---~--~~
You received this message because you are subscribe
Wiley, I ran into the same problem. Even though I wasn't running two
Django installations in the same VirtualHost caching seemed to be
crossing my installations together. Adding the PythonInterpreter
directive to the virtual hosts did the trick for me - you won't need
the Location directive, just
You'll need to run the development server using the debug button from
within Eclipse, like you're probably already doing. Be sure to add
the --noreload parameter to your manage.py runserver. command.
Bob
--~--~-~--~~~---~--~~
You received this message because yo
> Basically, I want a different message for people that presumably have
> never seen the site, and those that just need to login again.
Could you use two cookies, one that doesn't expire that let's you know
that they've been to the site, and another that expires in 2 weeks?
Bob
--~--~
> I don't have any idea what is the
> testing all about.
James, you might want to take a look at Dive Into Python [1] as a
starting place. It has a couple good chapters on testing and test
driven development.
Bob
[1] http://diveintopython.org/unit_testing/index.html
--~--~-~--~~--
Thanks, guys. That gives me a good start on handling the problem!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscr
Hi All,
I have a situation where I would like a view to do a redirect to a URL
that is expecting POST (rather than GET) data. GET would be easy, but
how can I do a POST redirect? The URL I would be redirecting to is not
under my control, so I can't just change it to use GET data.
Thanks,
Bob
-
Hi Vincent,
Check out http://code.djangoproject.com/wiki/DosAndDontsForApplicationWriters.
Bob
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-user
This one is a bit more direct: http://code.djangoproject.com/wiki/SplitSettings
Bob
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegrou
This one is a bit more direct: http://code.djangoproject.com/wiki/SplitSettings
Bob
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegrou
Thanks for posting, Branton. Just curious, ASO service plan are you
using?
On Feb 15, 11:01 am, "sansmojo" <[EMAIL PROTECTED]> wrote:
> I thought this might be useful for those considering Django hosting
> alternatives.
>
> I've been working on a Dreamhost server for quite a while for a
> friend
Thanks Julio and Jeremy. When the users generate multiple reports I go
to a page that shows links to the reports and let them click the link
for the report they want to see. However, when there is only one HTML
report to view it would be one less click for the user if I could
bypass that page and
Hi All,
I have a situation on the Django site where a view needs to either
return a normal page, or it might need to open a new browser window to
display the response (a report). I know for the normal case I can just
return an HttpResponse, but is there anything that can cause the
response to be
13 matches
Mail list logo