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