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