Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2004-12-10 08:57:11 +0300
committerAtsushi Eno <atsushieno@gmail.com>2004-12-10 08:57:11 +0300
commit28b0c63b702137c6be7057e9cd088015d07c32a9 (patch)
treeba280d674644b2b8140a8fc8c5c7d3044ea052a5 /man
parent098b6a9c9d9d07f8c834a9b7b9926c4bd71f5826 (diff)
2004-12-10 Atsushi Enomoto <atsushi@ximian.com>
* scripts/Makefile.am, scripts/dtd2xsd : new. * man/Makefile.am, man/dtd2xsd.1 : new. svn path=/trunk/mono/; revision=37559
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am2
-rwxr-xr-xman/dtd2xsd.119
2 files changed, 20 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index 46de49aa319..851f5b09cf8 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1,6 +1,6 @@
man_MANS = mcs.1 mono.1 monostyle.1 mono-config.5 sqlsharp.1 oldmono.1 ilasm.1 \
cert2spc.1 cilc.1 genxs.1 wsdl.1 disco.1 soapsuds.1 makecert.1 \
chktrust.1 setreg.1 sn.1 secutil.1 signcode.1 certmgr.1 monop.1 xsd.1 gacutil.1 \
- mkbundle.1
+ mkbundle.1 dtd2xsd.1
EXTRA_DIST = $(man_MANS)
diff --git a/man/dtd2xsd.1 b/man/dtd2xsd.1
new file mode 100755
index 00000000000..3c08805f45b
--- /dev/null
+++ b/man/dtd2xsd.1
@@ -0,0 +1,19 @@
+.TH "dtd2xsd" 1
+.SH NAME
+dtd2xsd \- XML Schema generator from XML document that contains DTD.
+.SH SYNOPSIS
+.B dtd2xsd
+[options]
+.I instance-xmlfile
+.I optional-xsdfile
+.SH DESCRIPTION
+dtd2xsd generates an XML schema document from a document type definition (DTD).
+Right now you have to specify instance XML file that references or contains
+DTD. DTD itself is not readable with this tiny tool.
+.PP
+By default, it outputs resulting XML schema to console. If optional-xsdfile
+parameter is specified, it outputs the result to the specified file.
+.SH AUTHOR
+Atsushi Enomoto <atsushi@ximian.com>
+.SH SEE ALSO
+mono(1)