Tag:
namespace
Defines a new namespace. A namespace is identified by a name, which is used to reference the namespace in the resolvers using the namespace.
Namespaces overview is given in the [[settings/namespaces]] documentation. A namespace mainly consists of a list of rules, each rule defining a translation between system namespace and the defined namespace, and vice versa. There are two main possibilities for using these rules. By default, a namespace iterate through the rules, and when it finds one that translate the given name, it returns the translated name. But the namespace can be configured to do use the list as a translator chain: in this case, all rules are applied in order, the result of the first rule translation being passed to the second, and so on.
Attributes
Attribute
Description
Required
name
the namespace name
Yes
chainrules
true to indicate that namespaces rules should be chained, false otherwise
No, defaults to false
Child elements
Element
Description
Cardinality
[[settings/namespace/rule]]
defines a new namespace rule
0..n
Example