• Home
  • Raw
  • Download

Lines Matching full:page

167     """Generate body of a reference page.
169 - pageName - string name of the page
170 - pageDesc - string short description of the page
175 - man_section - Unix man page section"""
218 """Generate header of a reference page.
220 - pageName - string name of the page
221 - pageDesc - string short description of the page
252 """Generate end boilerplate of a reference page.
254 - pageName - name of the page
277 'This page is a generated document.',
283 'This page is extracted from the ' + specName + ' Specification. ',
352 """Extract a single reference page into baseDir.
354 - baseDir - base directory to emit page into
355 - specDir - directory extracted page source came from
356 - pi - pageInfo for this page relative to file
360 # Add a dictionary entry for this page
376 logWarn('emitPage:', pageName, 'INCLUDE is None, no page generated')
431 """Autogenerate a single reference page in baseDir.
435 - baseDir - base directory to emit page into
436 - pi - pageInfo for this page relative to file
441 # Add a dictionary entry for this page
456 ' * The reference page for ',
487 """Autogenerate a single reference page in baseDir for an API *Flags type.
489 - baseDir - base directory to emit page into
494 # Add a dictionary entry for this page
540 """Autogenerate a single handle page in baseDir for an API handle type.
542 - baseDir - base directory to emit page into
549 # Add a dictionary entry for this page
583 - baseDir - output directory to generate page in"""
599 # Create each page, if possible
617 # Don't extract this page
628 """Generate baseDir/apispec.txt, the single-page version of the ref pages.
630 This assumes there's a page for everything in the api module dictionaries.
632 # Accumulate head of page
668 # Accumulate body of page
689 # aliased page
691 # Add page to body
698 # emit page
707 'in single-page reference',
727 - baseDir - output directory to generate page in
733 # Add a dictionary entry for this page
754 # values: neither of which get a ref page - although we could
759 logWarn('ERROR: {} (in extension {}) does not have a ref page.'.format(req_name, name))
778 # Fall through to autogenerated page
905 # for page in api.flags:
906 # if page not in genDict:
907 # autoGenFlagsPage(baseDir, page)
911 # for page in api.structs:
912 # if typeCategory[page] == 'handle':
913 # autoGenHandlePage(baseDir, page)
929 # warning for the first non-generated page, but was otherwise
931 for page in apiDict:
932 if page not in genDict:
933 # Page was not generated - why not?
934 if page in api.alias:
935 … logWarn('(Benign, is an alias) Ref page for', title, page, 'is aliased into', api.alias[page])
936 elif page in api.flags and api.flags[page] is None:
937 logWarn('(Benign, no FlagBits defined) No ref page generated for ', title,
938 page)
942 logWarn('No ref page generated for ', title, page)
950 for page in sorted(pages):
951 p = pages[page]
954 if page != rewrite:
955 print('RewriteRule ^', page, '.html$ ', rewrite, '.html',
968 for page in sorted(pages, key=str.upper):
969 p = pages[page]
970 letter = page[0:1].upper()
982 # Add this page to the list
984 'target="pagedisplay">', page, '</a></li>',
996 # print('name {} -> page {}'.format(page, pages[page].name))