Advertisement
Guest User

dump config using ANT

a guest
Nov 3rd, 2012
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 33.84 KB | None | 0 0
  1. <flex-config>
  2.    <!-- benchmark: output performance benchmark-->
  3.    <!-- benchmark usage:
  4.   <benchmark>boolean</benchmark>
  5.   -->
  6.    <compiler>
  7.       <!-- compiler.accessible: generate an accessible SWF-->
  8.       <accessible>true</accessible>
  9.       <!-- compiler.actionscript-file-encoding: specifies actionscript file encoding. If there is no BOM in the AS3 source files, the compiler will use this file encoding.-->
  10.       <!-- compiler.actionscript-file-encoding usage:
  11.      <actionscript-file-encoding>string</actionscript-file-encoding>
  12.      -->
  13.       <!-- compiler.allow-source-path-overlap: checks if a source-path entry is a subdirectory of another source-path entry. It helps make the package names of MXML components unambiguous.-->
  14.       <allow-source-path-overlap>false</allow-source-path-overlap>
  15.       <!-- compiler.as3: use the ActionScript 3 class based object model for greater performance and better error reporting. In the class based object model most built-in functions are implemented as fixed methods of classes.-->
  16.       <as3>true</as3>
  17.       <!-- compiler.compress usage:
  18.      <compress>boolean</compress>
  19.      -->
  20.       <!-- compiler.context-root: path to replace {context.root} tokens for service channel endpoints-->
  21.       <!-- compiler.context-root usage:
  22.      <context-root>context-path</context-root>
  23.      -->
  24.       <!-- compiler.debug: generates a movie that is suitable for debugging-->
  25.       <debug>true</debug>
  26.       <!-- compiler.defaults-css-files usage:
  27.      <defaults-css-files>
  28.         <filename>string</filename>
  29.         <filename>string</filename>
  30.      </defaults-css-files>
  31.      -->
  32.       <!-- compiler.defaults-css-url: defines the location of the default style sheet. Setting this option overrides the implicit use of the defaults.css style sheet in the framework.swc file.-->
  33.       <!-- compiler.defaults-css-url usage:
  34.      <defaults-css-url>string</defaults-css-url>
  35.      -->
  36.       <!-- compiler.define: define a global AS3 conditional compilation definition, e.g. -define=CONFIG::debugging,true or -define+=CONFIG::debugging,true (to append to existing definitions in flex-config.xml) -->
  37.       <!-- compiler.define usage:
  38.      <define>
  39.         <name>string</name>
  40.         <value>string</value>
  41.         <value>string</value>
  42.      </define>
  43.      -->
  44.       <!-- compiler.enable-runtime-design-layers usage:
  45.      <enable-runtime-design-layers>boolean</enable-runtime-design-layers>
  46.      -->
  47.       <!-- compiler.es: use the ECMAScript edition 3 prototype based object model to allow dynamic overriding of prototype properties. In the prototype based object model built-in functions are implemented as dynamic properties of prototype objects.-->
  48.       <es>false</es>
  49.       <extensions>
  50.          <!-- compiler.extensions.extension usage:
  51.         <extension>
  52.            <extension>string</extension>
  53.            <parameters>string</parameters>
  54.         </extension>
  55.         -->
  56.       </extensions>
  57.       <!-- compiler.external-library-path: list of SWC files or directories to compile against but to omit from linking-->
  58.       <external-library-path>
  59.          <path-element>libs/player/{targetPlayerMajorVersion}.{targetPlayerMinorVersion}/playerglobal.swc</path-element>
  60.       </external-library-path>
  61.       <fonts>
  62.          <!-- compiler.fonts.advanced-anti-aliasing: enables advanced anti-aliasing for embedded fonts, which provides greater clarity for small fonts.-->
  63.          <advanced-anti-aliasing>true</advanced-anti-aliasing>
  64.          <!-- compiler.fonts.flash-type: enables FlashType for embedded fonts, which provides greater clarity for small fonts.-->
  65.          <!-- compiler.fonts.flash-type usage:
  66.         <flash-type>boolean</flash-type>
  67.         -->
  68.          <languages>
  69.             <!-- compiler.fonts.languages.language-range: a range to restrict the number of font glyphs embedded into the SWF-->
  70.             <!-- compiler.fonts.languages.language-range usage:
  71.            <language-range>
  72.               <lang>string</lang>
  73.               <range>string</range>
  74.               <range>string</range>
  75.            </language-range>
  76.            -->
  77.          </languages>
  78.          <!-- compiler.fonts.local-font-paths usage:
  79.         <local-font-paths>
  80.            <path-element>string</path-element>
  81.            <path-element>string</path-element>
  82.         </local-font-paths>
  83.         -->
  84.          <!-- compiler.fonts.local-fonts-snapshot: File containing system font data produced by flex2.tools.FontSnapshot.-->
  85.          <local-fonts-snapshot>${flexlib}/localFonts.ser</local-fonts-snapshot>
  86.          <!-- compiler.fonts.managers: Compiler font manager classes, in policy resolution order-->
  87.          <managers>
  88.             <manager-class>flash.fonts.JREFontManager</manager-class>
  89.             <manager-class>flash.fonts.BatikFontManager</manager-class>
  90.             <manager-class>flash.fonts.AFEFontManager</manager-class>
  91.             <manager-class>flash.fonts.CFFFontManager</manager-class>
  92.          </managers>
  93.          <!-- compiler.fonts.max-cached-fonts: sets the maximum number of fonts to keep in the server cache.  The default value is 20.-->
  94.          <max-cached-fonts>20</max-cached-fonts>
  95.          <!-- compiler.fonts.max-glyphs-per-face: sets the maximum number of character glyph-outlines to keep in the server cache for each font face. The default value is 1000.-->
  96.          <max-glyphs-per-face>1000</max-glyphs-per-face>
  97.       </fonts>
  98.       <!-- compiler.headless-server: a flag to set when Flex is running on a server without a display-->
  99.       <!-- compiler.headless-server usage:
  100.      <headless-server>boolean</headless-server>
  101.      -->
  102.       <!-- compiler.include-libraries: a list of libraries (SWCs) to completely include in the SWF-->
  103.       <!-- compiler.include-libraries usage:
  104.      <include-libraries>
  105.         <library>string</library>
  106.         <library>string</library>
  107.      </include-libraries>
  108.      -->
  109.       <!-- compiler.incremental: enables incremental compilation-->
  110.       <!-- compiler.incremental usage:
  111.      <incremental>boolean</incremental>
  112.      -->
  113.       <!-- compiler.isolate-styles: enables the compiled application or module to set styles that only affect itself and its children-->
  114.       <!-- compiler.isolate-styles usage:
  115.      <isolate-styles>boolean</isolate-styles>
  116.      -->
  117.       <!-- compiler.keep-all-type-selectors: disables the pruning of unused CSS type selectors-->
  118.       <!-- compiler.keep-all-type-selectors usage:
  119.      <keep-all-type-selectors>boolean</keep-all-type-selectors>
  120.      -->
  121.       <!-- compiler.keep-as3-metadata: keep the specified metadata in the SWF-->
  122.       <!-- compiler.keep-as3-metadata usage:
  123.      <keep-as3-metadata>
  124.         <name>string</name>
  125.         <name>string</name>
  126.      </keep-as3-metadata>
  127.      -->
  128.       <!-- compiler.keep-generated-actionscript: save temporary source files generated during MXML compilation-->
  129.       <keep-generated-actionscript>false</keep-generated-actionscript>
  130.       <!-- compiler.library-path: list of SWC files or directories that contain SWC files-->
  131.       <library-path>
  132.          <path-element>libs</path-element>
  133.          <path-element>libs/mx</path-element>
  134.          <path-element>locale/{locale}</path-element>
  135.          <path-element>libs/player</path-element>
  136.       </library-path>
  137.       <library-path>
  138.          <path-element>E:\Akshay\flexspace\imanager\framework\libs\AlivePDF.swc</path-element>
  139.       </library-path>
  140.       <library-path>
  141.          <path-element>E:\Akshay\flexspace\imanager\framework\libs\HAccordion.swc</path-element>
  142.       </library-path>
  143.       <library-path>
  144.          <path-element>E:\Akshay\flexspace\imanager\framework\libs\as3xls-1.0.swc</path-element>
  145.       </library-path>
  146.       <library-path>
  147.          <path-element>E:\Akshay\flexspace\imanager\framework\libs\flexlib.swc</path-element>
  148.       </library-path>
  149.       <library-path>
  150.          <path-element>E:\Akshay\flexspace\imanager\framework\libs\parsley-flex4-2.4.0.swc</path-element>
  151.       </library-path>
  152.       <library-path>
  153.          <path-element>E:\Akshay\flexspace\imanager\framework\libs\sephiroth_CheckBoxExtended.swc</path-element>
  154.       </library-path>
  155.       <library-path>
  156.          <path-element>E:\Akshay\flexspace\imanager\framework\libs\spicelib-flex-2.4.0.swc</path-element>
  157.       </library-path>
  158.       <!-- compiler.locale: specifies the locale for internationalization-->
  159.       <locale>
  160.          <locale-element>en_US</locale-element>
  161.       </locale>
  162.       <!-- compiler.minimum-supported-version usage:
  163.      <minimum-supported-version>string</minimum-supported-version>
  164.      -->
  165.       <!-- compiler.mobile: specifies the target runtime is a mobile device-->
  166.       <mobile>false</mobile>
  167.       <mxml>
  168.          <!-- compiler.mxml.compatibility-version: specifies a compatibility version. e.g. -compatibility-version=2.0.1-->
  169.          <!-- compiler.mxml.compatibility-version usage:
  170.         <compatibility-version>version</compatibility-version>
  171.         -->
  172.          <!-- compiler.mxml.minimum-supported-version usage:
  173.         <minimum-supported-version>string</minimum-supported-version>
  174.         -->
  175.          <!-- compiler.mxml.qualified-type-selectors usage:
  176.         <qualified-type-selectors>boolean</qualified-type-selectors>
  177.         -->
  178.       </mxml>
  179.       <namespaces>
  180.          <!-- compiler.namespaces.namespace: Specify a URI to associate with a manifest of components for use as MXML elements-->
  181.          <namespace>
  182.             <uri>http://ns.adobe.com/mxml/2009</uri>
  183.             <manifest>mxml-2009-manifest.xml</manifest>
  184.          </namespace>
  185.          <namespace>
  186.             <uri>library://ns.adobe.com/flex/spark</uri>
  187.             <manifest>spark-manifest.xml</manifest>
  188.          </namespace>
  189.          <namespace>
  190.             <uri>library://ns.adobe.com/flex/mx</uri>
  191.             <manifest>mx-manifest.xml</manifest>
  192.          </namespace>
  193.          <namespace>
  194.             <uri>http://www.adobe.com/2006/mxml</uri>
  195.             <manifest>mxml-manifest.xml</manifest>
  196.          </namespace>
  197.       </namespaces>
  198.       <!-- compiler.omit-trace-statements: toggle whether trace statements are omitted-->
  199.       <omit-trace-statements>true</omit-trace-statements>
  200.       <!-- compiler.optimize: Enable post-link SWF optimization-->
  201.       <optimize>true</optimize>
  202.       <!-- compiler.preloader: Specifies the default value for the Application's preloader attribute. If not specified, the default preloader value is mx.preloaders.SparkDownloadProgressBar when -compatibility-version >= 4.0 and mx.preloaders.DownloadProgressBar when -compatibility-version < 4.0.-->
  203.       <!-- compiler.preloader usage:
  204.      <preloader>string</preloader>
  205.      -->
  206.       <!-- compiler.report-invalid-styles-as-warnings: enables reporting of invalid styles as warnings-->
  207.       <!-- compiler.report-invalid-styles-as-warnings usage:
  208.      <report-invalid-styles-as-warnings>boolean</report-invalid-styles-as-warnings>
  209.      -->
  210.       <!-- compiler.report-missing-required-skin-parts-as-warnings: Use this option to generate a warning instead of an error when a missing required skin part is detected.-->
  211.       <!-- compiler.report-missing-required-skin-parts-as-warnings usage:
  212.      <report-missing-required-skin-parts-as-warnings>boolean</report-missing-required-skin-parts-as-warnings>
  213.      -->
  214.       <!-- compiler.services: path to Flex Data Services configuration file-->
  215.       <!-- compiler.services usage:
  216.      <services>filename</services>
  217.      -->
  218.       <!-- compiler.show-actionscript-warnings: runs the AS3 compiler in a mode that detects legal but potentially incorrect code-->
  219.       <show-actionscript-warnings>true</show-actionscript-warnings>
  220.       <!-- compiler.show-binding-warnings: toggle whether warnings generated from data binding code are displayed-->
  221.       <show-binding-warnings>true</show-binding-warnings>
  222.       <!-- compiler.show-invalid-css-property-warnings: toggle whether invalid css property warnings are reported-->
  223.       <!-- compiler.show-invalid-css-property-warnings usage:
  224.      <show-invalid-css-property-warnings>boolean</show-invalid-css-property-warnings>
  225.      -->
  226.       <!-- compiler.show-shadowed-device-font-warnings: toggles whether warnings are displayed when an embedded font name shadows a device font name-->
  227.       <show-shadowed-device-font-warnings>true</show-shadowed-device-font-warnings>
  228.       <!-- compiler.show-unused-type-selector-warnings: toggle whether warnings generated from unused CSS type selectors are displayed-->
  229.       <show-unused-type-selector-warnings>true</show-unused-type-selector-warnings>
  230.       <!-- compiler.source-path: list of path elements that form the roots of ActionScript class hierarchies-->
  231.       <source-path>
  232.          <path-element>src</path-element>
  233.       </source-path>
  234.       <!-- compiler.strict: runs the AS3 compiler in strict error checking mode.-->
  235.       <strict>true</strict>
  236.       <!-- compiler.theme: list of CSS or SWC files to apply as a theme-->
  237.       <theme>
  238.          <filename>themes/Spark/spark.css</filename>
  239.       </theme>
  240.       <!-- compiler.use-resource-bundle-metadata: determines whether resources bundles are included in the application.-->
  241.       <use-resource-bundle-metadata>false</use-resource-bundle-metadata>
  242.       <!-- compiler.verbose-stacktraces: save callstack information to the SWF for debugging-->
  243.       <verbose-stacktraces>false</verbose-stacktraces>
  244.       <!-- compiler.warn-array-tostring-changes: Array.toString() format has changed.-->
  245.       <warn-array-tostring-changes>false</warn-array-tostring-changes>
  246.       <!-- compiler.warn-assignment-within-conditional: Assignment within conditional.-->
  247.       <warn-assignment-within-conditional>true</warn-assignment-within-conditional>
  248.       <!-- compiler.warn-bad-array-cast: Possibly invalid Array cast operation.-->
  249.       <warn-bad-array-cast>true</warn-bad-array-cast>
  250.       <!-- compiler.warn-bad-bool-assignment: Non-Boolean value used where a Boolean value was expected.-->
  251.       <warn-bad-bool-assignment>true</warn-bad-bool-assignment>
  252.       <!-- compiler.warn-bad-date-cast: Invalid Date cast operation.-->
  253.       <warn-bad-date-cast>true</warn-bad-date-cast>
  254.       <!-- compiler.warn-bad-es3-type-method: Unknown method.-->
  255.       <warn-bad-es3-type-method>true</warn-bad-es3-type-method>
  256.       <!-- compiler.warn-bad-es3-type-prop: Unknown property.-->
  257.       <warn-bad-es3-type-prop>true</warn-bad-es3-type-prop>
  258.       <!-- compiler.warn-bad-nan-comparison: Illogical comparison with NaN. Any comparison operation involving NaN will evaluate to false because NaN != NaN.-->
  259.       <warn-bad-nan-comparison>true</warn-bad-nan-comparison>
  260.       <!-- compiler.warn-bad-null-assignment: Impossible assignment to null.-->
  261.       <warn-bad-null-assignment>true</warn-bad-null-assignment>
  262.       <!-- compiler.warn-bad-null-comparison: Illogical comparison with null.-->
  263.       <warn-bad-null-comparison>true</warn-bad-null-comparison>
  264.       <!-- compiler.warn-bad-undefined-comparison: Illogical comparison with undefined.  Only untyped variables (or variables of type *) can be undefined.-->
  265.       <warn-bad-undefined-comparison>true</warn-bad-undefined-comparison>
  266.       <!-- compiler.warn-boolean-constructor-with-no-args: Boolean() with no arguments returns false in ActionScript 3.0.  Boolean() returned undefined in ActionScript 2.0.-->
  267.       <warn-boolean-constructor-with-no-args>false</warn-boolean-constructor-with-no-args>
  268.       <!-- compiler.warn-changes-in-resolve: __resolve is no longer supported.-->
  269.       <warn-changes-in-resolve>false</warn-changes-in-resolve>
  270.       <!-- compiler.warn-class-is-sealed: Class is sealed.  It cannot have members added to it dynamically.-->
  271.       <warn-class-is-sealed>true</warn-class-is-sealed>
  272.       <!-- compiler.warn-const-not-initialized: Constant not initialized.-->
  273.       <warn-const-not-initialized>true</warn-const-not-initialized>
  274.       <!-- compiler.warn-constructor-returns-value: Function used in new expression returns a value.  Result will be what the function returns, rather than a new instance of that function.-->
  275.       <warn-constructor-returns-value>false</warn-constructor-returns-value>
  276.       <!-- compiler.warn-deprecated-event-handler-error: EventHandler was not added as a listener.-->
  277.       <warn-deprecated-event-handler-error>false</warn-deprecated-event-handler-error>
  278.       <!-- compiler.warn-deprecated-function-error: Unsupported ActionScript 2.0 function.-->
  279.       <warn-deprecated-function-error>true</warn-deprecated-function-error>
  280.       <!-- compiler.warn-deprecated-property-error: Unsupported ActionScript 2.0 property.-->
  281.       <warn-deprecated-property-error>true</warn-deprecated-property-error>
  282.       <!-- compiler.warn-duplicate-argument-names: More than one argument by the same name.-->
  283.       <warn-duplicate-argument-names>true</warn-duplicate-argument-names>
  284.       <!-- compiler.warn-duplicate-variable-def: Duplicate variable definition -->
  285.       <warn-duplicate-variable-def>true</warn-duplicate-variable-def>
  286.       <!-- compiler.warn-for-var-in-changes: ActionScript 3.0 iterates over an object's properties within a "for x in target" statement in random order.-->
  287.       <warn-for-var-in-changes>false</warn-for-var-in-changes>
  288.       <!-- compiler.warn-import-hides-class: Importing a package by the same name as the current class will hide that class identifier in this scope.-->
  289.       <warn-import-hides-class>true</warn-import-hides-class>
  290.       <!-- compiler.warn-instance-of-changes: Use of the instanceof operator.-->
  291.       <warn-instance-of-changes>true</warn-instance-of-changes>
  292.       <!-- compiler.warn-internal-error: Internal error in compiler.-->
  293.       <warn-internal-error>true</warn-internal-error>
  294.       <!-- compiler.warn-level-not-supported: _level is no longer supported. For more information, see the flash.display package.-->
  295.       <warn-level-not-supported>true</warn-level-not-supported>
  296.       <!-- compiler.warn-missing-namespace-decl: Missing namespace declaration (e.g. variable is not defined to be public, private, etc.).-->
  297.       <warn-missing-namespace-decl>true</warn-missing-namespace-decl>
  298.       <!-- compiler.warn-negative-uint-literal: Negative value will become a large positive value when assigned to a uint data type.-->
  299.       <warn-negative-uint-literal>true</warn-negative-uint-literal>
  300.       <!-- compiler.warn-no-constructor: Missing constructor.-->
  301.       <warn-no-constructor>false</warn-no-constructor>
  302.       <!-- compiler.warn-no-explicit-super-call-in-constructor: The super() statement was not called within the constructor.-->
  303.       <warn-no-explicit-super-call-in-constructor>false</warn-no-explicit-super-call-in-constructor>
  304.       <!-- compiler.warn-no-type-decl: Missing type declaration.-->
  305.       <warn-no-type-decl>true</warn-no-type-decl>
  306.       <!-- compiler.warn-number-from-string-changes: In ActionScript 3.0, white space is ignored and '' returns 0. Number() returns NaN in ActionScript 2.0 when the parameter is '' or contains white space.-->
  307.       <warn-number-from-string-changes>false</warn-number-from-string-changes>
  308.       <!-- compiler.warn-scoping-change-in-this: Change in scoping for the this keyword.  Class methods extracted from an instance of a class will always resolve this back to that instance.  In ActionScript 2.0 this is looked up dynamically based on where the method is invoked from.-->
  309.       <warn-scoping-change-in-this>false</warn-scoping-change-in-this>
  310.       <!-- compiler.warn-slow-text-field-addition: Inefficient use of += on a TextField.-->
  311.       <warn-slow-text-field-addition>true</warn-slow-text-field-addition>
  312.       <!-- compiler.warn-unlikely-function-value: Possible missing parentheses.-->
  313.       <warn-unlikely-function-value>true</warn-unlikely-function-value>
  314.       <!-- compiler.warn-xml-class-has-changed: Possible usage of the ActionScript 2.0 XML class.-->
  315.       <warn-xml-class-has-changed>false</warn-xml-class-has-changed>
  316.    </compiler>
  317.    <!-- compute-digest: writes a digest to the catalog.xml of a library. This is required when the library will be used in the -runtime-shared-libraries-path option.-->
  318.    <!-- compute-digest usage:
  319.   <compute-digest>boolean</compute-digest>
  320.   -->
  321.    <!-- debug-password: the password to include in debuggable SWFs-->
  322.    <debug-password></debug-password>
  323.    <!-- default-background-color: default background color (may be overridden by the application code)-->
  324.    <default-background-color>0xFFFFFF</default-background-color>
  325.    <!-- default-frame-rate: default frame rate to be used in the SWF.-->
  326.    <default-frame-rate>24</default-frame-rate>
  327.    <!-- default-script-limits: default script execution limits (may be overridden by root attributes)-->
  328.    <default-script-limits>
  329.       <max-recursion-depth>1000</max-recursion-depth>
  330.       <max-execution-time>60</max-execution-time>
  331.    </default-script-limits>
  332.    <!-- default-size: default application size (may be overridden by root attributes in the application)-->
  333.    <default-size>
  334.       <width>500</width>
  335.       <height>375</height>
  336.    </default-size>
  337.    <!-- directory: output the library as an open directory instead of a SWC file-->
  338.    <directory>false</directory>
  339.    <!-- externs: a list of symbols to omit from linking when building a SWF-->
  340.    <!-- externs usage:
  341.   <externs>
  342.      <symbol>string</symbol>
  343.      <symbol>string</symbol>
  344.   </externs>
  345.   -->
  346.    <frames>
  347.       <!-- frames.frame: A SWF frame label with a sequence of classnames that will be linked onto the frame.-->
  348.       <!-- frames.frame usage:
  349.      <frame>
  350.         <label>string</label>
  351.         <classname>string</classname>
  352.      </frame>
  353.      -->
  354.    </frames>
  355.    <framework>halo</framework>
  356.    <!-- include-classes: a list of classes to include in the output SWC-->
  357.    <!-- include-classes usage:
  358.   <include-classes>
  359.      <class>string</class>
  360.      <class>string</class>
  361.   </include-classes>
  362.   -->
  363.    <!-- include-file: a list of named files to include in the output SWC-->
  364.    <!-- include-file usage:
  365.   <include-file>
  366.      <name>string</name>
  367.      <path>string</path>
  368.      <path>string</path>
  369.   </include-file>
  370.   -->
  371.    <!-- include-inheritance-dependencies-only: only include inheritance dependencies of classes specified with include-classes -->
  372.    <!-- include-inheritance-dependencies-only usage:
  373.   <include-inheritance-dependencies-only>boolean</include-inheritance-dependencies-only>
  374.   -->
  375.    <!-- include-lookup-only: if true, manifest entries with lookupOnly=true are included in SWC catalog. Default is false.-->
  376.    <!-- include-lookup-only usage:
  377.   <include-lookup-only>boolean</include-lookup-only>
  378.   -->
  379.    <!-- include-namespaces: all classes in the listed namespaces are included in the output SWC-->
  380.    <!-- include-namespaces usage:
  381.   <include-namespaces>
  382.      <uri>string</uri>
  383.      <uri>string</uri>
  384.   </include-namespaces>
  385.   -->
  386.    <!-- include-resource-bundles: a list of resource bundles to include in the output SWC-->
  387.    <!-- include-resource-bundles usage:
  388.   <include-resource-bundles>
  389.      <bundle>string</bundle>
  390.      <bundle>string</bundle>
  391.   </include-resource-bundles>
  392.   -->
  393.    <!-- include-sources: a list of directories and source files to include in the output SWC-->
  394.    <include-sources>
  395.       <path-element>E:\Akshay\flexspace\imanager\framework\src\assets</path-element>
  396.    </include-sources>
  397.    <include-sources>
  398.       <path-element>E:\Akshay\flexspace\imanager\framework\src\com</path-element>
  399.    </include-sources>
  400.    <include-sources>
  401.       <path-element>E:\Akshay\flexspace\imanager\framework\src\org</path-element>
  402.    </include-sources>
  403.    <!-- include-stylesheet: a list of named stylesheet resources to include in the output SWC-->
  404.    <!-- include-stylesheet usage:
  405.   <include-stylesheet>
  406.      <name>string</name>
  407.      <path>string</path>
  408.      <path>string</path>
  409.   </include-stylesheet>
  410.   -->
  411.    <!-- includes: a list of symbols to always link in when building a SWF-->
  412.    <!-- includes usage:
  413.   <includes>
  414.      <symbol>string</symbol>
  415.      <symbol>string</symbol>
  416.   </includes>
  417.   -->
  418.    <!-- link-report: Output a XML-formatted report of all definitions linked into the application.-->
  419.    <!-- link-report usage:
  420.   <link-report>filename</link-report>
  421.   -->
  422.    <!-- load-config: load a file containing configuration options-->
  423.    <load-config>${flexlib}/${configname}-config.xml</load-config>
  424.    <!-- load-externs: an XML file containing <def>, <pre>, and <ext> symbols to omit from linking when building a SWF-->
  425.    <!-- load-externs usage:
  426.   <load-externs>filename</load-externs>
  427.   -->
  428.    <metadata>
  429.       <!-- metadata.contributor: A contributor's name to store in the SWF metadata-->
  430.       <!-- metadata.contributor usage:
  431.      <contributor>name</contributor>
  432.      -->
  433.       <!-- metadata.creator: A creator's name to store in the SWF metadata-->
  434.       <creator>unknown</creator>
  435.       <!-- metadata.date: The creation date to store in the SWF metadata-->
  436.       <!-- metadata.date usage:
  437.      <date>text</date>
  438.      -->
  439.       <!-- metadata.description: The default description to store in the SWF metadata-->
  440.       <description>http://www.adobe.com/products/flex</description>
  441.       <!-- metadata.language: The language to store in the SWF metadata (i.e. EN, FR)-->
  442.       <language>EN</language>
  443.       <!-- metadata.localized-description: A localized RDF/XMP description to store in the SWF metadata-->
  444.       <!-- metadata.localized-description usage:
  445.      <localized-description>
  446.         <text>string</text>
  447.         <lang>string</lang>
  448.         <lang>string</lang>
  449.      </localized-description>
  450.      -->
  451.       <!-- metadata.localized-title: A localized RDF/XMP title to store in the SWF metadata-->
  452.       <!-- metadata.localized-title usage:
  453.      <localized-title>
  454.         <title>string</title>
  455.         <lang>string</lang>
  456.         <lang>string</lang>
  457.      </localized-title>
  458.      -->
  459.       <!-- metadata.publisher: A publisher's name to store in the SWF metadata-->
  460.       <publisher>unknown</publisher>
  461.       <!-- metadata.title: The default title to store in the SWF metadata-->
  462.       <title>Adobe Flex 4 Application</title>
  463.    </metadata>
  464.    <!-- output: the filename of the SWF movie to create-->
  465.    <output>E:\Akshay\flexspace\imanager\framework\dist\imanager-framework.swc</output>
  466.    <!-- raw-metadata: XML text to store in the SWF metadata (overrides metadata.* configuration)-->
  467.    <!-- raw-metadata usage:
  468.   <raw-metadata>text</raw-metadata>
  469.   -->
  470.    <!-- remove-unused-rsls: remove RSLs that are not being used by the application-->
  471.    <remove-unused-rsls>true</remove-unused-rsls>
  472.    <!-- resource-bundle-list: prints a list of resource bundles to a file for input to the compc compiler to create a resource bundle SWC file. -->
  473.    <!-- resource-bundle-list usage:
  474.   <resource-bundle-list>filename</resource-bundle-list>
  475.   -->
  476.    <!-- runtime-shared-libraries: a list of runtime shared library URLs to be loaded before the application starts-->
  477.    <!-- runtime-shared-libraries usage:
  478.   <runtime-shared-libraries>
  479.      <url>string</url>
  480.      <url>string</url>
  481.   </runtime-shared-libraries>
  482.   -->
  483.    <!-- runtime-shared-library-path: specifies a SWC to link against, an RSL URL to load, with an optional policy file URL and optional failover URLs -->
  484.    <runtime-shared-library-path>
  485.       <path-element>libs/framework.swc</path-element>
  486.       <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/framework_4.6.0.23201.swz</rsl-url>
  487.       <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
  488.       <rsl-url>framework_4.6.0.23201.swz</rsl-url>
  489.       <policy-file-url></policy-file-url>
  490.    </runtime-shared-library-path>
  491.    <runtime-shared-library-path>
  492.       <path-element>libs/textLayout.swc</path-element>
  493.       <rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz</rsl-url>
  494.       <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
  495.       <rsl-url>textLayout_2.0.0.232.swz</rsl-url>
  496.       <policy-file-url></policy-file-url>
  497.    </runtime-shared-library-path>
  498.    <runtime-shared-library-path>
  499.       <path-element>libs/spark.swc</path-element>
  500.       <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/spark_4.6.0.23201.swz</rsl-url>
  501.       <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
  502.       <rsl-url>spark_4.6.0.23201.swz</rsl-url>
  503.       <policy-file-url></policy-file-url>
  504.    </runtime-shared-library-path>
  505.    <runtime-shared-library-path>
  506.       <path-element>libs/sparkskins.swc</path-element>
  507.       <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/sparkskins_4.6.0.23201.swz</rsl-url>
  508.       <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
  509.       <rsl-url>sparkskins_4.6.0.23201.swz</rsl-url>
  510.       <policy-file-url></policy-file-url>
  511.    </runtime-shared-library-path>
  512.    <runtime-shared-library-path>
  513.       <path-element>libs/rpc.swc</path-element>
  514.       <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/rpc_4.6.0.23201.swz</rsl-url>
  515.       <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
  516.       <rsl-url>rpc_4.6.0.23201.swz</rsl-url>
  517.       <policy-file-url></policy-file-url>
  518.    </runtime-shared-library-path>
  519.    <runtime-shared-library-path>
  520.       <path-element>libs/charts.swc</path-element>
  521.       <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/charts_4.6.0.23201.swz</rsl-url>
  522.       <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
  523.       <rsl-url>charts_4.6.0.23201.swz</rsl-url>
  524.       <policy-file-url></policy-file-url>
  525.    </runtime-shared-library-path>
  526.    <runtime-shared-library-path>
  527.       <path-element>libs/spark_dmv.swc</path-element>
  528.       <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/spark_dmv_4.6.0.23201.swz</rsl-url>
  529.       <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
  530.       <rsl-url>spark_dmv_4.6.0.23201.swz</rsl-url>
  531.       <policy-file-url></policy-file-url>
  532.    </runtime-shared-library-path>
  533.    <runtime-shared-library-path>
  534.       <path-element>libs/osmf.swc</path-element>
  535.       <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/osmf_1.0.0.16316.swz</rsl-url>
  536.       <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
  537.       <rsl-url>osmf_1.0.0.16316.swz</rsl-url>
  538.       <policy-file-url></policy-file-url>
  539.    </runtime-shared-library-path>
  540.    <runtime-shared-library-path>
  541.       <path-element>libs/mx/mx.swc</path-element>
  542.       <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/mx_4.6.0.23201.swz</rsl-url>
  543.       <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
  544.       <rsl-url>mx_4.6.0.23201.swz</rsl-url>
  545.       <policy-file-url></policy-file-url>
  546.    </runtime-shared-library-path>
  547.    <runtime-shared-library-path>
  548.       <path-element>libs/advancedgrids.swc</path-element>
  549.       <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/advancedgrids_4.6.0.23201.swz</rsl-url>
  550.       <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
  551.       <rsl-url>advancedgrids_4.6.0.23201.swz</rsl-url>
  552.       <policy-file-url></policy-file-url>
  553.    </runtime-shared-library-path>
  554.    <runtime-shared-library-settings>
  555.       <!-- runtime-shared-library-settings.application-domain: override the application domain an RSL is loaded into. The supported values are 'current', 'default', 'parent', or 'top-level'.-->
  556.       <!-- runtime-shared-library-settings.application-domain usage:
  557.      <application-domain>
  558.         <path-element>string</path-element>
  559.         <application-domain-target>string</application-domain-target>
  560.      </application-domain>
  561.      -->
  562.       <!-- runtime-shared-library-settings.force-rsls: force an RSL to be loaded, overriding the removal caused by using the remove-unused-rsls option-->
  563.       <!-- runtime-shared-library-settings.force-rsls usage:
  564.      <force-rsls>
  565.         <path-element>string</path-element>
  566.         <path-element>string</path-element>
  567.      </force-rsls>
  568.      -->
  569.    </runtime-shared-library-settings>
  570.    <!-- size-report: Output an XML-formatted report detailing the size of all code and data linked into the application.-->
  571.    <!-- size-report usage:
  572.   <size-report>filename</size-report>
  573.   -->
  574.    <!-- static-link-runtime-shared-libraries: statically link the libraries specified by the -runtime-shared-libraries-path option.-->
  575.    <static-link-runtime-shared-libraries>false</static-link-runtime-shared-libraries>
  576.    <!-- swf-version: specifies the version of the compiled SWF file.-->
  577.    <swf-version>14</swf-version>
  578.    <!-- target-player: specifies the version of the player the application is targeting. Features requiring a later version will not be compiled into the application. The minimum value supported is "9.0.0".-->
  579.    <target-player>11.1</target-player>
  580.    <!-- tools-locale: specifies the locale used by the compiler when reporting errors and warnings.-->
  581.    <!-- tools-locale usage:
  582.   <tools-locale>string</tools-locale>
  583.   -->
  584.    <!-- use-direct-blit: Use hardware acceleration to blit graphics to the screen, where such acceleration is available.-->
  585.    <!-- use-direct-blit usage:
  586.   <use-direct-blit>boolean</use-direct-blit>
  587.   -->
  588.    <!-- use-gpu: Use GPU compositing features when drawing graphics, where such acceleration is available.-->
  589.    <!-- use-gpu usage:
  590.   <use-gpu>boolean</use-gpu>
  591.   -->
  592.    <!-- use-network: toggle whether the SWF is flagged for access to network resources-->
  593.    <use-network>true</use-network>
  594.    <!-- verify-digests: verifies the libraries loaded at runtime are the correct ones.-->
  595.    <!-- verify-digests usage:
  596.   <verify-digests>boolean</verify-digests>
  597.   -->
  598.    <!-- version: display the build version of the program-->
  599.    <!-- version usage:
  600.   <version>boolean</version>
  601.   -->
  602.    <!-- warnings: toggle the display of warnings-->
  603.    <!-- warnings usage:
  604.   <warnings>boolean</warnings>
  605.   -->
  606. </flex-config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement