version 1.19, 2014/05/22 23:01:34
|
version 1.21, 2014/07/30 18:31:16
|
Line 90 class DRMSParams: |
|
Line 90 class DRMSParams: |
|
| |
PY_FXNS_B = """ def get(self, name): | PY_FXNS_B = """ def get(self, name): |
if name in self.params: | if name in self.params: |
return self.parms[name] |
return self.params[name] |
else: | else: |
return None | return None |
""" | """ |
Line 545 def parseConfig(fin, keymap, addenda, de |
|
Line 545 def parseConfig(fin, keymap, addenda, de |
|
# Must parse xml and use the project-specific information to populate the Rules.mk and target.mk files. | # Must parse xml and use the project-specific information to populate the Rules.mk and target.mk files. |
# Collect all xml lines for now, then process after file-read loop. | # Collect all xml lines for now, then process after file-read loop. |
if xml is None: | if xml is None: |
xml = line |
# The first time through this section, line is the config.local div, __PROJ__. Discard that. |
|
xml = '' |
|
continue |
else: | else: |
xml += line | xml += line |
else: | else: |