diff options
author | Unknown <t-espave@A3479886.redmond.corp.microsoft.com> | 2011-07-15 16:33:03 -0700 |
---|---|---|
committer | Unknown <t-espave@A3479886.redmond.corp.microsoft.com> | 2011-07-15 16:33:03 -0700 |
commit | 7c26f1882da116c88bec2dde317623006af3e153 (patch) | |
tree | ec7c489a8f42859db61f2c469cc942402edfcc4b /BCT/PhoneControlsExtractor | |
parent | fb0960efe49ccb771ffee57e2cfaccdac6db4e04 (diff) |
- keeping track of BCT name changes to controls
- injecting navigation changes code
Diffstat (limited to 'BCT/PhoneControlsExtractor')
-rw-r--r-- | BCT/PhoneControlsExtractor/PhoneControlsExtractor.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/BCT/PhoneControlsExtractor/PhoneControlsExtractor.py b/BCT/PhoneControlsExtractor/PhoneControlsExtractor.py index 89cc0c31..f4b3d6f4 100644 --- a/BCT/PhoneControlsExtractor/PhoneControlsExtractor.py +++ b/BCT/PhoneControlsExtractor/PhoneControlsExtractor.py @@ -114,7 +114,8 @@ def outputPhoneControls(outputFileName): checked= control["Checked"]
unchecked= control["Unchecked"]
pageXAML= control["XAML"]
- outputFile.write(page + "," + os.path.basename(pageXAML) + "," + control["Type"] + "," + control["Name"] + "," + isEnabled + "," + visibility + "," + click + "," + checked + "," + unchecked + "\n")
+ # last comma is to account for bpl translation name, that is unknown for now
+ outputFile.write(page + "," + os.path.basename(pageXAML) + "," + control["Type"] + "," + control["Name"] + "," + isEnabled + "," + visibility + "," + click + "," + checked + "," + unchecked + ",\n")
outputFile.close()
|