diff options
author | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-05 04:05:10 +0000 |
---|---|---|
committer | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-05 04:05:10 +0000 |
commit | 700c2b96cba4640901b2271a3ff72fafae3b8032 (patch) | |
tree | 80a5fc642fd50e9dda750a5e2af74bab11828f01 /Tools/XMLSchema/NamingConvention.xsd | |
parent | 3f6001d4f0ecb1125de48690655a1c3aba3f37e7 (diff) | |
download | edk2-platforms-700c2b96cba4640901b2271a3ff72fafae3b8032.tar.xz |
Changed FvBinding to be a list of Keywords (not using list, just specifying the pattern.) Fixed a couple of typos in the other files.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@754 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/XMLSchema/NamingConvention.xsd')
-rw-r--r-- | Tools/XMLSchema/NamingConvention.xsd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tools/XMLSchema/NamingConvention.xsd b/Tools/XMLSchema/NamingConvention.xsd index ce477cc59d..936b6f2741 100644 --- a/Tools/XMLSchema/NamingConvention.xsd +++ b/Tools/XMLSchema/NamingConvention.xsd @@ -109,6 +109,12 @@ <xs:pattern value="0x[a-fA-F0-9]{1,4}"/>
</xs:restriction>
</xs:simpleType>
+ <xs:simpleType name="KeywordList">
+ <xs:restriction base="xs:string">
+ <xs:minLength value="1"/>
+ <xs:pattern value="[a-zA-Z]+(\ *_*[a-zA-Z0-9]*)*"/>
+ </xs:restriction>
+ </xs:simpleType>
<xs:simpleType name="KeywordType">
<xs:restriction base="xs:normalizedString">
<xs:pattern value="[a-zA-Z]+(_*[a-zA-Z0-9]*)*"/>
|