pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / xml-query-parser / dtddocbuild.xml
diff --git a/lucene-java-3.5.0/lucene/contrib/xml-query-parser/dtddocbuild.xml b/lucene-java-3.5.0/lucene/contrib/xml-query-parser/dtddocbuild.xml
new file mode 100644 (file)
index 0000000..ba42842
--- /dev/null
@@ -0,0 +1,36 @@
+<?xml version="1.0"?>
+
+<project name="DTDDocAnt" default="main">
+
+  <import file="../contrib-build.xml"/>
+
+    <description>
+    This file generates DTDdocumentation
+    </description>
+
+    <!-- Tell ant where to find the code of the DTDDoc task.
+         Set dtddoc.home property to the directory where DTDdoc is installed on your system
+         -->
+
+    <taskdef name="DTDDoc"
+             classname="DTDDoc.DTDDocTask"
+             classpath="${dtddoc.home}/DTDDoc.jar"/>
+
+    <!-- Execute DTDDoc -->
+
+    <target name="main">
+
+
+        <DTDDoc showHiddenTags="false"
+                showFixmeTags="false"
+                sourceDir="."
+                destDir="docs"
+                docTitle = "Lucene XML Query syntax">
+                <include name="*.dtd"/>
+        </DTDDoc>
+
+    </target>
+
+
+
+</project>