#! /usr/bin/env python """Define several XHTML document strings to be used in VerseMatch. Unlike the original program written in Java, a large portion of the XHTML code is defined separately here to be used as format strings.""" ################################################################################ __author__ = 'Stephen "Zero" Chappell ' __date__ = '11 February 2010' __version__ = '$Revision: 3 $' ################################################################################ TEMPLATE = '''\ {} Simple "Verse Quiz" Servlet

Verse Quiz, by Stephen Paul Chappell


| | | | {}
''' ################################################################################ REFRESH = '''\ ''' ################################################################################ GET_QUIZ = '''\
Quiz Selection

Choose one of the lists down below:

{}
''' ################################################################################ GET_VERSE = '''\ | |
Verse Selection

Choose a verse from {}:

{}
''' ################################################################################ TEACH = '''\ | |
{}
Verse Entry Submission

When you are done:

''' ################################################################################ VERSE = '''\
{0}{1}
''' ################################################################################ CHECK = '''\ | |
Please Wait

{} verse{} been graded so far.

'''