changeset 237:42f4809ad8a8 beta

Traipse Beta 'OpenRPG' {100616-01} 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 (Closing/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. Update to Browser Server window. Display rooms with ' " & cleaner Update to Server. Handles ' " & cleaner. 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 Wed, 16 Jun 2010 03:11:55 -0500
parents 9230a33defd9
children b44dad398833
files orpg/networking/gsclient.py orpg/orpg_version.py
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/orpg/networking/gsclient.py	Wed Jun 16 03:06:20 2010 -0500
+++ b/orpg/networking/gsclient.py	Wed Jun 16 03:11:55 2010 -0500
@@ -350,7 +350,7 @@
         if (data[2]=="1") or (data[2]=="True"): pwd="yes"
         else: pwd="no"
         name = data[1].replace('&', "&")
-        name = name.replace('"', '&quote;').replace("'", '&#39;').replace("<", "&lt;").replace(">", "&gt;").replace('&quot;', '"').replace('&#39;', "'")
+        name = name.replace('&quot;', '"').replace('&#39;', "'").replace("&lt;", '<').replace("&gt;", '>')
         self.room_list.InsertStringItem(i, name)
         self.room_list.SetStringItem(i,1,data[3])
         self.room_list.SetStringItem(i,2,pwd)
@@ -444,7 +444,7 @@
             if (g[2]=="True") or (g[2]=="1") : pwd="yes"
             else: pwd="no"
             name = g[1].replace('&amp;', "&")
-            name = name.replace('"', '&quote;').replace("'", '&#39;').replace("<", "&lt;").replace(">", "&gt;")
+            name = name.replace('&quot;', '"').replace('&#39;', "'").replace("&lt;", '<').replace("&gt;", '>')
             self.room_list.InsertStringItem(i, name)
             self.room_list.SetStringItem(i, 1, g[3])
             self.room_list.SetStringItem(i, 2, pwd)
@@ -486,7 +486,7 @@
 
                     for room in rooms:
                         name = room.get('name').replace('&amp;', "&")
-                        name = name.replace('"', '&quote;').replace("'", '&#39;').replace("<", "&lt;").replace(">", "&gt;")
+                        name = name.replace('&quot;', '"').replace('&#39;', "'").replace("&lt;", '<').replace("&gt;", '>')
                         self.rmList[address].append((room.get("id"), name, 
                                                     room.get("pwd"), room.get("num_users")))
                 self.svrList.sort(server_instance_compare)
--- a/orpg/orpg_version.py	Wed Jun 16 03:06:20 2010 -0500
+++ b/orpg/orpg_version.py	Wed Jun 16 03:11:55 2010 -0500
@@ -4,7 +4,7 @@
 #BUILD NUMBER FORMAT: "YYMMDD-##" where ## is the incremental daily build index (if needed)
 DISTRO = "Traipse Beta"
 DIS_VER = "Ornery Orc"
-BUILD = "100616-00"
+BUILD = "100616-01"
 
 # This version is for network capability.
 PROTOCOL_VERSION = "1.2"