pass context to Evaluate* so that we dont have to clone the expression
[mono.git] / mcs / class / System.XML / Mono.Xml.Xsl / ChangeLog
1 2003-09-13 Ben Maurer  <bmaurer@users.sourceforge.net>
2
3         * Compiler.cs, XslKey.cs, XslTransformProcessor.cs: dont clone
4         exprs on use, pass to nav.
5
6 2003-09-13 Ben Maurer  <bmaurer@users.sourceforge.net>
7
8         * Compiler.cs: pass satic context to Pattern ctor.
9
10 2003-08-30 Oleg Tkachenko <oleg@tkachenko.com>
11
12         * New files: 
13         GenericOutputter.cs - generic Outputter implementation,
14         Attribute.cs - represents outputted attribute,
15         Emitter.cs - abstract output emitter,
16         TextEmitter.cs - text emitter,
17         XmlWriterEmitter.cs - emitter to XmlWriter.
18         * Checking of duplicating attributes is done in GenericOutputter.
19         * Namespace outputting logic is implemented in GenericOutputter.
20         * Outputter.cs: Writing namespace declarations is delegated to 
21         derived classes (GenericOutputter).
22         * XslOutput.cs: standalone flag is now 3-value enum (NONE, YES, NO).                    
23          
24 2003-08-21 Ben Maurer  <bmaurer@users.sourceforge.net>
25
26         * XslTransformProcessor.cs: evaluate variables at beginning
27         when / is current node.
28
29 2003-08-21 Ben Maurer  <bmaurer@users.sourceforge.net>
30
31         * Compiler.cs, XsltCompiledContext.cs, XslTransformProcessorcs:
32         Fix up namespace handeling
33
34 2003-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
35
36         * Compiler.cs, XslStylesheet.cs, XsltCompiledContext.cs: Stubs for
37         format-number.
38         * XslDecimalFormat.cs: Stub for decimal-format.
39
40 2003-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
41
42         * TextOutputter.cs: Add option to ignore element content (Oleg).
43
44 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
45
46         * Compiler.cs: Really give null for blank avt's
47
48 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
49
50         * Compiler.cs: Fixed lre/lre04.
51
52 2003-08-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
53
54         * Compiler.cs : Fixed XslNameUtil.FromString() so that unprefixed name
55           won't have default namespace. See http://www.w3.org/TR/xslt#qname
56
57 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
58
59         * XslTransformProcessor.cs: add support for resolving documents.
60         * XsltCompiledContext: add support for document () function.
61
62 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
63
64         * Outputter.cs, TextOutputter.cs, XmlOutputter.cs: Implement some
65         of the abstract methods in Outputter, making them call other
66         functions with default values, remove impl's in derived classes.
67
68 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
69
70         * Outputter.cs: s/Close/Done
71         * TextOutputter.cs, XmlOutputter.cs: Flush, don't close the backing.
72         * XslTransformProcessor.cs: Flush output when popping, pop at end.
73
74 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
75
76         * Outputter.cs: Add support for namespaces.
77
78 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
79
80         * Compiler.cs, XslOutput.cs, XslStylesheet.cs,
81         XslTransformProcessor.cs: move output logic from XslStylesheet to
82         Compiler.
83
84 2003-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
85
86         * XslOutput.cs: add support for encoding.
87
88 2003-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
89
90         * *.cs: Support for xsl:output. (Oleg)
91
92 2003-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
93
94         * Compiler.cs: handle extension and excluded namespaces.
95
96 2003-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
97
98         * XsltCompiledContext.cs, Compiler.cs: copy the XPathNavigator
99         from the stylesheet for correct namespace resolution.
100
101 2003-08-14 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
102
103         * Compiler.cs : 1) Changed public .ctor() to receive Evidence argument 
104           introduced in .NET 1.1. 2) XmlResolver object is required for 'res'.
105
106 2003-08-07 Ben Maurer  <bmaurer@users.sourceforge.net>
107
108         * XslTransformProcessor.cs: Add a table to detect when an object
109         is busy.
110         * XslAttributeSet.cs: Use the above table. Dont throw nullref
111         exception when no use-attribute-sets are specified.
112
113 2003-08-04 Ben Maurer  <bmaurer@users.sourceforge.net>
114
115         * Compiler.cs: Add support for boolean attributes (yes/no).
116
117 2003-08-04 Ben Maurer  <bmaurer@users.sourceforge.net>
118
119         * Compiler.cs: Add method LocalNameOf, to get the local name of a
120         string.
121         * XslTransformProcessor.cs: Support for setting the XmlResolver.
122
123 2003-08-01 Ben Maurer  <bmaurer@users.sourceforge.net>
124
125         * Compiler.cs, XslAttributeSet.cs: Handle attribute set merging
126
127 2003-08-01 Ben Maurer  <bmaurer@users.sourceforge.net>
128
129         * XslTransformProcessor.cs: Add EvaluateNumber method.
130
131 2003-07-31 Ben Maurer  <bmaurer@users.sourceforge.net>
132
133         * XsltCompiledContext.cs: Implement more functions.
134
135 2003-07-31 Ben Maurer  <bmaurer@users.sourceforge.net>
136
137         * Compiler.cs: Add support for key, utility function to parse
138         QName's from the XsltContext. Store keys in the CompiledStyle, not
139         in the Stylesheet.
140         * XslKey.cs: Real implementation
141         * XslStylesheet.cs: Move the keys to CompiledStyle.
142         * XsltCompiledContext.cs: Implement the key function
143
144 2003-07-31 Ben Maurer  <bmaurer@users.sourceforge.net>
145
146         * XsltCompiledContext.cs: Hmm, maybe I should actually *enable*
147         the functions ;-). Also wrote current ().
148
149 2003-07-31 Ben Maurer  <bmaurer@users.sourceforge.net>
150
151         * XsltCompiledContext.cs: Remove excess conversion stuff. It is
152         done in XPath. Add stubs for XSLT functions.
153
154 2003-07-31 Ben Maurer  <bmaurer@users.sourceforge.net>
155
156         * Compiler.cs: To resolve a variable you now need to pass the
157         processor, so that it can be passed to IsEvaluated. A local will
158         only be resolved if it has already been evaluated.
159         * XsltCompiledContext.cs: Pass along the processor.
160         
161 2003-07-30 Ben Maurer  <bmaurer@users.sourceforge.net>
162
163         * Compiler.cs, XslTemplate.cs, XslTransformProcessor.cs: Store
164         variable values in the XslTransformProcessor.
165         * XsltCompiledContext.cs: If the scope is null, don't look there!
166         * Debug.cs: New method Assert
167
168 2003-07-30 Ben Maurer  <bmaurer@users.sourceforge.net>
169
170         * Compiler.cs, XsltCompiledContext.cs: Remove verbose messages
171         * XslTransformProcessor.cs: Use strongtyped evaluation, using new
172         internal methods in XPathNavigator. Remove verbose debugging messages.
173
174 2003-07-29 Ben Maurer  <bmaurer@users.sourceforge.net>
175
176         * Initial Checkin
177