Enable django.contrib.sites rather than using a custom lemoncurry-specific setting for the site name
This commit is contained in:
parent
7429d43280
commit
c354830653
5 changed files with 12 additions and 15 deletions
|
|
@ -19,7 +19,7 @@ def add_links(request, dest):
|
|||
def host_meta(request):
|
||||
h = XRD()
|
||||
h.attributes.append(Attribute('xmlns:hm', 'http://host-meta.net/ns/1.0'))
|
||||
h.elements.append(Element('hm:Host', request.META['HTTP_HOST']))
|
||||
h.elements.append(Element('hm:Host', request.site.domain))
|
||||
add_links(request, h.links)
|
||||
return h
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue