comparison orpg/networking/mplay_server.py @ 234:f96e0e6d32d2 alpha

Traipse Alpha 'OpenRPG' {100615-02} Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the productivity of the user. Update Summary (Closed) New Features: New to Map, can re-order Grid, Miniatures, and Whiteboard layer draw order New to Server GUI, can now clear log Updates: Update to Warhammer PC Sheet. Rollers set as macros. Should work with little maintanence. Fixes: Fix to InterParse that was causing an Infernal Loop with Namespace Internal Fix to XML data, removed old Minidom and switched to Element Tree Fix to Server that was causing eternal attempt to find a Server ID, in Register Rooms thread Fix to metaservers.xml file not being created Fix to Single and Double quotes in Whiteboard text Fix to Background images not showing when using the Image Server Fix to Duplicate chat names appearing Fix to Server GUI's logging output Fix to FNB.COLORFUL_TABS bug.
author sirebral
date Tue, 15 Jun 2010 18:55:49 -0500
parents 53ae14747ba7
children f6aca9a7370b
comparison
equal deleted inserted replaced
233:196853e0f455 234:f96e0e6d32d2
2002 xml_dom = None 2002 xml_dom = None
2003 try: 2003 try:
2004 given_boot_pwd = None 2004 given_boot_pwd = None
2005 try: 2005 try:
2006 xml_dom = XML(msg) 2006 xml_dom = XML(msg)
2007 given_boot_pwd = xml_dom.get("boot_pwd") 2007 given_boot_pwd = xml_dom.find('boot').get("boot_pwd")
2008 2008
2009 except Exception, e: 2009 except Exception, e:
2010 print "Error in parse of boot message, Ignoring." 2010 print "Error in parse of boot message, Ignoring."
2011 print "Exception: " 2011 print "Exception: "
2012 traceback.print_exc() 2012 traceback.print_exc()