Archive for July 31st, 2007

ANT Task for using html-template’s index.template.html

I am constantly changing the default index.template.html in my Flex projects. This is quite nice, as you can even change the index.template.html to index.template.php and it will generate the file correctly. But in most cases I have ANT builds on the servers that do all the building. This is where I found the Flex ANT html-wrapper task falling short.

The Flex ANT html-wrapper task does not let you use custom/modified template files. But don't worry its actually quite easy to do this in ANT, as its just a bunch of token substitution. Here is one way to accomplish the task (I was having issues with filterchain and replacetokens):

CODE:
  1. <copy file="${app.base.dir}/html-template/index.template.html"
  2.                  tofile="${app.webroot.dir}/MyApp.html" />
  3. <replace file="${app.webroot.dir}/MyApp.html" token="$${swf}" value="MyApp"/>
  4. <replace file="${app.webroot.dir}/MyApp.html" token="$${width}" value="600"/>
  5. <replace file="${app.webroot.dir}/MyApp.html" token="$${height}" value="600"/>
  6. <replace file="${app.webroot.dir}/MyApp.html" token="$${bgcolor}" value="#000000"/>
  7. <replace file="${app.webroot.dir}/MyApp.html" token="$${application}" value="MyApp"/>
  8. <replace file="${app.webroot.dir}/MyApp.html" token="$${version_major}" value="9"/>
  9. <replace file="${app.webroot.dir}/MyApp.html" token="$${version_minor}" value="0"/>
  10. <replace file="${app.webroot.dir}/MyApp.html" token="$${version_revision}" value="28"/>

10 comments July 31st, 2007



Disclaimer: I work as a Flash/Flex Developer for Adobe Systems Incorporated. The opinions expressed here represent my own and not those of my employer.

My Amazon.com Wish List

Calendar

July 2007
S M T W T F S
« Jun   Aug »
1234567
891011121314
15161718192021
22232425262728
293031  

Posts by Month

Posts by Category


Flex.org - The Directory for Flex