# HG changeset patch # User sirebral # Date 1272368541 18000 # Node ID 1cf8ab465672b48193bc2511ee4de75ee0352235 # Parent 43a91298ac3337b243a220e706de51e684ec7dd4 Traipse Alpha 'OpenRPG' {100427-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 (Patch-2) New Features: New Namespace method with two new syntaxes New Namespace Internal is context sensitive, always! New Namespace External is 'as narrow as you make it' New Namespace FutureCheck helps ensure you don't receive an incorrect node New PluginDB access for URL2Link plugin New to Forms, they now show their content in Design Mode Fixes: Fix to Server GUI startup errors Fix to Server GUI Rooms tab updating Fix to Chat and Settings if non existant die roller is picked Fix to Dieroller and .open() used with .vs(). Successes are correctly calculated Fix to Alias Lib's Export to Tree, Open, Save features Fix to alias node, now works properly Fix to Splitter node, minor GUI cleanup Fix to Backgrounds not loading through remote loader Fix to Node name errors Fix to rolling dice in chat Whispers Fix to Splitters Sizing issues Fix to URL2Link plugin, modified regex compilation should remove memory leak Fix to mapy.py, a roll back due to zoomed grid issues Fix to whiteboard_handler, Circles work by you clicking the center of the circle Fix to Servers parse_incoming_dom which was outdated and did not respect XML Daily: I was having problems with Chat tabs. All fixed now. diff -r 43a91298ac33 -r 1cf8ab465672 orpg/networking/mplay_server.py --- a/orpg/networking/mplay_server.py Tue Apr 27 01:56:39 2010 -0500 +++ b/orpg/networking/mplay_server.py Tue Apr 27 06:42:21 2010 -0500 @@ -1396,13 +1396,16 @@ self.incoming_event.set() def parse_incoming_dom(self, data): - end = data.find(">") #locate end of first element of message + end = data.find(">") head = data[:end+1] - xml_dom = None + msg = data[end+1:] + ### This if statement should help close invalid messages. ### + if head[end:] != '/': + if head[end:] != '>': head = head[:end] + '/>' try: - xml_dom = XML(head) + try: xml_dom = fromstring(head) + except: xml_dom = fromstring(head[:end] +'/>') self.message_action(xml_dom, data) - except Exception, e: print "Error in parse of inbound message. Ignoring message." print " Offending data(" + str(len(data)) + "bytes)=" + data diff -r 43a91298ac33 -r 1cf8ab465672 orpg/orpg_version.py --- a/orpg/orpg_version.py Tue Apr 27 01:56:39 2010 -0500 +++ b/orpg/orpg_version.py Tue Apr 27 06:42:21 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 = "100427-01" +BUILD = "100427-02" # This version is for network capability. PROTOCOL_VERSION = "1.2"