Thread: [Ejtools-cvs] applications/jmx.browser/src/webapp/resources log.tld,1.6,1.7 struts-bean.tld,1.6,1.7
Brought to you by:
letiemble
Update of /cvsroot/ejtools/applications/jmx.browser/src/webapp/resources In directory sc8-pr-cvs1:/tmp/cvs-serv13614/jmx.browser/src/webapp/resources Modified Files: log.tld struts-bean.tld struts-config.xml struts-form.tld struts-html.tld struts-logic.tld struts-template.tld struts.tld Log Message: Address Bug #775745 Address Todo #800902 Address Todo #755528 Remove @created tags Add support for MXJ4 2.0.0 (still beta) Add support for JXM Remoting through RMI Index: log.tld =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/webapp/resources/log.tld,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** log.tld 26 Aug 2002 22:33:11 -0000 1.6 --- log.tld 27 Nov 2003 01:13:09 -0000 1.7 *************** *** 1,107 **** ! <?xml version="1.0" encoding="UTF-8"?> ! <!-- edited with XML Spy v4.3 U (http://www.xmlspy.com) by Laurent Etiemble (Orange) --> ! <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"> ! <taglib> ! <tlibversion>1.0</tlibversion> ! <jspversion>1.1</jspversion> ! <shortname>log</shortname> ! <uri>http://jakarta.apache.org/taglibs/log-1.0</uri> ! <info> ! The Log library allows you to embed logging calls in your JSP which can be ! output to a variety of destinations thanks to the power of the ! log4j project. ! Initialising log4jBy default these log tags do not explicitly initialise log4j, ! you are free to do that however you wish. ! A common approach is to create a log4j servlet and for it to initialise ! log4j using some configuration file or options specified in your web.xml ! My own personal preference is just to put a log4j.properties file ! in the WEB-INF/classes directory and for that to have your log4j ! configuration. Then without any special servlets or initialisation ! code log4j will correctly initialise itself. This approach also avoids ! a single web app accidentally initialising log4j several times ! (e.g. via 2 different servlets). ! If you have any further questions regarding the configuration of ! log4j please visit the ! log4j ! site or a log4j specific mailing list. ! </info> ! <tag> ! <name>debug</name> ! <tagclass>org.apache.taglibs.log.DebugTag</tagclass> ! <attribute> ! <name>category</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>message</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>info</name> ! <tagclass>org.apache.taglibs.log.InfoTag</tagclass> ! <attribute> ! <name>category</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>message</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>warn</name> ! <tagclass>org.apache.taglibs.log.WarnTag</tagclass> ! <attribute> ! <name>category</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>message</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>error</name> ! <tagclass>org.apache.taglibs.log.ErrorTag</tagclass> ! <attribute> ! <name>category</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>message</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>fatal</name> ! <tagclass>org.apache.taglibs.log.FatalTag</tagclass> ! <attribute> ! <name>category</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>message</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>dump</name> ! <tagclass>org.apache.taglibs.log.DumpTag</tagclass> ! <attribute> ! <name>scope</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! </taglib> --- 1,107 ---- ! <?xml version="1.0" encoding="UTF-8"?> ! <!-- edited with XML Spy v4.3 U (http://www.xmlspy.com) by Laurent Etiemble (Orange) --> ! <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"> ! <taglib> ! <tlibversion>1.0</tlibversion> ! <jspversion>1.1</jspversion> ! <shortname>log</shortname> ! <uri>http://jakarta.apache.org/taglibs/log-1.0</uri> ! <info> ! The Log library allows you to embed logging calls in your JSP which can be ! output to a variety of destinations thanks to the power of the ! log4j project. ! Initialising log4jBy default these log tags do not explicitly initialise log4j, ! you are free to do that however you wish. ! A common approach is to create a log4j servlet and for it to initialise ! log4j using some configuration file or options specified in your web.xml ! My own personal preference is just to put a log4j.properties file ! in the WEB-INF/classes directory and for that to have your log4j ! configuration. Then without any special servlets or initialisation ! code log4j will correctly initialise itself. This approach also avoids ! a single web app accidentally initialising log4j several times ! (e.g. via 2 different servlets). ! If you have any further questions regarding the configuration of ! log4j please visit the ! log4j ! site or a log4j specific mailing list. ! </info> ! <tag> ! <name>debug</name> ! <tagclass>org.apache.taglibs.log.DebugTag</tagclass> ! <attribute> ! <name>category</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>message</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>info</name> ! <tagclass>org.apache.taglibs.log.InfoTag</tagclass> ! <attribute> ! <name>category</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>message</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>warn</name> ! <tagclass>org.apache.taglibs.log.WarnTag</tagclass> ! <attribute> ! <name>category</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>message</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>error</name> ! <tagclass>org.apache.taglibs.log.ErrorTag</tagclass> ! <attribute> ! <name>category</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>message</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>fatal</name> ! <tagclass>org.apache.taglibs.log.FatalTag</tagclass> ! <attribute> ! <name>category</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>message</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>dump</name> ! <tagclass>org.apache.taglibs.log.DumpTag</tagclass> ! <attribute> ! <name>scope</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! </taglib> Index: struts-bean.tld =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/webapp/resources/struts-bean.tld,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** struts-bean.tld 26 Aug 2002 22:33:11 -0000 1.6 --- struts-bean.tld 27 Nov 2003 01:13:09 -0000 1.7 *************** *** 1,347 **** ! <?xml version="1.0" encoding="UTF-8"?> ! ! ! ! ! ! ! ! <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"> ! <taglib> ! <tlibversion>1.0</tlibversion> ! <jspversion>1.1</jspversion> ! <shortname>bean</shortname> ! <uri>http://jakarta.apache.org/struts/tags-bean-1.0</uri> ! <tag> ! <name>cookie</name> ! <tagclass>org.apache.struts.taglib.bean.CookieTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.CookieTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>multiple</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>value</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>define</name> ! <tagclass>org.apache.struts.taglib.bean.DefineTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.DefineTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>property</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>scope</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>toScope</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>type</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>value</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>header</name> ! <tagclass>org.apache.struts.taglib.bean.HeaderTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.HeaderTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>multiple</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>value</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>include</name> ! <tagclass>org.apache.struts.taglib.bean.IncludeTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.IncludeTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>anchor</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>forward</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>href</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>page</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>transaction</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>message</name> ! <tagclass>org.apache.struts.taglib.bean.MessageTag</tagclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>arg0</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>arg1</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>arg2</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>arg3</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>arg4</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>bundle</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>key</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>locale</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>page</name> ! <tagclass>org.apache.struts.taglib.bean.PageTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.PageTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>property</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>parameter</name> ! <tagclass>org.apache.struts.taglib.bean.ParameterTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.ParameterTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>multiple</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>value</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>resource</name> ! <tagclass>org.apache.struts.taglib.bean.ResourceTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.ResourceTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>input</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>size</name> ! <tagclass>org.apache.struts.taglib.bean.SizeTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.SizeTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>collection</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>property</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>scope</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>struts</name> ! <tagclass>org.apache.struts.taglib.bean.StrutsTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.StrutsTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>formBean</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>forward</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>mapping</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>write</name> ! <tagclass>org.apache.struts.taglib.bean.WriteTag</tagclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>filter</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>ignore</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>property</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>scope</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! </taglib> ! ! ! --- 1,347 ---- ! <?xml version="1.0" encoding="UTF-8"?> ! ! ! ! ! ! ! ! <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"> ! <taglib> ! <tlibversion>1.0</tlibversion> ! <jspversion>1.1</jspversion> ! <shortname>bean</shortname> ! <uri>http://jakarta.apache.org/struts/tags-bean-1.0</uri> ! <tag> ! <name>cookie</name> ! <tagclass>org.apache.struts.taglib.bean.CookieTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.CookieTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>multiple</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>value</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>define</name> ! <tagclass>org.apache.struts.taglib.bean.DefineTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.DefineTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>property</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>scope</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>toScope</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>type</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>value</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>header</name> ! <tagclass>org.apache.struts.taglib.bean.HeaderTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.HeaderTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>multiple</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>value</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>include</name> ! <tagclass>org.apache.struts.taglib.bean.IncludeTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.IncludeTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>anchor</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>forward</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>href</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>page</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>transaction</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>message</name> ! <tagclass>org.apache.struts.taglib.bean.MessageTag</tagclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>arg0</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>arg1</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>arg2</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>arg3</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>arg4</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>bundle</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>key</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>locale</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>page</name> ! <tagclass>org.apache.struts.taglib.bean.PageTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.PageTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>property</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>parameter</name> ! <tagclass>org.apache.struts.taglib.bean.ParameterTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.ParameterTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>multiple</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>value</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>resource</name> ! <tagclass>org.apache.struts.taglib.bean.ResourceTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.ResourceTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>input</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>size</name> ! <tagclass>org.apache.struts.taglib.bean.SizeTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.SizeTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>collection</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>property</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>scope</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>struts</name> ! <tagclass>org.apache.struts.taglib.bean.StrutsTag</tagclass> ! <teiclass>org.apache.struts.taglib.bean.StrutsTei</teiclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>id</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>formBean</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>forward</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>mapping</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! <tag> ! <name>write</name> ! <tagclass>org.apache.struts.taglib.bean.WriteTag</tagclass> ! <bodycontent>empty</bodycontent> ! <attribute> ! <name>filter</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>ignore</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>name</name> ! <required>true</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>property</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! <attribute> ! <name>scope</name> ! <required>false</required> ! <rtexprvalue>true</rtexprvalue> ! </attribute> ! </tag> ! </taglib> ! ! ! Index: struts-config.xml =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/webapp/resources/struts-config.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** struts-config.xml 10 Feb 2003 20:54:31 -0000 1.16 --- struts-config.xml 27 Nov 2003 01:13:09 -0000 1.17 *************** *** 1,82 **** ! <?xml version="1.0" encoding="UTF-8"?> ! <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd"> ! <struts-config> ! <!-- ========== Data Source Configuration =============================== --> ! <data-sources/> ! <!-- ========== Form Bean Definitions ================================== --> ! <form-beans type="org.apache.struts.action.ActionFormBean"> ! <form-bean name="detailForm" type="org.ejtools.jmx.browser.web.form.DetailForm"/> ! <form-bean name="searchForm" type="org.ejtools.jmx.browser.web.form.SearchForm"/> ! <form-bean name="registerForm" type="org.ejtools.jmx.browser.web.form.RegisterForm"/> ! </form-beans> ! <!-- ========== Global Forward Definitions =============================== --> ! <global-forwards type="org.apache.struts.actions.ActionForward"> ! <forward name="home" path="/connect.do"/> ! </global-forwards> ! <!-- ========== Action Mapping Definitions =============================== --> ! <action-mappings type="org.apache.struts.actions.ActionMapping"> ! <!-- ======================================== --> ! <!-- Connection to JMX Server --> ! <action path="/connect" type="org.ejtools.jmx.browser.web.action.RefreshAction"> ! <forward name="view" path="/index.jsp"/> ! </action> ! <!-- ======================================== --> ! <!-- MBean detail --> ! <action path="/detail" type="org.ejtools.jmx.browser.web.action.DetailAction"> ! <forward name="detail" path="/detail.jsp"/> ! <forward name="error" path="/index.jsp"/> ! </action> ! <!-- ======================================== --> ! <!-- MBean attributes update --> ! <action path="/update" type="org.ejtools.jmx.browser.web.action.UpdateAction" name="detailForm"> ! <forward name="detail" path="/detail.jsp"/> ! <forward name="error" path="/detail.jsp"/> ! </action> ! <!-- ======================================== --> ! <!-- MBean operation invoke --> ! <action path="/invoke" type="org.ejtools.jmx.browser.web.action.InvokeAction"> ! <forward name="result" path="/invoke.jsp"/> ! <forward name="error" path="/invoke.jsp"/> ! </action> ! <!-- ======================================== --> ! <!-- MBean unregistration --> ! <action path="/unregister" type="org.ejtools.jmx.browser.web.action.UnregisterAction"> ! <forward name="error" path="/detail.jsp"/> ! <forward name="view" path="/connect.do"/> ! </action> ! <!-- ======================================== --> ! <!-- Search form display --> ! <action path="/search-form" type="org.ejtools.jmx.browser.web.action.ClearSearchAction"> ! <forward name="view" path="/search.jsp"/> ! <forward name="error" path="/index.jsp"/> ! </action> ! <!-- Search result display --> ! <action path="/search" type="org.ejtools.jmx.browser.web.action.SearchAction" name="searchForm" input="/search.jsp"> ! <forward name="view" path="/search.jsp"/> ! </action> ! <!-- ======================================== --> ! <!-- Admin --> ! <action path="/admin" forward="/admin.jsp"/> ! <action path="/register" type="org.ejtools.jmx.browser.web.action.RegisterAction" name="registerForm" input="/admin.jsp"> ! <forward name="view" path="/connect.do"/> ! </action> ! <!-- ======================================== --> ! <!-- View Notification Broadcasters --> ! <action path="/select-broadcasters" forward="/broadcasters.jsp"/> ! <action path="/register-broadcasters" type="org.ejtools.jmx.browser.web.action.NotificationAction"> ! <forward name="view" path="/notifications.jsp"/> ! <forward name="error" path="/index.jsp"/> ! </action> ! <action path="/view-notifications" forward="/notifications.jsp"/> ! <!-- ======================================== --> ! <!-- Custom Views --> ! <action path="/customview" type="org.ejtools.jmx.browser.web.action.CustomViewAction"> ! <forward name="error" path="/index.jsp"/> ! <forward name="view" path="/customview.jsp"/> ! </action> ! <!-- ======================================== --> ! <!-- Help --> ! <action path="/help" forward="/help.jsp"/> ! </action-mappings> ! <!-- ========== Message Resources Definitions =========================== --> ! </struts-config> --- 1,82 ---- ! <?xml version="1.0" encoding="UTF-8"?> ! <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_0.d... [truncated message content] |