mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2025-12-20 03:10:04 +01:00
automake's documentation says that it works depth-first, but it doesn't actually go depth first when dist'ing a directory. So our .ref.xml files aren't generated when we try to get them added to the dist. Fix this with a big hammer by moving the generation to the current directory, rather than spending any more time working with automake. Can't wait for the meson port.
32 lines
1.1 KiB
DTD
32 lines
1.1 KiB
DTD
<!-- DTD for D-Bus Introspection Documentation -->
|
|
|
|
<!ELEMENT doc (summary?,description?,errors?,permission?,since?,deprecated,seealso?)>
|
|
|
|
<!ELEMENT summary (#PCDATA|ref)*>
|
|
<!ELEMENT description (#PCDATA|para|example)*>
|
|
<!ELEMENT errors (error)*>
|
|
<!ELEMENT permission (#PCDATA|ref|para)*>
|
|
<!ELEMENT since EMPTY>
|
|
<!ATTLIST since version CDATA #REQUIRED>
|
|
<!ELEMENT deprecated (#PCDATA|ref)>
|
|
<!ATTLIST deprecated version CDATA #REQUIRED>
|
|
<!ATTLIST deprecated instead CDATA #REQUIRED>
|
|
<!ELEMENT seealso (ref+)>
|
|
|
|
<!ELEMENT error (#PCDATA|para)*>
|
|
<!ATTLIST error name CDATA #REQUIRED>
|
|
<!ELEMENT para (#PCDATA|example|code|list|ref)*>
|
|
<!ELEMENT example (#PCDATA|para|code|ref)*>
|
|
<!ATTLIST language (c|glib|python|shell) #REQUIRED>
|
|
<!ATTLIST title CDATA #IMPLIED>
|
|
<!ELEMENT list (item*)>
|
|
<!ATTLIST list type (bullet|number) #REQUIRED>
|
|
<!ELEMENT item (term|definition)*>
|
|
<!ELEMENT term (#PCDATA|ref)*>
|
|
<!ELEMENT definition (#PCDATA|para)*>
|
|
|
|
<!ELEMENT code (#PCDATA)>
|
|
<!ATTLIST code lang CDATA #IMPLIED>
|
|
<!ELEMENT ref CDATA>
|
|
<!ATTLIST ref type (parameter|arg|signal|method|interface) #REQUIRED>
|
|
<!ATTLIST ref to CDATA #REQUIRED>
|