From: <fza...@us...> - 2005-06-28 20:35:58
|
Update of /cvsroot/struts/ajaxtags/WEB-INF/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/WEB-INF/src Modified Files: history.txt readme.txt Log Message: Index: history.txt =================================================================== RCS file: /cvsroot/struts/ajaxtags/WEB-INF/src/history.txt,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** history.txt 24 Jun 2005 20:32:48 -0000 1.14 --- history.txt 28 Jun 2005 20:35:43 -0000 1.15 *************** *** 28,31 **** --- 28,35 ---- * Changed build script to update struts-html-1.1.tld as well. This was to address some issues specifically discovered when running under Resin. + * Added stdXSLT handler contributed by Ricky Tong (ri...@no...), + and sample in sample webapp to demonstrate it. Thank you Ricky! Note + that this handler requires the Sarissa library, available at + http://sarissa.sourceforge.net. Index: readme.txt =================================================================== RCS file: /cvsroot/struts/ajaxtags/WEB-INF/src/readme.txt,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** readme.txt 24 Jun 2005 20:32:48 -0000 1.12 --- readme.txt 28 Jun 2005 20:35:43 -0000 1.13 *************** *** 184,187 **** --- 184,193 ---- std:InnerHTML ........ Sets the innerHTML property of a named element to what the server returns + std:XSLT ............. This handler is capable of transforming XML returned + by the server to HTML, or another XML form, or + anything else you can do with XSLT. Contributed by + Ricky Tong. Note that this handler requires use of + the Sarissa library available at + http://sarissa.sourceforget.net. For requestHandlers, there is a child <target> element. This is simply the *************** *** 213,216 **** --- 219,227 ---- * Response Handlers std:InnerHTML ........ The DOM ID of an element on the page. + std:XSLT ............. A comma-separated list where the first element is the + DOM ID of an element on the page where output will be + displayed (by setting innerHTML), and the second + element is the path of the XML file for the XSL + Transform. And that's it for the config file! *************** *** 276,280 **** ! Enjoy! ! -Frank W. Zammetti --- 287,298 ---- ! ------------ ! Contributors ! ------------ ! The following people have contributed to AjaxTags: ! * Aron Gombas contributed a patch to fix some typos and implement more ! robust logging . ! * Günther Wieser found some issues with the build process and did some ! troubleshooting under Resin. ! * Ricky Tong (ri...@no...) contributed the stdXSLT handler. |