I wanted to run <antdoc> on the current build file (whose absolute filename
is in ${ant.file}), but <antdoc> doesn't have a 'file' attribute, only a
<fileset> subelement. How not to hardcode the build filename in the task so
the task is re-usable as-is in another build file? Must found a generic way
to convert a filename into a <fileset> that resolve to only that file. In
1.5, is would be trivial to use <dirname> and <basename>, but I need it for
1.4.1 too? Here's a little convoluted way to do that using <pathconvert>,
assuming you know a directory this file belongs to (and hopefully it's not
the root directory):
<!-- Just so we can specify ${ant.file} as a <fileset> -->
<pathconvert property="buildfile.pattern"
dirSep="${file.separator}"
pathSep="${path.separator}">
<path><pathelement path="${ant.file}" /></path>
<map from="${basedir}${file.separator}" to="" />
</pathconvert>
<echo message="buildfile.pattern = ${buildfile.pattern}" />
<fileset dir="${basedir}">
<include name="${buildfile.pattern}" />
</fileset>
If you know of a better way to do this, thanks to let me know. Otherwise,
maybe this will be useful to someone. --DD
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>