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