"
- groutstring += "Group " + str(k) + ": " + self.groups[k].name + ""
+ groupstring += "Group " + str(k) + ": " + self.groups[k].name + ""
groupstring += " | Password: " + self.groups[k].pwd + " | "
groupstring += " Boot: " + self.groups[k].boot_pwd + " |
"
pl += groupstring
diff -r 8834425a85b0 -r 0d9b746b5751 orpg/orpgCore.py
--- a/orpg/orpgCore.py Thu Dec 10 23:16:08 2009 -0600
+++ b/orpg/orpgCore.py Fri Jan 15 23:01:42 2010 -0600
@@ -71,6 +71,16 @@
if self.__components.has_key(key): del self.__components[key]
else: return
+ def strip_html(self, string):
+ ret_string = ""; x = 0; in_tag = 0
+ for x in range(len(string)) :
+ if string[x] == "<" or string[x] == ">" or in_tag == 1 :
+ if string[x] == "<": in_tag = 1
+ elif string[x] == ">": in_tag = 0
+ else: pass
+ else: ret_string = ret_string + string[x]
+ return ret_string
+
###Grumpy to Ornery###
def add_component(self, key, com):
return self.add(key, com)
diff -r 8834425a85b0 -r 0d9b746b5751 orpg/orpg_version.py
--- a/orpg/orpg_version.py Thu Dec 10 23:16:08 2009 -0600
+++ b/orpg/orpg_version.py Fri Jan 15 23:01:42 2010 -0600
@@ -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 = "091210-01"
+BUILD = "100115-00"
# This version is for network capability.
PROTOCOL_VERSION = "1.2"
diff -r 8834425a85b0 -r 0d9b746b5751 orpg/templates/default_Lobby_map.xml
--- a/orpg/templates/default_Lobby_map.xml Thu Dec 10 23:16:08 2009 -0600
+++ b/orpg/templates/default_Lobby_map.xml Fri Jan 15 23:01:42 2010 -0600
@@ -1,7 +1,7 @@