We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d27d71f commit a5031f3Copy full SHA for a5031f3
XML_schema/NDAttributes.xsd
@@ -189,13 +189,15 @@
189
BUT, cannot express "<" in XML, must use < but that won't parse!
190
So, use use a reduced (but very likely) subset of rules.
191
Do not allow these symbols: []<>
192
+
193
+ To support macro expansion, support these symbols: $ ( )
194
-->
195
<xs:union memberTypes="type_EPICS_PV_source type_PARAM_source"/>
196
</xs:simpleType>
197
198
<xs:simpleType name="type_EPICS_PV_source">
- <xs:restriction base="xs:NMTOKEN">
- <xs:pattern value="[\w_\-:.;]+([.][A-Z0-9]+)?"/>
199
+ <xs:restriction base="xs:string">
200
+ <xs:pattern value="[\w_\-:.;\$\(\)]+([.][A-Z0-9]+)?"/>
201
</xs:restriction>
202
203
0 commit comments