Stupid KMail - looks like ctrl-enter is a shortcut to "send mail" (and its all
a small translation from "shift-;")
Anyway:
...
How do I disable the headers and footers and navbar with XSLT? pre-XSLT the
filemanager did this:
$GLOBALS['phpgw_info']['flags']['noheader'] = True;
$GLOBALS['phpgw_info']['flags']['nonavbar'] = True;
$GLOBALS['phpgw_info']['flags']['noappheader'] = True;
$GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
Then when it wanted to output html it did this:
unset($GLOBALS['phpgw_info']['flags']['noheader']);
unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
unset($GLOBALS['phpgw_info']['flags']['noappheader']);
unset($GLOBALS['phpgw_info']['flags']['noappfooter']);
But it could still spit out raw binary data (just by echoing it) when the user
tried to "view".
So how can I disable the XSLT templates so that I can do this : ie output
binary data? The XSLT template system doesn't have much documentation, not
that I'm volunteering to write any :)