Revision 1314
Added by Jing Tao about 22 years ago
build.xml | ||
---|---|---|
222 | 222 |
</fileset> |
223 | 223 |
<mapper type="glob" from="eml-*.dtd" to="eml-*-${eml-version}.dtd" /> |
224 | 224 |
</copy> |
225 |
<copy todir="lib/style" filtering="yes">
|
|
225 |
<copy todir="lib/style"> |
|
226 | 226 |
<fileset dir="${build.src}/${eml-module}/style"> |
227 | 227 |
<include name="*.xsl"/> |
228 | 228 |
</fileset> |
Also available in: Unified diff
In target "getdtd", filtering was set to be "No" when copy style sheet from build directory to lib directory. Filtering will be done when copy these files from lib directory to install directory in "install". The reason why we do this is because it will cause problem when we release metacat. When we release metacat, dtd files and style sheet file are included, so some stycle sheet's token was replaced by distributor's setting, which is different to user. Now token will be replaced in "installation", token will be replaced by user's setting.