Re: What do people think about the get_absolute_url proposal?

2009-12-07 Thread Rick Yazwinski
BTW, generally I like this idea... :) On Mon, Dec 7, 2009 at 10:23 PM, Rick Yazwinski wrote: > I think that this may be too simplified: >        protocol = getattr(settings, "PROTOCOL", "http") >        domain = Site.objects.get_current().domain >      

Re: What do people think about the get_absolute_url proposal?

2009-12-07 Thread Rick Yazwinski
I think that this may be too simplified: protocol = getattr(settings, "PROTOCOL", "http") domain = Site.objects.get_current().domain port = getattr(settings, "PORT", "") Many sites put load balancers and https hardward acceleration in front of their web interfaces. This wo