Re: apache2 + mod_python vhosts conflict

2007-10-16 Thread Bob T.
> 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

Re: apache2 + mod_python vhosts conflict

2007-10-16 Thread Bob T.
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

Re: Django 1 debugging in pydev with breakpoints

2007-08-29 Thread Bob T.
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

Re: no cookie vs. expired cookie

2007-08-13 Thread Bob T.
> 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

Re: learning django testing

2007-07-25 Thread Bob T.
> 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

Re: Is it possible to redirect with POST data?

2007-05-04 Thread Bob T.
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

Is it possible to redirect with POST data?

2007-05-03 Thread Bob T.
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

Re: Deployment with Subversion

2007-03-14 Thread Bob T.
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

Re: Deployment with Subversion

2007-03-14 Thread Bob T.
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

Re: Deployment with Subversion

2007-03-14 Thread Bob T.
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

Re: Comparison between Dreamhost and ASmallOrange

2007-02-15 Thread Bob T.
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 >

Re: Can a view open a page in a new browser window?

2007-01-12 Thread Bob T.
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

Can a view open a page in a new browser window?

2007-01-11 Thread Bob T.
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