DeclTable.py A program to generate an HTML table
containing a given Russian declension list.
Distributed under the GNU Public License with no
guarentees expressed or implied and not intended to be
suitable for any use.
by Edward Charles Eberle <eberdeed@eberdeed.net>
August 1, 2016, San Diego, CA, USA
Classes |
| |
- builtins.object
-
- DeclTable
class DeclTable(builtins.object) |
|
A program to generate an HTML table
containing a given Russian declension list. |
|
Methods defined here:
- __init__(self, rustr, begin=0)
- Initialize the class and create a title for the table.
- addrow(self, rowlist)
- Add a row to the HTML table.
- table(self)
- Generate the completed table and return it to the calling class.
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
Data and other attributes defined here:
- caltable = ''
- closedatum = '</td>'
- closerow = '</tr>'
- count = 0
- datumtag = '<td>'
- footer = '</tr>\n</table>\n</center><BR><BR>\n</body>\n</html>\n'
- header = '\n <html>\n <head>\n <meta... </style>\n </head>\n <body>\n '
- nameheader = '<center>{}</center><BR>\n<center>\n<table>\n<tr>\n<t...\n<td>Dat</td>\n<td>Instr</td>\n<td>Prep</td>\n</tr>\n'
- newline = '\n'
- rowtag = '<tr>'
- rustr = ''
| |