DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=31021>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=31021 *old* URI for the *.tlds (including for contrib/ (faces & el)) ------- Additional Comments From [EMAIL PROTECTED] 2004-09-02 18:52 ------- Here is a patch that creates 1.1 versions of the tld during the build using the ant replace task. Index: build.xml =================================================================== RCS file: /home/cvspublic/jakarta-struts/build.xml,v retrieving revision 1.137 diff -u -r1.137 build.xml --- build.xml 1 Sep 2004 05:22:28 -0000 1.137 +++ build.xml 2 Sep 2004 18:46:19 -0000 @@ -324,6 +324,28 @@ <copy todir="${build.home}/library/classes/META-INF/tlds"> <fileset dir="${build.home}/library" includes="struts-*.tld"/> </copy> + <copy todir="${build.home}/library/classes/META-INF/tlds" overwrite="true"> + <fileset dir="${build.home}/library" includes="struts-*.tld"/> + <mapper type="regexp" from="^(.*)\.tld$$" to="\1-1.1.tld"/> + </copy> + <replace dir="${build.home}/library/classes/META-INF/tlds" > + <include name="*-1.1.tld"/> + <replacefilter + token="http://struts.apache.org/tags-bean" + value="http://jakarta.apache.org/struts/tags-bean"/> + <replacefilter + token="http://struts.apache.org/tags-html" + value="http://jakarta.apache.org/struts/tags-html"/> + <replacefilter + token="http://struts.apache.org/tags-logic" + value="http://jakarta.apache.org/struts/tags-logic"/> + <replacefilter + token="http://struts.apache.org/tags-nested" + value="http://jakarta.apache.org/struts/tags- nested"/> + <replacefilter + token="http://struts.apache.org/tags-tiles" + value="http://jakarta.apache.org/struts/tags- tiles"/> + </replace> <jar jarfile="${build.home}/library/${app.name}.jar" manifest="${conf.share.dir}/MANIFEST.MF" basedir="${build.home}/library/classes" --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
