Activity log for bug #1210472

Date Who What changed Old value New value Message
2013-08-09 10:51:42 RaiMan bug added bug
2013-08-09 10:51:51 RaiMan sikuli: status New Fix Committed
2013-08-09 10:51:55 RaiMan sikuli: importance Undecided Critical
2013-08-09 10:51:59 RaiMan sikuli: assignee RaiMan (raimund-hocke)
2013-08-09 10:52:03 RaiMan sikuli: milestone 1.1.0
2013-08-09 10:52:46 RaiMan description I'm trying to start file i/o in my program & wanted to get a simple file read and print working. But sikuli isn't reading or printing the entire file. The file is a short xml file: <?xml version="1.0" encoding="UTF-8"?> <flex> <loginFlex flexClient="https:///vsphere-client/#" username="r" pwd="v"/> </flex> >>>>>>>>>>I've tried two ways of coding: from xml.dom import minidom xmldoc = minidom.parse("/Users/colej/Documents/loginFlex2.xml") print xmldoc.toxml() RESULT: ?xml version="1.0" ?> >>>>>>>>>>>>second way import os myfile = open("/Users/colej/Documents/loginFlex2.xml") text = myfile.read() print(text) RESULT: ?xml version="1.0" encoding="UTF-8"?> [info] Exit code: 0 And ideas on why the ENTIRE file is not being read and printed??? Thank You! --- fixed with version 1.0.1 --------------------------------------------------------- I'm trying to start file i/o in my program & wanted to get a simple file read and print working. But sikuli isn't reading or printing the entire file. The file is a short xml file: <?xml version="1.0" encoding="UTF-8"?> <flex>  <loginFlex flexClient="https:///vsphere-client/#" username="r" pwd="v"/> </flex> >>>>>>>>>>I've tried two ways of coding: from xml.dom import minidom xmldoc = minidom.parse("/Users/colej/Documents/loginFlex2.xml") print xmldoc.toxml() RESULT: ?xml version="1.0" ?> >>>>>>>>>>>>second way import os myfile = open("/Users/colej/Documents/loginFlex2.xml") text = myfile.read() print(text) RESULT: ?xml version="1.0" encoding="UTF-8"?> [info] Exit code: 0 And ideas on why the ENTIRE file is not being read and printed??? Thank You!
2013-08-14 13:54:24 RaiMan summary [1.0] IDE: HTML code not printed or not printed correctly in message area [1.0.1 ok] IDE: HTML code not printed or not printed correctly in message area