2003-08-19 Atsushi Enomoto * Compiler.cs : Fixed XslNameUtil.FromString() so that unprefixed name won't have default namespace. See http://www.w3.org/TR/xslt#qname 2003-08-19 Ben Maurer * XslTransformProcessor.cs: add support for resolving documents. * XsltCompiledContext: add support for document () function. 2003-08-19 Ben Maurer * Outputter.cs, TextOutputter.cs, XmlOutputter.cs: Implement some of the abstract methods in Outputter, making them call other functions with default values, remove impl's in derived classes. 2003-08-19 Ben Maurer * Outputter.cs: s/Close/Done * TextOutputter.cs, XmlOutputter.cs: Flush, don't close the backing. * XslTransformProcessor.cs: Flush output when popping, pop at end. 2003-08-19 Ben Maurer * Outputter.cs: Add support for namespaces. 2003-08-19 Ben Maurer * Compiler.cs, XslOutput.cs, XslStylesheet.cs, XslTransformProcessor.cs: move output logic from XslStylesheet to Compiler. 2003-08-18 Ben Maurer * XslOutput.cs: add support for encoding. 2003-08-18 Ben Maurer * *.cs: Support for xsl:output. (Oleg) 2003-08-17 Ben Maurer * Compiler.cs: handle extension and excluded namespaces. 2003-08-17 Ben Maurer * XsltCompiledContext.cs, Compiler.cs: copy the XPathNavigator from the stylesheet for correct namespace resolution. 2003-08-14 Atsushi Enomoto * Compiler.cs : 1) Changed public .ctor() to receive Evidence argument introduced in .NET 1.1. 2) XmlResolver object is required for 'res'. 2003-08-07 Ben Maurer * XslTransformProcessor.cs: Add a table to detect when an object is busy. * XslAttributeSet.cs: Use the above table. Dont throw nullref exception when no use-attribute-sets are specified. 2003-08-04 Ben Maurer * Compiler.cs: Add support for boolean attributes (yes/no). 2003-08-04 Ben Maurer * Compiler.cs: Add method LocalNameOf, to get the local name of a string. * XslTransformProcessor.cs: Support for setting the XmlResolver. 2003-08-01 Ben Maurer * Compiler.cs, XslAttributeSet.cs: Handle attribute set merging 2003-08-01 Ben Maurer * XslTransformProcessor.cs: Add EvaluateNumber method. 2003-07-31 Ben Maurer * XsltCompiledContext.cs: Implement more functions. 2003-07-31 Ben Maurer * Compiler.cs: Add support for key, utility function to parse QName's from the XsltContext. Store keys in the CompiledStyle, not in the Stylesheet. * XslKey.cs: Real implementation * XslStylesheet.cs: Move the keys to CompiledStyle. * XsltCompiledContext.cs: Implement the key function 2003-07-31 Ben Maurer * XsltCompiledContext.cs: Hmm, maybe I should actually *enable* the functions ;-). Also wrote current (). 2003-07-31 Ben Maurer * XsltCompiledContext.cs: Remove excess conversion stuff. It is done in XPath. Add stubs for XSLT functions. 2003-07-31 Ben Maurer * Compiler.cs: To resolve a variable you now need to pass the processor, so that it can be passed to IsEvaluated. A local will only be resolved if it has already been evaluated. * XsltCompiledContext.cs: Pass along the processor. 2003-07-30 Ben Maurer * Compiler.cs, XslTemplate.cs, XslTransformProcessor.cs: Store variable values in the XslTransformProcessor. * XsltCompiledContext.cs: If the scope is null, don't look there! * Debug.cs: New method Assert 2003-07-30 Ben Maurer * Compiler.cs, XsltCompiledContext.cs: Remove verbose messages * XslTransformProcessor.cs: Use strongtyped evaluation, using new internal methods in XPathNavigator. Remove verbose debugging messages. 2003-07-29 Ben Maurer * Initial Checkin