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