Merge pull request #8200 from bojidar-bg/doctool-make-properties

Update classes.xml to master version, add a small feature to doc_status

[ci skip]
This commit is contained in:
Rémi Verschelde 2017-03-29 22:48:48 +02:00 committed by GitHub
commit 92b6c8095a
2 changed files with 9797 additions and 9163 deletions

File diff suppressed because it is too large Load diff

View file

@ -20,6 +20,7 @@ flags = {
'p': False,
'o': True,
'i': False,
'a': True,
}
flag_descriptions = {
'c': 'Toggle colors when outputting.',
@ -31,6 +32,7 @@ flag_descriptions = {
'p': 'Toggle showing percentage as well as counts.',
'o': 'Toggle overall column.',
'i': 'Toggle collapse of class items columns.',
'a': 'Toggle showing all items.',
}
long_flags = {
'colors': 'c',
@ -58,6 +60,8 @@ long_flags = {
'items': 'i',
'collapse': 'i',
'all': 'a',
}
table_columns = ['name', 'brief_description', 'description', 'methods', 'constants', 'members', 'signals']
table_column_names = ['Name', 'Brief Desc.', 'Desc.', 'Methods', 'Constants', 'Members', 'Signals']
@ -354,12 +358,11 @@ for cn in input_class_list:
validate_tag(c, 'class')
status = ClassStatus.generate_for_class(c)
if flags['b'] and status.is_ok():
continue
if flags['g'] and not status.is_ok():
total_status = total_status + status
if (flags['b'] and status.is_ok()) or (flags['g'] and not status.is_ok()) or (not flags['a']):
continue
total_status = total_status + status
out = status.make_output()
row = []
for column in table_columns:
@ -378,11 +381,11 @@ for cn in input_class_list:
# Print output table #
################################################################################
if len(table) == 1:
if len(table) == 1 and flags['a']:
print(color('part_big_problem', 'No classes suitable for printing!'))
sys.exit(0)
if len(table) > 2:
if len(table) > 2 or not flags['a']:
total_status.name = 'Total = {0}'.format(len(table) - 1)
out = total_status.make_output()
row = []