123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: rs
- (C) Copyright IBM Corp. 2003, 2014
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- This file controls the structure of the available maps in the map selector dialog. For each map on the server, it
- is matched, by file name, with the id of one of the map elements. If found, it will be displayed under that folder.
- If not found, it will be displayed under the custom folder. Folders that do not have any maps on will not be shown.
-
- The below sample XML shows how this file can be used.
-
- <maps>
- <folder label="optionalStringLiteralForFolderLabel" idsLabel="optionalStringIdForFolderLabel">
- <map id="fileNameOfMap" icon="iconToShowForMapInTree"/>
- </folder>
- </maps>
- Maps can appear at the root of the tree by using the following syntax
- <maps>
- <map id="fileNameOfMap" icon="iconToShowForMapInTree"/>
- </maps>
- It is also possible to nest folders, an example is shown below:
- <maps>
- <folder label="One">
- <folder label="Two">
- <map id="world.cmf"/>
- </folder>
- </folder>
- </maps>
- -->
- <resources>
- <xmlFragment id="MapGroups">
- <maps>
- <folder idsLabel="IDS_MAP_GROUP_LABEL_WORLD">
- <map id="world.cmf"/>
- </folder>
- <folder idsLabel="IDS_MAP_GROUP_LABEL_AMERICAS">
- <map id="northAmerica.cmf"/>
- <map id="northAmerica_10_2_2.cmf"/>
- <map id="centralAmerica.cmf"/>
- <map id="centralAmerica_10_2_2.cmf"/>
- <map id="southAmerica.cmf"/>
- <map id="southAmerica_10_2_2.cmf"/>
- <map id="argentina.cmf"/>
- <map id="brazil.cmf"/>
- <map id="canada.cmf"/>
- <map id="canada_10_2_2.cmf"/>
- <map id="chile.cmf"/>
- <map id="columbia.cmf"/>
- <map id="mexico.cmf"/>
- <map id="mexico_10_2_2.cmf"/>
- <map id="panama.cmf"/>
- <map id="puertoRico.cmf"/>
- <map id="usStates.cmf"/>
- <map id="usStates48.cmf"/>
- <map id="usStates48_10_2_2.cmf"/>
- <map id="usCounty48.cmf"/>
- <map id="usCounty48_10_2_2.cmf"/>
- <map id="usCounty.cmf"/>
- <map id="usCounty_10_2_2.cmf"/>
- <map id="usZip48.cmf"/>
- <map id="usZip.cmf"/>
- <map id="venezuela.cmf"/>
- </folder>
- <folder idsLabel="IDS_MAP_GROUP_LABEL_EUROPE">
- <map id="europe.cmf"/>
- <map id="scandinavia.cmf"/>
- <map id="austria.cmf"/>
- <map id="belgium.cmf"/>
- <map id="czech.cmf"/>
- <map id="denmark.cmf"/>
- <map id="finland.cmf"/>
- <map id="france.cmf"/>
- <map id="germany.cmf"/>
- <map id="greece.cmf"/>
- <map id="hungary.cmf"/>
- <map id="ireland.cmf"/>
- <map id="italy.cmf"/>
- <map id="netherlands.cmf"/>
- <map id="norway.cmf"/>
- <map id="poland.cmf"/>
- <map id="portugal.cmf"/>
- <map id="portugalAzoresMadeira.cmf"/>
- <map id="spain.cmf"/>
- <map id="spainCanary.cmf"/>
- <map id="sweden.cmf"/>
- <map id="switzerland.cmf"/>
- <map id="unitedKingdom.cmf"/>
- </folder>
- <folder idsLabel="IDS_MAP_GROUP_LABEL_ASIA_PACIFIC">
- <map id="asia.cmf"/>
- <map id="eastAsia.cmf"/>
- <map id="asean.cmf"/>
- <map id="oceania.cmf"/>
- <map id="oceania_10_2_2.cmf"/>
- <map id="australia.cmf"/>
- <map id="australia_10_2_2.cmf"/>
- <map id="china.cmf"/>
- <map id="hongKong.cmf"/>
- <map id="india.cmf"/>
- <map id="indonesia.cmf"/>
- <map id="japan.cmf"/>
- <map id="korea.cmf"/>
- <map id="malaysia.cmf"/>
- <map id="newZealand.cmf"/>
- <map id="philippines.cmf"/>
- <map id="russia.cmf"/>
- <map id="taiwan.cmf"/>
- <map id="thailand.cmf"/>
- </folder>
- <folder idsLabel="IDS_MAP_GROUP_LABEL_AFRICA">
- <map id="africa.cmf"/>
- <map id="southAfrica.cmf"/>
- </folder>
- <folder idsLabel="IDS_MAP_GROUP_LABEL_MIDDLE_EAST">
- <map id="midEast.cmf"/>
- <map id="israel.cmf"/>
- </folder>
- </maps>
- </xmlFragment>
- </resources>
|