If one specifies an output-type, like this:
<transform path="Style/Robots.xsl" output-
type="text/plain" />
the output-type gets never sent to the client. This is
because MaverickContext.Halting returns false:
Transform\XsltTransform.cs:147
if (tctx.Halting) tctx.HttpContext.Response.ContentType
= parent.contentType;
I've changed the implementation of
MaverickContext.Halting the following way:
Flow\MaverickContext.cs:137
get { return this.transformCount ==
this.transformsArray.Length; }
However, I dont fully understand what this change
means.
Regards, Alex