[jToolkit-cvs] jToolkit/widgets widgets.py,1.12,1.13
Brought to you by:
davidfraser,
friedelwolff
From: <dav...@us...> - 2004-02-10 08:09:29
|
Update of /cvsroot/jtoolkit/jToolkit/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15036 Modified Files: widgets.py Log Message: Added ordered list widget Index: widgets.py =================================================================== RCS file: /cvsroot/jtoolkit/jToolkit/widgets/widgets.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** widgets.py 9 Feb 2004 14:42:30 -0000 1.12 --- widgets.py 10 Feb 2004 08:06:13 -0000 1.13 *************** *** 157,160 **** --- 157,164 ---- ContentWidget.__init__(self, "ul", contents, newattribs) + class OList(ContentWidget): + def __init__(self, contents, newattribs = {}): + ContentWidget.__init__(self, "ol", contents, newattribs) + class Option(ContentWidget): def __init__(self, value, description, selected=0): |