blob: 8b48c20b58928851abc31131fa5a88a5fc1a5191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?xml version="1.0"?>
<interfaceDefinition extends="system">
<node name="login">
<children>
<tagNode name="user">
<properties>
<help>User name</help>
<constraint>
<regex>[a-z][a-zA-Z0-9]+</regex>
<errorMessage>User name must start with a letter and consist of letters and digits</errorMessage>
</constraint>
</properties>
<children>
<leafNode name="full-name">
<properties>
<help>User full name</help>
</properties>
</leafNode>
</children>
</tagNode>
<leafNode name="hostname">
<properties>
<help>System hostname</help>
<valueHelp>
<format>text</format>
<description>System hostname (alphanumeric, must start with a letter)</description>
</valueHelp>
</properties>
</leafNode>
</children>
</node>
</interfaceDefinition>
|