Tuesday, 22 February 2005

Scripting Ant

Posted by layout at 19:19:58 | Permanent Link | Comments (0) |

[forward]Using JavaScript with Ant

Using JavaScript with Ant

---last Modified on 25 Aug 2004


This tutorial is a collection of information about using JavaScript and XSLT with Ant, and is focused towards intermediate to expert client-side web developers. It is presently a very rough draft.

Information in this tutorial was taken from several sources including the ant-user mailing list and the ant manual. Where possible the date and location of a source material has been noted to provide credit to members of the community and to aid in your search for more information. If there is any material in this tutorial which is not public or is copyrighted please contact the authors of this tutorial and this information will be removed.

All e-mail addresses in this document have been munged in an attempt to block spam spiders. Replace [at] with the @ symbol to un-munge the address.


Posted by layout at 19:09:36 | Permanent Link | Comments (0) |

Thursday, 27 January 2005

xml implemention

two kinds implements of xml definition:

<?xml version="1.0" encoding="UTF-8"?>

<properties>
  <maven>
    <repo>
      <remote>testtesttest</remote>test
    </repo>
  </maven>
  <datasource>
    <username>test1</username>
    <password>test1</password>
  </datasource>
</properties>

another implemention:

<?xml version="1.0" encoding="UTF-8"?>

<properties>
  <property name="maven">
    <property name="repo">
      <property name="remote">testtesttest</property>test
    </property>
  </property>
  <property name="datasource">
    <property name="username">test1</property>
    <property name="password">test1</property>
  </property>
</properties>

which one is better?...think about it.
Posted by layout at 17:28:13 | Permanent Link | Comments (0) |