configurationengine/source/scripts/tests/generation_test_project/custom/implml/seq_tempvar.implml
changeset 0 2e8eeb919028
child 3 e7e0ae78773e
equal deleted inserted replaced
-1:000000000000 0:2e8eeb919028
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <container xmlns="http://www.symbianfoundation.org/xml/implml/1"
       
     3            xmlns:ruleml="http://www.s60.com/xml/ruleml/2"
       
     4            xmlns:content="http://www.s60.com/xml/content/1">
       
     5     <!-- Temporary sequence feature for storing the list of files to copy -->
       
     6     <tempVariableSequence ref="TempFeature2.FilesToCopy">
       
     7         <tempVariable ref="FilePath" type="string"/>
       
     8     </tempVariableSequence>
       
     9     <settingRefsOverride refsIrrelevant="true"/>
       
    10 
       
    11     <container>
       
    12         <phase name="pre"/>
       
    13         <!-- Rule for setting the contents of the file copy list -->
       
    14         <ruleml:ruleml>
       
    15             <ruleml:eval_globals file="seq_tempvar.py"/>
       
    16             <ruleml:rule>True configures TempFeature2.FilesToCopy = {% get_file_seq() %}</ruleml:rule>
       
    17         </ruleml:ruleml>
       
    18     </container>
       
    19 
       
    20     <container>
       
    21         <phase name="normal"/>
       
    22         <content:content>
       
    23             <!-- The ContentML implementation for copying the files -->
       
    24             <content:input>
       
    25                 <content:include files="${TempFeature2.FilesToCopy.FilePath}"/>
       
    26             </content:input> 
       
    27             <content:output dir="content\temp_seq_test\" flatten="true" />
       
    28         </content:content>
       
    29     </container>
       
    30     
       
    31     
       
    32 </container>