ejtools-cvs Mailing List for EJTools (Page 92)
Brought to you by:
letiemble
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(471) |
May
(303) |
Jun
(176) |
Jul
(67) |
Aug
(64) |
Sep
(84) |
Oct
(148) |
Nov
(57) |
Dec
(272) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(356) |
Feb
(304) |
Mar
(214) |
Apr
(22) |
May
(7) |
Jun
(25) |
Jul
|
Aug
(5) |
Sep
(106) |
Oct
|
Nov
(95) |
Dec
(193) |
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2016 |
Jan
(2) |
Feb
(1) |
Mar
(2) |
Apr
(1) |
May
|
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Laurent E. <let...@us...> - 2002-05-24 21:19:09
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/web In directory usw-pr-cvs1:/tmp/cvs-serv31368/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/web Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/web added to the repository |
From: Laurent E. <let...@us...> - 2002-05-24 21:18:57
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model In directory usw-pr-cvs1:/tmp/cvs-serv31292/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model Modified Files: JNDIContext.java JNDIEntry.java Server.java Log Message: Add support for JavaBean Custom XDoclet Index: JNDIContext.java =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/JNDIContext.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** JNDIContext.java 15 May 2002 20:45:46 -0000 1.4 --- JNDIContext.java 24 May 2002 21:18:55 -0000 1.5 *************** *** 9,12 **** --- 9,13 ---- import java.awt.Component; import java.beans.Customizer; + import java.beans.beancontext.BeanContext; import java.beans.beancontext.BeanContextChild; import java.beans.beancontext.BeanContextChildComponentProxy; *************** *** 20,32 **** import net.sourceforge.ejtools.util.Sort; /** * Ancestor of all element in the JNDI tree. Represents a JNDI Context and can * contains other context. * ! * @author letiemble ! * @created 13 décembre 2001 ! * @version $Revision$ ! * @beaninfo:class displayName="JNDI Context" shortDescription="JNDI Context" ! * @beaninfo:icons color16="/toolbarButtonGraphics/general/Folder16.gif" */ public class JNDIContext extends BeanContextServicesSupport implements BeanContextChildComponentProxy --- 21,40 ---- import net.sourceforge.ejtools.util.Sort; + import org.apache.log4j.Category; + /** * Ancestor of all element in the JNDI tree. Represents a JNDI Context and can * contains other context. * ! * @author letiemble ! * @created 13 décembre 2001 ! * @version $Revision$ ! * @beaninfo:class displayName="JNDI Context" shortDescription="JNDI ! * Context" ! * @beaninfo:icons color16="/toolbarButtonGraphics/general/Folder16.gif" ! * @beaninfo:property name="name" class="java.lang.String" displayName="Name" ! * shortDescription="Name of the context" ! * @beaninfo:property name="path" class="java.lang.String" displayName="Full ! * Path" shortDescription="Absolute path of the context" */ public class JNDIContext extends BeanContextServicesSupport implements BeanContextChildComponentProxy *************** *** 34,46 **** /** Customizer of the JavaBean */ protected transient Customizer c = null; ! /** ! * Class name of the context ! * ! * @beaninfo:property name="name" class="java.lang.String" ! * displayName="Name" shortDescription="Name of the context" ! */ protected String className = ""; /** Name of the context */ protected String name = ""; --- 42,51 ---- /** Customizer of the JavaBean */ protected transient Customizer c = null; ! /** Class name of the context */ protected String className = ""; /** Name of the context */ protected String name = ""; + /** Description of the Field */ + private static Category logger = Category.getInstance(JNDIContext.class); *************** *** 91,94 **** --- 96,135 ---- /** + * Get the absolute JNDI path of the context + * + * @return The path value + */ + public String getPath() + { + try + { + BeanContext parent = getBeanContext(); + if (parent != null) + { + JNDIContext context = (JNDIContext) parent; + String path = context.getPath(); + if ((path == null) || ("".equals(path))) + { + return (getName()); + } + else + { + return (path + "/" + getName()); + } + } + else + { + return ""; + } + } + catch (Exception e) + { + logger.warn("Oops, not in a JNDIContext"); + } + return null; + } + + + /** * Override of BeanContextServicesSupport to allow recursive access to * BeanContext services *************** *** 151,154 **** --- 192,217 ---- { return name == null ? "Undefined" : name; + } + + + /** + * Sets the class name of this context + * + * @param className The class name + */ + protected void setClassName(String className) + { + this.className = className; + } + + + /** + * Sets the name of this context + * + * @param name The name + */ + protected void setName(String name) + { + this.name = name; } Index: JNDIEntry.java =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/JNDIEntry.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** JNDIEntry.java 15 May 2002 20:45:46 -0000 1.4 --- JNDIEntry.java 24 May 2002 21:18:55 -0000 1.5 *************** *** 7,10 **** --- 7,11 ---- package net.sourceforge.ejtools.jndibrowser.model; + /** * Describe a simple JNDI entry. *************** *** 19,22 **** --- 20,25 ---- * @beaninfo:property name="className" class="java.lang.String" * displayName="Class" shortDescription="Class of the entry" + * @beaninfo:property name="path" class="java.lang.String" displayName="Full + * Path" shortDescription="Absolute path of the context" */ public class JNDIEntry extends JNDIContext Index: Server.java =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/Server.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Server.java 15 May 2002 20:45:46 -0000 1.5 --- Server.java 24 May 2002 21:18:55 -0000 1.6 *************** *** 7,11 **** --- 7,13 ---- package net.sourceforge.ejtools.jndibrowser.model; + import java.lang.reflect.Proxy; import java.util.Collection; + import java.util.Hashtable; import java.util.Iterator; import java.util.Properties; *************** *** 15,18 **** --- 17,21 ---- import javax.naming.Context; import javax.naming.InitialContext; + import javax.naming.LinkRef; import javax.naming.NameClassPair; import javax.naming.NamingEnumeration; *************** *** 64,67 **** --- 67,72 ---- private static Category logger = Category.getInstance(Server.class); /** Description of the Field */ + private static Hashtable proxies = new Hashtable(); + /** Description of the Field */ public final static int DEEP_SEARCH = 0; /** Description of the Field */ *************** *** 96,99 **** --- 101,136 ---- + /** Description of the Method */ + public void connect() + { + logger.debug("Cleaning JNDI tree..."); + Iterator iterator = iterator(); + while (iterator.hasNext()) + { + remove(iterator.next()); + } + + try + { + Context context = new InitialContext(); + context = (Context) context.lookup(getContext()); + + Vector content = new Vector(); + list(context, content); + + logger.debug("Populating JNDI tree..."); + Iterator it = content.iterator(); + while (it.hasNext()) + { + add(it.next()); + } + } + catch (Exception e) + { + logger.error("Exception " + e.getMessage()); + } + } + + /** * Gets the context attribute of the JNDIServer object *************** *** 130,133 **** --- 167,181 ---- /** + * Gets the path attribute of the Server object + * + * @return The path value + */ + public String getPath() + { + return getContext(); + } + + + /** * Getter for the searchType attribute * *************** *** 181,184 **** --- 229,233 ---- Vector content = new Vector(); this.iterateContext(context, this.getContext(), content); + // this.iterateContext(context, "", content); logger.debug("Populating JNDI tree..."); *************** *** 252,255 **** --- 301,400 ---- /** + * Description of the Method + * + * @param ctx Description of the Parameter + * @param node Description of the Parameter + */ + protected void list(Context ctx, Collection node) + { + ClassLoader loader = Thread.currentThread().getContextClassLoader(); + try + { + NamingEnumeration ne = ctx.list(""); + while (ne.hasMore()) + { + NameClassPair pair = (NameClassPair) ne.next(); + // logger.warn(">>> Pair: " + pair); + + String name = pair.getName(); + String className = pair.getClassName(); + boolean recursive = false; + boolean isLinkRef = false; + boolean isProxy = false; + + // logger.warn("Name=" + name); + // logger.warn("Class=" + className); + + Class c = null; + try + { + c = loader.loadClass(className); + // logger.warn("Class: " + c); + + if (Context.class.isAssignableFrom(c)) + { + recursive = true; + } + if (LinkRef.class.isAssignableFrom(c)) + { + isLinkRef = true; + } + + isProxy = Proxy.isProxyClass(c); + } + catch (ClassNotFoundException cnfe) + { + logger.warn("Exception " + cnfe.getMessage()); + } + catch (Exception e) + { + logger.warn("Exception " + e.getMessage()); + } + + if (recursive) + { + JNDIContext newNode = new JNDIContext(); + newNode.setName(name); + newNode.setClassName(className); + node.add(newNode); + + try + { + Object value = ctx.lookup(name); + if (value instanceof Context) + { + Context subctx = (Context) value; + list(subctx, newNode); + } + else + { + } + } + catch (Throwable t) + { + logger.warn("Throwable " + t); + } + } + else + { + JNDIContext newNode; + + newNode = new JNDIEntry(); + newNode.setName(name); + newNode.setClassName(className); + + node.add(newNode); + } + } + ne.close(); + } + catch (NamingException ne) + { + logger.error("error while listing context " + ctx.toString() + ": " + ne.toString(true)); + } + } + + + /** * Gets the context attribute of the JndiServer object * *************** *** 300,303 **** --- 445,449 ---- iterateContext(context1, s1, newNode); + // iterateContext(context1, "", newNode); } else *************** *** 305,308 **** --- 451,457 ---- JNDIContext newNode; + logger.debug("NC=" + nc.getName()); + logger.debug("NC=" + nc.getClassName()); + newNode = new JNDIEntry(); newNode.name = nc.getName(); *************** *** 381,384 **** return true; } - } --- 530,547 ---- return true; } + /** Load the list of proxies to create */ + /* + * static + * { + * proxies.put(javax.ejb.EJBHome.class, EJBHomeProxy.class); + * proxies.put(javax.ejb.EJBLocalHome.class, EJBLocalHomeProxy.class); + * proxies.put(javax.jms.ConnectionFactory.class, ConnectionFactoryProxy.class); + * proxies.put(javax.jms.Queue.class, QueueProxy.class); + * proxies.put(javax.jms.Topic.class, TopicProxy.class); + * proxies.put(javax.mail.Session.class, TopicProxy.class); + * proxies.put(javax.sql.DataSource.class, DataSourceProxy.class); + * proxies.put(javax.sql.XADataSource.class, XADataSourceProxy.class); + * } + */ + } |
From: Laurent E. <let...@us...> - 2002-05-24 21:18:51
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/sql In directory usw-pr-cvs1:/tmp/cvs-serv31247/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/sql Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/sql added to the repository |
From: Laurent E. <let...@us...> - 2002-05-24 21:18:51
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/mail In directory usw-pr-cvs1:/tmp/cvs-serv31247/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/mail Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/mail added to the repository |
From: Laurent E. <let...@us...> - 2002-05-24 21:18:41
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms In directory usw-pr-cvs1:/tmp/cvs-serv31172/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms Modified Files: QueueProxy.java TopicProxy.java Log Message: Add support for JavaBean Custom XDoclet Index: QueueProxy.java =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms/QueueProxy.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** QueueProxy.java 15 May 2002 20:44:51 -0000 1.5 --- QueueProxy.java 24 May 2002 21:18:38 -0000 1.6 *************** *** 33,44 **** * Description of the Class * ! * @author letiemble ! * @created 13 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete ! * @todo Add log4j logs ! * @todo Message sending to transform ! * @todo Other type of message to create ! * @todo More parameters for creation of message */ public class QueueProxy extends JNDIEntry --- 33,52 ---- * Description of the Class * ! * @author letiemble ! * @created 13 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete ! * @todo Add log4j logs ! * @todo Message sending to transform ! * @todo Other type of message to create ! * @todo More parameters for creation of message ! * @beaninfo:class displayName="JMS Queue" shortDescription="JMS Queue" ! * @beaninfo:icons color16="/toolbarButtonGraphics/development/jms/Queue16.gif" ! * @beaninfo:property name="name" class="java.lang.String" displayName="Name" ! * shortDescription="Name of the entry" ! * @beaninfo:property name="className" class="java.lang.String" ! * displayName="Class" shortDescription="Class of the entry" ! * @beaninfo:property name="count" class="int" displayName="Message(s)" ! * shortDescription="Number of messages in Queue" */ public class QueueProxy extends JNDIEntry *************** *** 67,71 **** * Description of the Method * ! * @todo Add Log4j log */ public void browse() --- 75,81 ---- * Description of the Method * ! * @todo Add Log4j log ! * @beaninfo:method name="browse" displayName="Browse" ! * shortDescription="Browse the queue" */ public void browse() *************** *** 130,134 **** ! /** Description of the Method */ public void createMessage() { --- 140,149 ---- ! /** ! * Description of the Method ! * ! * @beaninfo:method name="createMessage" displayName="Create Message" ! * shortDescription="Create a simple message" ! */ public void createMessage() { *************** *** 176,180 **** * Description of the Method * ! * @param text Description of Parameter */ public void createTextMessage(String text) --- 191,198 ---- * Description of the Method * ! * @param text Description of Parameter ! * @beaninfo:method name="createTextMessage" displayName="Create Text ! * Message" shortDescription="Create a text message" ! * @beaninfo:param name="text" displayName="Text" */ public void createTextMessage(String text) Index: TopicProxy.java =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms/TopicProxy.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TopicProxy.java 15 May 2002 20:44:51 -0000 1.5 --- TopicProxy.java 24 May 2002 21:18:38 -0000 1.6 *************** *** 29,37 **** * Description of the Class * ! * @author letiemble ! * @created 13 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete ! * @todo Add log4j logs */ public class TopicProxy extends JNDIEntry --- 29,43 ---- * Description of the Class * ! * @author letiemble ! * @created 13 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete ! * @todo Add log4j logs ! * @beaninfo:class displayName="JMS Topic" shortDescription="JMS Topic" ! * @beaninfo:icons color16="/toolbarButtonGraphics/development/jms/Topic16.gif" ! * @beaninfo:property name="name" class="java.lang.String" displayName="Name" ! * shortDescription="Name of the entry" ! * @beaninfo:property name="className" class="java.lang.String" ! * displayName="Class" shortDescription="Class of the entry" */ public class TopicProxy extends JNDIEntry *************** *** 58,62 **** * Description of the Method * ! * @param text Description of Parameter */ public void createTextMessage(String text) --- 64,71 ---- * Description of the Method * ! * @param text Description of Parameter ! * @beaninfo:method name="createTextMessage" displayName="Create Text ! * Message" shortDescription="Create a text message" ! * @beaninfo:param name="text" displayName="Text" */ public void createTextMessage(String text) |
From: Laurent E. <let...@us...> - 2002-05-24 21:17:52
|
Update of /cvsroot/ejtools/applications/jndi.browser In directory usw-pr-cvs1:/tmp/cvs-serv30947/jndi.browser Added Files: webapp.properties Log Message: Initial import --- NEW FILE: webapp.properties --- # # Librairies to be put into the WEB-INF/lib directory # # $Revision: 1.3 $ # ${apache.log4j.root}/*.jar ${apache.struts.root}/*.jar ${apache.taglibs.root}/*.jar ${ejtools.common.root}/*.jar ${ejtools.taglib.root}/*.jar |
From: Laurent E. <let...@us...> - 2002-05-24 21:17:31
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo In directory usw-pr-cvs1:/tmp/cvs-serv30806/jndi.browser/src/etc/beaninfo Modified Files: Server.xml Log Message: Change display name Index: Server.xml =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/Server.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Server.xml 12 May 2002 19:57:34 -0000 1.3 --- Server.xml 24 May 2002 21:17:28 -0000 1.4 *************** *** 19,23 **** <property name="context" class="java.lang.String" ! displayname="Initial Context"/> <property --- 19,23 ---- <property name="context" class="java.lang.String" ! displayname="Context"/> <property |
From: Laurent E. <let...@us...> - 2002-05-24 21:17:26
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/sql In directory usw-pr-cvs1:/tmp/cvs-serv30774/applications/jndi.browser/src/etc/beaninfo/sql Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/sql added to the repository |
From: Laurent E. <let...@us...> - 2002-05-24 21:17:26
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/mail In directory usw-pr-cvs1:/tmp/cvs-serv30774/applications/jndi.browser/src/etc/beaninfo/mail Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/mail added to the repository |
Update of /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/jms In directory usw-pr-cvs1:/tmp/cvs-serv30676/jndi.browser/src/etc/beaninfo/jms Modified Files: BytesMessageProxy.xml MapMessageProxy.xml MessageProxy.xml ObjectMessageProxy.xml StreamMessageProxy.xml TextMessageProxy.xml Log Message: Change type of expiration date from long to java.util.Date Index: BytesMessageProxy.xml =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/jms/BytesMessageProxy.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BytesMessageProxy.xml 12 May 2002 19:57:34 -0000 1.1 --- BytesMessageProxy.xml 24 May 2002 21:17:04 -0000 1.2 *************** *** 15,19 **** <property ! name="expiration" class="long" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> --- 15,19 ---- <property ! name="expiration" class="java.util.Date" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> Index: MapMessageProxy.xml =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/jms/MapMessageProxy.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MapMessageProxy.xml 12 May 2002 19:57:34 -0000 1.1 --- MapMessageProxy.xml 24 May 2002 21:17:04 -0000 1.2 *************** *** 15,19 **** <property ! name="expiration" class="long" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> --- 15,19 ---- <property ! name="expiration" class="java.util.Date" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> Index: MessageProxy.xml =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/jms/MessageProxy.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MessageProxy.xml 12 May 2002 19:57:34 -0000 1.2 --- MessageProxy.xml 24 May 2002 21:17:04 -0000 1.3 *************** *** 15,19 **** <property ! name="expiration" class="long" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> --- 15,19 ---- <property ! name="expiration" class="java.util.Date" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> Index: ObjectMessageProxy.xml =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/jms/ObjectMessageProxy.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ObjectMessageProxy.xml 12 May 2002 19:57:34 -0000 1.1 --- ObjectMessageProxy.xml 24 May 2002 21:17:04 -0000 1.2 *************** *** 15,19 **** <property ! name="expiration" class="long" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> --- 15,19 ---- <property ! name="expiration" class="java.util.Date" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> Index: StreamMessageProxy.xml =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/jms/StreamMessageProxy.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** StreamMessageProxy.xml 12 May 2002 19:57:34 -0000 1.1 --- StreamMessageProxy.xml 24 May 2002 21:17:04 -0000 1.2 *************** *** 15,19 **** <property ! name="expiration" class="long" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> --- 15,19 ---- <property ! name="expiration" class="java.util.Date" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> Index: TextMessageProxy.xml =================================================================== RCS file: /cvsroot/ejtools/applications/jndi.browser/src/etc/beaninfo/jms/TextMessageProxy.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TextMessageProxy.xml 12 May 2002 19:57:34 -0000 1.2 --- TextMessageProxy.xml 24 May 2002 21:17:04 -0000 1.3 *************** *** 15,19 **** <property ! name="expiration" class="long" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> --- 15,19 ---- <property ! name="expiration" class="java.util.Date" displayname="Expiration" propertyeditor="net.sourceforge.ejtools.awt.editors.DateTimeEditor"/> |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:39
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp/resources In directory usw-pr-cvs1:/tmp/cvs-serv30405/jndi.browser/src/webapp/resources Added Files: application.tld ejtools.tld log.tld struts-bean.tld struts-config.xml struts-config_1_0.dtd struts-form.tld struts-html.tld struts-logic.tld struts-template.tld struts.tld web-app_2_2.dtd web-app_2_3.dtd Log Message: Initial import --- NEW FILE: application.tld --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ejtools.tld --- (This appears to be a binary file; contents omitted.) --- NEW FILE: log.tld --- (This appears to be a binary file; contents omitted.) --- NEW FILE: struts-bean.tld --- <?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> --- NEW FILE: struts-config.xml --- (This appears to be a binary file; contents omitted.) --- NEW FILE: struts-config_1_0.dtd --- <?xml version="1.0" encoding="ISO-8859-1"?> <!-- DTD for the Struts Application Configuration File, Version 1.0 To support validation of your configuration file, include the following DOCTYPE element at the beginning (after the "xml" declaration): <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd"> $Id: struts-config_1_0.dtd,v 1.2 2002/04/25 20:25:36 letiemble Exp $ --> <!-- ========== Defined Types ============================================= --> <!-- A "BeanName" is the identifier of a JavaBean, such as a form bean, and also serves as the name of the corresponding scripting variable and the name of the JSP attribute under which the bean is accessed. Therefore, it must conform to the rules for a Java identifier. --> <!ENTITY % BeanName "CDATA"> <!-- A "Boolean" is the string representation of a boolean (true or false) variable. --> <!ENTITY % Boolean "(true|false|yes|no)"> <!-- A "ClassName" is the fully qualified name of a Java class that is instantiated to provide the functionality of the enclosing element. --> <!ENTITY % ClassName "CDATA"> <!-- An "Integer" is a character string consisting solely of numeric digits, optionally preceeded by a minus sign, that can be converted to a 32-bit integer. --> <!ENTITY % Integer "CDATA"> <!-- A "Location" is a relative path, delimited by "/" characters, that defines the location of a resource relative to the location of the Struts configuration file itself. --> <!ENTITY % Location "#PCDATA"> <!-- A "PropName" is the name of a JavaBeans property, and must begin with a lower case letter and contain only characters that are legal in a Java identifier. --> <!ENTITY % PropName "CDATA"> <!-- A "RequestPath" is a context-relative URI path, beginning with a slash, that identifies a mapped resource (such as a JSP page or a servlet) within this web application. --> <!ENTITY % RequestPath "CDATA"> <!-- The name of a JSP bean scope within which such a form bean may be accessed. --> <!ENTITY % RequestScope "(request|session)"> <!-- ========== Top Level Elements ======================================== --> <!-- The "struts-config" element is the root of the configuration file hierarchy, and contains nested elements for all of the other configuration settings. --> <!ELEMENT struts-config (data-sources?, form-beans?, global-forwards?, action-mappings?)> <!ATTLIST struts-config id ID #IMPLIED> <!-- The "data-sources" element describes a set of JDBC 2.0 Standard Extension data source objects which will be configured according to the nested "data-source" elements found inside. --> <!ELEMENT data-sources (data-source*)> <!ATTLIST data-sources id ID #IMPLIED> <!-- The "data-source" element describes a JDBC 2.0 Standard Extension data source object (that implements javax.sql.DataSource) which will be configured according to the properties and nested elements found here, and made available as a servlet context attribute (i.e. application scope bean). The following attributes are required: key Servlet context attribute key under which this data source will be stored. Default is the value specified by string constant Action.DATA_SOURCE_KEY. type Fully qualified Java class name of the implementation class (must implement javax.sql.DataSource). Default value is 'org.apache.struts.util.GenericDataSource'. NOTE: The following attributes are defined by the default data source implementation, and only take effect for that class or subclasses of that class. WARNING: The use of these attributes is deprecated. You should use nested <set-property> elements to configure *all* properties of your data source implementation. autoCommit The default auto-commit state for newly created connections. description The description of this data source. driverClass The Java class name of the JDBC driver to be used. [REQUIRED] loginTimeout The maximum number of seconds to wait for a connection to be created or returned. Default is driver dependent. maxCount The maximum number of connections to be created. minCount The minimum number of connections to be created. password The database password to use when connecting. [REQUIRED] readOnly The default read-only state for newly created connections. url The JDBC URL to use when connecting. [REQUIRED] user The database username to use when connecting. [REQUIRED] --> <!ELEMENT data-source (set-property*)> <!ATTLIST data-source id ID #IMPLIED> <!ATTLIST data-source key %BeanName; #IMPLIED> <!ATTLIST data-source type %ClassName; #IMPLIED> <!-- All of the following attributes are deprecated. Use a nested --> <!-- set-property element to configure data source properties. --> <!ATTLIST data-source autoCommit %Boolean; #IMPLIED> <!ATTLIST data-source description CDATA #IMPLIED> <!ATTLIST data-source driverClass %ClassName; #IMPLIED> <!ATTLIST data-source loginTimeout %Integer; #IMPLIED> <!ATTLIST data-source maxCount %Integer; #IMPLIED> <!ATTLIST data-source minCount %Integer; #IMPLIED> <!ATTLIST data-source password CDATA #IMPLIED> <!ATTLIST data-source readOnly %Boolean; #IMPLIED> <!ATTLIST data-source url CDATA #IMPLIED> <!ATTLIST data-source user CDATA #IMPLIED> <!-- The "form-beans" element is the root of the set of form bean descriptors for this application. The following attributes are defined: type Fully qualified Java class name of the implementation class used for ActionFormBean objects. DEPRECATED. WARNING: For Struts 1.0, this value is ignored. You can set the default implementation class name with the "formBean" initialization parameter to the Struts controller servlet. --> <!ELEMENT form-beans (form-bean*)> <!ATTLIST form-beans id ID #IMPLIED> <!ATTLIST form-beans type %ClassName; "org.apache.struts.action.ActionFormBean"> <!-- The "form-bean" element describes a particular form bean, which is a JavaBean that implements the org.apache.struts.action.ActionForm class. The following attributes are defined: className Fully qualified Java class name of the ActionFormBean implementation class to use. Defaults to the value configured as the "formBean" initialization parameter to the Struts controller servlet. name Unique identifier of this bean, used to reference it in corresponding action mappings. type Fully qualified Java class name of the implementation class to be used or generated --> <!ELEMENT form-bean (icon?, display-name?, description?, set-property*)> <!ATTLIST form-bean id ID #IMPLIED> <!ATTLIST form-bean className %ClassName; #IMPLIED> <!ATTLIST form-bean name %BeanName; #REQUIRED> <!ATTLIST form-bean type %ClassName; #REQUIRED> <!-- The "global-forwards" element configures the global mappings of logical names (used within the application) to mappable resources (identified by context-relative URI paths). A global "forward" with a particular name can be locally overridden by defining a "forward" of the same name within an "action" element. The following attribute are defined: type Fully qualified Java class name of the implementation class used for ActionForward objects. DEPRECATED. WARNING: For Struts 1.0, this value is ignored. You can set the default implementation class name with the "forward" initialization parameter to the Struts controller servlet. --> <!ELEMENT global-forwards (forward*)> <!ATTLIST global-forwards id ID #IMPLIED> <!ATTLIST global-forwards type %ClassName; "org.apache.struts.action.ActionForward"> <!-- The "forward" element describes a mapping of a logical name (used within the application) to a mappable resource identified by a context-relative URI path. The following attributes are defined: className Fully qualified Java class name of the ActionForward implementation class to use. Defaults to the value configured as the "forward" initialization parameter to the Struts controller servlet. name Unique identifier of this forward, used to reference it in application action classes. path The context-relative path of the mapped resource. redirect Set to "true" if sendRedirect() should be used to forward to this resource, or "false" in order to use RequestDispatcher.forward() instead. --> <!ELEMENT forward (icon?, display-name?, description?, set-property*)> <!ATTLIST forward id ID #IMPLIED> <!ATTLIST forward className %ClassName; #IMPLIED> <!ATTLIST forward name CDATA #REQUIRED> <!ATTLIST forward path %RequestPath; #REQUIRED> <!ATTLIST forward redirect %Boolean; #IMPLIED> <!-- The "action-mappings" element configures the mappings from submitted request paths to the corresponding Action classes that should be used to process these requests. The following attributes are defined: type Fully qualified Java class name of the ActionMapping implementation class to be used. DEPRECATED. WARNING: For Struts 1.0, this value is ignored. You can set the default implementation class name with the "mapping" initialization parameter to the Struts controller servlet. --> <!ELEMENT action-mappings (action*)> <!ATTLIST action-mappings id ID #IMPLIED> <!ATTLIST action-mappings type %ClassName; "org.apache.struts.action.ActionMapping"> <!-- The "action" element describes a mapping from a request paths to the corresponding Action classes that should be used to process these requests. The following attributes are defined: attribute Name of the request-scope or session-scope attribute under which our form bean is accessed, if it is other than the bean's specified "name". Optional if "name" is specified, else not allowed. className Fully qualified Java class name of the ActionMapping implementation class to use. Defaults to the value configured as the "mapping" initialization parameter to the Struts controller servlet. forward Context-relative path of the servlet or JSP resource that will process this request, instead of instantiating and calling the Action class specified by "type". Exactly one of "forward", "include", or "type" must be specified. include Context-relative path of the servlet or JSP resource that will process this request, instead of instantiating and calling the Action class specified by "type". Exactly one of "forward", "include", or "type" must be specified. input Context-relative path of the input form to which control should be returned if a validation error is encountered. Required if "name" is specified and the input bean returns validation errors. Optional if "name" is specified and the input bean does not return validation errors. Not allowed if "name" is not specified. name Name of the form bean, if any, that is associated with this action. path The context-relative path of the submitted request, starting with a "/" character, and without the filename extension if extension mapping is used. parameter General purpose configuration parameter that can be used to pass extra information to the Action selected by this mapping. prefix Prefix used to match request parameter names to form bean property names, if any. Optional if "name" is specified, else not allowed. scope Identifier of the scope ("request" or "session") within which our form bean is accessed, if any. Optional if "name" is specified, else not allowed. suffix Suffix used to match request parameter names to form bean property names, if any. Optional if "name" is specified, else not allowed. type Fully qualified Java class name of the Action class (implements org.apache.struts.action.Action) to be used to process requests for this mapping if the "forward" or "include" attribute is not included. Exactly one of "forward", "include", or "type" must be specified. unknown Set to "true" if this action should be configured as the default for this application, to handle all requests not handled by another action. Only one action can be defined as a default within a single application. validate Set to "true" if the validate() method of the form bean should be called prior to calling this action, or set to "false" if you do not want validation performed. --> <!ELEMENT action (icon?, display-name?, description?, set-property*, forward*)> <!ATTLIST action id ID #IMPLIED> <!ATTLIST action attribute %BeanName; #IMPLIED> <!ATTLIST action className %ClassName; #IMPLIED> <!ATTLIST action forward %RequestPath; #IMPLIED> <!ATTLIST action include %RequestPath; #IMPLIED> <!ATTLIST action input %RequestPath; #IMPLIED> <!ATTLIST action name %BeanName; #IMPLIED> <!ATTLIST action parameter CDATA #IMPLIED> <!ATTLIST action path %RequestPath; #REQUIRED> <!ATTLIST action prefix CDATA #IMPLIED> <!ATTLIST action scope %RequestScope; #IMPLIED> <!ATTLIST action suffix CDATA #IMPLIED> <!ATTLIST action type %ClassName; #IMPLIED> <!ATTLIST action unknown %Boolean; #IMPLIED> <!ATTLIST action validate %Boolean; #IMPLIED> <!-- The "set-property" element specifies the name and value of an additional JavaBeans configuration property whose setter method will be called on the object that represents our surrounding element. This is especially useful when an extended implementation class (with additional properties) is configured on the <global-forwards> or <action-mappings> elements. The following attributes are defined: property Name of the JavaBeans property whose setter method will be called. value String representation of the value to which this property will be set, after suitable type conversion --> <!ELEMENT set-property EMPTY> <!ATTLIST set-property id ID #IMPLIED> <!ATTLIST set-property property %PropName; #REQUIRED> <!ATTLIST set-property value CDATA #REQUIRED> <!-- ========== Subordinate Elements ====================================== --> <!-- The "description" element contains descriptive (paragraph length) text about the surrounding element, suitable for use in GUI tools. --> <!ELEMENT description (#PCDATA)> <!ATTLIST description id ID #IMPLIED> <!-- The "display-name" element contains a short (one line) description of the surrounding element, suitable for use in GUI tools. --> <!ELEMENT display-name (#PCDATA)> <!ATTLIST display-name id ID #IMPLIED> <!-- The "icon" element contains a small-icon and large-icon element which specify the location, relative to the Struts configuration file, for small and large images used to represent the surrounding element in GUI tools. --> <!ELEMENT icon (small-icon?, large-icon?)> <!ATTLIST icon id ID #IMPLIED> <!-- The "large-icon" element specifies the location, relative to the Struts configuration file, of a resource containing a large (32x32 pixel) icon image. --> <!ELEMENT large-icon (%Location;)> <!ATTLIST large-icon id ID #IMPLIED> <!-- The "small-icon" element specifies the location, relative to the Struts configuration file, of a resource containing a small (16x16 pixel) icon image. --> <!ELEMENT small-icon (%Location;)> <!ATTLIST small-icon id ID #IMPLIED> --- NEW FILE: struts-form.tld --- <?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>form</shortname> <tag> <name>base</name> <tagclass>org.apache.struts.taglib.html.BaseTag</tagclass> <bodycontent>empty</bodycontent> </tag> <tag> [...1666 lines suppressed...] <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>style</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>styleClass</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>tabindex</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> </taglib> --- NEW FILE: struts-html.tld --- <?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>html</shortname> <tag> <name>base</name> <tagclass>org.apache.struts.taglib.html.BaseTag</tagclass> <bodycontent>empty</bodycontent> <attribute> <name>target</name> [...2116 lines suppressed...] <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>styleId</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>tabindex</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>value</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> </taglib> --- NEW FILE: struts-logic.tld --- <?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>logic</shortname> <uri>http://jakarta.apache.org/struts/tags-logic-1.0</uri> <tag> <name>equal</name> <tagclass>org.apache.struts.taglib.logic.EqualTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>cookie</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>header</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>parameter</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>value</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>forward</name> <tagclass>org.apache.struts.taglib.logic.ForwardTag</tagclass> <bodycontent>empty</bodycontent> <attribute> <name>name</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>greaterEqual</name> <tagclass>org.apache.struts.taglib.logic.GreaterEqualTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>cookie</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>header</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>parameter</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>value</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>greaterThan</name> <tagclass>org.apache.struts.taglib.logic.GreaterThanTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>cookie</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>header</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>parameter</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>value</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>iterate</name> <tagclass>org.apache.struts.taglib.logic.IterateTag</tagclass> <teiclass>org.apache.struts.taglib.logic.IterateTei</teiclass> <bodycontent>JSP</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>indexId</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>length</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>offset</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>type</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>lessEqual</name> <tagclass>org.apache.struts.taglib.logic.LessEqualTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>cookie</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>header</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>parameter</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>value</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>lessThan</name> <tagclass>org.apache.struts.taglib.logic.LessThanTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>cookie</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>header</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>parameter</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>value</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>match</name> <tagclass>org.apache.struts.taglib.logic.MatchTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>cookie</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>header</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>location</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>parameter</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>value</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>notEqual</name> <tagclass>org.apache.struts.taglib.logic.NotEqualTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>cookie</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>header</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>parameter</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>value</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>notMatch</name> <tagclass>org.apache.struts.taglib.logic.NotMatchTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>cookie</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>header</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>location</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>parameter</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>value</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>notPresent</name> <tagclass>org.apache.struts.taglib.logic.NotPresentTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>cookie</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>header</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>parameter</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>property</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>role</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>scope</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>user</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>present</name> <tagclass>org.apache.struts.taglib.logic.PresentTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>cookie</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>header</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>parameter</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>property</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>role</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>scope</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>user</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>redirect</name> <tagclass>org.apache.struts.taglib.logic.RedirectTag</tagclass> <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>name</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>page</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>paramId</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>paramName</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>paramProperty</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>paramScope</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>transaction</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> </taglib> --- NEW FILE: struts-template.tld --- <?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>template</shortname> <uri>http://jakarta.apache.org/struts/tags-template-1.0</uri> <tag> <name>insert</name> <tagclass>org.apache.struts.taglib.template.InsertTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>template</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>put</name> <tagclass>org.apache.struts.taglib.template.PutTag</tagclass> <bodycontent>JSP</bodycontent> <attribute> <name>name</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>role</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>content</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>direct</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <tag> <name>get</name> <tagclass>org.apache.struts.taglib.template.GetTag</tagclass> <bodycontent>empty</bodycontent> <attribute> <name>flush</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>name</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> <attribute> <name>role</name> <required>false</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> </taglib> --- NEW FILE: struts.tld --- <?xml version="1.0" encoding="ISO-8859-1" ?> <!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> <!-- ============== Tag Library Description Elements ============= --> <tlibversion>1.0</tlibversion> <jspversion>1.1</jspversion> <shortname>STRUTS Framework Tag Library</shortname> <uri>http://jakarta.apache.org/taglibs/struts-1.0</uri> <info> This tag library contains useful general-purpose tags supporting the development of JSP/servlet applications based on the "Model 2" (MVC based) design pattern. WARNING: ALL OF THE TAGS IN THIS LIBRARY ARE DEPRECATED, AND [...1947 lines suppressed...] </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> </tag> </taglib> --- NEW FILE: web-app_2_2.dtd --- <?xml version="1.0" encoding="ISO-8859-1"?> <!-- Web Application Deployment Descriptor DTD, Servlet API Version 2.2 --> <!-- The web-app element is the root of the deployment descriptor for a web application --> <!ELEMENT web-app (icon?, display-name?, description?, distributable?, context-param*, servlet*, servlet-mapping*, session-config?, mime-mapping*, welcome-file-list?, error-page*, taglib*, resource-ref*, security-constraint*, login-config?, security-role*, env-entry*, ejb-ref*)> <!-- The icon element contains a small-icon and a large-icon element which specify the location within the web application for a small and large image used to represent the web application in a GUI tool. At a minimum, tools must accept GIF and JPEG format images. --> <!ELEMENT icon (small-icon?, large-icon?)> <!-- The small-icon element contains the location within the web application of a file containing a small (16x16 pixel) icon image. --> <!ELEMENT small-icon (#PCDATA)> <!-- The large-icon element contains the location within the web application of a file containing a large (32x32 pixel) icon image. --> <!ELEMENT large-icon (#PCDATA)> <!-- The display-name element contains a short name that is intended to be displayed by GUI tools --> <!ELEMENT display-name (#PCDATA)> <!-- The description element is used to provide descriptive text about the parent element. --> <!ELEMENT description (#PCDATA)> <!-- The distributable element, by its presence in a web application deployment descriptor, indicates that this web application is programmed appropriately to be deployed into a distributed servlet container --> <!ELEMENT distributable EMPTY> <!-- The context-param element contains the declaration of a web application's servlet context initialization parameters. --> <!ELEMENT context-param (param-name, param-value, description?)> <!-- The param-name element contains the name of a parameter. --> <!ELEMENT param-name (#PCDATA)> <!-- The param-value element contains the value of a parameter. --> <!ELEMENT param-value (#PCDATA)> <!-- The servlet element contains the declarative data of a servlet. If a jsp-file is specified and the load-on-startup element is present, then the JSP should be precompiled and loaded. --> <!ELEMENT servlet (icon?, servlet-name, display-name?, description?, (servlet-class|jsp-file), init-param*, load-on-startup?, security-role-ref*)> <!-- The servlet-name element contains the canonical name of the servlet. --> <!ELEMENT servlet-name (#PCDATA)> <!-- The servlet-class element contains the fully qualified class name of the servlet. --> <!ELEMENT servlet-class (#PCDATA)> <!-- The jsp-file element contains the full path to a JSP file within the web application. --> <!ELEMENT jsp-file (#PCDATA)> <!-- The init-param element contains a name/value pair as an initialization param of the servlet --> <!ELEMENT init-param (param-name, param-value, description?)> <!-- The load-on-startup element indicates that this servlet should be loaded on the startup of the web application. The optional contents of these element must be a positive integer indicating the order in which the servlet should be loaded. Lower integers are loaded before higher integers. If no value is specified, or if the value specified is not a positive integer, the container is free to load it at any time in the startup sequence. --> <!ELEMENT load-on-startup (#PCDATA)> <!-- The servlet-mapping element defines a mapping between a servlet and a url pattern --> <!ELEMENT servlet-mapping (servlet-name, url-pattern)> <!-- The url-pattern element contains the url pattern of the mapping. Must follow the rules specified in Section 10 of the Servlet API Specification. --> <!ELEMENT url-pattern (#PCDATA)> <!-- The session-config element defines the session parameters for this web application. --> <!ELEMENT session-config (session-timeout?)> <!-- The session-timeout element defines the default session timeout interval for all sessions created in this web application. The specified timeout must be expressed in a whole number of minutes. --> <!ELEMENT session-timeout (#PCDATA)> <!-- The mime-mapping element defines a mapping between an extension and a mime type. --> <!ELEMENT mime-mapping (extension, mime-type)> <!-- The extension element contains a string describing an extension. example: "txt" --> <!ELEMENT extension (#PCDATA)> <!-- The mime-type element contains a defined mime type. example: "text/plain" --> <!ELEMENT mime-type (#PCDATA)> <!-- The welcome-file-list contains an ordered list of welcome files elements. --> <!ELEMENT welcome-file-list (welcome-file+)> <!-- The welcome-file element contains file name to use as a default welcome file, such as index.html --> <!ELEMENT welcome-file (#PCDATA)> <!-- The taglib element is used to describe a JSP tag library. --> <!ELEMENT taglib (taglib-uri, taglib-location)> <!-- The taglib-uri element describes a URI, relative to the location of the web.xml document, identifying a Tag Library used in the Web Application. --> <!ELEMENT taglib-uri (#PCDATA)> <!-- the taglib-location element contains the location (as a resource relative to the root of the web application) where to find the Tag Libary Description file for the tag library. --> <!ELEMENT taglib-location (#PCDATA)> <!-- The error-page element contains a mapping between an error code or exception type to the path of a resource in the web application --> <!ELEMENT error-page ((error-code | exception-type), location)> <!-- The error-code contains an HTTP error code, ex: 404 --> <!ELEMENT error-code (#PCDATA)> <!-- The exception type contains a fully qualified class name of a Java exception type. --> <!ELEMENT exception-type (#PCDATA)> <!-- The location element contains the location of the resource in the web application --> <!ELEMENT location (#PCDATA)> <!-- The resource-ref element contains a declaration of a Web Application's reference to an external resource. --> <!ELEMENT resource-ref (description?, res-ref-name, res-type, res-auth)> <!-- The res-ref-name element specifies the name of the resource factory reference name. --> <!ELEMENT res-ref-name (#PCDATA)> <!-- The res-type element specifies the (Java class) type of the data source. --> <!ELEMENT res-type (#PCDATA)> <!-- The res-auth element indicates whether the application component code performs resource signon programmatically or whether the container signs onto the resource based on the principle mapping information supplied by the deployer. Must be CONTAINER or SERVLET --> <!ELEMENT res-auth (#PCDATA)> <!-- The security-constraint element is used to associate security constraints with one or more web resource collections --> <!ELEMENT security-constraint (web-resource-collection+, auth-constraint?, user-data-constraint?)> <!-- The web-resource-collection element is used to identify a subset of the resources and HTTP methods on those resources within a web application to which a security constraint applies. If no HTTP methods are specified, then the security constraint applies to all HTTP methods. --> <!ELEMENT web-resource-collection (web-resource-name, description?, url-pattern*, http-method*)> <!-- The web-resource-name contains the name of this web resource collection --> <!ELEMENT web-resource-name (#PCDATA)> <!-- The http-method contains an HTTP method (GET | POST |...) --> <!ELEMENT http-method (#PCDATA)> <!-- The user-data-constraint element is used to indicate how data communicated between the client and container should be protected --> <!ELEMENT user-data-constraint (description?, transport-guarantee)> <!-- The transport-guarantee element specifies that the communication between client and server should be NONE, INTEGRAL, or CONFIDENTIAL. NONE means that the application does not require any transport guarantees. A value of INTEGRAL means that the application requires that the data sent between the client and server be sent in such a way that it can't be changed in transit. CONFIDENTIAL means that the application requires that the data be transmitted in a fashion that prevents other entities from observing the contents of the transmission. In most cases, the presence of the INTEGRAL or CONFIDENTIAL flag will indicate that the use of SSL is required. --> <!ELEMENT transport-guarantee (#PCDATA)> <!-- The auth-constraint element indicates the user roles that should be permitted access to this resource collection. The role used here must appear in a security-role-ref element. --> <!ELEMENT auth-constraint (description?, role-name*)> <!-- The role-name element contains the name of a security role. --> <!ELEMENT role-name (#PCDATA)> <!-- The login-config element is used to configure the authentication method that should be used, the realm name that should be used for this application, and the attributes that are needed by the form login mechanism. --> <!ELEMENT login-config (auth-method?, realm-name?, form-login-config?)> <!-- The realm name element specifies the realm name to use in HTTP Basic authorization --> <!ELEMENT realm-name (#PCDATA)> <!-- The form-login-config element specifies the login and error pages that should be used in form based login. If form based authentication is not used, these elements are ignored. --> <!ELEMENT form-login-config (form-login-page, form-error-page)> <!-- The form-login-page element defines the location in the web app where the page that can be used for login can be found --> <!ELEMENT form-login-page (#PCDATA)> <!-- The form-error-page element defines the location in the web app where the error page that is displayed when login is not successful can be found --> <!ELEMENT form-error-page (#PCDATA)> <!-- The auth-method element is used to configure the authentication mechanism for the web application. As a prerequisite to gaining access to any web resources which are protected by an authorization constraint, a user must have authenticated using the configured mechanism. Legal values for this element are "BASIC", "DIGEST", "FORM", or "CLIENT-CERT". --> <!ELEMENT auth-method (#PCDATA)> <!-- The security-role element contains the declaration of a security role which is used in the security-constraints placed on the web application. --> <!ELEMENT security-role (description?, role-name)> <!-- The role-name element contains the name of a role. This element must contain a non-empty string. --> <!ELEMENT security-role-ref (description?, role-name, role-link)> <!-- The role-link element is used to link a security role reference to a defined security role. The role-link element must contain the name of one of the security roles defined in the security-role elements. --> <!ELEMENT role-link (#PCDATA)> <!-- The env-entry element contains the declaration of an application's environment entry. This element is required to be honored on in J2EE compliant servlet containers. --> <!ELEMENT env-entry (description?, env-entry-name, env-entry-value?, env-entry-type)> <!-- The env-entry-name contains the name of an application's environment entry --> <!ELEMENT env-entry-name (#PCDATA)> <!-- The env-entry-value element contains the value of an application's environment entry --> <!ELEMENT env-entry-value (#PCDATA)> <!-- The env-entry-type element contains the fully qualified Java type of the environment entry value that is expected by the application code. The following are the legal values of env-entry-type: java.lang.Boolean, java.lang.String, java.lang.Integer, java.lang.Double, java.lang.Float. --> <!ELEMENT env-entry-type (#PCDATA)> <!-- The ejb-ref element is used to declare a reference to an enterprise bean. --> <!ELEMENT ejb-ref (description?, ejb-ref-name, ejb-ref-type, home, remote, ejb-link?)> <!-- The ejb-ref-name element contains the name of an EJB reference. This is the JNDI name that the servlet code uses to get a reference to the enterprise bean. --> <!ELEMENT ejb-ref-name (#PCDATA)> <!-- The ejb-ref-type element contains the expected java class type of the referenced EJB. --> <!ELEMENT ejb-ref-type (#PCDATA)> <!-- The ejb-home element contains the fully qualified name of the EJB's home interface --> <!ELEMENT home (#PCDATA)> <!-- The ejb-remote element contains the fully qualified name of the EJB's remote interface --> <!ELEMENT remote (#PCDATA)> <!-- The ejb-link element is used in the ejb-ref element to specify that an EJB reference is linked to an EJB in an encompassing Java2 Enterprise Edition (J2EE) application package. The value of the ejb-link element must be the ejb-name of and EJB in the J2EE application package. --> <!ELEMENT ejb-link (#PCDATA)> <!-- The ID mechanism is to allow tools to easily make tool-specific references to the elements of the deployment descriptor. This allows tools that produce additional deployment information (i.e information beyond the standard deployment descriptor information) to store the non-standard information in a separate file, and easily refer from these tools-specific files to the information in the standard web-app deployment descriptor. --> <!ATTLIST web-app id ID #IMPLIED> <!ATTLIST icon id ID #IMPLIED> <!ATTLIST small-icon id ID #IMPLIED> <!ATTLIST large-icon id ID #IMPLIED> <!ATTLIST display-name id ID #IMPLIED> <!ATTLIST description id ID #IMPLIED> <!ATTLIST distributable id ID #IMPLIED> <!ATTLIST context-param id ID #IMPLIED> <!ATTLIST param-name id ID #IMPLIED> <!ATTLIST param-value id ID #IMPLIED> <!ATTLIST servlet id ID #IMPLIED> <!ATTLIST servlet-name id ID #IMPLIED> <!ATTLIST servlet-class id ID #IMPLIED> <!ATTLIST jsp-file id ID #IMPLIED> <!ATTLIST init-param id ID #IMPLIED> <!ATTLIST load-on-startup id ID #IMPLIED> <!ATTLIST servlet-mapping id ID #IMPLIED> <!ATTLIST url-pattern id ID #IMPLIED> <!ATTLIST session-config id ID #IMPLIED> <!ATTLIST session-timeout id ID #IMPLIED> <!ATTLIST mime-mapping id ID #IMPLIED> <!ATTLIST extension id ID #IMPLIED> <!ATTLIST mime-type id ID #IMPLIED> <!ATTLIST welcome-file-list id ID #IMPLIED> <!ATTLIST welcome-file id ID #IMPLIED> <!ATTLIST taglib id ID #IMPLIED> <!ATTLIST taglib-uri id ID #IMPLIED> <!ATTLIST taglib-location id ID #IMPLIED> <!ATTLIST error-page id ID #IMPLIED> <!ATTLIST error-code id ID #IMPLIED> <!ATTLIST exception-type id ID #IMPLIED> <!ATTLIST location id ID #IMPLIED> <!ATTLIST resource-ref id ID #IMPLIED> <!ATTLIST res-ref-name id ID #IMPLIED> <!ATTLIST res-type id ID #IMPLIED> <!ATTLIST res-auth id ID #IMPLIED> <!ATTLIST security-constraint id ID #IMPLIED> <!ATTLIST web-resource-collection id ID #IMPLIED> <!ATTLIST web-resource-name id ID #IMPLIED> <!ATTLIST http-method id ID #IMPLIED> <!ATTLIST user-data-constraint id ID #IMPLIED> <!ATTLIST transport-guarantee id ID #IMPLIED> <!ATTLIST auth-constraint id ID #IMPLIED> <!ATTLIST role-name id ID #IMPLIED> <!ATTLIST login-config id ID #IMPLIED> <!ATTLIST realm-name id ID #IMPLIED> <!ATTLIST form-login-config id ID #IMPLIED> <!ATTLIST form-login-page id ID #IMPLIED> <!ATTLIST form-error-page id ID #IMPLIED> <!ATTLIST auth-method id ID #IMPLIED> <!ATTLIST security-rol... [truncated message content] |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:39
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp/content/images/tree In directory usw-pr-cvs1:/tmp/cvs-serv30405/jndi.browser/src/webapp/content/images/tree Added Files: base.gif empty.gif folder.gif folderopen.gif join.gif joinbottom.gif line.gif minus.gif minusbottom.gif page.gif plus.gif plusbottom.gif Log Message: Initial import --- NEW FILE: base.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: empty.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folderopen.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: join.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: joinbottom.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: line.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: minus.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: minusbottom.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: page.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: plus.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: plusbottom.gif --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp/content/images/icons In directory usw-pr-cvs1:/tmp/cvs-serv30405/jndi.browser/src/webapp/content/images/icons Added Files: AppClientModule16.gif AppClientModule24.gif EJBModule16.gif EJBModule24.gif EntityBean16.gif Home16.gif J2EEApplication16.gif J2EEApplication24.gif J2EEDomain16.gif J2EEDomain24.gif J2EEModule16.gif J2EEModule24.gif J2EEServer16.gif J2EEServer24.gif JCAConnectionFactory16.gif JCAConnectionFactory24.gif JCAResource16.gif JCAResource24.gif JNDIResource16.gif JNDIResource24.gif JVM16.gif JVM24.gif JavaMailResource16.gif JavaMailResource24.gif MessageDrivenBean16.gif Node16.gif Node24.gif ResourceAdapter16.gif ResourceAdapter24.gif ResourceAdapterModule16.gif ResourceAdapterModule24.gif Server16.gif Servlet16.gif Servlet24.gif SessionBean16.gif StatefulSessionBean16.gif StatelessSessionBean16.gif URLResource16.gif URLResource24.gif WebModule16.gif WebModule24.gif Log Message: Initial import --- NEW FILE: AppClientModule16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: AppClientModule24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: EJBModule16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: EJBModule24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: EntityBean16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Home16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: J2EEApplication16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: J2EEApplication24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: J2EEDomain16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: J2EEDomain24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: J2EEModule16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: J2EEModule24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: J2EEServer16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: J2EEServer24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: JCAConnectionFactory16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: JCAConnectionFactory24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: JCAResource16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: JCAResource24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: JNDIResource16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: JNDIResource24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: JVM16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: JVM24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: JavaMailResource16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: JavaMailResource24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: MessageDrivenBean16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Node16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Node24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ResourceAdapter16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ResourceAdapter24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ResourceAdapterModule16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ResourceAdapterModule24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Server16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Servlet16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Servlet24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: SessionBean16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: StatefulSessionBean16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: StatelessSessionBean16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: URLResource16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: URLResource24.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: WebModule16.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: WebModule24.gif --- (This appears to be a binary file; contents omitted.) |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:39
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp/content In directory usw-pr-cvs1:/tmp/cvs-serv30405/jndi.browser/src/webapp/content Added Files: detail.jsp index.jsp index.xml style.css style.xsl Log Message: Initial import --- NEW FILE: detail.jsp --- <?xml version="1.0"?> <!-- edited with XML Spy v4.3 U (http://www.xmlspy.com) by Laurent Etiemble (Orange) --> <jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:app="/WEB-INF/application.tld" xmlns:ejtools="/WEB-INF/ejtools.tld" xmlns:bean="/WEB-INF/struts-bean.tld" xmlns:html="/WEB-INF/struts-html.tld" xmlns:logic="/WEB-INF/struts-logic.tld"> <jsp:directive.page language="java" contentType="text/html"/> <app:connect/> <html> <head> <link rel="stylesheet" type="text/css" href="style.css"/> <html:base/> <title>Detail View</title> </head> <body> <!-- ======================================== --> <!-- Header --> <!-- ======================================== --> <table border="0" width="100%" bgcolor="#CCCCCC" cellspacing="0"> <tr> <td width="100%"> <table border="0" width="100%" cellspacing="0" cellpadding="3" bgcolor="#FFFFFF"> <tr> <td> <b> <font face="verdana,arial,sans-serif" color="#000000" size="6">Detail View</font> </b> </td> <td align="right" rowspan="2"> <img border="0" src="images/ejtools50.png" width="175" height="50"/> </td> </tr> <tr> <td> <html:link forward="home"> <jsp:text>JNDI View</jsp:text> </html:link> <jsp:text> >> Detail View</jsp:text> </td> </tr> </table> </td> </tr> </table> <!-- ======================================== --> <!-- Spacer --> <!-- ======================================== --> <img border="0" src="images/white.png" width="5" height="15"/> <!-- ======================================== --> <!-- Context Detail --> <!-- ======================================== --> <table border="0" cellspacing="1" bgcolor="#CCCCCC" width="100%"> <tr bgcolor="#EEEEEE"> <td align="left" valign="top"> <table border="0" width="100%" bgcolor="#EEEEEE" cellspacing="0" cellpadding="3"> <tr> <td align="right" nowrap="true"> <b>Short Name :</b> </td> <td align="left" width="90%"> <bean:write name="detail" property="name"/> </td> </tr> <tr> <td align="right" nowrap="true"> <b>Class Name :</b> </td> <td align="left" width="90%"> <bean:write name="detail" property="className"/> </td> </tr> <tr> <td align="right" nowrap="true"> <b>Full JNDI Path :</b> </td> <td align="left" width="90%"> <bean:write name="detail" property="path"/> </td> </tr> </table> </td> </tr> </table> </body> </html> </jsp:root> --- NEW FILE: index.jsp --- <?xml version="1.0"?> <!-- edited with XML Spy v4.3 U (http://www.xmlspy.com) by Laurent Etiemble (Orange) --> <jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:app="/WEB-INF/application.tld" xmlns:ejtools="/WEB-INF/ejtools.tld" xmlns:bean="/WEB-INF/struts-bean.tld" xmlns:html="/WEB-INF/struts-html.tld" xmlns:logic="/WEB-INF/struts-logic.tld"> <jsp:directive.page language="java" contentType="text/html"/> <app:connect/> <html> <head> <link rel="stylesheet" type="text/css" href="style.css"/> <html:base/> <title>JNDI View</title> </head> <body> <!-- ======================================== --> <!-- Header --> <!-- ======================================== --> <table border="0" width="100%" bgcolor="#CCCCCC" cellspacing="0"> <tr> <td width="100%"> <table border="0" width="100%" cellspacing="0" cellpadding="3" bgcolor="#FFFFFF"> <tr> <td> <b> <font face="verdana,arial,sans-serif" color="#000000" size="6">JNDI View</font> </b> </td> <td align="right" rowspan="2"> <img border="0" src="images/ejtools50.png" width="175" height="50"/> </td> </tr> <tr> <td>JNDI View</td> </tr> </table> </td> </tr> </table> <!-- ======================================== --> <!-- Spacer --> <!-- ======================================== --> <img border="0" src="images/white.png" width="5" height="15"/> <!-- ======================================== --> <!-- Agent Detail --> <!-- ======================================== --> <table border="0" cellspacing="1" bgcolor="#CCCCCC" width="100%"> <tr bgcolor="#EEEEEE"> <td align="left" valign="top"> <!-- ======================================== --> <!-- Agent Informations --> <!-- ======================================== --> <table border="0" width="100%" cellspacing="0" cellpadding="3"> <tr> <td align="left">Namespace <strong>java:</strong>.</td> </tr> </table> </td> </tr> <!-- ======================================== --> <!-- JNDI Tree View --> <!-- ======================================== --> <tr bgcolor="#FFFFFF"> <td align="left" valign="top"> <table cellspacing="0" cellpadding="0" border="0"> <tr> <td class=".tree-content"> <img src="images/icons/J2EEServer16.gif"/>java:</td> </tr> </table> <ejtools:generateTree name="tree" property="server" id="jnditree"/> <logic:iterate name="jnditree" id="treenode" type="net.sourceforge.ejtools.servlet.http.jsp.tagext.IndentedObject"> <table cellspacing="0" cellpadding="0" border="0"> <tr> <td class=".tree-content"><ejtools:treeSpacer name="treenode" property="depth"/><ejtools:treeLeaf name="treenode" property="last"/><ejtools:treeRenderer name="treenode" property="object" renderer="net.sourceforge.ejtools.jndibrowser.web.taglib.TreeRendererImpl"/></td> <td class=".tree-content"> <bean:define id="context" name="treenode" property="object" type="net.sourceforge.ejtools.jndibrowser.model.JNDIContext"/> <html:link page="/detail.do?scope=java" paramId="reference" paramName="context" paramProperty="path"> <bean:write name="context" property="name"/> </html:link> </td> </tr> </table> </logic:iterate> </td> </tr> </table> <!-- ======================================== --> <!-- Spacer --> <!-- ======================================== --> <img border="0" src="images/white.png" width="5" height="15"/> <!-- ======================================== --> <!-- Agent Detail --> <!-- ======================================== --> <table border="0" cellspacing="1" bgcolor="#CCCCCC" width="100%"> <tr bgcolor="#EEEEEE"> <td align="left" valign="top"> <!-- ======================================== --> <!-- Agent Informations --> <!-- ======================================== --> <table border="0" width="100%" cellspacing="0" cellpadding="3"> <tr> <td align="left">Namespace <strong>global</strong>.</td> </tr> </table> </td> </tr> <!-- ======================================== --> <!-- JNDI Tree View --> <!-- ======================================== --> <tr bgcolor="#FFFFFF"> <td align="left" valign="top"> <table cellspacing="0" cellpadding="0" border="0"> <tr> <td class=".tree-content"> <img src="images/icons/J2EEServer16.gif"/>global</td> </tr> </table> <ejtools:generateTree name="global" property="server" id="jnditree"/> <logic:iterate name="jnditree" id="treenode" type="net.sourceforge.ejtools.servlet.http.jsp.tagext.IndentedObject"> <table cellspacing="0" cellpadding="0" border="0"> <tr> <td class=".tree-content"><ejtools:treeSpacer name="treenode" property="depth"/><ejtools:treeLeaf name="treenode" property="last"/><ejtools:treeRenderer name="treenode" property="object" renderer="net.sourceforge.ejtools.jndibrowser.web.taglib.TreeRendererImpl"/></td> <td class=".tree-content"> <bean:define id="context" name="treenode" property="object" type="net.sourceforge.ejtools.jndibrowser.model.JNDIContext"/> <html:link page="/detail.do?scope=global" paramId="reference" paramName="context" paramProperty="path"> <bean:write name="context" property="name"/> </html:link> </td> </tr> </table> </logic:iterate> </td> </tr> </table> </body> </html> </jsp:root> --- NEW FILE: index.xml --- (This appears to be a binary file; contents omitted.) --- NEW FILE: style.css --- (This appears to be a binary file; contents omitted.) --- NEW FILE: style.xsl --- (This appears to be a binary file; contents omitted.) |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:39
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp/content/images In directory usw-pr-cvs1:/tmp/cvs-serv30405/jndi.browser/src/webapp/content/images Added Files: ejtools50.png Log Message: Initial import --- NEW FILE: ejtools50.png --- (This appears to be a binary file; contents omitted.) |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:39
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp In directory usw-pr-cvs1:/tmp/cvs-serv30405/jndi.browser/src/webapp Added Files: web.xml Log Message: Initial import --- NEW FILE: web.xml --- (This appears to be a binary file; contents omitted.) |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:13
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp/content/images In directory usw-pr-cvs1:/tmp/cvs-serv30291/applications/jndi.browser/src/webapp/content/images Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/webapp/content/images added to the repository |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:13
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp/content/images/tree In directory usw-pr-cvs1:/tmp/cvs-serv30291/applications/jndi.browser/src/webapp/content/images/tree Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/webapp/content/images/tree added to the repository |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:13
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp/resources In directory usw-pr-cvs1:/tmp/cvs-serv30291/applications/jndi.browser/src/webapp/resources Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/webapp/resources added to the repository |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:13
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp/content/images/icons In directory usw-pr-cvs1:/tmp/cvs-serv30291/applications/jndi.browser/src/webapp/content/images/icons Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/webapp/content/images/icons added to the repository |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:12
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp In directory usw-pr-cvs1:/tmp/cvs-serv30291/applications/jndi.browser/src/webapp Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/webapp added to the repository |
From: Laurent E. <let...@us...> - 2002-05-24 21:16:12
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/webapp/content In directory usw-pr-cvs1:/tmp/cvs-serv30291/applications/jndi.browser/src/webapp/content Log Message: Directory /cvsroot/ejtools/applications/jndi.browser/src/webapp/content added to the repository |
From: Laurent E. <let...@us...> - 2002-05-24 21:13:41
|
Update of /cvsroot/ejtools/build In directory usw-pr-cvs1:/tmp/cvs-serv29467 Modified Files: build.xml build_application.xml build_library.xml build_thirdparty.xml build_webapp.xml build_website.xml Log Message: Reformat xml files. Custom XDoclet for JavaBeans. Index: build.xml =================================================================== RCS file: /cvsroot/ejtools/build/build.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** build.xml 15 May 2002 17:47:54 -0000 1.6 --- build.xml 24 May 2002 21:13:39 -0000 1.7 *************** *** 40,46 **** </target> <!-- ======================================== --> <!-- Creates the output directory for the releases --> <!-- ======================================== --> ! <target name="prepare" description=""> <mkdir dir="${output.root}"/> </target> --- 40,56 ---- </target> <!-- ======================================== --> + <!-- Display informations --> + <!-- ======================================== --> + <target name="info" description=""> + <echo message="------------------------------------------------------------"/> + <echo/> + <echo message="EJTools Build System"/> + <echo/> + <echo message="------------------------------------------------------------"/> + </target> + <!-- ======================================== --> <!-- Creates the output directory for the releases --> <!-- ======================================== --> ! <target name="prepare" depends="info" description=""> <mkdir dir="${output.root}"/> </target> *************** *** 49,62 **** <!-- Executes the clean target on each modules --> <!-- ======================================== --> ! <target name="clean" description=""> <delete dir="${output.root}"/> <antcall target="sub"> <param name="target" value="clean"/> </antcall> </target> <!-- ======================================== --> <!-- Executes the build target on each modules --> <!-- ======================================== --> ! <target name="build" description=""> <antcall target="sub"> <param name="target" value="build"/> --- 59,73 ---- <!-- Executes the clean target on each modules --> <!-- ======================================== --> ! <target name="clean" depends="info" description=""> <delete dir="${output.root}"/> <antcall target="sub"> <param name="target" value="clean"/> </antcall> + <ant antfile="build/build_website.xml" target="clean"/> </target> <!-- ======================================== --> <!-- Executes the build target on each modules --> <!-- ======================================== --> ! <target name="build" depends="info" description=""> <antcall target="sub"> <param name="target" value="build"/> *************** *** 74,78 **** <!-- Create the javadoc website on each modules --> <!-- ======================================== --> ! <target name="javadoc" description=""> <property name="generate.javadoc" value="true"/> <antcall target="sub"> --- 85,89 ---- <!-- Create the javadoc website on each modules --> <!-- ======================================== --> ! <target name="javadoc" depends="info" description=""> <property name="generate.javadoc" value="true"/> <antcall target="sub"> *************** *** 83,87 **** <!-- Create the todo website on each modules --> <!-- ======================================== --> ! <target name="todo" description=""> <antcall target="sub"> <param name="target" value="todo"/> --- 94,98 ---- <!-- Create the todo website on each modules --> <!-- ======================================== --> ! <target name="todo" depends="info" description=""> <antcall target="sub"> <param name="target" value="todo"/> *************** *** 91,95 **** <!-- Create the logo for each application --> <!-- ======================================== --> ! <target name="logo" description=""> <antcall target="sub.applications"> <param name="target" value="logo"/> --- 102,106 ---- <!-- Create the logo for each application --> <!-- ======================================== --> ! <target name="logo" depends="info" description=""> <antcall target="sub.applications"> <param name="target" value="logo"/> *************** *** 99,103 **** <!-- Create the distribution package for each application --> <!-- ======================================== --> ! <target name="package" description=""> <antcall target="sub.applications"> <param name="target" value="package"/> --- 110,114 ---- <!-- Create the distribution package for each application --> <!-- ======================================== --> ! <target name="package" depends="info" description=""> <antcall target="sub.applications"> <param name="target" value="package"/> *************** *** 110,120 **** <!-- Build the EJTools website --> <!-- ======================================== --> ! <target name="website" depends="javadoc, todo" description=""> <ant antfile="build/build_website.xml"/> </target> <!-- ======================================== --> <!-- Build the Source TarBall --> <!-- ======================================== --> ! <target name="tarball" depends="clean" description=""/> <!-- **************************************** --> <!-- Generic subtask which calls the subtask for thirdparty, libraries and applications --> --- 121,134 ---- <!-- Build the EJTools website --> <!-- ======================================== --> ! <target name="website" depends="info" description=""> <ant antfile="build/build_website.xml"/> </target> + <target name="website.compress" description=""> + <ant antfile="build/build_website.xml" target="compress"/> + </target> <!-- ======================================== --> <!-- Build the Source TarBall --> <!-- ======================================== --> ! <target name="tarball" depends="info,clean" description=""/> <!-- **************************************** --> <!-- Generic subtask which calls the subtask for thirdparty, libraries and applications --> *************** *** 178,181 **** --- 192,207 ---- <param name="root" value="${libraries.root}"/> <param name="name" value="jboss.provider"/> + </antcall> + <antcall target="sub.call"> + <param name="type" value="library"/> + <param name="target" value="${target}"/> + <param name="root" value="${libraries.root}"/> + <param name="name" value="taglib"/> + </antcall> + <antcall target="sub.call"> + <param name="type" value="library"/> + <param name="target" value="${target}"/> + <param name="root" value="${libraries.root}"/> + <param name="name" value="xdoclet"/> </antcall> <antcall target="sub.call"> Index: build_application.xml =================================================================== RCS file: /cvsroot/ejtools/build/build_application.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** build_application.xml 16 May 2002 07:16:12 -0000 1.10 --- build_application.xml 24 May 2002 21:13:39 -0000 1.11 *************** *** 18,21 **** --- 18,24 ---- <taskdef name="xdoclet" classname="xdoclet.DocletTask"/> <taskdef name="todo" classname="xdoclet.doc.DocumentDocletTask"/> + <!-- + <taskdef name="javabean" classname="xdoclet.beans.JavaBeanDocletTask"/> + --> <!-- ==================== Module Definition ======================== --> <property name="module.root" value="${applications.root}/${module.name}"/> *************** *** 43,53 **** <property name="src.main" value="${src.home}/main"/> <property name="src.resources" value="${src.home}/resources"/> - <property name="src.webapp" value="${src.home}/webapp"/> - <property name="src.webapp.content" value="${src.webapp}/content"/> - <property name="src.webapp.resources" value="${src.webapp}/resources"/> <!-- ==================== Compilation Classpath =========================== --> <path id="compile.classpath"> <fileset dir="${ejtools.common.root}" includes="*.jar"/> <fileset dir="${ejtools.adwt.root}" includes="*.jar"/> <fileset dir="${ejtools.xmlweb.root}" includes="*.jar"/> <fileset dir="${apache.ant.root}" includes="*.jar"/> --- 46,55 ---- <property name="src.main" value="${src.home}/main"/> <property name="src.resources" value="${src.home}/resources"/> <!-- ==================== Compilation Classpath =========================== --> <path id="compile.classpath"> <fileset dir="${ejtools.common.root}" includes="*.jar"/> <fileset dir="${ejtools.adwt.root}" includes="*.jar"/> + <fileset dir="${ejtools.taglib.root}" includes="*.jar"/> + <fileset dir="${ejtools.xdoclet.root}" includes="*.jar"/> <fileset dir="${ejtools.xmlweb.root}" includes="*.jar"/> <fileset dir="${apache.ant.root}" includes="*.jar"/> *************** *** 55,61 **** <fileset dir="${apache.log4j.root}" includes="*.jar"/> <fileset dir="${apache.struts.root}" includes="*.jar"/> - <!-- - <fileset dir="${apache.tomcat.root}" includes="*.jar"/> - --> <fileset dir="${apache.xalan.root}" includes="*.jar"/> <fileset dir="${dreambean.awt.root}" includes="*.jar"/> --- 57,60 ---- *************** *** 70,73 **** --- 69,73 ---- <fileset dir="${sun.jsr88.root}" includes="*.jar"/> <fileset dir="${sun.swing.root}" includes="*.jar"/> + <fileset dir="${sun.tools.root}" includes="*.jar"/> </path> <!-- ==================== Info Target ================================== --> *************** *** 117,131 **** </target> <!-- ==================== XMLBeans Target ================================== --> ! <target name="xmlbeans" depends="compile" if="has.dir.etc.beaninfo"> <mkdir dir="${build.src}"/> <!-- ! <xdoclet sourcepath="${src.main}" destdir="${build.src}" classpathref="compile.classpath"> <fileset dir="${src.main}"> <include name="**/*.java"/> - <exclude name="**/CVS/**"/> </fileset> ! <template templateFile="build/beaninfo.j" destinationFile="{0}BeanInfo.java" havingClassTag="beaninfo:class"/> ! </xdoclet> ! --> <xmlbean destdir="${build.src}" srcdir="../${src.etc}/beaninfo" includes="**" excludes="**/CVS/**"/> <javac srcdir="${build.src}" destdir="${build.classes}" classpath="${classpath}" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}" includes="**/*BeanInfo.java" excludes="**/CVS/**"> --- 117,133 ---- </target> <!-- ==================== XMLBeans Target ================================== --> ! <target name="beaninfo" depends="compile" if="has.dir.etc.beaninfo"> <mkdir dir="${build.src}"/> <!-- ! <javabean sourcepath="${src.main}" destdir="${build.src}" classpathref="compile.classpath"> <fileset dir="${src.main}"> <include name="**/*.java"/> </fileset> ! <beaninfo/> ! <i18n destdir="${build.classes}"/> ! <i18n locale="fr_FR" destdir="${build.classes}"/> ! <i18n locale="de_DE" destdir="${build.classes}"/> ! </javabean> ! --> <xmlbean destdir="${build.src}" srcdir="../${src.etc}/beaninfo" includes="**" excludes="**/CVS/**"/> <javac srcdir="${build.src}" destdir="${build.classes}" classpath="${classpath}" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}" includes="**/*BeanInfo.java" excludes="**/CVS/**"> *************** *** 134,138 **** </target> <!-- ==================== Build Target ===================================== --> ! <target name="build" depends="compile,xmlbeans" description="Create binary"> <copy todir="${build.classes}"> <fileset dir="${src.resources}"> --- 136,140 ---- </target> <!-- ==================== Build Target ===================================== --> ! <target name="build" depends="compile,beaninfo" description="Create binary"> <copy todir="${build.classes}"> <fileset dir="${src.resources}"> Index: build_library.xml =================================================================== RCS file: /cvsroot/ejtools/build/build_library.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** build_library.xml 15 May 2002 17:47:54 -0000 1.3 --- build_library.xml 24 May 2002 21:13:39 -0000 1.4 *************** *** 37,40 **** --- 37,41 ---- <fileset dir="${apache.crimson.root}" includes="*.jar"/> <fileset dir="${apache.log4j.root}" includes="*.jar"/> + <fileset dir="${apache.struts.root}" includes="*.jar"/> <fileset dir="${dreambean.awt.root}" includes="*.jar"/> <fileset dir="${sourceforge.xdoclet.root}" includes="*.jar"/> *************** *** 44,47 **** --- 45,49 ---- <fileset dir="${sun.jsr77.root}" includes="*.jar"/> <fileset dir="${sun.jsr88.root}" includes="*.jar"/> + <fileset dir="${sun.tools.root}" includes="*.jar"/> </path> <!-- ==================== Info Target ================================== --> *************** *** 82,85 **** --- 84,89 ---- <include name="**/*.properties"/> <include name="**/*.gif"/> + <include name="**/*.png"/> + <include name="**/*.j"/> </fileset> </copy> *************** *** 100,104 **** <!-- ==================== Javadoc Target ================================== --> <target name="javadoc" depends="prepare" description="Create Javadoc API documentation" if="generate.javadoc"> ! <javadoc sourcepath="${src.home}/main" destdir="${build.doc.api}" packagenames="${module.package}" windowtitle="${module.javadoc.title}" stylesheetfile="build/css/stylesheet.css"> <classpath refid="compile.classpath"/> </javadoc> --- 104,108 ---- <!-- ==================== Javadoc Target ================================== --> <target name="javadoc" depends="prepare" description="Create Javadoc API documentation" if="generate.javadoc"> ! <javadoc sourcepath="${src.home}/main" destdir="${build.doc.api}" packagenames="${module.package}.*" windowtitle="${module.javadoc.title}" stylesheetfile="build/css/stylesheet.css"> <classpath refid="compile.classpath"/> </javadoc> Index: build_thirdparty.xml =================================================================== RCS file: /cvsroot/ejtools/build/build_thirdparty.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** build_thirdparty.xml 15 May 2002 17:47:54 -0000 1.3 --- build_thirdparty.xml 24 May 2002 21:13:39 -0000 1.4 *************** *** 39,43 **** <target name="info"> <echo message="------------------------------------------------------------"/> ! <echo message="Module Thirdparty : ${vendor.name} ${module.name}"/> <echo message="------------------------------------------------------------"/> </target> --- 39,43 ---- <target name="info"> <echo message="------------------------------------------------------------"/> ! <echo message="Module Thirdparty Library : ${vendor.name} ${module.name}"/> <echo message="------------------------------------------------------------"/> </target> *************** *** 97,101 **** <!-- ==================== Javadoc Target ================================== --> <target name="javadoc" depends="compile" description="Create Javadoc API documentation" if="generate.javadoc"> ! <javadoc sourcepath="${src.home}/main" destdir="${build.doc}/api" packagenames="${module.package}"> <classpath refid="compile.classpath"/> </javadoc> --- 97,101 ---- <!-- ==================== Javadoc Target ================================== --> <target name="javadoc" depends="compile" description="Create Javadoc API documentation" if="generate.javadoc"> ! <javadoc sourcepath="${src.home}/main" destdir="${build.doc}/api" packagenames="${module.package}.*"> <classpath refid="compile.classpath"/> </javadoc> Index: build_webapp.xml =================================================================== RCS file: /cvsroot/ejtools/build/build_webapp.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build_webapp.xml 17 May 2002 07:28:53 -0000 1.2 --- build_webapp.xml 24 May 2002 21:13:39 -0000 1.3 *************** *** 46,49 **** --- 46,50 ---- <fileset dir="${ejtools.common.root}" includes="*.jar"/> <fileset dir="${ejtools.adwt.root}" includes="*.jar"/> + <fileset dir="${ejtools.taglib.root}" includes="*.jar"/> <fileset dir="${ejtools.xmlweb.root}" includes="*.jar"/> <fileset dir="${apache.ant.root}" includes="*.jar"/> *************** *** 64,67 **** --- 65,69 ---- <fileset dir="${sun.jsr88.root}" includes="*.jar"/> <fileset dir="${sun.swing.root}" includes="*.jar"/> + <fileset dir="${sun.tools.root}" includes="*.jar"/> </path> <!-- ==================== Info Target ================================== --> *************** *** 106,111 **** </javac> </target> <!-- ==================== Build Target ===================================== --> ! <target name="build" depends="compile" description=""> <copy todir="${build.classes}"> <fileset dir="${src.resources}"> --- 108,121 ---- </javac> </target> + <!-- ==================== XMLBeans Target ================================== --> + <target name="beaninfo" depends="compile" if="has.dir.etc.beaninfo"> + <mkdir dir="${build.src}"/> + <xmlbean destdir="${build.src}" srcdir="../${src.etc}/beaninfo" includes="**" excludes="**/CVS/**"/> + <javac srcdir="${build.src}" destdir="${build.classes}" classpath="${classpath}" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}" includes="**/*BeanInfo.java" excludes="**/CVS/**"> + <classpath refid="compile.classpath"/> + </javac> + </target> <!-- ==================== Build Target ===================================== --> ! <target name="build" depends="compile,beaninfo" description=""> <copy todir="${build.classes}"> <fileset dir="${src.resources}"> *************** *** 172,176 **** <target name="clean" depends="info" description="Delete old build and dist directories"> <delete dir="${build.home}"/> ! <delete dir="${dist.webapp}"/> </target> </project> --- 182,186 ---- <target name="clean" depends="info" description="Delete old build and dist directories"> <delete dir="${build.home}"/> ! <delete dir="${webapp.home}"/> </target> </project> Index: build_website.xml =================================================================== RCS file: /cvsroot/ejtools/build/build_website.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** build_website.xml 15 May 2002 17:47:54 -0000 1.3 --- build_website.xml 24 May 2002 21:13:39 -0000 1.4 *************** *** 18,23 **** <property name="images.root" value="${website.root}/images"/> <property name="images.svg.root" value="${images.root}/svg"/> <!-- ==================== All Target =================================== --> ! <target name="all" depends="svg.rasterizer,xweb,javadoc.copy,todo.copy"/> <!-- ==================== JavaDoc Copy Target =================================== --> <target name="javadoc.copy" depends="xweb"> --- 18,35 ---- <property name="images.root" value="${website.root}/images"/> <property name="images.svg.root" value="${images.root}/svg"/> + <!-- ==================== Info Target ================================== --> + <target name="info"> + <echo message="------------------------------------------------------------"/> + <echo message="Module EJTools Website"/> + <echo message="------------------------------------------------------------"/> + </target> <!-- ==================== All Target =================================== --> ! <target name="all" depends="info,xweb,javadoc.copy,todo.copy,compress"/> ! <!-- ==================== Compress Target =================================== --> ! <target name="compress" depends=""> ! <tar tarfile="${output.root}/website.tar" basedir="${website.root}/output"/> ! <gzip zipfile="${output.root}/website.tar.gz" src="${output.root}/website.tar"/> ! <delete file="${output.root}/website.tar"/> ! </target> <!-- ==================== JavaDoc Copy Target =================================== --> <target name="javadoc.copy" depends="xweb"> *************** *** 25,30 **** <fileset dir="${libraries.root}/adwt/output/doc/api"/> </copy> ! <copy todir="${website.root}/output/libraries/xmlweb/api" overwrite="yes"> ! <fileset dir="${libraries.root}/xmlweb/output/doc/api"/> </copy> <copy todir="${website.root}/output/projects/deployment/api" overwrite="yes"> --- 37,42 ---- <fileset dir="${libraries.root}/adwt/output/doc/api"/> </copy> ! <copy todir="${website.root}/output/libraries/common/api" overwrite="yes"> ! <fileset dir="${libraries.root}/common/output/doc/api"/> </copy> <copy todir="${website.root}/output/projects/deployment/api" overwrite="yes"> *************** *** 46,55 **** <fileset dir="${libraries.root}/adwt/output/doc/todo"/> </copy> ! <copy todir="${website.root}/output/libraries/xmlweb/todo" overwrite="yes"> ! <fileset dir="${libraries.root}/xmlweb/output/doc/todo"/> </copy> <copy todir="${website.root}/output/projects/jndi.browser/todo" overwrite="yes"> <fileset dir="${applications.root}/jndi.browser/output/doc/todo"/> </copy> </target> <!-- ==================== Website Creation Target =================================== --> --- 58,76 ---- <fileset dir="${libraries.root}/adwt/output/doc/todo"/> </copy> ! <copy todir="${website.root}/output/libraries/common/todo" overwrite="yes"> ! <fileset dir="${libraries.root}/common/output/doc/todo"/> ! </copy> ! <copy todir="${website.root}/output/projects/deployment/todo" overwrite="yes"> ! <fileset dir="${applications.root}/deployment/output/doc/todo"/> ! </copy> ! <copy todir="${website.root}/output/projects/jmx.browser/todo" overwrite="yes"> ! <fileset dir="${applications.root}/jndi.browser/output/doc/todo"/> </copy> <copy todir="${website.root}/output/projects/jndi.browser/todo" overwrite="yes"> <fileset dir="${applications.root}/jndi.browser/output/doc/todo"/> </copy> + <copy todir="${website.root}/output/projects/management/todo" overwrite="yes"> + <fileset dir="${applications.root}/management/output/doc/todo"/> + </copy> </target> <!-- ==================== Website Creation Target =================================== --> *************** *** 124,127 **** --- 145,152 ---- </java> <move file="${images.root}/ejtools.png" tofile="${images.root}/ejtools50.png"/> + </target> + <!-- ==================== Clean Target ==================================== --> + <target name="clean" depends="info" description="Delete old build and dist directories"> + <delete dir="${website.root}/output"/> </target> </project> |
From: Laurent E. <let...@us...> - 2002-05-24 21:12:46
|
Update of /cvsroot/ejtools/build In directory usw-pr-cvs1:/tmp/cvs-serv29183 Modified Files: build.bat Log Message: Add support for tools.jar from JDK and custom xdoclet for JavaBeans Index: build.bat =================================================================== RCS file: /cvsroot/ejtools/build/build.bat,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.bat 13 May 2002 20:30:47 -0000 1.4 --- build.bat 24 May 2002 21:12:43 -0000 1.5 *************** *** 16,19 **** --- 16,20 ---- set THIRDPARTY=..\thirdparty + set LIBRARY=..\libraries set CP= *************** *** 33,36 **** --- 34,39 ---- set CP=%CP%;%THIRDPARTY%\sourceforge\xdoclet\xdoclet.jar + + set CP=%CP%;%LIBRARY%\xdoclet\output\lib\xdoclet.jar java -classpath "%CP%" org.apache.tools.ant.Main %1 %2 %3 %4 %5 |
From: Laurent E. <let...@us...> - 2002-05-24 21:12:20
|
Update of /cvsroot/ejtools/build In directory usw-pr-cvs1:/tmp/cvs-serv29054 Modified Files: general.properties location.properties switch.properties Log Message: Add support for tools.jar from JDK and custom xdoclet for JavaBeans Index: general.properties =================================================================== RCS file: /cvsroot/ejtools/build/general.properties,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Index: location.properties =================================================================== RCS file: /cvsroot/ejtools/build/location.properties,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** location.properties 6 May 2002 20:36:41 -0000 1.4 --- location.properties 24 May 2002 21:12:15 -0000 1.5 *************** *** 1,60 **** ! # ================================================================================ ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at gnu.org. ! # ! # $Revision$ ! # ================================================================================ ! ! # ================================================================================ ! # Properties File for the EJTools Project ! # Location Purpose Properties ! # ================================================================================ ! ! # Pointers to lib location for EJTools Projects ! # -------------------------------------------------------------------------------- ! ejtools.adwt.root=${libraries.root}/adwt/output/lib ! ejtools.common.root=${libraries.root}/common/output/lib ! ejtools.icons.root=${libraries.root}/j2ee.icons/output/lib ! ejtools.provider.root=${libraries.root}/jboss.provider/output/lib ! ejtools.xmlweb.root=${libraries.root}/xmlweb/output/lib ! ! # Pointers to lib location for Apache Projects ! # -------------------------------------------------------------------------------- ! apache.ant.root=${thirdparty.root}/apache/ant ! apache.batik.root=${thirdparty.root}/apache/batik ! apache.crimson.root=${thirdparty.root}/apache/crimson ! apache.log4j.root=${thirdparty.root}/apache/log4j ! apache.struts.root=${thirdparty.root}/apache/struts ! apache.taglibs.root=${thirdparty.root}/apache/taglibs ! apache.tomcat.root=${thirdparty.root}/apache/tomcat ! apache.xalan.root=${thirdparty.root}/apache/xalan ! apache.xerces.root=${thirdparty.root}/apache/xerces ! ! # Pointers to lib location for Dreambean Projects ! # -------------------------------------------------------------------------------- ! dreambean.awt.root=${thirdparty.root}/dreambean/awt ! dreambean.codegen.root=${thirdparty.root}/dreambean/codegen ! dreambean.xmlbeans.root=${thirdparty.root}/dreambean/xmlbeans ! ! # Pointers to lib location for JBoss Projects ! # -------------------------------------------------------------------------------- ! jboss.client.root=${thirdparty.root}/jboss/client ! jboss.jmx.root=${thirdparty.root}/jboss/jmx ! ! # Pointers to lib location for SourceForge Projects ! # -------------------------------------------------------------------------------- ! sourceforge.xdoclet.root=${thirdparty.root}/sourceforge/xdoclet ! sourceforge.xweb.root=${thirdparty.root}/sourceforge/xweb ! ! # Pointers to lib location for Sun Projects ! # -------------------------------------------------------------------------------- ! sun.j2ee.root=${thirdparty.root}/sun/j2ee ! sun.jaxp.root=${thirdparty.root}/sun/jaxp ! sun.jndi.root=${thirdparty.root}/sun/jndi ! sun.jmx.root=${thirdparty.root}/sun/jmx ! sun.jsr77.root=${thirdparty.root}/sun/jsr77/output/lib ! sun.jsr88.root=${thirdparty.root}/sun/jsr88/output/lib ! sun.swing.root=${thirdparty.root}/sun/swing ! sun.tools.root=${thirdparty.root}/sun/tools --- 1,62 ---- ! # ================================================================================ ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at gnu.org. ! # ! # $Revision$ ! # ================================================================================ ! ! # ================================================================================ ! # Properties File for the EJTools Project ! # Location Purpose Properties ! # ================================================================================ ! ! # Pointers to lib location for EJTools Projects ! # -------------------------------------------------------------------------------- ! ejtools.adwt.root=${libraries.root}/adwt/output/lib ! ejtools.common.root=${libraries.root}/common/output/lib ! ejtools.icons.root=${libraries.root}/j2ee.icons/output/lib ! ejtools.provider.root=${libraries.root}/jboss.provider/output/lib ! ejtools.taglib.root=${libraries.root}/taglib/output/lib ! ejtools.xdoclet.root=${libraries.root}/xdoclet/output/lib ! ejtools.xmlweb.root=${libraries.root}/xmlweb/output/lib ! ! # Pointers to lib location for Apache Projects ! # -------------------------------------------------------------------------------- ! apache.ant.root=${thirdparty.root}/apache/ant ! apache.batik.root=${thirdparty.root}/apache/batik ! apache.crimson.root=${thirdparty.root}/apache/crimson ! apache.log4j.root=${thirdparty.root}/apache/log4j ! apache.struts.root=${thirdparty.root}/apache/struts ! apache.taglibs.root=${thirdparty.root}/apache/taglibs ! apache.tomcat.root=${thirdparty.root}/apache/tomcat ! apache.xalan.root=${thirdparty.root}/apache/xalan ! apache.xerces.root=${thirdparty.root}/apache/xerces ! ! # Pointers to lib location for Dreambean Projects ! # -------------------------------------------------------------------------------- ! dreambean.awt.root=${thirdparty.root}/dreambean/awt ! dreambean.codegen.root=${thirdparty.root}/dreambean/codegen ! dreambean.xmlbeans.root=${thirdparty.root}/dreambean/xmlbeans ! ! # Pointers to lib location for JBoss Projects ! # -------------------------------------------------------------------------------- ! jboss.client.root=${thirdparty.root}/jboss/client ! jboss.jmx.root=${thirdparty.root}/jboss/jmx ! ! # Pointers to lib location for SourceForge Projects ! # -------------------------------------------------------------------------------- ! sourceforge.xdoclet.root=${thirdparty.root}/sourceforge/xdoclet ! sourceforge.xweb.root=${thirdparty.root}/sourceforge/xweb ! ! # Pointers to lib location for Sun Projects ! # -------------------------------------------------------------------------------- ! sun.j2ee.root=${thirdparty.root}/sun/j2ee ! sun.jaxp.root=${thirdparty.root}/sun/jaxp ! sun.jndi.root=${thirdparty.root}/sun/jndi ! sun.jmx.root=${thirdparty.root}/sun/jmx ! sun.jsr77.root=${thirdparty.root}/sun/jsr77/output/lib ! sun.jsr88.root=${thirdparty.root}/sun/jsr88/output/lib ! sun.swing.root=${thirdparty.root}/sun/swing ! sun.tools.root=${thirdparty.root}/sun/tools Index: switch.properties =================================================================== RCS file: /cvsroot/ejtools/build/switch.properties,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** switch.properties 16 May 2002 07:16:12 -0000 1.8 --- switch.properties 24 May 2002 21:12:15 -0000 1.9 *************** *** 19,28 **** build.application.jndi.browser=true build.application.management=true ! build.webapp.jmx.browser=true ! build.webapp.jndi.browser=true build.library.adwt=true build.library.common=true build.library.j2ee.icons=true build.library.jboss.provider=true build.library.xmlweb=true build.thirdparty.jsr77=true --- 19,30 ---- build.application.jndi.browser=true build.application.management=true ! build.webapp.jmx.browser=true ! build.webapp.jndi.browser=true build.library.adwt=true build.library.common=true build.library.j2ee.icons=true build.library.jboss.provider=true + build.library.taglib=true + build.library.xdoclet=true build.library.xmlweb=true build.thirdparty.jsr77=true *************** *** 35,44 **** clean.application.jndi.browser=true clean.application.management=true ! clean.webapp.jmx.browser=true ! clean.webapp.jndi.browser=true clean.library.adwt=true clean.library.common=true clean.library.j2ee.icons=true clean.library.jboss.provider=true clean.library.xmlweb=true clean.thirdparty.jsr77=true --- 37,47 ---- clean.application.jndi.browser=true clean.application.management=true ! clean.webapp.jmx.browser=true ! clean.webapp.jndi.browser=true clean.library.adwt=true clean.library.common=true clean.library.j2ee.icons=true clean.library.jboss.provider=true + clean.library.taglib=true clean.library.xmlweb=true clean.thirdparty.jsr77=true *************** *** 51,60 **** dist.application.jndi.browser=true dist.application.management=true ! #dist.webapp.jmx.browser=true ! #dist.webapp.jndi.browser=true dist.library.adwt=true dist.library.common=true dist.library.j2ee.icons=true dist.library.jboss.provider=true dist.library.xmlweb=true dist.thirdparty.jsr77=true --- 54,64 ---- dist.application.jndi.browser=true dist.application.management=true ! dist.webapp.jmx.browser=true ! dist.webapp.jndi.browser=true dist.library.adwt=true dist.library.common=true dist.library.j2ee.icons=true dist.library.jboss.provider=true + dist.library.taglib=true dist.library.xmlweb=true dist.thirdparty.jsr77=true *************** *** 70,73 **** --- 74,78 ---- javadoc.library.common=true javadoc.library.jboss.provider=true + javadoc.library.taglib=true javadoc.library.xmlweb=true javadoc.thirdparty.jsr77=true *************** *** 90,93 **** --- 95,99 ---- todo.library.common=true todo.library.jboss.provider=true + todo.library.taglib=true todo.library.xmlweb=true |