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