Mercurial > traipse
diff upmana/manifest.py @ 18:97265586402b ornery-orc
Traipse 'OpenRPG' {090827-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:
Update Manager is now in version 0.8. While not every button works, users can now browse the different revisions and their different changesets. The code has been refined some with feature from Core added to it. A Crash report is now created if the users software crashes. Update Manager has been moved to the Traipse Suite menu item, and a Debug Console as been added as well.
author | sirebral |
---|---|
date | Thu, 27 Aug 2009 01:04:43 -0500 |
parents | 265b987cce4f |
children | ff154cf3350c |
line wrap: on
line diff
--- a/upmana/manifest.py Thu Aug 13 13:14:10 2009 -0500 +++ b/upmana/manifest.py Thu Aug 27 01:04:43 2009 -0500 @@ -1,13 +1,13 @@ import xmltramp -import orpg.dirpath +from orpg.dirpath import dir_struct import upmana.validate from os import sep from types import * class ManifestChanges: def __init__(self, filename="updatemana.xml"): - self.filename = orpg.dirpath.dir_struct["home"] + 'upmana' + sep + filename - upmana.validate.Validate(orpg.dirpath.dir_struct["home"] + 'upmana' + sep).config_file(filename,"default_manifest.xml") + self.filename = dir_struct["home"] + 'upmana' + sep + filename + upmana.validate.Validate(dir_struct["home"] + 'upmana' + sep).config_file(filename,"default_manifest.xml") self.xml_dom = self.LoadDoc() def GetString(self, plugname, strname, defaultval, verbose=0):