forked from openkylin/platform_build
Merge "DO NOT MERGE Revert "D.N.M. Revert "Add the ability to display annotations in the generated docs""" into mnc-ub-dev
This commit is contained in:
commit
c10e65ac58
|
@ -4555,3 +4555,7 @@ a.download-sdk {
|
||||||
.fullpage #footer {
|
.fullpage #footer {
|
||||||
margin-top: -40px;
|
margin-top: -40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.annotation-message {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
|
@ -123,6 +123,7 @@ Summary:
|
||||||
<?cs /if ?>
|
<?cs /if ?>
|
||||||
<?cs set:colspan = colspan-1 ?>
|
<?cs set:colspan = colspan-1 ?>
|
||||||
<?cs /each ?>
|
<?cs /each ?>
|
||||||
|
<?cs call:show_annotations_list(class, "<span class='annotation-message'>", "</span><span class='annotation-message'>", "</span>") ?>
|
||||||
|
|
||||||
</div><!-- end header -->
|
</div><!-- end header -->
|
||||||
|
|
||||||
|
@ -210,7 +211,10 @@ Summary:
|
||||||
<?cs var:field.final ?>
|
<?cs var:field.final ?>
|
||||||
<?cs call:type_link(field.type) ?></nobr></td>
|
<?cs call:type_link(field.type) ?></nobr></td>
|
||||||
<td class="jd-linkcol"><?cs call:cond_link(field.name, toroot, field.href, included) ?></td>
|
<td class="jd-linkcol"><?cs call:cond_link(field.name, toroot, field.href, included) ?></td>
|
||||||
<td class="jd-descrcol" width="100%"><?cs call:short_descr(field) ?></td>
|
<td class="jd-descrcol" width="100%"><?cs call:short_descr(field) ?>
|
||||||
|
<?cs each:anno = field.showAnnotations ?>
|
||||||
|
<?cs call:show_annotations_list(field, "<span class='annotation-message'>", "</span><span class='annotation-message'>", "</span>") ?>
|
||||||
|
<?cs /each ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?cs set:count = count + #1 ?>
|
<?cs set:count = count + #1 ?>
|
||||||
<?cs /each ?>
|
<?cs /each ?>
|
||||||
|
|
Loading…
Reference in New Issue