changeset 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 196853e0f455
children f6aca9a7370b
files orpg/networking/mplay_server.py orpg/orpg_version.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/orpg/networking/mplay_server.py	Tue Jun 15 16:17:11 2010 -0500
+++ b/orpg/networking/mplay_server.py	Tue Jun 15 18:55:49 2010 -0500
@@ -2004,7 +2004,7 @@
             given_boot_pwd = None
             try:
                 xml_dom = XML(msg)
-                given_boot_pwd = xml_dom.get("boot_pwd")
+                given_boot_pwd = xml_dom.find('boot').get("boot_pwd")
 
             except Exception, e:
                 print "Error in parse of boot message, Ignoring."
--- a/orpg/orpg_version.py	Tue Jun 15 16:17:11 2010 -0500
+++ b/orpg/orpg_version.py	Tue Jun 15 18:55:49 2010 -0500
@@ -4,7 +4,7 @@
 #BUILD NUMBER FORMAT: "YYMMDD-##" where ## is the incremental daily build index (if needed)
 DISTRO = "Traipse Alpha"
 DIS_VER = "Ornery Orc"
-BUILD = "100615-01"
+BUILD = "100615-02"
 
 # This version is for network capability.
 PROTOCOL_VERSION = "1.2"