configurationengine/source/plugins/symbian/ConeImagePlugin/imageplugin/tests/imageproject/variant/implml/optional_test.imageml
author terytkon
Thu, 11 Mar 2010 17:04:37 +0200
changeset 0 2e8eeb919028
permissions -rw-r--r--
Adding EPL version of configurationengine.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     1
<?xml version="1.0" encoding="UTF-8"?>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     2
<imageml xmlns="http://www.s60.com/xml/imageml/1">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     3
    
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     4
    <!-- === -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     5
    <!-- MBM -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     6
    <!-- === -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     7
    
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     8
    <!-- All input files empty: No error, should just generate no output -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     9
    <output file="optional1_mbm.mbm" palette='../bin/ThirdPartyBitmap.pal' tool='../bin/bmconv'>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    10
        <input file="${OptionalTest.EmptyString}" depth="c24"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    11
		<input file="${OptionalTest.EmptyString}" depth="1" optional="true"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    12
    </output>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    13
    <!-- Empty optional input file: No error, should generate normally, just without the optional file -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    14
    <output file="optional2_mbm.mbm" palette='../bin/ThirdPartyBitmap.pal' tool='../bin/bmconv'>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    15
        <input file="UI/Start-up Animation/frame01.bmp" depth="c24"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    16
		<input file="${OptionalTest.EmptyString}" depth="1" optional="true"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    17
    </output>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    18
    <!-- Invalid optional input file: Should give an error and generate no output -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    19
    <output file="optional3_mbm.mbm" palette='../bin/ThirdPartyBitmap.pal' tool='../bin/bmconv'>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    20
        <input file="UI/Start-up Animation/frame01.bmp" depth="c24"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    21
		<input file="foo" depth="1" optional="true"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    22
    </output>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    23
    <!-- Empty non-optional input file: Should give an error and generate no output -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    24
    <output file="optional4_mbm.mbm" palette='../bin/ThirdPartyBitmap.pal' tool='../bin/bmconv'>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    25
        <input file="UI/Start-up Animation/frame01.bmp" depth="c24"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    26
		<input file="${OptionalTest.EmptyString}" depth="1"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    27
    </output>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    28
    
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    29
    
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    30
    <!-- === -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    31
    <!-- MIF -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    32
    <!-- === -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    33
    
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    34
    <output file="optional1_mif.mif" tool='../bin/mifconv'>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    35
        <input file="${OptionalTest.EmptyString}" depth="c24"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    36
		<input file="${OptionalTest.EmptyString}" depth="1" optional="true"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    37
    </output>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    38
    <output file="optional2_mif.mif" tool='../bin/mifconv'>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    39
        <input file="svg_files/icon.svg" depth="c24"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    40
        <!-- Using EmptyString2 for get_refs() test case -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    41
		<input file="${OptionalTest.EmptyString2}" depth="1" optional="true"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    42
    </output>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    43
    <output file="optional3_mif.mif" tool='../bin/mifconv'>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    44
        <input file="svg_files/icon.svg" depth="c24"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    45
		<input file="foo" depth="1" optional="true"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    46
    </output>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    47
    <output file="optional4_mif.mif" tool='../bin/mifconv'>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    48
        <input file="svg_files/icon.svg" depth="c24"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    49
		<input file="${OptionalTest.EmptyString2}" depth="1"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    50
    </output>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    51
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    52
</imageml>