This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / tools / mono-xsd / ChangeLog
1 2004-05-07  Atsushi Enomoto <atsushi@ximian.com>
2
3         * NewMonoXSD.cs : Previous change broke default C# code generation.
4           XML schema inference output path fix.
5
6 2004-05-06  Atsushi Enomoto <atsushi@ximian.com>
7
8         * NewMonoXSD.cs : Added new /generator:typename(,assemblyfile) option
9           support that enables users to use any CodeDomProvider.
10           Added VB support (/language:VB).
11
12 2004-04-29  Lluis Sanchez Gual  <lluis@ximian.com>
13
14         * NewMonoXSD.cs: Import elements in the order they are declared in the schema.
15
16 2004-04-26  Atsushi Enomoto <atsushi@ximian.com>
17
18         * NewMonoXSD.cs : Enabled /d option (typed dataset generation support
19           using newly implemented TypedDataSetGenerator).
20
21 2004-04-22  Atsushi Enomoto <atsushi@ximian.com>
22
23         * NewMonoXSD.cs : Added support for (ADO.NET based) xsd inference.
24           Changed command line usage to require /c for serialization class
25           generation, or /d for typed dataset generation (not supported yet).
26           Modified usage message due to the changes above.
27         * Makefile : Added reference to System.Data.dll.
28
29 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
30
31         * NewMonoXSD.cs: Compile the loaded schemas if they are not already compiled.
32
33 2003-08-05  Lluis Sanchez Gual  <lluis@ximian.com>
34
35         * NewMonoXSD.cs: new implementation of monoxsd based on the
36           classes in System.Xml.Serialization.
37         * xsd.exe.sources: new sources file.
38         * Makefile: renamed executable to xsd.exe
39
40 2003-06-13  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
41
42         * XSD2Class.cs: several changes.
43
44 2003-06-04  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
45
46         * (temporarily) added XSD2Class.cs.
47
48 2003-03-25  Duncan Mak  <duncan@ximian.com>
49
50         * MonoXSD.cs: Added support for two command line arguments:
51
52            /output: specify the directory to put the generated schema.
53            /type:   specify a specific type in the assembly.
54
55 2003-03-24  Duncan Mak  <duncan@ximian.com>
56
57         * MonoXSD.cs: Add support for having enums as a field in the
58         class. I overlooked this bit last week.
59
60         Removed the special case for 'XmlNode' fields, turns out that
61         behave the same as all the other subclasses of 'XmlNode'.
62
63         * makefile: Make it build with debug enabled by default.
64
65 2003-03-22  Duncan Mak  <duncan@ximian.com>
66
67         * MonoXSD.cs: Moved things around, now it's not only
68         static methods (functions) anymore.
69
70         Attributes handling galore! We now handle:
71
72            - XmlElementAttribute
73            - XmlAttributeAtribute
74            - XmlArrayAttribute
75            - XmlArrayItemAttribute
76            - XmlTextAttribute
77            - XmlAnyElementAttribute
78            - XmlAnyAttributeAttribute
79
80 2003-03-20  Duncan Mak  <duncan@ximian.com>
81
82         * MonoXSD.cs: More refinements. We now support transforming
83         enumerations as well as arrays to their corresponding XML Schema
84         type. Read/Write properties will also be transformed (thanks to
85         reading KeithBa's book). XmlNode is properly handled, and XmlElement
86         & co. should also be transformed correctly.
87         
88         Next up: I should look into whether or not xsd.exe makes use of
89         XmlAttributes. If so, I'll have to support that.
90         
91         Other than that, this part of MonoXSD should be complete.
92
93 2003-03-17  Duncan Mak  <duncan@ximian.com>
94
95         * MonoXSD.cs: A simple implementation of MonoXSD. It current
96         supports creating an XML Schema based on a .NET assembly. The
97         handling of schema derivation is simplistic.