/[gnue]/gnue-navigator/src/GNObjects.py
ViewVC logotype

Diff of /gnue-navigator/src/GNObjects.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.18 by btami, Mon Jun 16 12:39:27 2003 UTC revision 1.19 by reinhard, Thu Sep 25 23:17:16 2003 UTC
# Line 30  Line 30 
30  import sys, string, os, os.path  import sys, string, os, os.path
31  from gnue.common.definitions import GObjects, GRootObj  from gnue.common.definitions import GObjects, GRootObj
32  from gnue.common.apps import GDebug, GConfig  from gnue.common.apps import GDebug, GConfig
33    from gnue import paths
34  import GNParser  import GNParser
35  try:  try:
36    from gnue.reports.base import GREngine,GRExceptions    from gnue.reports.base import GREngine,GRExceptions
# Line 64  class GNProcesses(GRootObj.GRootObj, GNO Line 65  class GNProcesses(GRootObj.GRootObj, GNO
65          formdir = gConfigNav('FormDir')          formdir = gConfigNav('FormDir')
66        except KeyError:        except KeyError:
67          formdir = ""          formdir = ""
68        formfile = os.environ['INSTALL_PREFIX']+'/'+formdir+"/"+step.location        formfile = os.path.join (paths.data, formdir, step.location)
69      else:      else:
70        formfile = step.location        formfile = step.location
71    
# Line 104  class GNProcesses(GRootObj.GRootObj, GNO Line 105  class GNProcesses(GRootObj.GRootObj, GNO
105          reportdir = gConfigNav('ReportDir')          reportdir = gConfigNav('ReportDir')
106        except KeyError:        except KeyError:
107          reportdir = ""          reportdir = ""
108        reportfile = os.environ['INSTALL_PREFIX']+'/'+reportdir+"/"+ \        reportfile = os.path.join (paths.data, reportdir, step.location)
                    step.location  
109      else:      else:
110        reportfile = step.location        reportfile = step.location
111                

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26