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
Adding check boxes available by means of indicators `- [ ]` / `- [x]` / `- [X]`.
Adding checkbox possibilities to the different output formats
Updating documentation
Small example: [example.tar.gz](https://github.com/doxygen/doxygen/files/4226518/example.tar.gz)
This actually the same implementation as with the original proposed pull request #7602 though due to changes in time it was not easy (possible) to merge the original against master
# Validate type DoxCheck, a restriction on xsd:string.
17439
+
if value is not None and Validate_simpletypes_ and self.gds_collector_ is not None:
17440
+
if not isinstance(value, str):
17441
+
lineno = self.gds_get_node_lineno_()
17442
+
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s is not of the correct base simple type (str)' % {"value": value, "lineno": lineno, })
17443
+
return False
17444
+
value = value
17445
+
enumerations = ['checked', 'unchecked']
17446
+
if value not in enumerations:
17447
+
lineno = self.gds_get_node_lineno_()
17448
+
self.gds_collector_.add_message('Value "%(value)s"%(lineno)s does not match xsd enumeration restriction on DoxCheck' % {"value" : encode_str_2_3(value), "lineno": lineno} )
0 commit comments