mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
0e907b8216
Quotation marks were used ~ 7000 times, apostrophes ~ 3000 times. Signed-off-by: Tim Wiederhake <twiederh@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
22 lines
683 B
XML
22 lines
683 B
XML
<?xml version="1.0"?>
|
|
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
|
<!-- Grammar for accepting a domain element, both as top level, and
|
|
also suitable for inclusion in domainsnapshot.rng -->
|
|
<start>
|
|
<ref name="domain"/>
|
|
</start>
|
|
|
|
<include href="domaincommon.rng"/>
|
|
|
|
<define name="storageStartupPolicy" combine="choice">
|
|
<!-- overrides the no-op version in storagecommon.rng -->
|
|
<ref name="startupPolicy"/>
|
|
</define>
|
|
|
|
<define name="storageSourceExtra" combine="choice">
|
|
<!-- overrides the no-op version in storagecommon.rng -->
|
|
<ref name="diskspec"/>
|
|
</define>
|
|
|
|
</grammar>
|