[Asterisk-code-review] xmldoc: Avoid whitespace around value for parameter/required. (asterisk[master])

George Joseph asteriskteam at digium.com
Mon Dec 13 09:11:29 CST 2021


George Joseph has submitted this change. ( https://gerrit.asterisk.org/c/asterisk/+/17594 )

Change subject: xmldoc: Avoid whitespace around value for parameter/required.
......................................................................

xmldoc: Avoid whitespace around value for parameter/required.

Otherwise, the value 'false' was not found in the enumerated set of
the XML DTD for the XML attribute 'required' in the XML element
'parameter'. Therefore, DTD validation of the runtime XML failed.

ASTERISK-29790

Change-Id: Id13f230ad65a70dd8c2e3ae9ac85d1e841aed03e
---
M doc/appdocsxml.xslt
1 file changed, 1 insertion(+), 3 deletions(-)

Approvals:
  Kevin Harwell: Looks good to me, but someone else must approve
  George Joseph: Looks good to me, approved; Approved for Submit



diff --git a/doc/appdocsxml.xslt b/doc/appdocsxml.xslt
index cbdbdf7..45c3e54 100644
--- a/doc/appdocsxml.xslt
+++ b/doc/appdocsxml.xslt
@@ -162,9 +162,7 @@
             <para>The video source mode for the bridge.</para>
         </xsl:element>
         <xsl:element name="parameter">
-            <xsl:attribute name="required">
-                false
-            </xsl:attribute>
+            <xsl:attribute name="required">false</xsl:attribute>
             <xsl:attribute name="name">
                 <xsl:value-of select="concat(@prefix, 'BridgeVideoSource')" />
             </xsl:attribute>

-- 
To view, visit https://gerrit.asterisk.org/c/asterisk/+/17594
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Change-Id: Id13f230ad65a70dd8c2e3ae9ac85d1e841aed03e
Gerrit-Change-Number: 17594
Gerrit-PatchSet: 3
Gerrit-Owner: Alexander Traud <pabstraud at compuserve.com>
Gerrit-Reviewer: Friendly Automation
Gerrit-Reviewer: George Joseph <gjoseph at digium.com>
Gerrit-Reviewer: Kevin Harwell <kharwell at digium.com>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20211213/469c7665/attachment.html>


More information about the asterisk-code-review mailing list