MapGroups.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <!--
  2. Licensed Materials - Property of IBM
  3. IBM Cognos Products: rs
  4. (C) Copyright IBM Corp. 2003, 2014
  5. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. -->
  7. <!--
  8. This file controls the structure of the available maps in the map selector dialog. For each map on the server, it
  9. is matched, by file name, with the id of one of the map elements. If found, it will be displayed under that folder.
  10. If not found, it will be displayed under the custom folder. Folders that do not have any maps on will not be shown.
  11. The below sample XML shows how this file can be used.
  12. <maps>
  13. <folder label="optionalStringLiteralForFolderLabel" idsLabel="optionalStringIdForFolderLabel">
  14. <map id="fileNameOfMap" icon="iconToShowForMapInTree"/>
  15. </folder>
  16. </maps>
  17. Maps can appear at the root of the tree by using the following syntax
  18. <maps>
  19. <map id="fileNameOfMap" icon="iconToShowForMapInTree"/>
  20. </maps>
  21. It is also possible to nest folders, an example is shown below:
  22. <maps>
  23. <folder label="One">
  24. <folder label="Two">
  25. <map id="world.cmf"/>
  26. </folder>
  27. </folder>
  28. </maps>
  29. -->
  30. <resources>
  31. <xmlFragment id="MapGroups">
  32. <maps>
  33. <folder idsLabel="IDS_MAP_GROUP_LABEL_WORLD">
  34. <map id="world.cmf"/>
  35. </folder>
  36. <folder idsLabel="IDS_MAP_GROUP_LABEL_AMERICAS">
  37. <map id="northAmerica.cmf"/>
  38. <map id="northAmerica_10_2_2.cmf"/>
  39. <map id="centralAmerica.cmf"/>
  40. <map id="centralAmerica_10_2_2.cmf"/>
  41. <map id="southAmerica.cmf"/>
  42. <map id="southAmerica_10_2_2.cmf"/>
  43. <map id="argentina.cmf"/>
  44. <map id="brazil.cmf"/>
  45. <map id="canada.cmf"/>
  46. <map id="canada_10_2_2.cmf"/>
  47. <map id="chile.cmf"/>
  48. <map id="columbia.cmf"/>
  49. <map id="mexico.cmf"/>
  50. <map id="mexico_10_2_2.cmf"/>
  51. <map id="panama.cmf"/>
  52. <map id="puertoRico.cmf"/>
  53. <map id="usStates.cmf"/>
  54. <map id="usStates48.cmf"/>
  55. <map id="usStates48_10_2_2.cmf"/>
  56. <map id="usCounty48.cmf"/>
  57. <map id="usCounty48_10_2_2.cmf"/>
  58. <map id="usCounty.cmf"/>
  59. <map id="usCounty_10_2_2.cmf"/>
  60. <map id="usZip48.cmf"/>
  61. <map id="usZip.cmf"/>
  62. <map id="venezuela.cmf"/>
  63. </folder>
  64. <folder idsLabel="IDS_MAP_GROUP_LABEL_EUROPE">
  65. <map id="europe.cmf"/>
  66. <map id="scandinavia.cmf"/>
  67. <map id="austria.cmf"/>
  68. <map id="belgium.cmf"/>
  69. <map id="czech.cmf"/>
  70. <map id="denmark.cmf"/>
  71. <map id="finland.cmf"/>
  72. <map id="france.cmf"/>
  73. <map id="germany.cmf"/>
  74. <map id="greece.cmf"/>
  75. <map id="hungary.cmf"/>
  76. <map id="ireland.cmf"/>
  77. <map id="italy.cmf"/>
  78. <map id="netherlands.cmf"/>
  79. <map id="norway.cmf"/>
  80. <map id="poland.cmf"/>
  81. <map id="portugal.cmf"/>
  82. <map id="portugalAzoresMadeira.cmf"/>
  83. <map id="spain.cmf"/>
  84. <map id="spainCanary.cmf"/>
  85. <map id="sweden.cmf"/>
  86. <map id="switzerland.cmf"/>
  87. <map id="unitedKingdom.cmf"/>
  88. </folder>
  89. <folder idsLabel="IDS_MAP_GROUP_LABEL_ASIA_PACIFIC">
  90. <map id="asia.cmf"/>
  91. <map id="eastAsia.cmf"/>
  92. <map id="asean.cmf"/>
  93. <map id="oceania.cmf"/>
  94. <map id="oceania_10_2_2.cmf"/>
  95. <map id="australia.cmf"/>
  96. <map id="australia_10_2_2.cmf"/>
  97. <map id="china.cmf"/>
  98. <map id="hongKong.cmf"/>
  99. <map id="india.cmf"/>
  100. <map id="indonesia.cmf"/>
  101. <map id="japan.cmf"/>
  102. <map id="korea.cmf"/>
  103. <map id="malaysia.cmf"/>
  104. <map id="newZealand.cmf"/>
  105. <map id="philippines.cmf"/>
  106. <map id="russia.cmf"/>
  107. <map id="taiwan.cmf"/>
  108. <map id="thailand.cmf"/>
  109. </folder>
  110. <folder idsLabel="IDS_MAP_GROUP_LABEL_AFRICA">
  111. <map id="africa.cmf"/>
  112. <map id="southAfrica.cmf"/>
  113. </folder>
  114. <folder idsLabel="IDS_MAP_GROUP_LABEL_MIDDLE_EAST">
  115. <map id="midEast.cmf"/>
  116. <map id="israel.cmf"/>
  117. </folder>
  118. </maps>
  119. </xmlFragment>
  120. </resources>