You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bug 512677 New command specifying an empty comment
A new command `\trivial` is introduced signaling that the entity is "trivial" and does not need to be documented.
Advantage is that the entity will appear in the documentation without using a setting like `EXTRACT_ALL`
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s does not match xsd enumeration restriction on DoxCompoundKind' % {"value" : encode_str_2_3(value), "lineno": lineno} )
1768
1774
result = False
1769
-
def validate_DoxLanguage(self, value):
1770
-
# Validate type DoxLanguage, a restriction on xsd:string.
1775
+
def validate_DoxBool(self, value):
1776
+
# Validate type DoxBool, a restriction on xsd:string.
1771
1777
if value is not None and Validate_simpletypes_ and self.gds_collector_ is not None:
1772
1778
if not isinstance(value, str):
1773
1779
lineno = self.gds_get_node_lineno_()
1774
1780
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s is not of the correct base simple type (str)' % {"value": value, "lineno": lineno, })
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s does not match xsd enumeration restriction on DoxLanguage' % {"value" : encode_str_2_3(value), "lineno": lineno} )
1786
+
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s does not match xsd enumeration restriction on DoxBool' % {"value" : encode_str_2_3(value), "lineno": lineno} )
1781
1787
result = False
1782
-
def validate_DoxProtectionKind(self, value):
1783
-
# Validate type DoxProtectionKind, a restriction on xsd:string.
1788
+
def validate_DoxLanguage(self, value):
1789
+
# Validate type DoxLanguage, a restriction on xsd:string.
1784
1790
if value is not None and Validate_simpletypes_ and self.gds_collector_ is not None:
1785
1791
if not isinstance(value, str):
1786
1792
lineno = self.gds_get_node_lineno_()
1787
1793
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s is not of the correct base simple type (str)' % {"value": value, "lineno": lineno, })
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s does not match xsd enumeration restriction on DoxProtectionKind' % {"value" : encode_str_2_3(value), "lineno": lineno} )
1799
+
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s does not match xsd enumeration restriction on DoxLanguage' % {"value" : encode_str_2_3(value), "lineno": lineno} )
1794
1800
result = False
1795
-
def validate_DoxBool(self, value):
1796
-
# Validate type DoxBool, a restriction on xsd:string.
1801
+
def validate_DoxProtectionKind(self, value):
1802
+
# Validate type DoxProtectionKind, a restriction on xsd:string.
1797
1803
if value is not None and Validate_simpletypes_ and self.gds_collector_ is not None:
1798
1804
if not isinstance(value, str):
1799
1805
lineno = self.gds_get_node_lineno_()
1800
1806
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s is not of the correct base simple type (str)' % {"value": value, "lineno": lineno, })
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s does not match xsd enumeration restriction on DoxBool' % {"value" : encode_str_2_3(value), "lineno": lineno} )
1812
+
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s does not match xsd enumeration restriction on DoxProtectionKind' % {"value" : encode_str_2_3(value), "lineno": lineno} )
0 commit comments