From: <ror...@us...> - 2007-07-08 19:09:34
|
Revision: 97 http://roreditor.svn.sourceforge.net/roreditor/?rev=97&view=rev Author: rorthomas Date: 2007-07-08 12:09:32 -0700 (Sun, 08 Jul 2007) Log Message: ----------- * minor corrections Modified Paths: -------------- trunk/lib/ror/depchecker.py trunk/lib/ror/starter.py trunk/lib/ror/svngui.py Modified: trunk/lib/ror/depchecker.py =================================================================== --- trunk/lib/ror/depchecker.py 2007-07-08 19:01:38 UTC (rev 96) +++ trunk/lib/ror/depchecker.py 2007-07-08 19:09:32 UTC (rev 97) @@ -3,6 +3,7 @@ DEPCHECKPATH = "depcheckerplugins" sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), DEPCHECKPATH)) +print os.path.join(os.path.dirname(os.path.abspath(__file__)), DEPCHECKPATH) from deptools import * REMOVE_UNUSED_MATERIALS = True Modified: trunk/lib/ror/starter.py =================================================================== --- trunk/lib/ror/starter.py 2007-07-08 19:01:38 UTC (rev 96) +++ trunk/lib/ror/starter.py 2007-07-08 19:09:32 UTC (rev 97) @@ -120,9 +120,9 @@ dlg = wx.MessageDialog(self, "to get this working, you must install tools/pyparsing*.exe and tools/graphviz*.exe!", "Info", wx.OK | wx.ICON_INFORMATION) dlg.ShowModal() dlg.Destroy() - import depchecker - depchecker.RoRDepChecker(self.rordir, "all", "") - dlg = wx.MessageDialog(self, "If everything went fine (and you got the correct tools installed), you should find the graph in the RoRToolkit Directory under dependencies.png!", "Info", wx.OK | wx.ICON_INFORMATION) + from depchecker import * + RoRDepChecker(self.rordir, "all", "") + dlg = wx.MessageDialog(self, "If everything went fine (and you got the correct tools installed), you should find the graph in the RoRToolkit Directory under dependencies.png!\n it is best viewed in firefox.\nred means missing/nout found.", "Info", wx.OK | wx.ICON_INFORMATION) dlg.ShowModal() dlg.Destroy() Modified: trunk/lib/ror/svngui.py =================================================================== --- trunk/lib/ror/svngui.py 2007-07-08 19:01:38 UTC (rev 96) +++ trunk/lib/ror/svngui.py 2007-07-08 19:09:32 UTC (rev 97) @@ -41,7 +41,7 @@ def notify(self, event_dict): self.changes += 1 - msg = str(event_dict['action']) + ", " + event_dict['path'] + msg = str(event_dict['action']) + ", " + os.path.basename(event_dict['path']) #self.pr.Update(self.changes % 100, msg) self.pr.Pulse(msg) \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |