<?xml version="1.0" encoding="UTF-8"?>

     <!-- 
     //////////////////////////////////////////////////////////////////////
     // title .......:  Ant build for transforming Family Web pages
     // copyright ...:  Copyright 2005 CroftSoft, Inc.
     // version .....:  $Date: 2005/04/10 00:14:56 $
     // since .......:  2005-04-09
     // author ......:  David Wallace Croft (http://www.croftsoft.com/)
     //////////////////////////////////////////////////////////////////////
     -->

     <project name="familyweb" default="transform">
     <!-- ///////////////////////////////////////////////////////////// -->
     <!-- ///////////////////////////////////////////////////////////// -->

	   <target name="transform">
	   <!-- ///////////////////////////////////////////////////////////// -->
	     <xslt
	       basedir="."
	       destdir="."
	       extension=".html" 
	       style="familyweb.xsl"
	       includes="**/index.xml"
         excludes="index.xml" 
	       force="true"
	       scanincludeddirectories="true">
	     </xslt>
	   </target>
         
     <!-- ///////////////////////////////////////////////////////////// -->
     <!-- ///////////////////////////////////////////////////////////// -->
     </project>