[wpdev-commits] xmlscripts/web status_template.html,1.1,1.2
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-08-28 16:25:36
|
Update of /cvsroot/wpdev/xmlscripts/web In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32638 Modified Files: status_template.html Log Message: fix for umlauts Index: status_template.html =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/web/status_template.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** status_template.html 18 Jul 2004 16:43:54 -0000 1.1 --- status_template.html 28 Aug 2004 16:25:27 -0000 1.2 *************** *** 120,129 **** if NOTOCOLORS.has_key(notoriety): ! print '<font color="%s" face="Georgia"><b>%s</b></font>' % (NOTOCOLORS[notoriety], socket.player.name) else: print '<b>%s</b>' % socket.player.name if socket.player.region and len(socket.player.region.name) > 0: ! print ' (%s)' % socket.player.region.name print '</td></tr>' --- 120,129 ---- if NOTOCOLORS.has_key(notoriety): ! print '<font color="%s" face="Georgia"><b>%s</b></font>' % (NOTOCOLORS[notoriety], unicode(socket.player.name)) else: print '<b>%s</b>' % socket.player.name if socket.player.region and len(socket.player.region.name) > 0: ! print ' (%s)' % unicode(socket.player.region.name) print '</td></tr>' |