#5163: django.contrib.auth.views.login depends on sites framework
----------------------------+-----------------------------------------------
   Reporter:  [EMAIL PROTECTED]  |                Owner:  adrian      
     Status:  closed        |            Component:  Contrib apps
    Version:  SVN           |           Resolution:  worksforme  
   Keywords:                |                Stage:  Accepted    
  Has_patch:  0             |           Needs_docs:  0           
Needs_tests:  0             |   Needs_better_patch:  0           
----------------------------+-----------------------------------------------
Changes (by SmileyChris):

  * status:  new => closed
  * resolution:  => worksforme

Comment:

 My patch in #987 would fix getting the current domain name without needing
 `sites`.
 
 Apart from that, the login view *doesn't* have a hard dependency:
 {{{
 #!python
     if Site._meta.installed:
         current_site = Site.objects.get_current()
     else:
         current_site = RequestSite(request)
 }}}
 `current_site.name` will just equal `request.META['SERVER_NAME']` if
 `sites` isn't installed.

-- 
Ticket URL: <http://code.djangoproject.com/ticket/5163#comment:3>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to