2004-11-24 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / Mono.Xml.Xsl / ChangeLog
1 2004-11-24  Atsushi Enomoto  <atsushi@ximian.com>
2
3         * XslStylesheet.cs : removed unused fields.
4         * XslOutput.cs : removed members for XSLT 2.0 (won't be implemented in
5           this class).
6
7 2004-11-08  Atsushi Enomoto  <atsushi@ximian.com>
8
9         * Compiler.cs, XslTransformProcessor.cs :
10           when creating XmlTextReader, reuse XmlNameTable.
11
12 2004-11-05  Atsushi Enomoto  <atsushi@ximian.com>
13
14         * Compiler.cs : Changes that reflects CompiledExpression changes.
15
16 2004-10-04  Atsushi Enomoto  <atsushi@ximian.com>
17
18         * HtmlEmitter.cs : TH tag is not regarded as HTML tag.
19           This fixes bug #67390.
20
21 Thu Sep 9 07:09:11 PDT 2004 Paolo Molaro <lupus@ximian.com>
22
23         * ScriptCompilerInfo.cs: avoid using a .cctor and fix precomp.
24
25 2004-06-18  Atsushi Enomoto  <atsushi@ximian.com>
26
27         * Debug.cs, HtmlEmitter.cs, MSXslScriptManager.cs,
28           ScriptCompilerInfo.cs, XslFunctions.cs, XslTemplate.cs
29           : Globalization. Removed unused code.
30
31 2004-06-14  Atsushi Enomoto  <atsushi@ximian.com>
32
33         * XslKey.cs : Key-value search in absolute path search was 
34           insufficient.
35
36 2004-06-14  Atsushi Enomoto  <atsushi@ximian.com>
37
38         * HtmlEmitter.cs : Correct URL escape implementation.
39
40 2004-06-06  Atsushi Enomoto  <atsushi@ximian.com>
41
42         * XslTransformProcessor.cs : On document() function, close the 
43           XmlTextReader opened from uri string.
44
45 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
46
47         * Compiler.cs,
48           GenericOutputter.cs : XmlNamespaceManager.LookupPrefix() allows only
49           atomized names. Fixed XPathNavigatorNsm.LookupNamespace() that 
50           should override another overload.
51
52 2004-05-25  Lluis Sanchez Gual  <lluis@ximian.com>
53
54         * ScriptCompilerInfo.cs: the name used to load the Microsoft.JScript
55           assembly should not include the .dll extension.
56
57 2004-05-20  Atsushi Enomoto  <atsushi@ximian.com>
58
59         * Compiler.cs :
60           - CompilePattern() now throws XsltCompileException for invalid
61             pattern, and add error location support.
62           - In Compiler.TryGetFunction(), compare namespace URI, not prefix.
63             Now it returns MSXslNodeSet instance (for msxsl:node-set).
64         * Debug.cs : don't throw System.Exception.
65         * XslFunctions.cs : Added MSXslNodeSet class.
66         * XslTemplate.cs : reflected CompilePattern() change.
67         * XslTransformProcessor.cs : don't throw System.Exception.
68         * XsltCompiledContext.cs : don't throw System.Exception.
69
70 2004-05-12  Atsushi Enomoto  <atsushi@ximian.com>
71
72         * XmlOutputter.cs,
73           XslOutput.cs,
74           XslStylesheet.cs : made classes/enums internal.
75
76 2004-04-24  Atsushi Enomoto  <atsushi@ximian.com>
77
78         * Attribute.cs, Compiler.cs, Debug.cs, Emitter.cs, 
79           MSXslScriptCompiler.cs, Outputter.cs, XslAttributeSet.cs,
80           XslDecimalFormat.cs, XslKey.cs, XslStylesheet.cs, XslTemplate.cs,
81           XslTransformProcessor.cs : Make extra classes internal.
82
83         * XslKey.cs : It should require sorting.
84         * Debug.cs : Just avoid debug output. Only who want to output should
85           turn it on.
86
87 2004-04-24  Atsushi Enomoto  <atsushi@ximian.com>
88
89         * GenericOutputter.cs : Culture-independency fix. 
90           Replaced StringCollection to ArrayList.
91         * XslOutput.cs : Culture-independency fix.
92
93 2004-04-12  Atsushi Enomoto  <atsushi@ximian.com>
94
95         * Compiler.cs : When BaseURI is an empty string, it should not try to
96           create Uri instance. This will fix bug #56832, but not sure.
97         * XslFunctions.cs : for XsltDocument.Resolve(), did the same.
98         * HtmlEmitter.cs : Environment.NewLine was incorrectly used (it 
99           should be the TextReader's NewLine).
100         * MSXslScriptManager.cs : Should raise an error when the prefix which
101           was specified by "implements-prefix" was not found.
102
103 2004-03-27  Atsushi Enomoto  <atsushi@ximian.com>
104
105         * ScriptCompilerInfo.cs : #line directive now holds dummy filename
106           when BaseURI for msxsl:script node is not available. This fixes
107           bug #56070.
108           Don't output line number in the error message, when it is 0.
109
110 2004-03-27  Atsushi Enomoto  <atsushi@ximian.com>
111
112         * Compiler.cs : Supply NameTable to base ctor() of XPathNavigatorNsm.
113
114 2004-03-22 Atsushi Enomoto <atsushi@ximian.com>
115
116         * Compiler.cs, 
117           XslAttributeSet.cs,
118           XslFunctions,
119           XslTransformProcessor.cs :
120           Throw specific types of exceptions instead of Exception.
121         * XslFunctions.cs, XsltCompiledContext.cs :
122           added node argument for XsltExtensionFunction ctor() etc.
123
124 2004-03-22 Atsushi Enomoto <atsushi@ximian.com>
125
126         * ScriptCompilerInfo.cs : Modified compilation processing. Now it uses
127           CodeDom. Compilation error should be caught. This fixes bug #55875.
128
129 2004-03-13 Atsushi Enomoto <atsushi@ximian.com>
130
131         * XslStylesheet.cs : "version" attribute is also required for embedded
132           stylesheet.
133
134 2004-03-13 Atsushi Enomoto <atsushi@ximian.com>
135
136         * Compiler.cs,
137           XslStylesheet.cs : Reject xsl element other than stylesheet and
138           transform. Check mandatory version attribute (only for existence).
139
140 2004-03-07 Atsushi Enomoto <atsushi@ximian.com>
141
142         * MSXslScriptManager.cs : if extension namespace was not found in
143           the script, just return null. Patch by Joshua Tauberer.
144
145 2004-03-01 Atsushi Enomoto <atsushi@ximian.com>
146
147         * XslLiteralElement.cs : quick fix for ArgumentNullException which
148           was because of the combination of non-namespaced instances and
149           exclude-result-prefixes.
150
151 2004-02-17 Atsushi Enomoto <atsushi@ximian.com>
152
153         * XsltCompiledContext.cs : Extracted XslFunctions and changed namespace
154           from Mono.Xml.Xsl.Functions to Mono.Xml.Xsl.
155         * XslFunctions.cs : hereby Added.
156         * Compiler.cs : Removed deleted usingdecl.
157
158 2004-02-16 Atsushi Enomoto <atsushi@ximian.com>
159
160         * XslTransformProcessor.cs : Bugfix. Stored keys should be cleared.
161         * XslKey.cs : Added ExprKeyContainer expression type, which is 
162           designed to be matched at any level.
163         * Compiler.cs : support for ExprKeyContainer.
164
165 2004-02-16 Atsushi Enomoto <atsushi@ximian.com>
166
167         * XslKey.cs : Now it collects key and matching nodes at the first
168           evaluation time. After that, we can just get them from the table.
169         * Compiler.cs : Added KeyCompilationMode. It is used to prevent
170           prohibited key() usage in "match" and "use" attributes in xsl:key.
171           Modified accessibility of some classes.
172         * GenericOutputter.cs,
173           HtmlEmitter.cs,
174           TextEmitter.cs,
175           TextOutputter.cs,
176           XmlWriterEmitter.cs : made classes internal.
177         * XslOutput.cs : support line info for exception.
178         * XsltCompiledContext.cs : implemented CompareDocument() - so easily.
179
180 2004-02-13 Atsushi Enomoto <atsushi@ximian.com>
181
182         * XsltCompiledContext.cs : fixed the length of context info array.
183
184 2004-02-10 Atsushi Enomoto <atsushi@ximian.com>
185
186         * XsltCompiledContext.cs :
187           replaced EnumeratorIterator with ListIterator
188
189 2004-02-08 Atsushi Enomoto <atsushi@ximian.com>
190
191         * GenericOutputter.cs,
192           XslAttributeSet.cs,
193           XslStylesheet.cs,
194           XslTemplate.cs : tiny foreach elimination.
195
196 2004-01-16 Atsushi Enomoto <atsushi@ximian.com>
197
198         * XslOutput.cs : Reverted. default encoding should be utf-8.
199
200 2004-01-14  Jackson Harper <jackson@ximian.com>
201
202         * GenericOutputter.cs: Add constructors that do not take an
203         encoding to fix build.
204         
205 2004-01-14 Atsushi Enomoto <atsushi@ximian.com>
206
207         * XmlWriterEmitter.cs : It now uses WriteProcessingInstruction() to
208           write XML declaration. It means that output supports non document
209           entity. This fixes bug #52729.
210         * Emitter.cs, TextEmitter.cs, HtmlEmitter.cs, XmlWriterEmitter.cs :
211           modified WriteStartDocument() signature to receive Encoding.
212         * GenericOutputter.cs : 
213           - Added .ctor() which receives Encoding. (It is used for TextWriter 
214             output to get actual encoding.)
215           - Added .ctor() to take an boolean argument which indicates it is
216             variable content or not. (When variable, it does not call 
217             WriteStartDocument().)
218         * XslKey.cs,
219           XsltCompiledContext.cs : comment out WriteLine().
220         * XslOutput.cs : set default encoding utf-16.
221
222 2004-01-08  Nick Drochak <ndrochak@ieee.org>
223
224         * XsltCompiledContext.cs: Remove unused variable and unreachable code.
225
226 2003-12-26 Atsushi Enomoto <atsushi@ximian.com>
227
228         * XslDecimalFormat.cs : implemented format-number() other than number
229           grouping.
230         * XsltCompiledContext.cs : Modified XsltFormatNumber.Evaluate() to
231           catch ArgumentException which will be thrown by formatting process.
232
233 2003-12-23 Atsushi Enomoto <atsushi@ximian.com>
234
235         * ScriptCompilerInfo.cs : Use "mjs" as JScript compiler.
236
237 2003-12-20 Ben Maurer  <bmaurer@users.sourceforge.net>
238
239         * XsltCompiledContext.cs: Remove workaround now that monodoc
240         is fixed.
241
242 2003-12-20 Atsushi Enomoto <atsushi@ximian.com>
243
244         * XslStylesheet.cs : considering xsl:imports, we can't handle namespace
245           aliases at compilation time, so evaluate at the first run-time.
246
247 2003-12-18 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
248
249         * GenericOutputter.cs : support for runtime-determined output type.
250         * HtmlEmitter.cs : Fixed invalid doctype output.
251           Fixed incorrect double attribute output on non-HTML elements.
252           Improved indentation. Fixed "selected" attribute output.
253           Don't have to convert "'" to "&apos;".
254         * XmlWriterEmitter.cs : Now don't output incorrect doctype.
255           Escapes CDATA section text "]]>" to "...]]]]><![CDATA[>..." .
256         * XslStylesheet.cs, XsltCompiledContext.cs :
257           space resolution consideration for import and wildcard.
258
259 2003-12-18 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
260
261         * Compiler.cs, XslTransformProcessor.cs :
262           Use XmlValidatingReader to support id() for external stylesheets.
263         * XslKey.cs, XsltCompiledContext.cs :
264           to evaluate MatchPattern and UsePattern, SetContext() is required.
265         * XslTemplate.cs : Forgot to commit. Change is below(12/16).
266
267 2003-12-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
268
269         * Emitter.cs, HtmlEmitter.cs, XmlWriterEmitter.cs :
270           Added WriteWhitespace().
271         * GenericOutputter.cs, XslTemplate.cs : Call above.
272         * XslTransformProcessor.cs : Changed NodesetStack to ArrayList since
273           CurrentNode in for-each context have to be pulled at evaluation.
274
275 2003-12-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
276
277         * XsltCompiledContext.cs : Temporarily allow incorrectly resolved
278           function for bugzilla #52144. It should be reverted soon.
279
280 2003-12-12 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
281
282         * ScriptCompilerInfo.cs : SecurityManager.ResolvePolicy() was not 
283           implemented yet.
284         * MSMslScriptManager.cs : modified generated assembly class to be unique
285           through running AppDomain.
286         * XsltCompiledContext.cs : XsltExtensionFunction.Invoke() has to cast
287           arguments to actual argument types. Bugzilla #51450 should be fixed.
288
289 2003-12-12 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
290
291         * HtmlEmitter.cs : Fixed incorrect character entity output.
292
293 2003-12-11 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
294
295         * Added ScriptCompilerInfo.cs.
296         * MSXslScriptManager.cs : Fixed *true* author's name.
297           Implemented basic msxsl:script support.
298         * Compiler.cs : Added Evidence member.
299
300 2003-12-07 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
301
302         * Compiler.cs : Check stylesheet recursion. Check decimal-format name.
303         * GenericOutputter.cs, Outputter.cs, TextOutputter.cs :
304           Added WriteWhitespace() to assure not writing whitespaces as cdata.
305         * XslAttributeSet.cs : Error check if attribute-set contains other than
306           xsl:attribute.  Error should be XsltException.
307         * XslDecimalFormat.cs : Complete equality check.  Allow just one
308           character value for some attributes.
309         * XslStylesheet.cs : Made whitespace control setting overridable.
310           Added Version property (for the future compatibility mode).
311           Check unrecongnized top level element.
312         * XslTemplate.cs : Check priority as a number.
313         * XslTransformProcessor.cs : PushCDataState is now PushElementState, 
314           for xsl:preserve-space and xsl:strip-space support.
315         * XsltCompiledContext.cs : Implemented PreserveWhitespace() (far from
316           incomplete), PushScope and Pop
317
318 2003-12-03 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
319
320         * HtmlEmitter.cs : CloseStartElement is needed almost everywhere.
321
322 2003-12-02 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
323
324         * Compiler.cs : In FromListString(), it should use default ns,
325           not unqualified one.
326         * GenericOutputter.cs : CheckState() - attribute's Prefix should take
327           precedence.  Doctype should be written even if SYSTEM id is absent.
328           Fixed possible multiple xmlns output.
329         * HtmlEmitter.cs :
330           - Encoding output using META element.
331           - Doctype name is fixed (html).
332           - Double quotation on PUBLIC and SYSTEM missing.
333           - Fixed incorrect tag name check for IMG.
334           - '>' should not be escaped.
335         * XmlWriterEmitter.cs :
336           Added newline before doctype.  In WriteComment(), "--" and tail
337           '-' are not allowed (it escapes, while XmlWriter simply rejects).
338         * XslTransformProcessor.cs : cdata-section-elements should enclose
339           direct child tests only.   Added PreserveWhitespace() (incomplete).
340         * XsltCompiledContext.cs : Implemented PreserveWhitespace() (incomplete).
341
342 2003-11-28 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
343
344         * IdPattern.cs : This should work against multiple ids.
345
346 2003-11-27 Ben Maurer  <bmaurer@users.sourceforge.net>
347
348         * Compiler.cs
349         * MSXslScriptManager.cs
350         * XslStylesheet.cs
351         * XslTransformProcessor.cs
352         * XsltCompiledContext.cs: Some work on msxsl script.
353
354 2003-11-24 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
355
356         (in general: cdata-section-elements support, correct document() 
357         base uri handling, and so on)
358         * Compiler.cs : Use XmlSpace.Preserve to parse included stylesheet.
359           And move to document element.  Added XslNameUtil.FromListString().
360         * Emitter.cs, HtmlEmitter.cs, TextEmitter.cs XmlWriterEmitter.cs :
361           Added WriteCDataSection().
362         * Outputter.cs, GenericOutputter.cs, TextOutputter.cs :
363           Added InsideCDataSection.
364         * GenericOutputter.cs :
365           In .ctor(), WriteState should be succeeded from output XmlWriter.
366           WriteNamespaceDecl() now drops declaration identical to existing one.
367           Removed obsolete htmlEmulation.
368         * XslOutput.cs : Added CDataSectionElements support.
369         * XslStylesheet.cs : Added BaseUri, StyleDocument and PrefixInEffect().
370         * XslTransformProcessor.cs :
371           Added Output and CurrentOutputUri. TryStylesheetNamespaceOutput()
372           now considers xsl:exclude-element-prefixes on literal element.
373           Added PushCDataState() and PopCDataState().
374         * XsltCompiledContext.cs : When base uri of document() target is empty,
375           then it should use stylesheet's BaseURI, not that of current document.
376
377 2003-11-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
378
379         * Compiler.cs : Modified decimal-format comparison code.
380         * Outputter.cs,
381           TextOutputter.cs,
382           GenericOutputter.cs : Added WriteState. Now WriteStartDocument() will
383           be called only when required. 
384         * HtmlEmitter.cs : Improved indentation stuff.
385         * XslDecimalFormat.cs : Added incomplete implementation of 
386           CheckSameAs() and FormatNumber().
387         * XslStylesheet.cs,
388           XslTransformProcessor.cs : Changed XslStylesheet.StylesheetNamespaces
389           from StringDictionary to ArrayList of QName (to keep order).
390
391 2003-11-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
392
393         * XsltCompiledContext.cs : XsltGenerateId.Evaluate() should consider
394           node type (i.e. attribute and namespace). Removed extraneous Clone().
395           Fixed XsltKey.Evaluate() to use MoveToNextAttribute to iterate attrs.
396
397 2003-11-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
398
399         * Compiler.cs : Changed Keys from ArrayList to Hashtable.
400           XslStylesheet.cs : Added Keys support here.
401         * XslTransformProcessor.cs : Should call SetContext() to expressions
402           before evaluating current nodes.
403         * XsltCompiledContext.cs : 1) XsltDocument.GetDocument() should use
404           xsltContext. 2) XsltKey exposes KeyName, Field and NamespaceManager
405           for KeyPattern. It now uses CompiledStyle.FindKeys().
406
407 2003-11-13 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
408
409         * GenericOutputter.cs : Added HTML output support. Closer xmlns handling
410           to Xalan tests and MS.NET implementation (only for test convenience).
411         * XslOutput.cs : Indent holds string rathen than bool. Its default value
412           varies in the context. When method="html", then default is "yes".
413         * XslTransformProcessor.cs : Extension element prefixes should not 
414           be written as stylesheet namespaces.
415         * XsltCompiledContext.cs : Return type of generate-id() is string.
416           Implemented unparsed-entity-uri().
417
418 2003-11-02 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
419
420         * Compiler.cs : More complete attribute set gathering.
421           GetNamespacesToCopy() should only return Local namespaces.
422         * GenericOutputter.cs : Added support for indentation.
423           Added easy hack for html output.
424           More correct Prefix handling (considers already defined ones).
425           Namespace emmission is moved to CheckState().
426         * Emitter.cs, XmlWriterEmitter.cs, GenericOutputter.cs, Outputter.cs :
427           Added WriteFullEndElement(). (i.e. IsEmptyElement support)
428         * GenericOutputter.cs, Outputter.cs :
429           Added CanProcessAttributes property for 
430           use-attribute-sets of xsl:copy.
431         * XslStylesheet.cs : Added support for stylesheet-defined xmlns decls.
432           Added support for exclude-result-prefixes.
433         * XslTransformProcessor.cs : Added support for stylesheet-defined xmlns.
434
435 2003-10-30 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
436
437         * Compiler.cs : It is not important, but attribute order became closer
438           to MS.NET and Xalan (assuming from OASIS tests).
439
440 2003-10-30 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
441
442         * GenericOutputter.cs : Attribute wasn't overwritten its properties
443           because Attribute is struct it was let to another local variable.
444
445 2003-09-28 Ben Maurer  <bmaurer@users.sourceforge.net>
446
447         * GenericOutputter.cs: make html output a warning, because doing
448         xml will be right most of the time.
449
450 2003-09-28 Ben Maurer  <bmaurer@users.sourceforge.net>
451
452         * Debug.cs: comment out {Enter, Exit}Navigator. Haven't had bugs
453         here for a long time and it hurts thread safty and memory
454         allocation.
455
456 2003-09-21 Ben Maurer  <bmaurer@users.sourceforge.net>
457
458         * Compiler.cs: save the parser (will reduce memory allocation when
459         Jackson's jay patch is committed).
460
461 2003-09-20 Ben Maurer  <bmaurer@users.sourceforge.net>
462
463         * Attribute.cs: Change to struct. Remove QName class.
464         * GenericOutputter.cs: use an Attribute [] rather than an
465         ArrayList. Allows us not to allocate Attributes, which is great
466         for speed. Roll our own allocation.
467
468 2003-09-20 Ben Maurer  <bmaurer@users.sourceforge.net>
469
470         * Compiler.cs: add GetNsm to main class as well.
471
472 2003-09-20 Ben Maurer  <bmaurer@users.sourceforge.net>
473
474         * Compiler.cs (ParseAvtAttribute): Get the attribue using our
475         internal version so we get null if the attr doesnt exist.
476
477 2003-09-17 Ben Maurer  <bmaurer@users.sourceforge.net>
478
479         * Compiler.cs (IStaticXsltContext.TryGetVariable): handle the case
480         where curVarScope == null
481
482 2003-09-16 Ben Maurer  <bmaurer@users.sourceforge.net>
483
484         * Compiler.cs: 
485         - Better handling of empty attributes (vs not being specified)
486         - Bug in handling #default
487         
488 2003-09-15 Ben Maurer  <bmaurer@users.sourceforge.net>
489
490         * Compiler.cs: Off by one when parsing localname of QName 
491         * XslAttributeSet.cs: must evaluate used attr sets *BEFORE*
492         children (so that they get overriden)
493
494 2003-09-15 Ben Maurer  <bmaurer@users.sourceforge.net>
495
496         * GenericOutputter.cs: Output attributes in order recieved; not
497         required by spec, but useful for running test cases.
498
499 2003-09-14 Oleg Tkachenko <oleg@tkachenko.com>
500
501         * GenericOutputter.cs - fix bug with outputting state.
502         * Emitter.cs, TextEmitter.cs, XmlWriterEmitter.cs, Outputter.cs, 
503         * TextOutputter.cs - get rid of WriteStartAttribute/WriteEndAttribute.  
504
505 2003-09-13 Ben Maurer  <bmaurer@users.sourceforge.net>
506
507         * Compiler.cs, XslKey.cs, XslTransformProcessor.cs: dont clone
508         exprs on use, pass to nav.
509
510 2003-09-13 Ben Maurer  <bmaurer@users.sourceforge.net>
511
512         * Compiler.cs: pass satic context to Pattern ctor.
513
514 2003-08-30 Oleg Tkachenko <oleg@tkachenko.com>
515
516         * New files: 
517         GenericOutputter.cs - generic Outputter implementation,
518         Attribute.cs - represents outputted attribute,
519         Emitter.cs - abstract output emitter,
520         TextEmitter.cs - text emitter,
521         XmlWriterEmitter.cs - emitter to XmlWriter.
522         * Checking of duplicating attributes is done in GenericOutputter.
523         * Namespace outputting logic is implemented in GenericOutputter.
524         * Outputter.cs: Writing namespace declarations is delegated to 
525         derived classes (GenericOutputter).
526         * XslOutput.cs: standalone flag is now 3-value enum (NONE, YES, NO).                    
527          
528 2003-08-21 Ben Maurer  <bmaurer@users.sourceforge.net>
529
530         * XslTransformProcessor.cs: evaluate variables at beginning
531         when / is current node.
532
533 2003-08-21 Ben Maurer  <bmaurer@users.sourceforge.net>
534
535         * Compiler.cs, XsltCompiledContext.cs, XslTransformProcessorcs:
536         Fix up namespace handeling
537
538 2003-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
539
540         * Compiler.cs, XslStylesheet.cs, XsltCompiledContext.cs: Stubs for
541         format-number.
542         * XslDecimalFormat.cs: Stub for decimal-format.
543
544 2003-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
545
546         * TextOutputter.cs: Add option to ignore element content (Oleg).
547
548 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
549
550         * Compiler.cs: Really give null for blank avt's
551
552 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
553
554         * Compiler.cs: Fixed lre/lre04.
555
556 2003-08-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
557
558         * Compiler.cs : Fixed XslNameUtil.FromString() so that unprefixed name
559           won't have default namespace. See http://www.w3.org/TR/xslt#qname
560
561 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
562
563         * XslTransformProcessor.cs: add support for resolving documents.
564         * XsltCompiledContext: add support for document () function.
565
566 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
567
568         * Outputter.cs, TextOutputter.cs, XmlOutputter.cs: Implement some
569         of the abstract methods in Outputter, making them call other
570         functions with default values, remove impl's in derived classes.
571
572 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
573
574         * Outputter.cs: s/Close/Done
575         * TextOutputter.cs, XmlOutputter.cs: Flush, don't close the backing.
576         * XslTransformProcessor.cs: Flush output when popping, pop at end.
577
578 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
579
580         * Outputter.cs: Add support for namespaces.
581
582 2003-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
583
584         * Compiler.cs, XslOutput.cs, XslStylesheet.cs,
585         XslTransformProcessor.cs: move output logic from XslStylesheet to
586         Compiler.
587
588 2003-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
589
590         * XslOutput.cs: add support for encoding.
591
592 2003-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
593
594         * *.cs: Support for xsl:output. (Oleg)
595
596 2003-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
597
598         * Compiler.cs: handle extension and excluded namespaces.
599
600 2003-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
601
602         * XsltCompiledContext.cs, Compiler.cs: copy the XPathNavigator
603         from the stylesheet for correct namespace resolution.
604
605 2003-08-14 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
606
607         * Compiler.cs : 1) Changed public .ctor() to receive Evidence argument 
608           introduced in .NET 1.1. 2) XmlResolver object is required for 'res'.
609
610 2003-08-07 Ben Maurer  <bmaurer@users.sourceforge.net>
611
612         * XslTransformProcessor.cs: Add a table to detect when an object
613         is busy.
614         * XslAttributeSet.cs: Use the above table. Dont throw nullref
615         exception when no use-attribute-sets are specified.
616
617 2003-08-04 Ben Maurer  <bmaurer@users.sourceforge.net>
618
619         * Compiler.cs: Add support for boolean attributes (yes/no).
620
621 2003-08-04 Ben Maurer  <bmaurer@users.sourceforge.net>
622
623         * Compiler.cs: Add method LocalNameOf, to get the local name of a
624         string.
625         * XslTransformProcessor.cs: Support for setting the XmlResolver.
626
627 2003-08-01 Ben Maurer  <bmaurer@users.sourceforge.net>
628
629         * Compiler.cs, XslAttributeSet.cs: Handle attribute set merging
630
631 2003-08-01 Ben Maurer  <bmaurer@users.sourceforge.net>
632
633         * XslTransformProcessor.cs: Add EvaluateNumber method.
634
635 2003-07-31 Ben Maurer  <bmaurer@users.sourceforge.net>
636
637         * XsltCompiledContext.cs: Implement more functions.
638
639 2003-07-31 Ben Maurer  <bmaurer@users.sourceforge.net>
640
641         * Compiler.cs: Add support for key, utility function to parse
642         QName's from the XsltContext. Store keys in the CompiledStyle, not
643         in the Stylesheet.
644         * XslKey.cs: Real implementation
645         * XslStylesheet.cs: Move the keys to CompiledStyle.
646         * XsltCompiledContext.cs: Implement the key function
647
648 2003-07-31 Ben Maurer  <bmaurer@users.sourceforge.net>
649
650         * XsltCompiledContext.cs: Hmm, maybe I should actually *enable*
651         the functions ;-). Also wrote current ().
652
653 2003-07-31 Ben Maurer  <bmaurer@users.sourceforge.net>
654
655         * XsltCompiledContext.cs: Remove excess conversion stuff. It is
656         done in XPath. Add stubs for XSLT functions.
657
658 2003-07-31 Ben Maurer  <bmaurer@users.sourceforge.net>
659
660         * Compiler.cs: To resolve a variable you now need to pass the
661         processor, so that it can be passed to IsEvaluated. A local will
662         only be resolved if it has already been evaluated.
663         * XsltCompiledContext.cs: Pass along the processor.
664         
665 2003-07-30 Ben Maurer  <bmaurer@users.sourceforge.net>
666
667         * Compiler.cs, XslTemplate.cs, XslTransformProcessor.cs: Store
668         variable values in the XslTransformProcessor.
669         * XsltCompiledContext.cs: If the scope is null, don't look there!
670         * Debug.cs: New method Assert
671
672 2003-07-30 Ben Maurer  <bmaurer@users.sourceforge.net>
673
674         * Compiler.cs, XsltCompiledContext.cs: Remove verbose messages
675         * XslTransformProcessor.cs: Use strongtyped evaluation, using new
676         internal methods in XPathNavigator. Remove verbose debugging messages.
677
678 2003-07-29 Ben Maurer  <bmaurer@users.sourceforge.net>
679
680         * Initial Checkin
681