| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="../../." name="product.analyze"
- xmlns:p5dg="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/documentation_generator/documentation_generator.xsd"
- >
-
- <description>Do pobrania danych na temat modulu/komponentu systemu w celu jego analizowania
- To analyze some module to generate documentation etc..
- </description>
-
- <include file="build.p5dg.PRODUCT.xml" as="PRODUCT"/>
- <include file="build_documentation_generator.xml" as=""/>
- <include file="../system_ui_info_speech/build.system_ui_info_speech.PRODUCT.xml"/>
-
- <target name="include.structure">
- <!--<local name="p5ant.include.structure.xml"/>-->
- <input addproperty="p5dg.documentation.files.index.root_dir" message="type directory of module to analyze"/>
- <input addproperty="PRODUCT.prefix" message="type product message - like p5dg - to collect files with that prefix"/>
- <tempfile property="p5ant.include.structure.xml" destdir="${p5dg.repository}" prefix="p5ant.include.structure.${PRODUCT.prefix}" suffix=".xml" deleteonexit="no"/>
- <tempfile property="p5dg.documentation.files.index_analyzed_structurized.xml" destdir="${p5dg.repository}" prefix="p5dg.documentation.files.index_analyzed_structurized.${PRODUCT.prefix}" suffix=".xml" deleteonexit="no"/>
- <echo>#299 p5dg.documentation.files.index_fileset.xml - outlist is ${p5ant.include.structure.xml} for dir ${p5dg.documentation.files.index.root_dir} </echo>
-
- <antcall target="p5dg.p5ant.include.structure.task.ep">
- <param name="p5dg.documentation.files.index.root_dir" value="${p5dm.basedir}"/>
- <param name="p5dg.documentation.files.index_analyzed_structurized.xml" value="${p5dg.documentation.files.index_analyzed_structurized.xml}"/>
- <param name="p5ant.include.structure.xml" value="${p5ant.include.structure.xml}"/>
- <param name="p5dg.documentation.files.index.root_dir" value="${p5dm.basedir}"/>
- <param name="p5dg.documentation.files.index.excludes1" value=""/>
- <param name="p5dg.documentation.files.index.includes1" value="**/*.xml"/>
- </antcall>
- <exec executable="open">
- <arg file="${p5dg.documentation.files.index_analyzed_structurized.xml}"/>
- </exec>
- <exec executable="open">
- <arg file="${p5ant.include.structure.xml}"/>
- </exec>
-
- </target>
-
-
- </project>
|