Update of /cvsroot/wpdev/xmlscripts/scripts/system
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11522/system
Modified Files:
pages.py
Log Message:
page fix
Index: pages.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/system/pages.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** pages.py 17 Sep 2004 18:19:46 -0000 1.3
--- pages.py 20 Sep 2004 00:06:13 -0000 1.4
***************
*** 154,158 ****
gump.addText( 50, 160, "Message:", hue )
! html = "<body text=\"#0000FF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">%s</body>" % "<br>".join(self.message)
gump.addResizeGump( 45, 180, 0xBB8, 345, 84 )
gump.addHtmlGump( 50, 180, 340, 80, unicode(html) )
--- 154,158 ----
gump.addText( 50, 160, "Message:", hue )
! html = u"<body text=\"#0000FF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">%s</body>" % u"<br>".join(unicode(self.message))
gump.addResizeGump( 45, 180, 0xBB8, 345, 84 )
gump.addHtmlGump( 50, 180, 340, 80, unicode(html) )
|