diff options
author | unammx <unammx> | 2001-07-04 23:54:22 +0000 |
---|---|---|
committer | unammx <unammx> | 2001-07-04 23:54:22 +0000 |
commit | 0bf93ac2df9e61b0b76d79c523432b3de8a6ef4f (patch) | |
tree | deee0ca18cafe2b87025dd548243d94eda73dbac /doc | |
parent | 7060a0114b6f161ba28a2c105d73720078a9fe15 (diff) |
2001-07-04 Arturo Espinosa Aldama <arturo@ximian.com>
* network.pl.in (xst_network_lookup_address): Modified
function so it can resolve multiple addresses in
paralel.
(xst_network_fork_address_lookup): Abstracted this
process.
* *-conf.in: Put require instructions inside a BEGIN
block, which make it easier to start debugging the backends.
2001-07-03 Arturo Espinosa Aldama <arturo@ximian.com>
* network.pl.in (xst_network_lookup_address): A nice
address lookup routine, with timeout (using fork).
(xst_network_lookup_address_block): For those who have
a block fetish.
2001-07-02 Arturo Espinosa Aldama <arturo@ximian.com>
* shares-conf.in (xml_print): imports and exports tags
only appear if there is info to display. This allows me
to reuse it for network scanning.
2001-07-02 Arturo Espinosa Aldama <arturo@ximian.com>
* shares.xsd: imports and exports tags are now optional.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/xsd/ChangeLog | 4 | ||||
-rw-r--r-- | doc/xsd/shares.xsd | 13 |
2 files changed, 14 insertions, 3 deletions
diff --git a/doc/xsd/ChangeLog b/doc/xsd/ChangeLog index dc3ce31..f30a56e 100644 --- a/doc/xsd/ChangeLog +++ b/doc/xsd/ChangeLog @@ -1,3 +1,7 @@ +2001-07-02 Arturo Espinosa Aldama <arturo@ximian.com> + + * shares.xsd: imports and exports tags are now optional. + Wed Jun 27 11:16:51 2001 Arturo Espinosa Aldama <arturo@ximian.com> * xst.xsd: Common types go here. diff --git a/doc/xsd/shares.xsd b/doc/xsd/shares.xsd index 1a56fcd..4d45e21 100644 --- a/doc/xsd/shares.xsd +++ b/doc/xsd/shares.xsd @@ -23,8 +23,8 @@ <complexType name="sharesType"> <sequence> - <element type="importsType" name="imports"/> - <element type="exportsType" name="exports"/> + <element type="importsType" name="imports" minOccurs="0"/> + <element type="exportsType" name="exports" minOccurs="0"/> </sequence> </complexType> @@ -53,7 +53,14 @@ </restriction> </complexType> - <complex + <complexType name="exportsType"> + <sequence> + <element type="exportType" name="export" minOccurs="0" maxOccurs="unbounded"/> + </sequence> + </complexType> + + <complexType name="exportType"> + </complexType> </schema>
\ No newline at end of file |