configurationengine/source/plugins/common/integration-test/testdata/generate/project/custom/implml/xcreate_file.implml
changeset 3 e7e0ae78773e
equal deleted inserted replaced
2:87cfa131b535 3:e7e0ae78773e
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <container xmlns="http://www.symbianfoundation.org/xml/implml/1">
       
     3     <tempVariable ref="TempText" type="string" value="jeejeejee"/>
       
     4     <tempVariable ref="TempBool" type="boolean" value="true"/>
       
     5 
       
     6     <commandml xmlns="http://www.s60.com/xml/commandml/1">
       
     7     <condition value="${TempBool} == True">
       
     8             <command executable="python" shell="True">
       
     9 		        <argument value="-c &quot;import os; if not os.path.exists('%CONE_OUT%'): os.makedirs('%CONE_OUT%')&quot;" />
       
    10 		    </command>
       
    11             <command executable="python" shell="True">
       
    12 		        <argument value="-c &quot;open('%CONE_OUT%/test.txt','w').write('${TempText}')&quot;" />
       
    13 		    </command>
       
    14 		</condition>
       
    15 	    <condition value="${TempBool} == False">   
       
    16 	        <command executable="python" shell="true">
       
    17 			    <argument value="-c &quot;open('%CONE_OUT%/test2.txt','w').write('${TempText}')&quot;" />
       
    18 		    </command>
       
    19 		</condition>		    
       
    20     </commandml>
       
    21 </container>