From 9d6e6241954d001a5b49e4ea9a48c10e2a792958 Mon Sep 17 00:00:00 2001 From: "Chris St. Pierre" Date: Mon, 10 Dec 2012 17:19:54 -0600 Subject: generate XML schema docs from XML schemas themselves --- schemas/bundle.xsd | 68 +- schemas/clients.xsd | 161 +- schemas/deps.xsd | 21 +- schemas/fileprobes.xsd | 12 +- schemas/genshi.xsd | 290 +- schemas/info.xsd | 127 +- schemas/metadata.xsd | 165 +- schemas/nagiosgen.xsd | 12 +- schemas/packages.xsd | 219 +- schemas/pkglist.xsd | 86 +- schemas/pkgtype.xsd | 316 +- schemas/rules.xsd | 114 +- schemas/selinux.xsd | 302 ++ schemas/servicetype.xsd | 102 +- schemas/sslca-cert.xsd | 167 +- schemas/sslca-key.xsd | 76 +- schemas/types.xsd | 420 ++- schemas/xs3p.xsl | 8503 ----------------------------------------------- 18 files changed, 2304 insertions(+), 8857 deletions(-) create mode 100644 schemas/selinux.xsd delete mode 100644 schemas/xs3p.xsl (limited to 'schemas') diff --git a/schemas/bundle.xsd b/schemas/bundle.xsd index 1fcf82c27..0fe61e838 100644 --- a/schemas/bundle.xsd +++ b/schemas/bundle.xsd @@ -139,7 +139,7 @@ - + Elements within Group tags only apply to clients that are @@ -148,7 +148,7 @@ - + Elements within Client tags only apply to the named client @@ -167,21 +167,34 @@ - + + + + A **BundlerGroupType** is a tag used to provide logic. Child + entries of a BundlerGroupType tag only apply to machines that + match the condition specified -- either membership in a group, + or a matching client name. + :xml:attribute:`BundlerGroupType:negate` can be set to negate + the sense of the match. + + - The group name + + The group name + - Negate the sense of this group; i.e., entries within this - tag are only used on clients that are not members of the - group + Negate the sense of this group or client; i.e., entries + within this tag are only used on clients that are not + members of the group, or that have hostnames that do not + match. @@ -192,11 +205,42 @@ - - - - - + + + + Freeform description of the bundle. + + + + + + + The name of the bundle. This must match the bundle + filename, minus the extension. + + + + + + + Bundle schema version. + + + + + + + URL of master version (for common repo) + + + + + + + Master version control revision. + + + diff --git a/schemas/clients.xsd b/schemas/clients.xsd index 3b98c5fc3..20a77b0dd 100644 --- a/schemas/clients.xsd +++ b/schemas/clients.xsd @@ -1,44 +1,169 @@ - - client schema for bcfg2 - Narayan Desai, Argonne National Laboratory + Bcfg2 client list schema + + + + + + + + + + + Describe a Bcfg2 client machine. + + + + + **Alias** allows you to set alternative hostname and IP + address pairs that also resolve to this client. + + - - + + + + Hostname of the alternative client name-address pair. + + + + + + + IP address of the alternative client name-address pair. + + + - - - - - - - - - - - - + + + + Hostname of client. This needs to be the name (probably + FQDN) returned by a reverse lookup on the connecting IP + address. + + + + + + + Profile group naem to associate this client with. + + + + + + + Deprecated. + + + + + + + Authentication mode for the client. See + :ref:`appendix-guides-authentication` for details on the + values available. + + + + + + + Establishes a name for this cilent that can be used to + bypass dns-based client resolution. + + + + + + + Establishes a per-client password that can be used instead + of the global password. + + + + + + + Deprecated. Use :xml:attribute:`ClientType:floating` instead. + + + + + + + Allows requests to come from any IP address, rather than + requiring requests to come from an IP associated with this + client. Note that, since this forces the Bcfg2 server to + trust any connection that claims to be from this hostname, + it can introduce security issues. + + + + + + + Requires the use of :xml:attribute:`ClientType:password` for + this client. + + + + + + + Deprecated. + + + + + + + Establishes an extra IP address that resolves to this client. + + + + + + + The version of the Bcfg2 client running on this machine. + You should not have to set this manually, but can let the + Bcfg2 server set it automatically. + + + + + + Metadata client list top-level tag + + - + + + + Client schema version + + + diff --git a/schemas/deps.xsd b/schemas/deps.xsd index b1400c320..58d19f699 100644 --- a/schemas/deps.xsd +++ b/schemas/deps.xsd @@ -1,5 +1,4 @@ - dependency schema for bcfg2 @@ -7,21 +6,21 @@ - + - - + + - + - - - + + + @@ -30,9 +29,9 @@ - - - + + + diff --git a/schemas/fileprobes.xsd b/schemas/fileprobes.xsd index e10dc51dd..0dfb8cdd2 100644 --- a/schemas/fileprobes.xsd +++ b/schemas/fileprobes.xsd @@ -1,4 +1,4 @@ - + FileProbes plugin config schema for bcfg2 @@ -6,11 +6,11 @@ - + - - + + @@ -26,8 +26,8 @@ - - + + diff --git a/schemas/genshi.xsd b/schemas/genshi.xsd index 35d81e2f1..0131363be 100644 --- a/schemas/genshi.xsd +++ b/schemas/genshi.xsd @@ -6,67 +6,202 @@ elementFormDefault="qualified"> - Genshi schema - Chris St. Pierre + Genshi XML templating language schema + + + `for directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id3>`_ + + - + + + + The loop iterator + + + + + + `if directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id1>`_ + + - + + + + The statement giving the value to test + + + + + + `match directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id5>`_ + + - - - - + + + + XPath expression to search for in the template. + + + + + + + Whether the engine should stop looking for more matching + elements after the first match. Use this on match templates + that match elements that can only occur once in the stream, + such as the <head> or <body> elements in an HTML + template, or elements with a specific ID. + + + + + + + Whether the matched content should be buffered in + memory. Buffering can improve performance a bit at the cost + of needing more memory during rendering. Buffering is + *required* for match templates that contain more than one + invocation of the ``select()`` function. If there is only + one call, and the matched content can potentially be very + long, consider disabling buffering to avoid excessive memory + use. + + + + + + + Whether the match template should be applied to its own + output. Note that once implies non-recursive behavior, so + this attribute only needs to be set for match templates that + don't also have once set. + + + + + + `def directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id4>`_ + + - + + + + The function prototype + + + + + + `with directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#py-with>`_ + + - + + + + A semicolon-delimited list of variables to define and their + values. + + + + + + `replace directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id8>`_ + + - + + + + The value to replace the contents with. + + + + + + `choose directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id2>`_ + + - + + + + The ``when`` directive is used inside + :xml:type:`py:chooseType` or + :xml:attribute:`py:genshiAttrs:choose` to handle a single + specific condition. + + + + minOccurs="0"/> - + + + + If ``test`` is set, the child :xml:element:`py:when` + directives are tested for equality to the value of the + expression. + + + + + + The ``otherwise`` directive is used inside + :xml:type:`py:chooseType` or + :xml:attribute:`py:genshiAttrs:choose` to handle all + conditions not handled by a :xml:element:`py:when`. + + @@ -74,6 +209,13 @@ + + + Most Genshi templating directives can be used either as + standalone elements or as attributes on existing elements. + This element group defines the standalone tags. + + @@ -87,17 +229,113 @@ - - - - - - - - - - - - + + + Most Genshi templating directives can be used either as + standalone elements or as attributes on existing elements. + This attribute group defines the attribute directives. + + + + + + `if directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id1>`_ + + + + + + + + `choose directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id2>`_ + + + + + + + The ``when`` directive is used inside + :xml:type:`py:chooseType` or + :xml:attribute:`py:genshiAttrs:choose` to handle a single + specific condition. + + + + + + + The ``otherwise`` directive is used inside + :xml:type:`py:chooseType` or + :xml:attribute:`py:genshiAttrs:choose` to handle all + conditions not handled by a :xml:element:`py:when`. + + + + + + + `for directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id3>`_ + + + + + + + `def directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id4>`_ + + + + + + + `match directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id5>`_ + + + + + + + `with directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#py-with>`_ + + + + + + + `attrs directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id6>`_ + + + + + + + `content directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id7>`_ + + + + + + + `replace directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id8>`_ + + + + + + + `strip directive + <http://genshi.edgewall.org/wiki/Documentation/xml-templates.html#id9>`_ + + + diff --git a/schemas/info.xsd b/schemas/info.xsd index 83a8173d2..24538ffe3 100644 --- a/schemas/info.xsd +++ b/schemas/info.xsd @@ -1,8 +1,7 @@ - - info.xml schema for bcfg2 + ``info.xml`` schema for Bcfg2 @@ -10,39 +9,129 @@ + + + The Info tag specifies metadata (ownership, permissions, etc.) + for entries that are generated by various plugins. + + - - - - - - - - + + + + Encoding of the file for tranfer to the client. Use + ``base64`` for binary files. + + + + + + + Sets group of the file. + + + + + + + Important entries are installed first during client + execution. + + + + + + + Sets owner of the file. + + + + + + + Sets the mode of the file from the octal value given. + + + + + + + Sets the SELinux context of the file, or sets to the default + context for that path set by policy if set to the special + value ``__default__``. + + + + + + + If true, files that are replaced will be backed up first. + + + + + + + The contents of sensitive entries aren't included in reports. + + + - + + + + An **InfoGroupType** is a ``info.xml`` tag used to provide + logic. Child entries of such a tag only apply to machines + that match the condition specified -- membership in a group, a + matching client name, or a matching path for the file being + generated. :xml:attribute:`InfoGroupType:negate` can be set + to negate the sense of the match. + + - - - - - + + + + The name of the client or group, or the full path to match + on. Child entries will only apply to this client or group + (unless :xml:attribute:`InfoGroupType:negate` is set). + + + + + + + Negate the sense of the match, so that child entries only + apply to a client if it is not a member of the given group, + does not have the given client name, or the path names do + not match. + + + + + + Top-level tag for ``info.xml``. + + - - - + + + diff --git a/schemas/metadata.xsd b/schemas/metadata.xsd index 84d7436c9..8e81c837e 100644 --- a/schemas/metadata.xsd +++ b/schemas/metadata.xsd @@ -3,8 +3,8 @@ - metadata schema for bcfg2 - Narayan Desai, Argonne National Laboratory + Bcfg2 schema for declaring groups and associating groups with + bundles. @@ -14,47 +14,170 @@ schemaLocation="xinclude.xsd"/> - + + + Declaration of a bundle as a member of a group. + + + + + + The bundle name + + + - + + + + The Group tag serves two purposes: + + * If it is at the top level of ``groups.xml`` (i.e., its + direct parent is :xml:element:`Groups`), or if it has no + children, then it is considered to declare a new group, and + :xml:attribute:`MetadataGroupType:profile`, + :xml:attribute:`MetadataGroupType:public`, + :xml:attribute:`MetadataGroupType:category`, and + :xml:attribute:`MetadataGroupType:default` are parsed. + + * If it is not at the top level of ``groups.xml`` *and* it has + children, then it is considered to be a conditional; its + children only apply to clients that are already members in + the group. The attributes listed above are not parsed. + + - + - - - - - - - - + + + + Name of the group + + + + + + + Mark the group as a profile, which allows a client to be + directly associated with this group in + :ref:`server-plugins-grouping-metadata-clients-xml`. + + + + + + + Mark the group as public, which allows any client to assert + membership in the group with ``bcfg2 -p``. + + + + + + + Set as the profile to use for clients that are not + associated with any profile explicitly in + :ref:`server-plugins-grouping-metadata-clients-xml`. + Setting ``default`` to ``true`` requires setting + :xml:attribute:`MetadataGroupType:profile` to ``true`` as + well. + + + + + + + Assign the group to the given category. A client can only + be a member of one group in a given category. + + + + + + + When the Group tag is used as a conditional, only apply the + child elements if the named group does not match. When the + Group tag is used as a declaration, do not apply the named + group to matching clients. + + + + + + Client tags are conditionals, and can be used to set + per-client groups and bundles. + + - + - - + + + + The name of the client. + + + + + + + Only apply the child tags if the named client does not + match. + + + + + + Metadata group list top-level tag + + - + - + + + + Nested ``Groups`` tags allowed to support XInclude + + + - - - + + + + Group schema version + + + + + + + URI of master version (for common repository) + + + + + + + Master version control revision + + + diff --git a/schemas/nagiosgen.xsd b/schemas/nagiosgen.xsd index 080994cd1..99d6b91c6 100644 --- a/schemas/nagiosgen.xsd +++ b/schemas/nagiosgen.xsd @@ -1,4 +1,4 @@ - + NagiosGen config schema for bcfg2 @@ -6,11 +6,11 @@ - + - - + + @@ -23,8 +23,8 @@ - - + + diff --git a/schemas/packages.xsd b/schemas/packages.xsd index c4252194f..dbee2f31b 100644 --- a/schemas/packages.xsd +++ b/schemas/packages.xsd @@ -1,5 +1,4 @@ - packages config schema for bcfg2 @@ -10,7 +9,7 @@ - + @@ -19,50 +18,212 @@ - - - + + + **RepoOptionsType** can be used to specify arbitrary + repository options. + + + + + + The options given in this tag will only be used on the Bcfg2 + server, not on the clients. + + + + + + + The options given in this tag will only be used on the Bcfg2 + clients, not on the server. + + + + + + + All other (arbitrary) attributes will be added to the + repository configuration. + + + - + + + + **SourceType** elements are used to specify software sources + (i.e., repositories) for the Packages plugin. + + - - - - + + + + Components are used to build multiple repository URLs from + a single :xml:element:`Source` tag. This is only + meaningful if the :xml:attribute:`SourceType:url` + attribute is specified; see that attribute above for more + detail. + + + + + + + The architecture(s) of the repository. A client must be a + member of one of the listed architecture groups in order + for this source to apply to the client. Additionally, if + the :xml:attribute:`SourceType:url` attribute is + specified, the :xml:element:`Arch` tag is used to generate + URLs. See :xml:attribute:`the url attribute + <SourceType:url>` for more detail. + + + + + + + The GPG key(s) for the repository. This only applies to + sources with :xml:attribute:`SourceType:type` = ``yum``. + If GPG keys are specified, then GPG checking will be + automatically enabled for the repository, both on the + Bcfg2 server (if :ref:`yum libraries + <native-yum-libraries>` are in use) and on the Bcfg2 + client (if you use + :ref:`server-plugins-generators-packages` to + :ref:`generate your Yum config + <generating-client-configs>`). + + + + + + + Arbitrary options to be used in the repository + configuration. + + + - - + + + + Blacklist the given package(s) from the + :ref:`server-plugins-generators-packages` plugin. This + prevents them from being included in + automatically-resolved dependencies. + + + + + + + If **Whitelist** is specified, *only* packages listed + will be included by the + :ref:`server-plugins-generators-packages` plugin. + + + - - - - - - + + + + Include packages recommended as dependencies by APT. This + only applies to sources with + :xml:attribute:`SourceType:type` = ``apt``. You must + regenerate the Packages cache after changing this attribute. + + + + + + + Include essential packages from this repo by default (i.e., + without needing to specify them in a bundle). This only + applies to sources with :xml:attribute:`SourceType:type` = + ``apt``. + + + + + + + The type of the repository. This corresponds to the + Packages plugin driver that will handle the source. + + + + + + + The :ref:`Pulp <pulp-source-support>` repository ID + for this repo. This only applies to sources with + :xml:attribute:`SourceType:type` = ``yum``. Due to the + amount of data that can be queried directly from Pulp, + there's rarely a need to supply other attributes. + + + + + + + The base URL to use when generating URLs for this source. + If :xml:attribute:`SourceType:url` is used, you must also + provide the :xml:element:`Arch` tag, at least one + :xml:element:`Component` tag, and the + :xml:attribute:`SourceType:version` attribute. You must not + specify :xml:attribute:`SourceType:rawurl`. For each + combination of component and Arch tag, a URL is created in + the format:: + + <url>/<version>/<component>/<arch> + + + + + + + The raw URL to the (single) repository defined by this + source. :xml:element:`Component` and + :xml:attribute:`SourceType:version` are ignored if this is + given. + + + + + + + The OS version this source applies to. This is used to + generate URLs if the :xml:attribute:`SourceType:url` + attribute is given, and ignored otherwise. + + + - + - - - - + + + + - + - - - - + + + + - + diff --git a/schemas/pkglist.xsd b/schemas/pkglist.xsd index c0d449f54..1f278d477 100644 --- a/schemas/pkglist.xsd +++ b/schemas/pkglist.xsd @@ -1,36 +1,104 @@ - + package list schema for bcfg2 Narayan Desai, Argonne National Laboratory - + + + + An **PackageContainerType** is a tag used to provide logic. + Child entries of an PackageContainerType tag only apply to + machines that match the condition specified -- either + membership in a group, or a matching client name. + :xml:attribute:`PackageContainerType:negate` can be set to + negate the sense of the match. + + - - + + + + The name of the client or group to match on. Child entries + will only apply to this client or group (unless + :xml:attribute:`PackageContainerType:negate` is set). + + + + + + + Negate the sense of the match, so that child entries only + apply to a client if it is not a member of the given group + or does not have the given name. + + + + + + The top-level tag in a :ref:`server-plugins-generators-pkgmgr` + XML package list. + + + - - - - - + + + + Sets the priority for rules in this file for + :ref:`server-plugins-generators-rules`. The higher value + wins. + + + + + + + The package type, which determines which client driver will + handle installation of packages in this package list. + + + + + + + The URI to the repository that data in this package list + file was parsed from. + + + + + + + Comma-separated list of architectures of packages in this + package list that should be installed. + + + + + + + Filename creation rules for multiarch packages. + + + diff --git a/schemas/pkgtype.xsd b/schemas/pkgtype.xsd index cbee6f317..18eda88ab 100644 --- a/schemas/pkgtype.xsd +++ b/schemas/pkgtype.xsd @@ -13,48 +13,304 @@ schemaLocation="genshi.xsd"/> - - - - + + + Abstract description of a package or package group to be + installed. + + + + + + Install the named package. Either ``name`` or + :xml:attribute:`PackageStructure:group` must be specified. + + + + + + + Install the named package group. Package groups are only + supported for Yum :xml:element:`Source` repositories, and + only if the :ref:`yum libraries + <native-yum-libraries>` are in use. Either ``group`` + or :xml:attribute:`PackageStructure:name` must be specified. + + + + + + + Whether or not to verify the package. + + + + + + + The package set to select from a given package group. Only + meaningful if :xml:attribute:`PackageStructure:group` is + specified. + + + + + + Concrete specification of a package to be installed. A + package can be specified in one of two ways: + + * A single Package tag that lists all of the attributes for + the single instance of the package that should be installed. + + * A Package tag with any number of :xml:element:`Instance` + children, each of which lists the attributes of an instance + of the package that should be installed. In this case, the + Package tag should only have + :xml:attribute:`PackageType:name` and + :xml:attribute:`PackageType:type`. + + Note that many of the attributes listed below are specific to + one or a few package drivers. + + + + + An Instance element describes a single instance of a + package that may have several different versions, arches, + etc., installed at once. + + - - - - - - - - - - + + + + The architecture of the package to be installed. + + + + + + + The epoch of the package to be installed. + + + + + + + The version of the package to be installed. See + :xml:attribute:`PackageType:version` for details. + + + + + + + The release of the package to be installed. + + + + + + + Package file name. No name parsing is performed, so no + extra fields get set. This is only used for manual + maintenance of ``gpg-pubkey`` packages with the + :ref:`YUM, YUM24, or RPM <client-tools-yum>` + driver. + + + + + + + Whether or not to perform full package verification (file + integrity, etc.) on this package with the :ref:`YUM, YUM24, + or RPM <client-tools-yum>` driver. + + + + + + + Comma-separated list of flags to pass to the package + verification routines of the :ref:`YUM, YUM24, or RPM + <client-tools-yum>` driver. See ``man rpm`` for + details on the flags. + + + + + + + If this is set to any value other than "install", + package installation will be suppressed with the + :ref:`YUM24 and RPM <client-tools-yum>` drivers. + + + + + + + If this is set to any value other than "upgrade", a + package that has the incorrect version installed will + not be fixed with the :ref:`YUM24 and RPM + <client-tools-yum>` drivers. Note that + "upgrade" is misleading; if a package is installed + that is newer than the desired version, it will not be + downgraded if this attribute is set to anything other + than "upgrade". + + + + + + + If this is set to any value other than "reinstall", a + package that fails package verification will not be + reinstalled with the :ref:`YUM24 and RPM + <client-tools-yum>` drivers. + + + - - - - - - - - - - - - - - - + + + + Package name. + + + + + + + The architecture of the package to be installed. + + + + + + + The version of the package to be installed. This should + *only* be the version, i.e., not the release. Release should + be specified in :xml:attribute:`PackageType:release`, and it + is an error to append the release to this. + + This can also be one of two "special" values: + + * ``auto`` will select the newest version of the package + available. + * ``any`` will select any version of the package, and can be + used to ensure that a package is installed without + requiring any particular version. + + + + + + + The release of the package to be installed. + + + + + + + Package file name. Several other attributes (name, version) + can be automatically defined based on regular expressions + defined in the :ref:`server-plugins-generators-pkgmgr` + plugin, which is the only plugin with which this is useful. + + + + + + + Whether or not to perform package verification. This is not + supported by the :ref:`YUM <client-tools-yum>` driver. + + + + + + + Package file name. No name parsing is performed, so no extra + fields get set. This is only used for some edge cases with + :ref:`server-plugins-generators-pkgmgr`. + + + + + + + Comma-separated list of architectures of this package that + should be installed. This is only used by the + :ref:`server-plugins-generators-pkgmgr` plugin. + + + + + + + Filename creation rules for multiarch packages. This is only + used by the :ref:`server-plugins-generators-pkgmgr` plugin. + + + + + + + The package type, which determines which client driver will + handle installation of this package. + + + + + + + The name of the package for installing (as opposed to the + name when verifying) with the Blast and OpenCSW drivers. + + + + + + + Whether or not to perform basic package checks (version, + release, etc.) on this package with the :ref:`YUM, YUM24, or + RPM <client-tools-yum>` driver. + + + + + + + Whether or not to perform full package verification (file + integrity, etc.) on this package with the :ref:`YUM, YUM24, + or RPM <client-tools-yum>` driver. + + + + + + + Flags to pass to the package verification routines of the + :ref:`YUM, YUM24, or RPM <client-tools-yum>` driver. + + + diff --git a/schemas/rules.xsd b/schemas/rules.xsd index 241ffe5bf..ddfb7ad0d 100644 --- a/schemas/rules.xsd +++ b/schemas/rules.xsd @@ -1,6 +1,5 @@ - string enumeration definitions for bcfg2 @@ -50,10 +49,66 @@ - + + + + Fully bound description of an SELinux boolean entry. + + + + - Fully bound description of an SELinux entry. + Fully bound description of an SELinux port entry. + + + + + + + Fully bound description of an SELinux file context entry. + + + + + + + Fully bound description of an SELinux node entry. + + + + + + + Fully bound description of an SELinux login entry. + + + + + + + Fully bound description of an SELinux user entry. + + + + + + + Fully bound description of an SELinux interface entry. + + + + + + + Fully bound description of an SELinux permissive domain entry. + + + + + + + Fully bound description of an SELinux module entry. @@ -84,8 +139,8 @@ Elements within Group tags only apply to clients that are - members of that group (or vice-versa; see #element_negate - below) + members of that group (or vice-versa, if + :xml:attribute:`RContainerType:negate` is set) @@ -93,7 +148,8 @@ Elements within Client tags only apply to the named client - (or vice-versa; see #element_negate below) + (or vice-versa, if :xml:attribute:`RContainerType:negate` + is set) @@ -101,20 +157,60 @@ + + + An **RContainerType** is a Rules tag used to provide logic. + Child entries of an RContainerType tag only apply to machines + that match the condition specified -- either membership in a + group, or a matching client name. + :xml:attribute:`RContainerType:negate` can be set to negate + the sense of the match. + + - - + + + + The name of the client or group to match on. Child entries + will only apply to this client or group (unless + :xml:attribute:`RContainerType:negate` is set). + + + + + + + Negate the sense of the match, so that child entries only + apply to a client if it is not a member of the given group + or does not have the given name. + + + + + + The top-level tag for concrete descriptions of entries in + :ref:`server-plugins-generators-rules`. + + - + + + + Sets the priority for rules in this file for + :ref:`server-plugins-generators-rules`. The higher value + wins. + + + diff --git a/schemas/selinux.xsd b/schemas/selinux.xsd new file mode 100644 index 000000000..760953e34 --- /dev/null +++ b/schemas/selinux.xsd @@ -0,0 +1,302 @@ + + + + + SELinux element definitions for bcfg2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Concrete SELinux boolean entry + + + + + + Name of the boolean + + + + + + + Value of the boolean + + + + + + + + + + Concrete SELinux port entry + + + + + + Port number or range and protocol + + + + + + + SELinux type to apply to this port + + + + + + + + + + Port number or range and protocol for SEPort entries. + + + + + + ``<port>/<proto>`` or + ``<start>-<end>/<proto>`` + + + + + + + + + + Concrete SELinux file context ("fcontext") entry + + + + + + Regular expression file specification + + + + + + + SELinux type to apply to files matching this specification + + + + + + + File type to match + + + + + + + + + + Concrete SELinux node entry + + + + + + IP address and netmask of node + + + + + + + SELinux type to apply to this node + + + + + + + Protocol + + + + + + + + + + IP address and netmask for SENode entries. Netmask can be + numeric or dotted-quad. + + + + + + ``<addr>/<netmask>``. Netmask can be numeric + (``/16``) or dotted-quad (``/255.255.0.0``). + + + + + + + + + + + + + + + + + Concrete SELinux login entry + + + + + + Unix username + + + + + + + SELinux username + + + + + + + + + + Concrete SELinux user entry + + + + + + SELinux username + + + + + + + Space-separated list of rules + + + + + + + Home directory context prefix + + + + + + + + + + Concrete SELinux interface entry + + + + + + Interface name + + + + + + + SELinux type to apply to this interface + + + + + + + + + + Concrete SELinux permissive domain entry + + + + + + SELinux type to make permissive + + + + + + + + + + Concrete SELinux module entry + + + + + + SELinux module name or filename + + + + + + + Disable this module + + + + + + diff --git a/schemas/servicetype.xsd b/schemas/servicetype.xsd index 7de847c7f..4d5ac7c31 100644 --- a/schemas/servicetype.xsd +++ b/schemas/servicetype.xsd @@ -1,6 +1,5 @@ - services schema for bcfg2 @@ -16,35 +15,88 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + Concrete description of a service entry. Note that, due to + the great proliferation of init systems, many of the + attributes listed only apply to one or a few client tools. + + + + + + The name of the service. + + + + + + + Whether the service should start at boot. If this is set to + "ignore", then the boot-time status of the service will not + be checked. + + + + + + + Whether or not to restart the service when the bundle is + modified. (New in 1.3; replaces "mode" attribute.) + + + + + + + Whether or not to install the service initially. (New in + 1.3; replaces "mode" attribute.) + + + + + + + Driver to use on the client to manage this service. + + + + + + + The resource identifier for SMF services. + + + + + + + Order for service startup. Only meaningful for DebInit + services. + + + + + + + Command to pass to the service management system when + restarting a service. + + + + + + + Parameters to pass to the service. Only meaningful for + Upstart services. + + + - diff --git a/schemas/sslca-cert.xsd b/schemas/sslca-cert.xsd index 07baf3390..a9c01fb29 100644 --- a/schemas/sslca-cert.xsd +++ b/schemas/sslca-cert.xsd @@ -1,43 +1,166 @@ - SSLCA cert.xml schema for bcfg2 - Chris St. Pierre + Schema for :ref:`server-plugins-generators-sslca` ``cert.xml`` - + + + + An **SSLCACertGroupType** is a tag used to provide logic. + Child entries of an SSLCACertGroupType tag only apply to + machines that match the condition specified -- either + membership in a group, or a matching client name. + :xml:attribute:`SSLCACertGroupType:negate` can be set to negate + the sense of the match. + + - - - + + + - - + + + + The name of the client or group to match on. Child entries + will only apply to this client or group (unless + :xml:attribute:`SSLCACertGroupType:negate` is set). + + + + + + + Negate the sense of the match, so that child entries only + apply to a client if it is not a member of the given group + or does not have the given name. + + + + + + + Available certificate formats + + + + + + + + + + + Explicitly specify subject alternative names for the generated + certificate. + + + + + - - - - - - - - - - - + + + + The full path to the key entry to use for this certificate. + This is the *client* path; e.g., for a key defined at + ``/var/lib/bcfg2/SSLCA/etc/pki/tls/private/foo.key/key.xml``, + **key** should be ``/etc/pki/tls/private/foo.key``. + + + + + + + The certificate format to produce. + + + + + + + The name of the CA (from :ref:`bcfg2.conf + <sslca-configuration>`) to use to generate this + certificate. + + + + + + + Time (in days) the certificate will be valid for. + + + + + + + Override the country set in the CA config + + + + + + + Override the location set in the CA config + + + + + + + Override the state set in the CA config + + + + + + + Override the organizational unit set in the CA config + + + + + + + Override the organization set in the CA config + + + + + + + Override the email address set in the CA config + + + + + + + Append the CA chain certificate to the generated certificate + (e.g., to produce a certificate in the format required by Nginx.) + + + + + + Top-level tag for describing an SSLCA generated certificate. + + - - - + + + diff --git a/schemas/sslca-key.xsd b/schemas/sslca-key.xsd index e807ea037..efd4abd58 100644 --- a/schemas/sslca-key.xsd +++ b/schemas/sslca-key.xsd @@ -1,32 +1,86 @@ - SSLCA key.xml schema for bcfg2 - Chris St. Pierre + Schema for :ref:`server-plugins-generators-sslca` ``key.xml`` - + + + + An **SSLCAKeyGroupType** is a tag used to provide logic. + Child entries of an SSLCAKeyGroupType tag only apply to + machines that match the condition specified -- either + membership in a group, or a matching client name. + :xml:attribute:`SSLCAKeyGroupType:negate` can be set to negate + the sense of the match. + + - - + + - - + + + + The name of the client or group to match on. Child entries + will only apply to this client or group (unless + :xml:attribute:`SSLCAKeyGroupType:negate` is set). + + + + + + + Negate the sense of the match, so that child entries only + apply to a client if it is not a member of the given group + or does not have the given name. + + + + + + + Available generated key types + + + + + + + + - - + + + + The key type + + + + + + + The key length + + + + + + Top-level tag for describing an SSLCA generated key. + + - - + + diff --git a/schemas/types.xsd b/schemas/types.xsd index a36693b2d..6262d9bb6 100644 --- a/schemas/types.xsd +++ b/schemas/types.xsd @@ -8,6 +8,7 @@ + @@ -91,12 +92,62 @@ - - - - - - + + + Action entries are external shell commands that are executed + either before bundle installation, after bundle installation + or both. + + + + + + + When the action is run. + + + + + + + If the action is always run, or is only run when a bundle + has been modified. Actions that run before bundle + installation ("pre" and "both") ignore the setting of + ``when`` and are always run regardless. + + + + + + + Whether or not to check the return code of the action. If + this is "check", then a non-zero return code will result in + the entry being flagged as bad. + + + + + + + Also execute the action in build mode. + + + + + + + The freeform name of the action. + + + + + + + The command to run. The command is executed within a shell, + so flow control and other shell-specific things can be used. + + + @@ -123,118 +174,287 @@ - - - - - + + + Define POSIX ACLs for a Path entry. + + + + + + + ACL type + + + + + + + ACL scope. This is omitted for + :xml:attribute:`ACLType:type` = ``default``. + + + + + + + Permissions for the ACL. This can either be a single octal + digit (e.g., ``6`` would indicate read and write, but not + execute), or a symbolic mode including 'r', 'w', and 'x'. + You can include '-' for operations that are not permitted, + but it's not required. I.e., all of the following are + identical:: + + perms="5" + perms="rx" + perms="r-x" + + + + + + + User the ACL applies to (with :xml:attribute:`ACLType:scope` + = ``user``). + + + + + + + Group the ACL applies to (with + :xml:attribute:`ACLType:scope` = ``group``). + + + - + + + + Manage filesystem paths -- files, directories, symlinks, etc. + + + - - - - - - - - - - - - - - - + + + + Type of path to manage. + + + + + + + Full path. + + + + + + + Type of device. + + + + + + + Major device number (``block`` and ``char`` devices only). + + + + + + + Minor device number (``block`` and ``char`` devices only). + + + + + + + Permissions mode in octal format. + + + + + + + Owner username or UID number + + + + + + + Group name or GID number + + + + + + + SELinux context for the path. This should be a full + context, not just the type. E.g., + ``system_u:object_r:etc_t:s0``, not just ``etc_t``. You can + also specify ``__default__``, which will restore the context + of the file to the default set by policy. See + :ref:`server-selinux` for more information. + + + + + + + Recursively remove files or set permissions, as appropriate. + + + + + + + Remove entries that are not in the Bcfg2 specification from + the directory. + + + + + + + File to link to + + + + + + + The file entry has no content. This must be set as a + safeguard against accidentally empty content. + + + + + + + The VCS backend to checkout contents from. + + + + + + + The revision to checkout. + + + + + + + The VCS URL to checkout. + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - + + + The POSIXUser tag allows you to create users on client machines. + + - + + + + Specify additional supplementary groups for the POSIXUser + + + - - - - - - + + + + Username + + + + + + + User ID number. If this is not specified, each client is + allowed to set the UID. + + + + + + + Name of the user's primary group. If this is not set, the + user's primary group will be the same as the username. + + + + + + + Human-readable user name or comment. If this is not set, + the GECOS will be the same as the username. + + + + + + + User's home directory. Default is ``/root`` for the root + user, ``/home/<username>`` otherwise. + + + + + + + User's shell + + + + - - + + + The POSIXGroup tag allows you to create groups on client + machines. + + + + + + Username + + + + + + + Group ID number. If this is not specified, each client is + allowed to set the GID. + + + + diff --git a/schemas/xs3p.xsl b/schemas/xs3p.xsl deleted file mode 100644 index b127948be..000000000 --- a/schemas/xs3p.xsl +++ /dev/null @@ -1,8503 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - true - - - true - - - true - - - true - - - true - - - true - - - true - - - false - - - false - - - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema - - - http://www.w3.org/XML/1998/namespace - - - 1.5 - - - 0.5 - - - XML Schema Documentation - - - - type_ - - attribute_ - - attributeGroup_ - - - - element_ - - key_ - - group_ - - notation_ - - ns_ - - - - term_ - - - - - - - - - - - - true - -'linksFile' variable must be provided if either -'searchIncludedSchemas' or 'searchImportedSchemas' is true. - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="$actualTitle"/> - - - - - - - - - - - - - - - - - - - - - - - - - -

