equal
deleted
inserted
replaced
68 <#if property.@state == 'added'> |
68 <#if property.@state == 'added'> |
69 * `${property} <api/helium/property-${property}.html>`_ |
69 * `${property} <api/helium/property-${property}.html>`_ |
70 </#if> |
70 </#if> |
71 </#list> |
71 </#list> |
72 |
72 |
73 Properties removed |
73 Properties removed or made private |
74 ================== |
74 ================================== |
75 <#list doc.apiChanges.property?sort as property> |
75 <#list doc.apiChanges.property?sort as property> |
76 <#if property.@state == 'removed'> |
76 <#if property.@state == 'removed'> |
77 * ${property} |
77 * ${property} |
78 </#if> |
78 </#if> |
79 </#list> |
79 </#list> |
91 <#list doc.apiChanges.macro?sort as macro> |
91 <#list doc.apiChanges.macro?sort as macro> |
92 <#if macro.@state == 'removed'> |
92 <#if macro.@state == 'removed'> |
93 * ${macro} |
93 * ${macro} |
94 </#if> |
94 </#if> |
95 </#list> |
95 </#list> |
|
96 |
|
97 Ant Tasks added |
|
98 =============== |
|
99 <#list doc.apiChanges.taskdef?sort as taskdef> |
|
100 <#assign link = taskdef.@classname> |
|
101 <#if taskdef.@state == 'added'> |
|
102 <#if link?contains("com.nokia.helium")> |
|
103 * `${taskdef} <helium-antlib/api/doclet/${link}.html>`_ |
|
104 <#else> |
|
105 * `${taskdef} <api/ant/${link}.html>`_ |
|
106 </#if> |
|
107 </#if> |
|
108 </#list> |
|
109 |
|
110 Ant Tasks removed |
|
111 ================= |
|
112 <#list doc.apiChanges.taskdef?sort as taskdef> |
|
113 <#if taskdef.@state == 'removed'> |
|
114 * ${taskdef} |
|
115 </#if> |
|
116 </#list> |