# Copyright (C) 1999, Stefan Schwarzer # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # - Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # - Neither the name of the above author nor the names of the # contributors to the software may be used to endorse or promote # products derived from this software without specific prior written # permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # start of the HTML file html_start_dict = { 'generator': 'makepage.py', 'description': '[no description]', 'keywords': '[no keywords]', 'title': '[no title]', 'bgcolor': '#FFFFFF', 'textcolor': '#000000', 'linkcolor': '#0000FF', 'vlinkcolor': '#660099', 'alinkcolor': '#CC0000', 'html_header': '' } html_start = '''\ %(title)s %(html_header)s ''' # end of HTML file html_end_dict = { 'html_footer': '', 'imagedir': '.' } html_end = '''\
%(html_footer)s Top Top of this page ''' # format before url, between url and url text, # and between url text and following stuff link_format = [ '', '' ] # format before and after title title_format = [ '''\
''', '''\
\ ''' ] # numbering level (numbering not yet supported) # Do YOU _really_ consider it to be important? # Send your answer to Stefan Schwarzer ;-) # 0 no numbering # 1 sections, but not subsections # 2 both sections and subsections numbering_level = 0 # format before section title, between title and text, # and after section section_format = [ '

', '

\n\n', '' ] # format before subsection title, between title and text, # and after subsection subsection_format = [ '

', '

\n\n', '\n\n' ] # format before contents links, left from link, right to link, # between links, and after all links contents_format = [ '\n
\n', '[', ']', '\n', '\n

\n\n' ]