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