#!/usr/bin/python
##
## license:BSD-3-Clause
## copyright-holders:Vas Crabb
import string
ERROR_PAGE = string.Template(
'\n' \
'\n' \
'
\n' \
' \n' \
' ${code} ${message}\n' \
'\n' \
'\n' \
'${message}
\n' \
'\n' \
'\n')
SORTABLE_TABLE_EPILOGUE = string.Template(
' \n'
'\n'
'\n')
MACHINE_PROLOGUE = string.Template(
'\n' \
'\n' \
'\n' \
' \n' \
' \n' \
' \n' \
' \n' \
' \n' \
' \n' \
' \n' \
' Machine: ${description} (${shortname})\n' \
'\n' \
'\n' \
'${description}
\n' \
'\n' \
' Short name: | ${shortname} |
\n' \
' Is device: | ${isdevice} |
\n' \
' Runnable: | ${runnable} |
\n' \
' Source file: | ${sourcefile} |
\n')
MACHINE_CLONES_PROLOGUE = string.Template(
'Clones
\n' \
'\n' \
' \n' \
' \n' \
' Short name | \n' \
' Description | \n' \
' Year | \n' \
' Manufacturer | \n' \
'
\n' \
' \n' \
' \n')
MACHINE_CLONES_ROW = string.Template(
' \n' \
' ${shortname} | \n' \
' ${description} | \n' \
' ${year} | \n' \
' ${manufacturer} | \n' \
'
\n')
MACHINE_SOFTWARELISTS_TABLE_PROLOGUE = string.Template(
'Software Lists
\n' \
'\n' \
' \n' \
' \n' \
' Card | \n' \
' Short name | \n' \
' Description | \n' \
' Status | \n' \
' Total | \n' \
' Supported | \n' \
' Partially supported | \n' \
' Unsupported | \n' \
'
\n' \
' \n' \
' \n')
MACHINE_SOFTWARELISTS_TABLE_ROW = string.Template(
' \n' \
' | \n' \
' ${shortname} | \n' \
' ${description} | \n' \
' ${status} | \n' \
' ${total} | \n' \
' ${supported} | \n' \
' ${partiallysupported} | \n' \
' ${unsupported} | \n' \
'
\n')
MACHINE_SOFTWARELISTS_TABLE_EPILOGUE = string.Template(
' \n' \
'
\n' \
'\n')
MACHINE_OPTIONS_HEADING = string.Template(
'Options
\n' \
'\n' \
' Format: \n' \
' \n' \
'
\n' \
'\n')
MACHINE_BIOS_PROLOGUE = string.Template(
'System BIOS
' \
'