- - - - - -

Table of Contents

- - - - -

Schema Document Properties

- - - -

Declared Namespaces

- - - - - - - - - -

Redefined Schema Components

- -
- - - - - - - -

Global Declarations

- - - - -
- - -

Global Definitions

- - - - -
-
- - -

Global Schema Components

- -
-
- - - -
-

Legend

- - -
-
- - - -
-

Glossary

- - -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - -
PrefixNamespace
- Default namespace - - - - - - - - - - - -
- - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
  • - - - - - : - - -
  • -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -var pc = getElementObject("printerControls"); -if (pc != null) { - pc.style.display="block"; -} - - - - - - - -var gc = getElementObject("globalControls"); -if (gc != null) { - gc.style.display="block"; -} - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - -

    - - - - - - - - - - - - - : - - - - -

    -
    - - - - - -
    -
    - - - - - /* IDs of XML Instance Representation boxes */ - - var xiBoxes = new Array( - - - , - - ' - - - - _xibox' - - ); - - - /* IDs of Schema Component Representation boxes */ - - var scBoxes = new Array('schema_scbox' - - , ' - - - - _scbox' - - ); - - - -/** - * Can get the ID of the button controlling - * a collapseable box by concatenating - * this string onto the ID of the box itself. - */ -var B_SFIX = "_button"; - -/** - * Counter of documentation windows - * Used to give each window a unique name - */ -var windowCount = 0; - -/** - * Returns an element in the current HTML document. - * - * @param elementID Identifier of HTML element - * @return HTML element object - */ -function getElementObject(elementID) { - var elemObj = null; - if (document.getElementById) { - elemObj = document.getElementById(elementID); - } - return elemObj; -} - -/** - * Closes a collapseable box. - * - * @param boxObj Collapseable box - * @param buttonObj Button controlling box - */ -function closeBox(boxObj, buttonObj) { - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else { - // Change 'display' CSS property of box - boxObj.style.display="none"; - - // Change text of button - if (boxObj.style.display=="none") { - buttonObj.value=" + "; - } - } -} - -/** - * Opens a collapseable box. - * - * @param boxObj Collapseable box - * @param buttonObj Button controlling box - */ -function openBox(boxObj, buttonObj) { - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else { - // Change 'display' CSS property of box - boxObj.style.display="block"; - - // Change text of button - if (boxObj.style.display=="block") { - buttonObj.value=" - "; - } - } -} - -/** - * Sets the state of a collapseable box. - * - * @param boxID Identifier of box - * @param open If true, box is "opened", - * Otherwise, box is "closed". - */ -function setState(boxID, open) { - var boxObj = getElementObject(boxID); - var buttonObj = getElementObject(boxID+B_SFIX); - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else if (open) { - openBox(boxObj, buttonObj); - // Make button visible - buttonObj.style.display="inline"; - } else { - closeBox(boxObj, buttonObj); - // Make button visible - buttonObj.style.display="inline"; - } -} - -/** - * Switches the state of a collapseable box, e.g. - * if it's opened, it'll be closed, and vice versa. - * - * @param boxID Identifier of box - */ -function switchState(boxID) { - var boxObj = getElementObject(boxID); - var buttonObj = getElementObject(boxID+B_SFIX); - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else if (boxObj.style.display=="none") { - // Box is closed, so open it - openBox(boxObj, buttonObj); - } else if (boxObj.style.display=="block") { - // Box is opened, so close it - closeBox(boxObj, buttonObj); - } -} - -/** - * Closes all boxes in a given list. - * - * @param boxList Array of box IDs - */ -function collapseAll(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - var boxObj = getElementObject(boxList[idx]); - var buttonObj = getElementObject(boxList[idx]+B_SFIX); - closeBox(boxObj, buttonObj); - } -} - -/** - * Open all boxes in a given list. - * - * @param boxList Array of box IDs - */ -function expandAll(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - var boxObj = getElementObject(boxList[idx]); - var buttonObj = getElementObject(boxList[idx]+B_SFIX); - openBox(boxObj, buttonObj); - } -} - -/** - * Makes all the control buttons of boxes appear. - * - * @param boxList Array of box IDs - */ -function viewControlButtons(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - buttonObj = getElementObject(boxList[idx]+B_SFIX); - if (buttonObj != null) { - buttonObj.style.display = "inline"; - } - } -} - -/** - * Makes all the control buttons of boxes disappear. - * - * @param boxList Array of box IDs - */ -function hideControlButtons(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - buttonObj = getElementObject(boxList[idx]+B_SFIX); - if (buttonObj != null) { - buttonObj.style.display = "none"; - } - } -} - -/** - * Sets the page for either printing mode - * or viewing mode. In printing mode, the page - * is made to be more readable when printing it out. - * In viewing mode, the page is more browsable. - * - * @param isPrinterVersion If true, display in - * printing mode; otherwise, - * in viewing mode - */ -function displayMode(isPrinterVersion) { - var obj; - if (isPrinterVersion) { - // Hide global control buttons - obj = getElementObject("globalControls"); - if (obj != null) { - obj.style.visibility = "hidden"; - } - // Hide Legend - obj = getElementObject("legend"); - if (obj != null) { - obj.style.display = "none"; - } - obj = getElementObject("legendTOC"); - if (obj != null) { - obj.style.display = "none"; - } - // Hide Glossary - obj = getElementObject("glossary"); - if (obj != null) { - obj.style.display = "none"; - } - obj = getElementObject("glossaryTOC"); - if (obj != null) { - obj.style.display = "none"; - } - - // Expand all XML Instance Representation tables - expandAll(xiBoxes); - // Expand all Schema Component Representation tables - expandAll(scBoxes); - - // Hide Control buttons - hideControlButtons(xiBoxes); - hideControlButtons(scBoxes); - } else { - // View global control buttons - obj = getElementObject("globalControls"); - if (obj != null) { - obj.style.visibility = "visible"; - } - // View Legend - obj = getElementObject("legend"); - if (obj != null) { - obj.style.display = "block"; - } - obj = getElementObject("legendTOC"); - if (obj != null) { - obj.style.display = "block"; - } - // View Glossary - obj = getElementObject("glossary"); - if (obj != null) { - obj.style.display = "block"; - } - obj = getElementObject("glossaryTOC"); - if (obj != null) { - obj.style.display = "block"; - } - - // Expand all XML Instance Representation tables - expandAll(xiBoxes); - // Collapse all Schema Component Representation tables - collapseAll(scBoxes); - - // View Control buttons - viewControlButtons(xiBoxes); - viewControlButtons(scBoxes); - } -} - -/** - * Opens up a window displaying the documentation - * of a schema component in the XML Instance - * Representation table. - * - * @param compDesc Description of schema component - * @param compName Name of schema component - * @param docTextArray Array containing the paragraphs - * of the new document - */ -function viewDocumentation(compDesc, compName, docTextArray) { - var width = 400; - var height = 200; - var locX = 100; - var locY = 200; - - /* Generate content */ - var actualText = "<html>"; - actualText += "<head><title>"; - actualText += compDesc; - if (compName != '') { - actualText += ": " + compName; - } - actualText += "</title></head>"; - actualText += "<body bgcolor=\"#FFFFEE\">"; - // Title - actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 12pt; font-weight: bold; letter-spacing:1px;\">"; - actualText += compDesc; - if (compName != '') { - actualText += ": <span style=\"color:#006699\">" + compName + "</span>"; - } - actualText += "</p>"; - // Documentation - var idx; - for (idx = 0; idx < docTextArray.length; idx++) { - actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 10pt;\">" + docTextArray[idx] + "</p>"; - } - // Link to close window - actualText += "<a href=\"javascript:void(0)\" onclick=\"window.close();\" style=\"font-family: Arial, sans-serif; font-size: 8pt;\">Close</a>"; - actualText += "</body></html>"; - - /* Display window */ - windowCount++; - var docWindow = window.open("", "documentation"+windowCount, "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable,alwaysRaised,dependent,titlebar=no,width="+width+",height="+height+",screenX="+locX+",left="+locX+",screenY="+locY+",top="+locY); - docWindow.document.write(actualText); -} - - - - - - -/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -/* More-configurable styles */ - -/******** General ********/ - -/* Document body */ -body { - color: Black; - background-color: White; - font-family: Arial, sans-serif; - font-size: 10pt; -} -/* Horizontal rules */ -hr { - color: black; -} -/* Document title */ -h1 { - font-size: 18pt; - letter-spacing: 2px; - border-bottom: 1px #ccc solid; - padding-top: 5px; - padding-bottom: 5px; -} -/* Main section headers */ -h2 { - font-size: 14pt; - letter-spacing: 1px; -} -/* Sub-section headers */ -h3, h3 a, h3 span { - font-size: 12pt; - font-weight: bold; - color: black; -} -/* Table displaying the properties of the schema components or the - schema document itself */ -table.properties th, table.properties th a { - color: black; - background-color: #F99; /* Pink */ -} -table.properties td { - background-color: #eee; /* Gray */ -} - - -/******** Table of Contents Section ********/ - -/* Controls for switching between printing and viewing modes */ -div#printerControls { - color: #963; /* Orange-brown */ -} -/* Controls that can collapse or expand all XML Instance - Representation and Schema Component Representation boxes */ -div#globalControls { - border: 2px solid #999; -} - - -/******** Schema Document Properties Section ********/ - -/* Table displaying the namespaces declared in the schema */ -table.namespaces th { - background-color: #ccc; -} -table.namespaces td { - background-color: #eee; -} -/* Target namespace of the schema */ -span.targetNS { - color: #06C; - font-weight: bold; -} - - -/******** Schema Components' Sections ********/ - -/* Name of schema component */ -.name { - color: #F93; /* Orange */ -} - -/* Hierarchy table */ -table.hierarchy { - border: 2px solid #999; /* Gray */ -} - -/* XML Instance Representation table */ -div.sample div.contents { - border: 2px dashed black; -} - -/* Schema Component Representation table */ -div.schemaComponent div.contents { - border: 2px black solid; -} - - -/******** Glossary Section ********/ - -/* Glossary Terms */ -.glossaryTerm { - color: #036; /* Blue */ -} - - -/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -/* Printer-version styles */ - -@media print { - -/* Ensures that controls are hidden when printing */ -div#printerControls { - visibility: hidden; -} -div#globalControls { - visibility: hidden; -} -#legend { - display: none; -} -#legendTOC { - display: none; -} -#glossary { - display: none; -} -#glossaryTOC { - display: none; -} - -} - -/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -/* Base styles */ - -/******** General ********/ - -/* Unordered lists */ -ul { - margin-left: 1.5em; - margin-bottom: 0em; -} -/* Tables */ -table { - margin-top: 10px; - margin-bottom: 10px; - margin-left: 2px; - margin-right: 2px; -} -table th, table td { - font-size: 10pt; - vertical-align: top; - padding-top: 3px; - padding-bottom: 3px; - padding-left: 10px; - padding-right: 10px; -} -table th { - font-weight: bold; - text-align: left; -} -/* Table displaying the properties of the schema components or the - schema document itself */ -table.properties { - width: 90%; -} -table.properties th { - width: 30%; -} -/* Boxes that can make its content appear and disappear*/ -div.box { - margin: 1em; -} - /* Box caption */ -div.box span.caption { - font-weight: bold; -} - /* Button to open and close the box */ -div.box input.control { - width: 1.4em; - height: 1.4em; - text-align: center; - vertical-align: middle; - font-size: 11pt; -} - /* Box contents */ -div.box div.contents { - margin-top: 3px; -} - - -/******** Table of Contents Section ********/ - -/* Controls for switching between printing and viewing modes */ -div#printerControls { - white-space: nowrap; - font-weight: bold; - padding: 5px; - margin: 5px; -} -/* Controls that can collapse or expand all XML Instance - Representation and Schema Component Representation boxes */ -div#globalControls { - padding: 10px; - margin: 5px; -} - - -/******** Schema Document Properties Section ********/ - -/* Table displaying the namespaces declared in the schema */ -table.namespaces th { -} -table.namespaces td { -} -/* Target namespace of the schema */ -span.targetNS { -} - - -/******** Schema Components' Sections ********/ - -/* Name of schema component */ -.name { -} - -/* Hierarchy table */ -table.hierarchy { - width: 90%; -} -table.hierarchy th { - font-weight: normal; - font-style: italic; - width: 20%; -} -table.hierarchy th, table.hierarchy td { - padding: 5px; -} - -/* XML Instance Representation table */ -div.sample { - width: 90%; -} -div.sample div.contents { - padding: 5px; - font-family: Courier New, sans-serif; - font-size: 10pt; -} - /* Normal elements and attributes */ -div.sample div.contents, div.sample div.contents a { - color: black; -} - /* Group Headers */ -div.sample div.contents .group, div.sample div.contents .group a { - color: #999; /* Light gray */ -} - /* Type Information */ -div.sample div.contents .type, div.sample div.contents .type a { - color: #999; /* Light gray */ -} - /* Occurrence Information */ -div.sample div.contents .occurs, div.sample div.contents .occurs a { - color: #999; /* Light gray */ -} - /* Fixed values */ -div.sample div.contents .fixed { - color: #063; /* Green */ - font-weight: bold; -} - /* Simple type constraints */ -div.sample div.contents .constraint, div.sample div.contents .constraint a { - color: #999; /* Light gray */ -} - /* Elements and attributes inherited from base type */ -div.sample div.contents .inherited, div.sample div.contents .inherited a { - color: #666; /* Dark gray */ -} - /* Elements and attributes added to or changed from base type */ -div.sample div.contents .newFields { - font-weight: bold; -} - /* Other type of information */ -div.sample div.contents .other, div.sample div.contents .other a { - color: #369; /* Blue */ - font-style: italic; -} - /* Link to open up window displaying documentation */ -div.sample div.contents a.documentation { - text-decoration: none; - padding-left: 3px; - padding-right: 3px; - padding-top: 0px; - padding-bottom: 0px; - font-weight: bold; - font-size: 11pt; - background-color: #FFD; - color: #069; -} - /* Invert colors when hovering over link to open up window - displaying documentation */ -div.sample div.contents a.documentation:hover { - color: #FFD; - background-color: #069; -} - -/* Schema Component Representation table */ -div.schemaComponent { - width: 90%; -} -div.schemaComponent div.contents { - font-family: Courier New, sans-serif; - font-size: 10pt; - padding: 5px; -} - /* Syntax characters */ -div.schemaComponent div.contents { - color: #00f; /* blue */ -} - /* Element and attribute tags */ -div.schemaComponent div.contents .scTag { - color: #933; /* maroon */ -} - /* Element and attribute content */ -div.schemaComponent div.contents .scContent, div.schemaComponent div.contents .scContent a { - color: black; - font-weight: bold; -} - /* Comments */ -div.schemaComponent div.contents .comment { - color: #999; /* Light gray */ -} - -/******** Legend Section ********/ - -div#legend table, div#legend div { - margin-bottom: 3px; -} -div#legend div.hint { - color: #999; /* Light gray */ - width: 90%; - margin-left: 1em; - margin-bottom: 2em; -} - - -/******** Glossary Section ********/ - -/* Glossary Terms */ -.glossaryTerm { - font-weight: bold; -} - - -/******** Footer ********/ - -.footer { - font-size: 8pt; -} - - - - - - -
    -

    Complex Type:

    -
    Schema Component Type
    -
    -
    -

    AusAddress

    -
    Schema Component Name
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Super-types: - Address - < - AusAddress - (by extension) - Parent type: - Address - (derivation method: extension) -
    Sub-types: -
      -
    • - QLDAddress - (by restriction) -
    • -
    -
    Direct sub-types: -
      -
    • - QLDAddress - (by restriction) -
    • -
    -
    -
    If this schema component is a type definition, its type hierarchy is shown in a gray-bordered box.
    - - - - - - - - - - - -
    NameAusAddress
    - Abstract - no
    -
    The table above displays the properties of this schema component.
    - - -
    -
    - XML Instance Representation -
    -
    - <... - - country="Australia" - - >
    - <unitNo> string </unitNo> [0..1]
    - <houseNo> string </houseNo> [1]
    - <street> string </street> [1]
    - Start Choice [1]
    - <city> string </city> [1]
    - <town> string </town> [1]
    - End Choice
    - - <state> AusStates </state> [1]
    - <postcode> string <<pattern = [1-9][0-9]{3}>> </postcode> [1] - - ? - -
    -
    - </...>
    -
    -
    -
    -

    The XML Instance Representation table above shows the schema component's content as an XML instance.

    -
      -
    • The minimum and maximum occurrence of elements and attributes are provided in square brackets, e.g. [0..1].
    • -
    • Model group information are shown in gray, e.g. Start Choice ... End Choice.
    • -
    • For type derivations, the elements and attributes that have been added to or changed from the base type's content are shown in bold.
    • -
    • If an element/attribute has a fixed value, the fixed value is shown in green, e.g. country="Australia".
    • -
    • Otherwise, the type of the element/attribute is displayed. -
        -
      • If the element/attribute's type is in the schema, a link is provided to it.
      • - -
      • For local simple type definitions, the constraints are displayed in angle brackets, e.g. <<pattern = [1-9][0-9]{3}>>.
      • -
      -
    • - -
    • If a local element/attribute has documentation, it will be displayed in a window that pops up when the question mark inside the attribute or next to the element is clicked, e.g. <postcode>.
    • -
      -
    -
    - - -
    -
    - Schema Component Representation -
    -
    - <complexType name="AusAddress">
    - <complexContent>
    - <extension base="Address">
    - <sequence>
    - <element name="state" type="AusStates"/>
    - <element name="postcode">
    - <simpleType>
    - <restriction base="string">
    - <pattern value="[1-9][0-9]{3}"/>
    - </restriction>
    - </simpleType>
    - </element>
    - </sequence>
    - <attribute name="country" type="string" fixed="Australia"/>
    - </extension>
    - </complexContent>
    - </complexType>
    -
    -
    -
    The Schema Component Representation table above displays the underlying XML representation of the schema component. (Annotations are not shown.)
    -
    - - - - - Abstract - Abstract - - (Applies to complex type definitions and element declarations). - An abstract element or complex type cannot used to validate an element instance. - If there is a reference to an abstract element, only element declarations that can substitute the abstract element can be used to validate the instance. - For references to abstract type definitions, only derived types can be used. - - - - - All - All Model Group - - Child elements can be provided - - in any order - - in instances. - - http://www.w3.org/TR/xmlschema-1/#element-all - - - - Choice - Choice Model Group - - - Only one - - from the list of child elements and model groups can be provided in instances. - - http://www.w3.org/TR/xmlschema-1/#element-choice - - - - CollapseWS - Collapse Whitespace Policy - Replace tab, line feed, and carriage return characters with space character (Unicode character 32). Then, collapse contiguous sequences of space characters into single space character, and remove leading and trailing space characters. - - - - ElemBlock - Disallowed Substitutions - - (Applies to element declarations). - If - substitution - is specified, then - - SubGroup - substitution group - - members cannot be used in place of the given element declaration to validate element instances. - - If - derivation methods - , e.g. extension, restriction, are specified, then the given element declaration will not validate element instances that have types derived from the element declaration's type using the specified derivation methods. - Normally, element instances can override their declaration's type by specifying an - xsi:type - attribute. - - - - - Key - Key Constraint - - Like - - Unique - Uniqueness Constraint - - , but additionally requires that the specified value(s) must be provided. - - http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions - - - - KeyRef - Key Reference Constraint - - Ensures that the specified value(s) must match value(s) from a - - Key - Key Constraint - - or - - Unique - Uniqueness Constraint - - . - - http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions - - - - ModelGroup - Model Group - - Groups together element content, specifying the order in which the element content can occur and the number of times the group of element content may be repeated. - - http://www.w3.org/TR/xmlschema-1/#Model_Groups - - - - Nillable - Nillable - - (Applies to element declarations). - If an element declaration is nillable, instances can use the - xsi:nil - attribute. - The - xsi:nil - attribute is the boolean attribute, - nil - , from the - http://www.w3.org/2001/XMLSchema-instance - namespace. - If an element instance has an - xsi:nil - attribute set to true, it can be left empty, even though its element declaration may have required content. - - - - - Notation - Notation - A notation is used to identify the format of a piece of data. Values of elements and attributes that are of type, NOTATION, must come from the names of declared notations. - http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations - - - - PreserveWS - Preserve Whitespace Policy - Preserve whitespaces exactly as they appear in instances. - - - - TypeFinal - Prohibited Derivations - - (Applies to type definitions). - Derivation methods that cannot be used to create sub-types from a given type definition. - - - - - TypeBlock - Prohibited Substitutions - - (Applies to complex type definitions). - Prevents sub-types that have been derived using the specified derivation methods from validating element instances in place of the given type definition. - - - - - ReplaceWS - Replace Whitespace Policy - Replace tab, line feed, and carriage return characters with space character (Unicode character 32). - - - - Sequence - Sequence Model Group - - Child elements and model groups must be provided - - in the specified order - - in instances. - - http://www.w3.org/TR/xmlschema-1/#element-sequence - - - - SubGroup - Substitution Group - - Elements that are - - members - - of a substitution group can be used wherever the - - head - - element of the substitution group is referenced. - - - - - ElemFinal - Substitution Group Exclusions - - (Applies to element declarations). - Prohibits element declarations from nominating themselves as being able to substitute a given element declaration, if they have types that are derived from the original element's type using the specified derivation methods. - - - - - TargetNS - Target Namespace - The target namespace identifies the namespace that components in this schema belongs to. If no target namespace is provided, then the schema components do not belong to any namespace. - - - - Unique - Uniqueness Constraint - Ensures uniqueness of an element/attribute value, or a combination of values, within a specified scope. - http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions - - - - - - - - - - -

    - - - - - - - See: - - - - . - -

    -
    - - - - - - - - -
      - - - -
    -
    - - - true - - - - - - - - -
    -
      - - -
    • - This element can be used wherever the following element is referenced: -
        -
      • - - - -
      • -
      -
    • -
      - - -
    • - The following elements can be used wherever this element is referenced: - -
    • -
      -
    -
    -
    -
    - - - - - - - - - - - - - - -
    - - - Super-types: - - - Parent type: - - - - - - - - - - - None - - -
    - - - Sub-types: - - - Direct sub-types: - - - - - - -
    -
    - - - - - - - - - - - - - - -
    - - - Super-types: - - - Parent type: - - - - - - - - - - - None - - -
    - - - Sub-types: - - - Direct sub-types: - - - - - - -
    -
    - - - - - - - - - - - - - -
  • - - false - - Circular element reference to: - - - -
  • -
    - - - - - - - - - - - - - - - - - - -
  • - - - -
  • - - - - - - - -
    -
    -
    -
    - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Local type definition - - - - - - - - - - - - - - extension - - - restriction - - - - - - restriction - - - - - - - - - - - - < - - - - - - - - - - - - - - - - - false - - - - - - - - - - - - < - - - - - - - - - - - - - - - - - - - (by - - ) - - - - - - - - - - - - - - - - - - - - - (derivation method: - - ) - - - - - - - - - - - true - - - - - - - - - - - -
      - -
    • - - - - - - - (by - - ) - - - - - false - - - -
    • -
      -
    -
    - - - - - - - None - - -
    -
    -
    - - - - - true - - - - - - - - - - - -
      - -
    • - - - - - - - (by restriction) - - - - - false - - - -
    • -
      -
    -
    - - -
      - -
    • - - - - - - - (by - - ) - - - - - false - - - -
    • -
      -
    -
    - - - - true - - - - - true - - - - - - - - - - - - - - None - - -
    -
    -
    - - - - - - - - - - - - - - - - - - -
    - More information at: - - - - . -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Name
    Type - - - Locally-defined simple type - - - - - - - - anySimpleType - - -
    Default Value
    Fixed Value
    -
    - - - - - - - - - - - - - -
    Name
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Name
    - - Abstract - Abstract - - - - - -
    - - TypeFinal - Prohibited Derivations - -
    - - TypeBlock - Prohibited Substitutions - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Name
    Type - - - Locally-defined simple type - - - Locally-defined complex type - - - - - - - - anyType - - -
    - - Nillable - Nillable - - - - - -
    - - Abstract - Abstract - - - - - -
    Default Value
    Fixed Value
    - - ElemFinal - Substitution Group Exclusions - -
    - - ElemBlock - Disallowed Substitutions - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Name
    Public Identifier
    System Identifier
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - TargetNS - Target Namespace - - - - - - - - - - None - - -
    Version
    Language
    Element and Attribute Namespaces -
      -
    • Global element and attribute declarations belong to this schema's target namespace.
    • -
    • - - - By default, local element declarations belong to this schema's target namespace. - - - By default, local element declarations have no namespace. - - -
    • -
    • - - - By default, local attribute declarations belong to this schema's target namespace. - - - By default, local attribute declarations have no namespace. - - -
    • -
    -
    Schema Composition -
      - - -
    • - This schema imports schema(s) from the following namespace(s): -
        - -
      • - - - (at - - - - ) - -
      • -
        -
      -
    • -
      - - -
    • - This schema includes components from the following schema document(s): -
        - -
      • - - - -
      • -
        -
      -
    • -
      - - -
    • - This schema includes components from the following schema document(s), where some of the components have been redefined: -
        - -
      • - - - -
      • -
        -
      - See Redefined Schema Components section. -
    • -
      -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Name
    Content - - - -
    - - TypeFinal - Prohibited Derivations - -
    -
    - - - - - - - - - - - Documentation - - -

    - -
    - - -
    - - - Application Data - - -

    - -
    - - -
    -
    - - - - - - - - - - - - - - - - -
    • - List of: - - - - - - - - - -
        -
      • - Locally defined type: - - - - -
      • -
      -
      -
      -
    -
    - - -
    • - Union of following types: -
        - - - - - type - true - - - - -
      • - Locally defined type: - - - - -
      • -
        -
      -
    -
    -
    -
    - - - - - - - - - - - - -
  • - - false - - Circular type reference to ' - - ' in type hierarchy. - - -
  • -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    • - Base XSD Type: - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - -
    • - ' - - ' super type was not found in this schema. - Its facets could not be printed out. -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - -
    • - -
    • -
      - -
    • - -
    • -
      - -
    • - -
    • -
      - -
    • - -
    • -
      - -
    • - -
    • -
      - -
    • - -
    • -
      - -
    • - -
    • -
      -
    -
    -
    - - - - - - - - - - - - - - - - - - - sample - XML Instance Representation - - - - true - - - - - - - 0 - false - false - this - - - - - - Start - - All - All - - - - - - - - - - -
    - - - - - - - - - - - - - End All -
    -
    -
    - - - - 0 - -
    - - - - attribute - element - - - - - - - -
    -
    - - - - - false - false - 0 - false - this - - - - - - - - - - - - - - - - -
    - - - - - newFields - - - inherited - - - - - - - - - - - - - - - =" - - - - - - - - - - - - - - - - - - - - - - - anySimpleType - - - - - - - - - - - - - - - - - " - -
    -
    -
    - - - - - false - false - 0 - false - this - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - newFields - - - inherited - - - - - - - - - =" - - - - - - - - - - - - - - - - - " - -
    -
    -
    - - - - this - - - - - - true - - - false - - - - - - - - - - - - - - - false - false - 0 - - this - - - - - - - - - - - - - false - - Circular attribute group reference: - - - - - - - - - - attribute group - - - - - - -
    - Attribute group reference (not shown): - - - - - - - - -
    -
    - - - - - - - - - - true - - - - - - - - - - - - - true - - - -
    -
    -
    -
    - - - - 0 - false - false - - this - - - - - - Start - - Choice - Choice - - - - - - - - - - -
    - - - - - - - - - - - - - - End Choice -
    -
    -
    - - - - this - - - - - - - - - - 0 - false - false - this - - - - - - - - - - - - - - - - - - - - - - - complex type - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - false - false - this - - - - - - - - - - - - - - - this - - - - - - - - - - - - 0 - false - false - - this - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Circular model group reference: - - - - - - - - -
    -
    - - - - - - group - - - - - - -
    - Model group reference (not shown): - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    - - - - 0 - false - false - - this - - - - - - - - - - - - - - - Start - - Sequence - Sequence - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - End Sequence -
    -
    -
    -
    - - - - this - - - - - - - - - - - - this - - - - - - - - - - - - 0 - this - -
    - <!--
    - - - - - Unique - Uniqueness - - - - - Key - Key - - - - - KeyRef - Key Reference - - - - Constraint - - - - - - - - - - - - - - - -
    - - Selector - - - -
    - - Field(s) - - - - , - - - - - -
    - - - Refers to - - - - - -
    -
    - - --> -
    -
    - - - - - - - - - - - - - - - true - -A local schema component contains two dashes in -'documentation' elements within its 'annotation' element. - - - - - - , - - ' - - - More information at: - - - - . - - - - - - - - ' - - - - - - - - docArray = new Array( - - ); viewDocumentation(' - - - - ', ' - - - - - - - - - - - ', docArray); - - ? - - - - - - - - - - - - ' - \' - - - - - - " - \" - - - - - - - - 0 - false - false - - - - - - this - - - - - - - Start Group: - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - End Group: - -
    -
    -
    - - - - - 0 - false - false - this - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - newFields - - - inherited - - - - - < - - > - - - - - - - - - - - - - - - - - - - - - - - - - ... - - - - - - - - - - - - - - </ - - > - - - - - - - - - - - - -
    -
    - - - - - - 0 - false - false - this - - - - - - - - - - - - - - - - - - - - - - - ... - - - - - - - - true - - - false - - - - -
    - - - newFields - - - inherited - - - - - < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - - true - - - false - - - - - - - - true - - - - - - - - - /> - - - - - - - - - - - - - - - - - > - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - <!-- Restricts : - - - - - --> - -
    - - -
    - <!-- Extends : - - - - - --> - -
    -
    - - - -
    - <!-- Mixed content --> - -
    - - - - - - </ - - > -
    -
    -
    -
    -
    -
    - - - - - - false - false - false - 0 - this - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - false - false - 0 - this - - - - - - - - - - - - - - - - - - - complex type - - - - - - - - - - - - - true - - - false - - - - - - - - - - - - - - - - - - - - - - - - true - - - false - - - - - - - - - - - - - - - - - - - - - true - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - false - 0 - this - - - - - - - true - - - - - - - - 0 - false - false - false - true - this - - -
    - - - - - - - - - - - - - - - - - - - complex type - - - - - - -
    - <!-- ' - - - - - ' super type was not found in this schema. Some elements and attributes may be missing. --> -
    -
    - - - - -
    - - - - - - - - - - - true - - - false - - - - - - - -
    - - - - - - - - - - - - -
    - <-- Extends: - - - - - (Circular type hierarchy) --> -
    -
    - - - - - - complex type - - - - - - - - - - - - - - true - - - false - - - - - - false - - - - - - -
    - <!-- ' - - - - - ' super type was not found in this schema. Some elements and attributes may be missing. --> -
    -
    - - - - - - - - - - true - - - false - - - - - - false - - - - -
    - - - - - - - - - - - true - - - false - - - - - - - -
    -
    -
    - - - - - - - - - -
    -
    - - - - - - - - - - -
    -
    - - - - - - - - - - - - -
    -
    - - - - - 0 - false - false - this - - - - - - - - - - - - - - - - - this - - - - - - - - - - - - - - - - list of: - - - - - - - list of: [ - - - - - ] - - - - - - union of: [ - - - - true - - - - - - type - , - - - - - - , - - [ - - - - - ] - - - ] - - - - - - - - this - - - - - - - - - - false - - Circular type reference to ' - - ' in type hierarchy. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - - - ) - - - ( - - ) - - - ( - - ) - - - ( - - - - ) - - - ( - - - - ) - - - ( - - ) - - - ( - - - - ) - - - - - - - - - - - - - - - - - - schemaComponent - Schema Component Representation - - - - false - - - - - - 0 - - - - - - - - name - - - - - - type - - - - - - - - - - - *name+*type+ - - - *annotation+ - - - - - - 0 - - - - - - - - name - - - - - - *name+ - - - *annotation+ - - - - - - 0 - - - - - - - - ref - - - - - - - - - - *ref+ - - - *annotation+ - - - - - - 0 - - - - - - - - ref - - - - - - - - - - *ref+ - - - *annotation+ - - - - - - 0 - - - - - - - - ref - - - - - - - - - - *ref+ - - - *annotation+ - - - - - - 0 - - - - - - - - ref - - - - - - - - - - *ref+ - - - *annotation+ - - - - - - 0 - - - - - - - - - source - - - - - - - - - - - *source+ - - - true - - - - - - 0 - - - - - - - - name - - - - - refer - - - - - - - - - - - - *name+*refer+ - - - *annotation+ - - - - - - 0 - - - - - - - - - base - - - - - - - - - - - *base+ - - - *annotation+ - - - - - - 0 - - - - - - - - - itemType - - - - - - - - - - - *itemType+ - - - *annotation+ - - - - - - 0 - - - - - - - - - memberTypes - - - - type - - - - - - - - *memberTypes+ - - - *annotation+ - - - - - - 0 - - - - - - - - - xml:lang - - - - - - - *lang+ - - - *include+*import+*redefine+ - - - - - - 0 - - - - - - - - - - *annotation+ - - - - - - 0 - -
    - <-- - - --> -
    -
    - - - - - - 0 - false - - - - - - - - - true - - - - -
    - - < - - - - - - - - - - - - - -
    ...
    -
    - - - - - - - - -
    - -
    -
    - - - - - - -
    -
    - - - - - - > - - - - - - </ - - - - > - - - - - /> - - -
    -
    - - - - - - - - - - - =" - - - - - - " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - html - - - - - - - - - - - - - - xpp - - - - - - - - - - - -
    - <-- - - --> -
    -
    - - - - - xpp - - - < - - - - - - - - - - - - - =" - - " - - - - - - > - - - - - - -
    - -
    -
    -
    - - </ - - - - - - - - - > -
    - - - /> - -
    -
    - - - - - - - - - - - - - - - - - - [term] - - - - - - - - - - - - - - this - - - - - - - - - - - - - - - - - - - Unknown namespace prefix, - - . - - - - - - - - - - - - - - this - - - - - - attribute - - - - - - - attribute - - - - - - - - - - - this - - - - - - attribute group - - - - - - - attribute group - - - - - - - - - - - this - - - - - - element - - - - - - - element - - - - - - - - - - - this - - - - - - group - - - - - - - group - - - - - - - - - - - this - - - - - - uniqueness/key constraint - - - - - - - uniqueness/key constraint - - - - - - - - - - - this - - - - - - - type - - - - - - - - - type - - - - - - - - - - - - - this - - - - - - - declaration - - - definition - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "" - - - - - - - Jump to " - - " - - - - - - (located in external schema documentation) - - - - . - - - - - - - - javascript:void(0) - - - - - - - - - - - - - - - externalLink - - - - - - alert(' - - '); - - - - - - - - - - - - this - - - - - - declaration - - - definition - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - could not be found - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - xsd - - - - xml - - - - - - - - this - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - false - - - - true - - - - true - - - - true - - - - true - - - - true - - - - true - - - - true - - - - false - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - -
    -
    - - - - - - - - - - - - - - - - - - - -
    - - -
    - -
    - - - setState('', ); - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - All Model Group - - - Attribute - - - Attribute Group - - - Choice Model Group - - - Complex Type - - - Element - - - Model Group - - - Notation - - - Sequence Model Group - - - Simple Type - - - - true - -Unknown schema component, . - - - - - - - - - - - - - schema - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - -Unknown schema component, . - - - - - - - - - - - - - Notation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - -Documentation file for the schema at, , -was not specified in the links file, . - - - - - - - - - - - - - - yes - - - no - - - - - - - - false - this - - - - - - - - - - - - - - : - - - - - - - - - - - - - - - - 1 - - - 0 - - - - - - - - - - - - - 1 - - - - - - - - - - - - 0 - - - 1 - - - - - - - * - - - - - - - - - 1 - - - - - - - - - - [1] - - - [ - - .. - - ] - - - - - - - - - - - - restriction, extension, substitution - - - - - - - - - - - - - - restriction, extension - - - - - - - - - - - - - - restriction, list, union - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - true - this - - - - - - - - - - - - - - - - - - - - - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - false - - true - this - - - - - - - - - - - - - - - - - - -
  • - -
  • -
    - - - - - - - - - - - - - - -
    -
    - - - - element - - - - - - Allow any - - s from - - - - - any namespace - - - - a namespace other than this schema's namespace - - - - - - - true - - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - - - - no namespace - - - - - - and - - - , - - - this schema's namespace - - - - - - , and - - - and - - - the following namespace(s): - - - , - - - - - - ( - - - - - - strict - - - validation) - . - - - - - - - - - - - - - - - - - pattern - = - - - - - - - - - - total no. of digits - = - - - - - - - - - - - no. of fraction digits - - = - - - - - - - - - - value - comes from list: { - - - - | - - ' - - ' - - - } - - - - - - - - - - - length - - = - - - - - length - - >= - - - - - length - - <= - - - - - - - - - - - - - - Whitespace policy: - - PreserveWS - preserve - - - - Whitespace policy: - - ReplaceWS - replace - - - - Whitespace policy: - - CollapseWS - collapse - - - - - - - - - - - - - - - <= - - - - < - - - - value - - - - <= - - - - < - - - - - - - value - - >= - - - - - value - - > - - - - - value - - <= - - - - - value - - < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - XS3P ERROR: - - - - - - ERROR: - - - - - -
    \ No newline at end of file -- cgit v1.2.3-1-g7c22