diff -r 421e376bfce4 -r 877485b44765 buildframework/helium/doc/src/api/project.html.ftl
--- a/buildframework/helium/doc/src/api/project.html.ftl Tue Mar 23 13:34:00 2010 +0000
+++ b/buildframework/helium/doc/src/api/project.html.ftl Thu Mar 25 11:35:53 2010 +0000
@@ -36,7 +36,7 @@
#if>
Description
-<#recurse project.documentation>
+${project.description}
@@ -45,22 +45,24 @@
Targets
- Target name | Description |
+ Target name |
+ Description |
<#assign targetInfo = {}>
<#list project.target as target>
- <#assign targetInfo = targetInfo + {target.name: target.documentation}>
+ <#assign targetInfo = targetInfo + {target.name: target.summary}>
#list>
<#list targetInfo?keys?sort as name>
- ${name} | <#recurse targetInfo[name]> |
+ ${name} |
+ <#recurse targetInfo[name]> |
#list>
Properties
-<#assign propertymodel=data.heliumDataModel.property>
+<#assign propertymodel=doc.antDatabase.project.property>
<#assign propertylist=project.property>
<#list propertymodel as propertyInModel>
<#list propertylist as propertyvar>
@@ -73,8 +75,8 @@
#list>
#list>
-File Includes
-<#assign filelist=project.fileDependency>
+Project dependencies
+<#assign filelist = project.projectDependency>
<#list filelist as filelistvar>
${filelistvar}
@@ -82,7 +84,7 @@
#list>
-Python Modules
+<#--Python Modules
<#assign pymodulelist=project.pythonDependency>
<#list pymodulelist.module as pymodulevar>
<#if pymodulevar?size > 0>
@@ -91,7 +93,7 @@
#if>
-#list>
+#list>-->