--- a/buildframework/helium/build.xml Thu Mar 04 15:10:37 2010 +0200
+++ b/buildframework/helium/build.xml Tue Apr 27 08:33:08 2010 +0300
@@ -24,63 +24,35 @@
<description>
Helium targets to build helium itself.
</description>
+ <property environment="env" />
- <import file="build-jar.ant.xml"/>
<property name="build.drive" location="${env.TEMP}/helium/temp_drive"/>
<mkdir dir="${build.drive}/"/>
- <!-- @property helium.version
+ <!--* @property helium.version
@type string
@scope private -->
<property file="${helium.dir}/config/version.txt"/>
<property name="release.label" value="${helium.version}"/>
+ <property name="doc.src.dir" location="${basedir}/doc/src" />
<!-- Override docs targets to do more for Helium. -->
- <target name="apidocs" depends="python-apidocs,java-apidocs,antdoclet,internal.docs.apidocs"/>
+ <target name="apidocs" depends="python-apidocs,internal.docs.apidocs"/>
<!-- Generate rst files for docs -->
<target name="prep-textdocs" depends="overview-to-html,tools-rst-table,dependency-diagram,
- dependency-logs,release-diff,helium-user-graph,helium-prep-textdocs,internal.docs.prep-textdocs"/>
+ dependency-logs,release-diff,helium-user-graph,internal.docs.prep-textdocs,helium-prep-textdocs"/>
<!-- generate all the user documentation for helium -->
- <target name="docs" depends="clean-doc-dir,database,apidocs,textdocs,add-policies-to-docs"/>
+ <target name="docs" depends="clean-docs,database,apidocs,textdocs"/>
<import file="helium.ant.xml"/>
<import file="tools/startup/antserver/antserver.ant.xml"/>
-
-
-
- <target name="must-property-comments">
- <!--<xslt in="${data.model.file}" out="${data.model.parsed}" style="${data.model.xsl}"/>-->
- <for param="ant.file">
- <fileset dir="${helium.dir}" includes="helium.ant.xml">
- </fileset>
- <sequential>
- <script language="jython">
-import re
-import java.io
-import org.dom4j
-import org.dom4j.io
-
-model = org.dom4j.io.SAXReader().read(java.io.File(project.getProperty("helium.dir") + '/build/datamodel.out'))
+ <resources id="textdoc.paths">
+ <path>
+ <pathelement path="${doc.src.dir}"/>
+ <pathelement path="${basedir}/extensions/nokia/doc/src"/>
+ </path>
+ </resources>
-user_props = model.selectNodes('//property[editStatus="must"]')
-indent = ' '
-out = open('required_properties.txt', 'w')
-for prop in user_props:
-# print prop
- property_comment = indent + "<!--* @property " + prop.elementTextTrim('name') + "\n"
- property_comment += indent + prop.elementTextTrim('description') + "\n"
- property_comment += indent + "@type " + prop.elementTextTrim('type') + "\n"
- property_comment += indent + "@editable required\n"
- property_comment += indent + "@scope public\n"
- property_comment += indent + "-->\n\n"
- print property_comment
- out.write(property_comment)
-
-out.close()
- </script>
- </sequential>
- </for>
- </target>
</project>