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