Re: XUL template

2011-05-21 Thread Alagu Madhu
Firefox 4 - Remote XUL support removed On May 21, 12:09 pm, Alagu Madhu wrote: > Hi, > > from django.shortcuts import render_to_response > > def login(request): >     return render_to_response('login.xul', mimetype="application/ > vnd.mozilla.xul+xml") > > and > > def login(request): >     resp

XUL template

2011-05-21 Thread Alagu Madhu
Hi, from django.shortcuts import render_to_response def login(request): return render_to_response('login.xul', mimetype="application/ vnd.mozilla.xul+xml") and def login(request): response = render_to_response('login.xul') response['Content-Type'] = "application/vnd.mozilla.xul+xml"