You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by bd...@apache.org on 2006/09/21 13:34:35 UTC

svn commit: r448523 - /xmlgraphics/fop/trunk/build.xml

Author: bdelacretaz
Date: Thu Sep 21 04:34:35 2006
New Revision: 448523

URL: http://svn.apache.org/viewvc?view=rev&rev=448523
Log:
Overridable property "fo.examples.include" added to select which examples to build

Modified:
    xmlgraphics/fop/trunk/build.xml

Modified: xmlgraphics/fop/trunk/build.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/build.xml?view=diff&rev=448523&r1=448522&r2=448523
==============================================================================
--- xmlgraphics/fop/trunk/build.xml (original)
+++ xmlgraphics/fop/trunk/build.xml Thu Sep 21 04:34:35 2006
@@ -168,6 +168,7 @@
   <property name="src.viewer.images.dir" value="${src.java.dir}/org/apache/fop/render/awt/viewer/images"/>
   <property name="xdocs.dir" value="${src.dir}/documentation/content/xdocs"/>
   <property name="fo.examples.dir" value="${basedir}/examples/fo/basic"/>
+  <property name="fo.examples.include" value="**/*.fo"/>
   <property name="lib.dir" value="${basedir}/lib"/>
   <property name="user.hyph.dir" value="${basedir}/hyph"/>
 
@@ -1203,7 +1204,7 @@
     <fop format="${build.property.examples.mime.type}" outdir="${build.examples.dir}"
          messagelevel="debug" basedir="${fo.examples.dir}">
       <fileset dir="${fo.examples.dir}">
-        <include name="**/*.fo"/>
+        <include name="${fo.examples.include}"/>
       </fileset>
     </fop>
   </target>



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org