annotate orpg/orpg_xml.py @ 34:1fb663829ef6 ornery-orc

Traipse 'OpenRPG' {100504-00} 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) http://traipse.assembla.com/wiki/show/traipse/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 Namespace 2.0 documentation in the User Manual New Namespace plugin, Allows Traipse users to use the Standard syntax !@ :: @! New Mini Library with minis from Devin Knight New PluginDB access for URL2Link plugin New to Forms, they now show their content in Design Mode New to Update Manager, checks Repo for updates on software start New to Mini Lib node, change title in design mode New to Game Tree, never lose a node, appends a number to the end of corrupted trees New to Server GUI, Traipse Suite's Debug Console New Warhammer PC Sheet Updates: Update to White Board layer, uses a pencil image for color button Update to Grid Layer, uses a grid image for color button Update to Chat Window, size of drop down menus Update to default lobby message Update to template Text node Update to 4e PC Sheet node Update to how display names are acquired Update to Server, added some 'Pious' technology Update to features node 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 Fix to a broken link in the server welcome message Fix to InterParse and logger requiring traceback Fix to Update Manager Status Bar Fix to failed image and erroneous pop up Fix to Mini Lib node that was preventing use Fix to plugins that parce dice but did not call InterParse Fix to nodes for name changing by double click Fix to Game Tree, node ordering on drag and drop corrected Fix to Game Tree, corrupted error message was not showing Fix to Update Manager, checks for internet connection Fix to Update Manager, Auto Update corrections Fix to Server GUI's broadcast, room, player messaging
author sirebral
date Tue, 04 May 2010 10:43:29 -0500
parents ff154cf3350c
children d02e9197c066
rev   line source
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
1 # Copyright (C) 2000-2001 The OpenRPG Project
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
2 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
3 # openrpg-dev@lists.sourceforge.net
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
4 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
5 # This program is free software; you can redistribute it and/or modify
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
6 # it under the terms of the GNU General Public License as published by
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
7 # the Free Software Foundation; either version 2 of the License, or
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
8 # (at your option) any later version.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
9 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
10 # This program is distributed in the hope that it will be useful,
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
13 # GNU General Public License for more details.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
14 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
16 # along with this program; if not, write to the Free Software
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
18 # --
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
19 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
20 # File: orpg_xml.py
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
21 # Author: Chris Davis
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
22 # Maintainer:
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
23 # Version:
28
ff154cf3350c Traipse 'OpenRPG' {100203-00}
sirebral
parents: 18
diff changeset
24 # $Id: orpg_xml.py,v Traipse 'Ornery-Orc' prof.ebral Exp $
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
25 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
26 # Description: xml utilies
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
27 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
28
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
29 from orpg import minidom
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
30 import string
28
ff154cf3350c Traipse 'OpenRPG' {100203-00}
sirebral
parents: 18
diff changeset
31 from orpg.tools.orpg_log import logger, debug
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
32
28
ff154cf3350c Traipse 'OpenRPG' {100203-00}
sirebral
parents: 18
diff changeset
33 class xml:
ff154cf3350c Traipse 'OpenRPG' {100203-00}
sirebral
parents: 18
diff changeset
34 debug('Developers note. Deprecated call to orpg_xml!!')
18
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
35 def __init__(self):
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
36 pass
28
ff154cf3350c Traipse 'OpenRPG' {100203-00}
sirebral
parents: 18
diff changeset
37
18
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
38 def toxml(self, root, pretty=0):
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
39 return root.toxml(pretty)
28
ff154cf3350c Traipse 'OpenRPG' {100203-00}
sirebral
parents: 18
diff changeset
40
18
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
41 def parseXml(self, s):
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
42 "parse and return doc"
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
43 try:
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
44 doc = minidom.parseString(s)
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
45 doc.normalize()
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
46 return doc
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
47 except Exception, e:
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
48 print e
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
49 return None
28
ff154cf3350c Traipse 'OpenRPG' {100203-00}
sirebral
parents: 18
diff changeset
50
18
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
51 def safe_get_text_node(self, xml_dom):
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
52 """ returns the child text node or creates one if doesnt exist """
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
53 t_node = xml_dom._get_firstChild()
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
54 if t_node == None:
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
55 t_node = minidom.Text("")
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
56 t_node = xml_dom.appendChild(t_node)
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
57 return t_node
28
ff154cf3350c Traipse 'OpenRPG' {100203-00}
sirebral
parents: 18
diff changeset
58
18
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
59 def strip_unicode(self, txt):
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
60 for i in xrange(len(txt)):
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
61 if txt[i] not in string.printable:
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
62 try: txt = txt.replace(txt[i], '&#' + str(ord(txt[i])) + ';')
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
63 except: txt = txt.replace(txt[i], '{?}')
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
64 return txt
28
ff154cf3350c Traipse 'OpenRPG' {100203-00}
sirebral
parents: 18
diff changeset
65
18
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
66 def strip_text(self, txt):
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
67 # The following block strips out 8-bit characters
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
68 u_txt = ""
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
69 bad_txt_found = 0
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
70 txt = self.strip_unicode(txt)
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
71 for c in txt:
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
72 if ord(c) < 128: u_txt += c
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
73 else: bad_txt_found = 1
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
74 if bad_txt_found: print "Some non 7-bit ASCII characters found and stripped"
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
75 return u_txt
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
76
18
97265586402b Traipse 'OpenRPG' {090827-00}
sirebral
parents: 13
diff changeset
77 xml = xml()