On Oct 1, 10:25 pm, bruno desthuilliers <[EMAIL PROTECTED]> wrote: > I think this has to do with '/cms/' being defined in both your domain > name and your apache conf's location directive. Since you tell Django > the django.root is /cms/, it must add it to build an effectively > *absolute* url - that is, one starting at the root of your domain. And > since you have this /cms/ in your sites.domain (which fwiw shouldn't > be the case - not a valid *domain* name), you end up having this url > path portion twice. IOW, you shouldn't have /cms/ in your > sites.domain.
I was following the example on this page http://docs.djangoproject.com/en/dev/howto/deployment/modpython/ where it explains why it is necessary to put the Django root folder name both in the Location directive and in the dango.root, giving this example: <Location "/mysite/"> SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE mysite.settings PythonOption django.root /mysite PythonDebug On </Location> > While we're at it : what's your use case for adding the domain name to > the url ? I'm doing this in a custom tag to produce a sidebar menu of recent posts. Here's the code: from django.template import Library, Node from django.contrib.sites.models import Site from django import template from cms.blog.models import Entry, Category register = Library() def entries_index(): pages = Entry.objects.all()[:5] entries_menu = '<ul>' for page in pages: entries_menu += '<li>'+'<a href="http://'+Site.objects.get_current().domain +page.get_absolute_url()+'" title="'+page.title+'">'+page.title+'</a></ li>\n' entries_menu += '</ul>' return entries_menu register.simple_tag(entries_index) The custom tag is working fine apart from this (and I can work around the problem by hard-coding the domain name - I'm just trying to educate myself by understanding what is happening here). --~--~---------~--~----~------------~-------~--~----~ 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 unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---