This file is indexed.

/usr/share/doc/libantelope-java/manual/bk03ch20.html is in libantelope-java-doc 3.5.1-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 20. AntCallBack</title><meta name="generator" content="DocBook XSL Stylesheets V1.79.1"><link rel="home" href="index.html" title="Antelope Users Guide"><link rel="up" href="bk03.html" title="Additional Ant Tasks"><link rel="prev" href="bk03ch19.html" title="Chapter 19. AntFetch"><link rel="next" href="bk03ch21.html" title="Chapter 21. Call Task"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 20. AntCallBack</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="bk03ch19.html">Prev</a> </td><th width="60%" align="center">Additional Ant Tasks</th><td width="20%" align="right"> <a accesskey="n" href="bk03ch21.html">Next</a></td></tr></table><hr></div><div class="chapter"><div class="titlepage"><div><div><h1 class="title"><a name="antcallback"></a>Chapter 20. AntCallBack</h1></div></div></div>
@style@
    <p>
AntCallBack is identical to the standard 'antcall' task, except that it allows properties set in the called target to be available in the calling target.
</p><p>
To use this task in your build files, include a task definition like this:
</p><pre class="programlisting">

    &lt;taskdef name="antcallback" classname="ise.antelope.tasks.AntCallBack"/&gt;
   
</pre><p>
</p><p>
Some background may be in order: When the &lt;antcall&gt; task is used, in actuality, a new Ant project is created, and depending on the inheritAll property, it is populated with properties from the original project. Then the requested target in this new project is executed. Any properties set in the new project remain with that project, they do not get "passed back" to the original project. So, for example, if the target in the new project sets a property named "image.directory", there is no reference to that property in the original. Here's an example of what I mean:
</p><p>
</p><pre class="programlisting">

    &lt;target name="testCallback" description="Test CallBack"&gt;
        &lt;taskdef name="antcallback" classname="ise.antelope.tasks.AntCallBack" classpath="${antelope.home}/build" /&gt;
        &lt;antcallback target="-testcb" return="a, b"/&gt;
        &lt;echo&gt;a = ${a}&lt;/echo&gt;
        &lt;echo&gt;b = ${b}&lt;/echo&gt;
    &lt;/target&gt;

    &lt;target name="-testcb"&gt;
        &lt;property name="a" value="A"/&gt;
        &lt;property name="b" value="B"/&gt;
    &lt;/target&gt;

</pre><p>
The output from executing "testCallback" looks like this:
</p><pre class="programlisting">
a = A
b = B
</pre><p>
Contrast with this output from "antcall":
</p><pre class="programlisting">
a = ${a}
b = ${b}
</pre><p>
</p><p>
This is an often requested feature for Ant, at least judging from the Ant mailing lists. I assume this is because it allows a more functional programming style than Ant natively supports. The proper Ant way of doing the above is like this:
</p><pre class="programlisting">

    &lt;target name="testCallback" description="Test CallBack" depends="-testcb"&gt;
        &lt;echo&gt;a = ${a}&lt;/echo&gt;
        &lt;echo&gt;b = ${b}&lt;/echo&gt;
    &lt;/target&gt;

    &lt;target name="-testcb"&gt;
        &lt;property name="a" value="A"/&gt;
        &lt;property name="b" value="B"/&gt;
    &lt;/target&gt;

</pre><p>
This is actually looks cleaner in this situation, and is faster, too. There is significant overhead in using both "antcall" and "antcallback" in that they both require a lot of object instantiation and property copying. That said, many people prefer to use "antcall" and "antcallback" as it better fits their logic and style.
</p><p>
The attributes for AntCallBack are identical to the 'antcall' task, with one additional, optional attibute. This attribute is named "return" and can be either a single property name or a comma separated list of property names.
</p><div class="table"><a name="idm1921"></a><p class="title"><b>Table 20.1. AntCallBack Attributes</b></p><div class="table-contents"><table class="table" summary="AntCallBack Attributes" border="1"><colgroup><col><col><col><col></colgroup><thead><tr><th>Attribute</th><th>Description</th><th>Default</th><th>Required</th></tr></thead><tbody><tr><td>return</td><td>A comma separated list of property names. Whitespace is allowed, so either "a,b" or "a, b" are acceptable.</td><td>None</td><td>No</td></tr></tbody></table></div></div><p><br class="table-break">
</p><p>
For other attribute and nested element information and more examples, see the documentation for the "antcall" task in the Ant documentation.
</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="bk03ch19.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="bk03.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="bk03ch21.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 19. AntFetch </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 21. Call Task</td></tr></table></div></body></html>