comparison orpg/plugindb.py @ 164:d263c8ff4d7c beta

Traipse Beta 'OpenRPG' {091202-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 (Beta) New Features: Added Bookmarks Added 'boot' command to remote admin Added confirmation window for sent nodes Minor changes to allow for portability to an OpenSUSE linux OS Miniatures Layer pop up box allows users to turn off Mini labels, from FlexiRPG Zoom Mouse plugin added Images added to Plugin UI Switching to Element Tree Map efficiency, from FlexiRPG Added Status Bar to Update Manager New TrueDebug Class in orpg_log (See documentation for usage) Portable Mercurial Tip of the Day added, from Core and community New Reference Syntax added for custom PC sheets New Child Reference for gametree New Gametree Recursion method, mapping, context sensitivity, and effeciency.. New Features node with bonus nodes and Node Referencing help added Added 7th Sea die roller method; ie [7k3] = [7d10.takeHighest(3).open(10)] New 'Mythos' System die roller added Added new vs. die roller method for WoD; ie [3v3] = [3d10.vs(3)]. Includes support for Mythos roller. Fixes: Fix to Text based Server Fix to Remote Admin Commands Fix to Pretty Print, from Core Fix to Splitter Nodes not being created Fix to massive amounts of images loading, from Core Fix to Map from gametree not showing to all clients Fix to gametree about menus Fix to Password Manager check on startup Fix to PC Sheets from tool nodes. They now use the tabber_panel Fixed Whiteboard ID to prevent random line or text deleting. Modified ID's to prevent non updated clients from ruining the fix. default_manifest.xml renamed to default_upmana.xml Fix to Update Manager; cleaner clode for saved repositories Fixes made to Settings Panel and no reactive settings when Ok is pressed.
author sirebral
date Wed, 02 Dec 2009 21:21:34 -0600
parents e842a5f1b775
children
comparison
equal deleted inserted replaced
162:e3714f232f2f 164:d263c8ff4d7c
159 dict_el = plugin.find(dictname) 159 dict_el = plugin.find(dictname)
160 if dict_el is None: 160 if dict_el is None:
161 dict_el = Element(dictname) 161 dict_el = Element(dictname)
162 dict_el.set('type', 'dict') 162 dict_el.set('type', 'dict')
163 plugin.append(dict_el) 163 plugin.append(dict_el)
164 else: 164 else:
165 dict_el.remove(list_el.find('dict')) 165 refs = dict_el.findall('dict')
166 keys = val.keys()
167 for r in refs:
168 if r.find('dobject').get('name') in keys:
169 logger.debug('Duplicate Dictionary Reference', True); return
166 dict_el.append(self.BuildDict(val)) 170 dict_el.append(self.BuildDict(val))
167 self.SaveDoc() 171 self.SaveDoc()
168 172
169 def FetchDict(self, parent): 173 def FetchDict(self, parent):
170 retdict = {} 174 retdict = {}
171 for ditem in parent.findall('dobject'): 175 for ditem in parent.find('dict').findall('dobject'):
172 key = self.normal(ditem.get('name')) 176 key = self.normal(ditem.get('name'))
173 if ditem.get('type') == 'int': value = int(ditem.text) 177 if ditem.get('type') == 'int': value = int(ditem.text)
174 elif ditem.get('type') == 'bool': value = ditem.text == 'True' 178 elif ditem.get('type') == 'bool': value = ditem.text == 'True'
175 elif ditem.get('type') == 'float': value = float(ditem.text) 179 elif ditem.get('type') == 'float': value = float(ditem.text)
176 elif ditem.get('type') == 'list': value = self.FetchList(ditem) 180 elif ditem.get('type') == 'list': value = self.FetchList(ditem)
177 elif ditem.get('type') == 'dict': value = self.FetchDict(ditem) 181 elif ditem.get('type') == 'dict': value = self.FetchDict(ditem)
178 else: value = str(self.normal(ditem[0])) 182 else: value = str(self.normal(ditem.text))
179 retdict[key] = value 183 retdict[key] = value
180 return retdict 184 return retdict
181 185
182 def GetDict(self, plugname, dictname, defaultval=dict(), verbose=False): 186 def GetDict(self, plugname, dictname, defaultval=dict(), verbose=False):
183 dictname = self.safe(dictname) 187 dictname = self.safe(dictname)