Revision a034cc76
Von Moritz Bunkus vor fast 17 Jahren hinzugefügt
bin/mozilla/menuXML.pl | ||
---|---|---|
46 | 46 |
# end of main |
47 | 47 |
|
48 | 48 |
sub display { |
49 |
print "Content-type: text/xml; charset=iso-8859-1\n\n"; |
|
49 |
print $form->create_http_response('content_type' => 'text/xml', |
|
50 |
'charset' => 'iso-8859-1'); |
|
50 | 51 |
print qq|<?xml version="1.0" encoding="iso-8859-1"?>\n|; |
51 | 52 |
print qq|<?xml-stylesheet href="xslt/xulmenu.xsl" type="text/xsl"?>\n|; |
52 | 53 |
print qq|<!DOCTYPE doc [ |
Auch abrufbar als: Unified diff
Beim Erstellen des XUL/XML-Menüs die HTTP-Antwort von $form->create_http_response() erzeugen lassen, weil diese die nötigen Session-Cookies setzt.