ejtools-cvs Mailing List for EJTools (Page 96)
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-17 07:24:00
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/webapp/resources In directory usw-pr-cvs1:/tmp/cvs-serv12419/jmx.browser/src/webapp/resources Added Files: struts-template.tld web-app_2_2.dtd web-app_2_3.dtd Log Message: New directory structure --- 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: 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-role id ID #IMPLIED> <!ATTLIST security-role-ref id ID #IMPLIED> <!ATTLIST role-link id ID #IMPLIED> <!ATTLIST env-entry id ID #IMPLIED> <!ATTLIST env-entry-name id ID #IMPLIED> <!ATTLIST env-entry-value id ID #IMPLIED> <!ATTLIST env-entry-type id ID #IMPLIED> <!ATTLIST ejb-ref id ID #IMPLIED> <!ATTLIST ejb-ref-name id ID #IMPLIED> <!ATTLIST ejb-ref-type id ID #IMPLIED> <!ATTLIST home id ID #IMPLIED> <!ATTLIST remote id ID #IMPLIED> <!ATTLIST ejb-link id ID #IMPLIED> --- NEW FILE: web-app_2_3.dtd --- <!-- 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*, filter*, filter-mapping*, listener*, servlet*, servlet-mapping*, session-config?, mime-mapping*, welcome-file-list?, error-page*, taglib*, resource-env-ref*, resource-ref*, security-constraint*, login-config?, security-role*, env-entry*, ejb-ref*, ejb-local-ref*)> <!-- Declares a filter in the web application. The filter is mapped to either a servlet or a URL pattern in the filter-mapping element, using the filter-name value to reference. Filters can access the initialization parameters declared in the deployment descriptor at runtime via the FilterConfig interface. --> <!ELEMENT filter (icon?, filter-name, display-name?, description?, filter-class, init-param*)> <!-- The canonical name of the filter. This name is used to map the filter. Each filter name is unique within the web application. --> <!ELEMENT filter-name (#PCDATA)> <!-- The fully qualified classname of the filter. --> <!ELEMENT filter-class (#PCDATA)> <!-- Declaration of the filter mappings in this web application. The container uses the filter-mapping declarations to decide which filters to apply to a request, and in what order. The container matches the request URI to a Servlet in the normal way. To determine which filters to apply it matches filter-mapping declarations either on servlet-name, or on url-pattern for each filter-mapping element, depending on which style is used. The order in which filters are invoked is the order in which filter-mapping declarations that match a request URI for a servlet appear in the list of filter-mapping elements.The filter-name value must be the value of the <filter-name> sub-elements of one of the <filter> declarations in the deployment descriptor. --> <!ELEMENT filter-mapping (filter-name, (url-pattern | servlet-name))> <!-- The icon element contains small-icon and large-icon elements that specify the file names for small and a large GIF or JPEG icon images used to represent the parent element in a GUI tool. --> <!ELEMENT icon (small-icon?, large-icon?)> <!-- The small-icon element contains the name of a file containing a small (16 x 16) icon image. The file name is a path relative to the root of the WAR. The image may be either in the JPEG or GIF format. The icon can be used by tools. Example: <small-icon>/employee-service-icon16x16.jpg</small-icon> --> <!ELEMENT small-icon (#PCDATA)> <!-- The large-icon element contains the name of a file containing a large (32 x 32) icon image. The file name is a path relative to the root of the WAR. The image may be either in the JPEG or GIF format. The icon can be used by tools. Example: <large-icon>/employee-service-icon32x32.jpg</large-icon> --> <!ELEMENT large-icon (#PCDATA)> <!-- The display-name element contains a short name that is intended to be displayed by tools. The display name need not be unique. Example: <display-name>Employee Self Service</display-name> --> <!ELEMENT display-name (#PCDATA)> <!-- The description element is used to provide text describing the parent element. The description element should include any information that WAR producer wants to provide to the consumer of WAR (i.e., to the Deployer). Typically, the tools used by WAR consumer will display the description when processing the parent element that contains the description. --> <!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. Each parameter name must be unique in the web application. --> <!ELEMENT param-name (#PCDATA)> <!-- The param-value element contains the value of a parameter. --> <!ELEMENT param-value (#PCDATA)> <!-- The listener element indicates the deployment properties for a web application listener bean. --> <!ELEMENT listener (listener-class)> <!-- The listener-class element declares a class in the application must be registered as a web application listener bean. The value is the fully qualified classname of the listener class. --> <!ELEMENT listener-class (#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?, run-as?, security-role-ref*)> <!-- The servlet-name element contains the canonical name of the servlet. Each servlet name is unique within the web application. --> <!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 beginning with a `/'. --> <!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 (instantiated and have its init() called) on the startup of the web application. The optional contents of these element must be an integer indicating the order in which the servlet should be loaded. If the value is a negative integer, or the element is not present, the container is free to load the servlet whenever it chooses. If the value is a positive integer or 0, the container must load and initialize the servlet as the application is deployed. The container must guarantee that servlets marked with lower integers are loaded before servlets marked with higher integers. The container may choose the order of loading of servlets with the same load-on-start-up value. --> <!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 11.2 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. If the timeout is 0 or less, the container ensures the default behaviour of sessions is never to time out. --> <!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 relative to the root of the web application. The value of the location must have a leading `/'. --> <!ELEMENT location (#PCDATA)> <!-- The resource-env-ref element contains a declaration of a servlet's reference to an administered object associated with a resource in servlet's environment. It consists of an optional description, the resource environment reference name, and an indication of the resource environment reference type expected by servlet code. Example: <resource-env-ref> <resource-env-ref-name>jms/StockQueue</resource-env-ref-name> <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type> </resource-env-ref> --> <!ELEMENT resource-env-ref (description?, resource-env-ref-name, resource-env-ref-type)> <!-- The resource-env-ref-name element specifies the name of a resource environment reference; its value is the environment entry name used in servlet code. The name is a JNDI name relative to the java:comp/env context and must be unique within a web application. --> <!ELEMENT resource-env-ref-name (#PCDATA)> <!-- The resource-env-ref-type element specifies the type of a resource environment reference. It is the fully qualified name of a Java language class or interface. --> <!ELEMENT resource-env-ref-type (#PCDATA)> <!-- The resource-ref element contains a declaration of a servlet's reference to an external resource. It consists of an optional description, the resource manager connection factory reference name, the indication of the resource manager connection factory type expected by servlet code, the type of authentication (Application or Container), and an optional specification of the shareability of connections obtained from the resource (Shareable or Unshareable). %USED Example: <resource-ref> <res-ref-name>jdbc/EmployeeAppDB</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> <res-sharing-scope>Shareable</res-sharing-scope> </resource-ref> --> <!ELEMENT resource-ref (description?, res-ref-name, res-type, res-auth, res-sharing-scope?)> <!-- The res-ref-name element specifies the name of the resource factory reference name. --> <!ELEMENT res-ref-name (#PCDATA)> <!-- The res-ref-name element specifies the name of a resource manager connection factory reference. The name is a JNDI name relative to the java:comp/env context. The name must be unique within web application. --> <!ELEMENT res-type (#PCDATA)> <!-- The res-auth element specifies whether the servlet code signs on programmatically to the resource manager, or whether the Container will sign on to the resource manager on behalf of the servlet. In the latter case, the Container uses information that is supplied by the Deployer. The value of this element must be one of the two following: <res-auth>Application</res-auth> <res-auth>Container</res-auth> --> <!ELEMENT res-auth (#PCDATA)> <!-- The res-sharing-scope element specifies whether connections obtained through the given resource manager connection factory reference can be shared. The value of this element, if specified, must be one of the two following: <res-sharing-scope>Shareable</res-sharing-scope> <res-sharing-scope>Unshareable</res-sharing-scope> The default value is Shareable. --> <!ELEMENT res-sharing-scope (#PCDATA)> <!-- The security-constraint element is used to associate security constraints with one or more web resource collections --> <!ELEMENT security-constraint (display-name?, 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-name used here must either correspond to the role-name of one of the security-role elements defined for this web application, or be the specially reserved role-name "*" that is a compact syntax for indicating all roles in the web application. If both "*" and rolenames appear, the container interprets this as all roles. If no roles are defined, no user is allowed access to the portion of the web application described by the containing security-constraint. The container matches role names case sensitively when determining access. --> <!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. The path begins with a leading / and is interpreted relative to the root of the WAR. --> <!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. The path begins with a leading / and is interpreted relative to the root of the WAR. --> <!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 security-role-ref element defines a mapping between the name of role called from a Servlet using isUserInRole(String name) and the name of a security role defined for the web application. For example, to map the security role reference "FOO" to the security role with role-name "manager" the sytax would be: <security-role-ref> <role-name>FOO</role-name> <role-link>manager</manager> </security-role-ref> In this case if the servlet called by a user belonging to the "manager" security role made the API call isUserInRole("FOO") the result would be true. Since the role-name "*" has a special meaning for authorization constraints, its value is not permitted here. --> <!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 a web application's environment entry. The declaration consists of an optional description, the name of the environment entry, and an optional value. If a value is not specified, one must be supplied during deployment. --> <!ELEMENT env-entry (description?, env-entry-name, env-entry-value?, env-entry-type)> <!-- The env-entry-name element contains the name of a web applications's environment entry. The name is a JNDI name relative to the java:comp/env context. The name must be unique within a web application. Example: <env-entry-name>minAmount</env-entry-name> --> <!ELEMENT env-entry-name (#PCDATA)> <!-- The env-entry-value element contains the value of A_COMPONENT's environment entry. The value must be a String that is valid for the constructor of the specified type that takes a single String parameter, or for java.lang.Character, a single character. Example: <env-entry-value>100.00</env-entry-value> --> <!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_COMPONENT's code. The following are the legal values of env-entry-type: java.lang.Boolean java.lang.Byte java.lang.Character java.lang.String java.lang.Short java.lang.Integer java.lang.Long java.lang.Float java.lang.Double --> <!ELEMENT env-entry-type (#PCDATA)> <!-- The ejb-ref element is used for the declaration of a reference to an enterprise bean's home. The declaration consists of: - an optional description - the EJB reference name used in the code of the servlet that's referencing the enterprise bean - the expected type of the referenced enterprise bean - the expected home and remote interfaces of the referenced enterprise bean - optional ejb-link information, used to specify the referenced 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. The EJB reference is an entry in the servlet's environment and is relative to the java:comp/env context. The name must be unique within the web application. It is recommended that name is prefixed with "ejb/". Example: <ejb-ref-name>ejb/Payroll</ejb-ref-name> --> <!ELEMENT ejb-ref-name (#PCDATA)> <!-- The ejb-ref-type element contains the expected type of the referenced enterprise bean. The ejb-ref-type element must be one of the following: <ejb-ref-type>Entity</ejb-ref-type> <ejb-ref-type>Session</ejb-ref-type> --> <!ELEMENT ejb-ref-type (#PCDATA)> <!-- The home element contains the fully-qualified name of the enterprise bean's home interface. Example: <home>com.aardvark.payroll.PayrollHome</home> --> <!ELEMENT home (#PCDATA)> <!-- The remote element contains the fully-qualified name of the enterprise bean's remote interface. Example: <remote>com.wombat.empl.EmployeeService</remote> --> <!ELEMENT remote (#PCDATA)> <!-- The ejb-link element is used in the ejb-ref or ejb-local-ref elements to specify that an EJB reference is linked to another enterprise bean. The value of the ejb-link element must be the ejb-name of an enterprise bean in the same J2EE application unit. The name in the ejb-link element may be composed of a path name specifying the ejb-jar containing the referenced enterprise bean with the ejb-name of the target bean appended and separated from the path name by "#". The path name is relative to the WAR containing the web application that is referencing the enterprise bean. This allows multiple enterprise beans with the same ejb-name to be uniquely identified. Examples: <ejb-link>EmployeeRecord</ejb-link> <ejb-link>../products/product.jar#ProductEJB</ejb-link> --> <!ELEMENT ejb-link (#PCDATA)> <!-- The ejb-local-ref element is used for the declaration of a reference to an enterprise bean's local home. The declaration consists of: - an optional description - the EJB reference name used in the code of THE_COMPONENT that's referencing the enterprise bean - the expected type of the referenced enterprise bean - the expected local home and local interfaces of the referenced enterprise bean - optional ejb-link information, used to specify the referenced enterprise bean --> <!ELEMENT ejb-local-ref (description?, ejb-ref-name, ejb-ref-type, local-home, local, ejb-link?)> <!-- The local element contains the fully-qualified name of the enterprise bean's local interface. Used by ejb-local-ref --> <!ELEMENT local (#PCDATA)> <!-- The local-home element contains the fully-qualified name of the enterprise bean's local home interface. Used by ejb-local-ref --> <!ELEMENT local-home (#PCDATA)> <!-- The run-as element, if defined for a servlet, overrides the security identity used to call an EJB by that servlet in this web application. The role-name is one of the security roles already defined for this web application. Used by: <servlet> --> <!ELEMENT run-as (description?, role-name)> <!-- 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 filter id ID #IMPLIED> <!ATTLIST filter-name id ID #IMPLIED> <!ATTLIST filter-class id ID #IMPLIED> <!ATTLIST filter-mapping 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 listener id ID #IMPLIED> <!ATTLIST listener-class 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-env-ref id ID #IMPLIED> <!ATTLIST resource-env-ref-name id ID #IMPLIED> <!ATTLIST resource-env-ref-type 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 res-sharing-scope 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-role id ID #IMPLIED> <!ATTLIST security-role-ref id ID #IMPLIED> <!ATTLIST role-link id ID #IMPLIED> <!ATTLIST env-entry id ID #IMPLIED> <!ATTLIST env-entry-name id ID #IMPLIED> <!ATTLIST env-entry-value id ID #IMPLIED> <!ATTLIST env-entry-type id ID #IMPLIED> <!ATTLIST ejb-ref id ID #IMPLIED> <!ATTLIST ejb-ref-name id ID #IMPLIED> <!ATTLIST ejb-ref-type id ID #IMPLIED> <!ATTLIST home id ID #IMPLIED> <!ATTLIST remote id ID #IMPLIED> <!ATTLIST ejb-link id ID #IMPLIED> <!ATTLIST ejb-local-ref id ID #IMPLIED> <!ATTLIST local-home id ID #IMPLIED> <!ATTLIST local id ID #IMPLIED> <!ATTLIST run-as id ID #IMPLIED> |
From: Laurent E. <let...@us...> - 2002-05-17 07:23:53
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/webapp/resources In directory usw-pr-cvs1:/tmp/cvs-serv12396/applications/jmx.browser/src/webapp/resources Log Message: Directory /cvsroot/ejtools/applications/jmx.browser/src/webapp/resources added to the repository |
From: Laurent E. <let...@us...> - 2002-05-17 07:23:34
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/webapp In directory usw-pr-cvs1:/tmp/cvs-serv12340/jmx.browser/src/webapp Added Files: web.xml Log Message: New directory structure --- NEW FILE: web.xml --- (This appears to be a binary file; contents omitted.) |
From: Laurent E. <let...@us...> - 2002-05-17 07:23:15
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/webapp/content In directory usw-pr-cvs1:/tmp/cvs-serv12278/jmx.browser/src/webapp/content Modified Files: index.jsp Log Message: Remove the filter. Push tree in application. Index: index.jsp =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/webapp/content/index.jsp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.jsp 24 Apr 2002 20:01:50 -0000 1.1 --- index.jsp 17 May 2002 07:23:12 -0000 1.2 *************** *** 53,61 **** <table border="0" width="100%" cellspacing="0" cellpadding="3"> <tr> - <html:form action="/filter"> - <td align="left">Filter by object name: <html:text property="filter" size="20"/> - <input type="submit" value="Filter" class="button"/> - </td> - </html:form> <form action="/admin.do"> <td align="right"> --- 53,56 ---- |
From: Laurent E. <let...@us...> - 2002-05-17 07:21:56
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/taglib In directory usw-pr-cvs1:/tmp/cvs-serv12013/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/taglib Modified Files: ConnectTag.java Log Message: Remove the filter Index: ConnectTag.java =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/taglib/ConnectTag.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ConnectTag.java 15 May 2002 20:56:11 -0000 1.3 --- ConnectTag.java 17 May 2002 07:21:53 -0000 1.4 *************** *** 7,10 **** --- 7,11 ---- package net.sourceforge.ejtools.jmxbrowser.web.taglib; + import javax.servlet.ServletContext; import javax.servlet.http.HttpSession; import javax.servlet.jsp.JspException; *************** *** 38,45 **** boolean valid = false; ! HttpSession session = pageContext.getSession(); ! System.out.println("ConnectTag session " + session.getId()); ! if ((session != null) && (session.getAttribute(name) != null)) { valid = true; --- 39,45 ---- boolean valid = false; ! ServletContext context = pageContext.getServletContext(); ! if (context.getAttribute(name) != null) { valid = true; |
From: Laurent E. <let...@us...> - 2002-05-17 07:21:47
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/action In directory usw-pr-cvs1:/tmp/cvs-serv11980/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/action Modified Files: ConnectAction.java DetailAction.java Log Message: Remove the filter Index: ConnectAction.java =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/action/ConnectAction.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ConnectAction.java 15 May 2002 20:56:32 -0000 1.1 --- ConnectAction.java 17 May 2002 07:21:44 -0000 1.2 *************** *** 10,17 **** import java.util.Locale; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; - import javax.servlet.http.HttpSession; import net.sourceforge.ejtools.jmxbrowser.web.Constants; --- 10,17 ---- import java.util.Locale; + import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import net.sourceforge.ejtools.jmxbrowser.web.Constants; *************** *** 74,104 **** } ! HttpSession session = request.getSession(); ! tree = (JMXTree) session.getAttribute(Constants.TREE); ! ! System.out.println("perform session " + session.getId()); if (tree == null) { tree = new JMXTree(); ! session.setAttribute(Constants.TREE, tree); } tree.connect(); - // Remove the obsolete form bean - /* - * if (mapping.getAttribute() != null) - * { - * if ("request".equals(mapping.getScope())) - * { - * request.removeAttribute(mapping.getAttribute()); - * } - * else - * { - * session.removeAttribute(mapping.getAttribute()); - * } - * } - */ return (mapping.findForward("view")); } --- 74,88 ---- } ! ServletContext context = this.getServlet().getServletContext(); ! tree = (JMXTree) context.getAttribute(Constants.TREE); if (tree == null) { tree = new JMXTree(); ! context.setAttribute(Constants.TREE, tree); } tree.connect(); return (mapping.findForward("view")); } Index: DetailAction.java =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/action/DetailAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DetailAction.java 15 May 2002 20:56:32 -0000 1.3 --- DetailAction.java 17 May 2002 07:21:44 -0000 1.4 *************** *** 10,13 **** --- 10,14 ---- import java.util.Locale; + import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; *************** *** 70,86 **** System.out.println("REF " + ref); ! HttpSession session = request.getSession(); ! System.out.println("perform session " + session.getId()); ! System.out.println("Session " + session); ! JMXTree root = (JMXTree) session.getAttribute(Constants.TREE); ! System.out.println("Root " + root); ! Resource o = (Resource) root.searchObjectName(ref); if (o != null) { ! session.setAttribute(Constants.DETAIL, o); System.out.println("Object " + o); ! session.setAttribute(Constants.DETAIL_INFO, o.getMBeanInfo()); System.out.println("Object " + o.getMBeanInfo()); --- 71,85 ---- System.out.println("REF " + ref); ! ServletContext context = this.getServlet().getServletContext(); ! JMXTree tree = (JMXTree) context.getAttribute(Constants.TREE); ! System.out.println("Root " + tree); ! Resource o = (Resource) tree.searchObjectName(ref); if (o != null) { ! context.setAttribute(Constants.DETAIL, o); System.out.println("Object " + o); ! context.setAttribute(Constants.DETAIL_INFO, o.getMBeanInfo()); System.out.println("Object " + o.getMBeanInfo()); |
From: Laurent E. <let...@us...> - 2002-05-17 07:21:35
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/model In directory usw-pr-cvs1:/tmp/cvs-serv11940/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/model Modified Files: Server.java Log Message: Remove the filter Index: Server.java =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/model/Server.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Server.java 15 May 2002 20:56:51 -0000 1.4 --- Server.java 17 May 2002 07:21:30 -0000 1.5 *************** *** 37,42 **** protected String factory = "org.jnp.interfaces.NamingContextFactory"; /** Description of the Field */ - protected String filter = "*:*"; - /** Description of the Field */ protected Hashtable mbeans = new Hashtable(); /** Description of the Field */ --- 37,40 ---- *************** *** 91,95 **** // this.setCount(service.getMBeanCount().intValue()); ! Collection result = service.queryMBeans(new ObjectName(filter), null); int counter = result.size(); --- 89,93 ---- // this.setCount(service.getMBeanCount().intValue()); ! Collection result = service.queryMBeans(null, null); int counter = result.size(); |
From: Laurent E. <let...@us...> - 2002-05-16 19:38:03
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/help In directory usw-pr-cvs1:/tmp/cvs-serv29461/adwt/src/main/net/sourceforge/ejtools/awt/action/help Modified Files: AboutAction.java HelpOnLineAction.java TOTDAction.java Log Message: Nothing Index: AboutAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/help/AboutAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AboutAction.java 5 May 2002 20:09:56 -0000 1.3 --- AboutAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,22 **** * Regular "About" Action that provides : * <ul> ! * <li>- a "Help" menu if it doesn't exist ! * <li>- a "About" menu item ! * <li>- a "About" toolbar button * </ul> * * @author letiemble --- 15,23 ---- * Regular "About" Action that provides : * <ul> ! * <li> - a "Help" menu if it doesn't exist ! * <li> - a "About" menu item ! * <li> - a "About" toolbar button * </ul> + * * * @author letiemble Index: HelpOnLineAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/help/HelpOnLineAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** HelpOnLineAction.java 5 May 2002 20:09:56 -0000 1.3 --- HelpOnLineAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,21 **** * Regular "Help on line" Action that provides : * <ul> ! * <li>- a "Help" menu if it doesn't exist ! * <li>- a "Help on line" menu item * </ul> * * @author letiemble --- 15,22 ---- * Regular "Help on line" Action that provides : * <ul> ! * <li> - a "Help" menu if it doesn't exist ! * <li> - a "Help on line" menu item * </ul> + * * * @author letiemble Index: TOTDAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/help/TOTDAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TOTDAction.java 5 May 2002 20:09:56 -0000 1.3 --- TOTDAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,21 **** * Regular "Tip of the Day" Action that provides : * <ul> ! * <li>- a "Help" menu if it doesn't exist ! * <li>- a "Tip of the Day" menu item * </ul> * * @author letiemble --- 15,22 ---- * Regular "Tip of the Day" Action that provides : * <ul> ! * <li> - a "Help" menu if it doesn't exist ! * <li> - a "Tip of the Day" menu item * </ul> + * * * @author letiemble |
From: Laurent E. <let...@us...> - 2002-05-16 19:38:03
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit In directory usw-pr-cvs1:/tmp/cvs-serv29461/adwt/src/main/net/sourceforge/ejtools/awt/action/edit Modified Files: CopyAction.java CutAction.java DeleteSelectedAction.java DeselectAllAction.java PasteAction.java SelectAllAction.java Log Message: Nothing Index: CopyAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/CopyAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CopyAction.java 5 May 2002 20:09:56 -0000 1.3 --- CopyAction.java 16 May 2002 19:36:11 -0000 1.4 *************** *** 15,22 **** * Regular "Copy" Action that provides : * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "Copy" menu item ! * <li>- a "Copy" toolbar button * </ul> * * @author letiemble --- 15,23 ---- * Regular "Copy" Action that provides : * <ul> ! * <li> - a "Edit" menu if it doesn't exist ! * <li> - a "Copy" menu item ! * <li> - a "Copy" toolbar button * </ul> + * * * @author letiemble Index: CutAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/CutAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CutAction.java 5 May 2002 20:09:56 -0000 1.3 --- CutAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,22 **** * Regular "Cut" Action that provides : * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "Cut" menu item ! * <li>- a "Cut" toolbar button * </ul> * * @author letiemble --- 15,23 ---- * Regular "Cut" Action that provides : * <ul> ! * <li> - a "Edit" menu if it doesn't exist ! * <li> - a "Cut" menu item ! * <li> - a "Cut" toolbar button * </ul> + * * * @author letiemble Index: DeleteSelectedAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/DeleteSelectedAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DeleteSelectedAction.java 5 May 2002 20:09:56 -0000 1.3 --- DeleteSelectedAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,21 **** * Regular "DeleteSelected" Action that provides : * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "DeleteSelected" menu item * </ul> * * @author letiemble --- 15,22 ---- * Regular "DeleteSelected" Action that provides : * <ul> ! * <li> - a "Edit" menu if it doesn't exist ! * <li> - a "DeleteSelected" menu item * </ul> + * * * @author letiemble Index: DeselectAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/DeselectAllAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DeselectAllAction.java 5 May 2002 20:09:56 -0000 1.3 --- DeselectAllAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,21 **** * Regular "DeselectAll" Action that provides : * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "DeselectAll" menu item * </ul> * * @author letiemble --- 15,22 ---- * Regular "DeselectAll" Action that provides : * <ul> ! * <li> - a "Edit" menu if it doesn't exist ! * <li> - a "DeselectAll" menu item * </ul> + * * * @author letiemble Index: PasteAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/PasteAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PasteAction.java 5 May 2002 20:09:56 -0000 1.3 --- PasteAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,22 **** * Regular "Paste" Action that provides : * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "Paste" menu item ! * <li>- a "Paste" toolbar button * </ul> * * @author letiemble --- 15,23 ---- * Regular "Paste" Action that provides : * <ul> ! * <li> - a "Edit" menu if it doesn't exist ! * <li> - a "Paste" menu item ! * <li> - a "Paste" toolbar button * </ul> + * * * @author letiemble Index: SelectAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/SelectAllAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SelectAllAction.java 5 May 2002 20:09:56 -0000 1.3 --- SelectAllAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,21 **** * Regular "SelectAll" Action that provides : * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "SelectAll" menu item * </ul> * * @author letiemble --- 15,22 ---- * Regular "SelectAll" Action that provides : * <ul> ! * <li> - a "Edit" menu if it doesn't exist ! * <li> - a "SelectAll" menu item * </ul> + * * * @author letiemble |
From: Laurent E. <let...@us...> - 2002-05-16 19:38:03
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/file In directory usw-pr-cvs1:/tmp/cvs-serv29461/adwt/src/main/net/sourceforge/ejtools/awt/action/file Modified Files: ExitAction.java FileHistoryAction.java FileHistoryActionTop.java NewAction.java OpenAction.java PrintAction.java SaveAction.java SaveAsAction.java Log Message: Nothing Index: ExitAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/file/ExitAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ExitAction.java 5 May 2002 20:09:56 -0000 1.3 --- ExitAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 16,23 **** * Regular "Exit" Action that provides : * <ul> ! * <li>- a "File" menu if it doesn't exist ! * <li>- a "Exit" menu item ! * <li>- a separator before the menu item * </ul> * * @author letiemble --- 16,24 ---- * Regular "Exit" Action that provides : * <ul> ! * <li> - a "File" menu if it doesn't exist ! * <li> - a "Exit" menu item ! * <li> - a separator before the menu item * </ul> + * * * @author letiemble Index: FileHistoryAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/file/FileHistoryAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FileHistoryAction.java 5 May 2002 20:09:56 -0000 1.3 --- FileHistoryAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,21 **** * Regular spacer for file history that provides : * <ul> ! * <li>- a "File" menu if it doesn't exist ! * <li>- a "N/A" menu item replaced by the file in the history * </ul> * * @author letiemble --- 15,22 ---- * Regular spacer for file history that provides : * <ul> ! * <li> - a "File" menu if it doesn't exist ! * <li> - a "N/A" menu item replaced by the file in the history * </ul> + * * * @author letiemble Index: FileHistoryActionTop.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/file/FileHistoryActionTop.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FileHistoryActionTop.java 5 May 2002 20:09:56 -0000 1.3 --- FileHistoryActionTop.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 16,23 **** * Regular spacer for file history that provides : * <ul> ! * <li>- a "File" menu if it doesn't exist ! * <li>- a "N/A" menu item replaced by the file in the history ! * <li>- a separator before the menu item * </ul> * * @author letiemble --- 16,24 ---- * Regular spacer for file history that provides : * <ul> ! * <li> - a "File" menu if it doesn't exist ! * <li> - a "N/A" menu item replaced by the file in the history ! * <li> - a separator before the menu item * </ul> + * * * @author letiemble Index: NewAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/file/NewAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** NewAction.java 5 May 2002 20:09:56 -0000 1.3 --- NewAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,22 **** * Regular "New" Action that provides : * <ul> ! * <li>- a "File" menu if it doesn't exist ! * <li>- a "New" menu item ! * <li>- a "New" toolbar button * </ul> * * @author letiemble --- 15,23 ---- * Regular "New" Action that provides : * <ul> ! * <li> - a "File" menu if it doesn't exist ! * <li> - a "New" menu item ! * <li> - a "New" toolbar button * </ul> + * * * @author letiemble Index: OpenAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/file/OpenAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** OpenAction.java 5 May 2002 20:09:56 -0000 1.3 --- OpenAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,22 **** * Regular "Open" Action that provides : * <ul> ! * <li>- a "File" menu if it doesn't exist ! * <li>- a "Open" menu item ! * <li>- a "Open" toolbar button * </ul> * * @author letiemble --- 15,23 ---- * Regular "Open" Action that provides : * <ul> ! * <li> - a "File" menu if it doesn't exist ! * <li> - a "Open" menu item ! * <li> - a "Open" toolbar button * </ul> + * * * @author letiemble Index: PrintAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/file/PrintAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PrintAction.java 5 May 2002 20:09:56 -0000 1.3 --- PrintAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,22 **** * Regular "Print" Action that provides : * <ul> ! * <li>- a "File" menu if it doesn't exist ! * <li>- a "Print" menu item ! * <li>- a "Print" toolbar button * </ul> * * @author letiemble --- 15,23 ---- * Regular "Print" Action that provides : * <ul> ! * <li> - a "File" menu if it doesn't exist ! * <li> - a "Print" menu item ! * <li> - a "Print" toolbar button * </ul> + * * * @author letiemble Index: SaveAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/file/SaveAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SaveAction.java 5 May 2002 20:09:56 -0000 1.3 --- SaveAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,22 **** * Regular "Save" Action that provides : * <ul> ! * <li>- a "File" menu if it doesn't exist ! * <li>- a "Save" menu item ! * <li>- a "Save" toolbar button * </ul> * * @author letiemble --- 15,23 ---- * Regular "Save" Action that provides : * <ul> ! * <li> - a "File" menu if it doesn't exist ! * <li> - a "Save" menu item ! * <li> - a "Save" toolbar button * </ul> + * * * @author letiemble Index: SaveAsAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/file/SaveAsAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SaveAsAction.java 5 May 2002 20:09:56 -0000 1.3 --- SaveAsAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,21 **** * Regular "Save as" Action that provides : * <ul> ! * <li>- a "File" menu if it doesn't exist ! * <li>- a "Save as" menu item * </ul> * * @author letiemble --- 15,22 ---- * Regular "Save as" Action that provides : * <ul> ! * <li> - a "File" menu if it doesn't exist ! * <li> - a "Save as" menu item * </ul> + * * * @author letiemble |
From: Laurent E. <let...@us...> - 2002-05-16 19:38:03
|
Update of /cvsroot/ejtools/libraries/adwt In directory usw-pr-cvs1:/tmp/cvs-serv29461/adwt Modified Files: module.properties Log Message: Nothing Index: module.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/module.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** module.properties 30 Apr 2002 21:09:17 -0000 1.2 --- module.properties 16 May 2002 19:36:11 -0000 1.3 *************** *** 1,17 **** ! # ! # Module Properties ! # ! # $Revision$ ! # ! version.major=1 ! version.minor=0 ! version.revision=0 ! version.tag=alpha ! ! module.name=adwt ! module.display.name=AdWT ! module.archive.name=ejtools.adwt ! module.package=net.sourceforge.ejtools.* ! ! module.javadoc.title=EJTools - ADvanced Window Tools ! --- 1,17 ---- ! # ! # Module Properties ! # ! # $Revision$ ! # ! version.major=1 ! version.minor=0 ! version.revision=0 ! version.tag=alpha ! ! module.name=adwt ! module.display.name=AdWT ! module.archive.name=ejtools.adwt ! module.package=net.sourceforge.ejtools ! ! module.javadoc.title=EJTools - ADvanced Window Tools ! |
From: Laurent E. <let...@us...> - 2002-05-16 19:38:02
|
Update of /cvsroot/ejtools/libraries/adwt/src/resources In directory usw-pr-cvs1:/tmp/cvs-serv29461/adwt/src/resources Modified Files: action.properties action_fr_FR.properties Log Message: Nothing Index: action.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/action.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** action.properties 24 Apr 2002 19:54:58 -0000 1.2 --- action.properties 16 May 2002 19:36:13 -0000 1.3 *************** *** 1,66 **** ! # Actions ! action.file=File ! action.file.mnemonic=70 ! ! action.edit=Edit ! action.edit.mnemonic=69 ! ! action.tools=Tools ! action.tools.mnemonic=78 ! ! action.options=Options ! action.options.mnemonic=79 ! ! action.help=Help ! action.help.mnemonic=72 ! ! action.window=Window ! action.window.mnemonic=78 ! ! ! # Actions ! action.file.new=New ! action.file.new.mnemonic=78 ! action.file.new.accelerator=control N ! ! action.file.open=Open ! action.file.open.mnemonic=79 ! action.file.open.accelerator=control O ! ! action.file.save=Save ! action.file.save.mnemonic=83 ! action.file.save.accelerator=control S ! ! action.file.save.as=Save As... ! ! action.file.exit=Quit ! action.file.exit.mnemonic=81 ! action.file.exit.accelerator=control Q ! ! action.file.history=... ! ! action.edit.cut=Cut ! ! action.edit.copy=Copy ! ! action.edit.paste=Paste ! ! action.edit.delete=Delete ! ! action.edit.delete.selected=Delete Selected ! ! action.edit.select.all=Select All ! ! action.edit.deselect.all=Deselect All ! ! action.window.cascade=Cascade ! ! action.window.tile=Pavé ! ! action.window.close=Fermer ! ! action.window.close.all=Fermer Tout ! ! action.window.frame=... ! ! action.help.about=A Propos --- 1,66 ---- ! # Actions ! action.file=File ! action.file.mnemonic=70 ! ! action.edit=Edit ! action.edit.mnemonic=69 ! ! action.tools=Tools ! action.tools.mnemonic=78 ! ! action.options=Options ! action.options.mnemonic=79 ! ! action.help=Help ! action.help.mnemonic=72 ! ! action.window=Window ! action.window.mnemonic=78 ! ! ! # Actions ! action.file.new=New ! action.file.new.mnemonic=78 ! action.file.new.accelerator=control N ! ! action.file.open=Open ! action.file.open.mnemonic=79 ! action.file.open.accelerator=control O ! ! action.file.save=Save ! action.file.save.mnemonic=83 ! action.file.save.accelerator=control S ! ! action.file.save.as=Save As... ! ! action.file.exit=Quit ! action.file.exit.mnemonic=81 ! action.file.exit.accelerator=control Q ! ! action.file.history=... ! ! action.edit.cut=Cut ! ! action.edit.copy=Copy ! ! action.edit.paste=Paste ! ! action.edit.delete=Delete ! ! action.edit.delete.selected=Delete Selected ! ! action.edit.select.all=Select All ! ! action.edit.deselect.all=Deselect All ! ! action.window.cascade=Cascade ! ! action.window.tile=Pavé ! ! action.window.close=Fermer ! ! action.window.close.all=Fermer Tout ! ! action.window.frame=... ! ! action.help.about=A Propos Index: action_fr_FR.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/action_fr_FR.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** action_fr_FR.properties 18 Apr 2002 21:10:30 -0000 1.1 --- action_fr_FR.properties 16 May 2002 19:36:13 -0000 1.2 *************** *** 1,66 **** ! # Actions ! action.file=Fichier ! action.file.mnemonic=70 ! ! action.edit=Edition ! action.edit.mnemonic=69 ! ! action.tools=Outils ! action.tools.mnemonic=78 ! ! action.options=Options ! action.options.mnemonic=79 ! ! action.help=Aide ! action.help.mnemonic=65 ! ! action.window=Fenêtres ! action.window.mnemonic=78 ! ! ! # Actions ! action.file.new=Nouveau ! action.file.new.mnemonic=78 ! action.file.new.accelerator=control N ! ! action.file.open=Ouvrir ! action.file.open.mnemonic=79 ! action.file.open.accelerator=control O ! ! action.file.save=Sauver ! action.file.save.mnemonic=83 ! action.file.save.accelerator=control S ! ! action.file.save.as=Sauver Sous... ! ! action.file.exit=Quitter ! action.file.exit.mnemonic=81 ! action.file.exit.accelerator=control Q ! ! action.file.history=... ! ! action.edit.cut=Cut ! ! action.edit.copy=Copy ! ! action.edit.paste=Paste ! ! action.edit.delete=Delete ! ! action.edit.delete.selected=Delete Selected ! ! action.edit.select.all=Select All ! ! action.edit.deselect.all=Deselect All ! ! action.window.cascade=Cascade ! ! action.window.tile=Pavé ! ! action.window.close=Fermer ! ! action.window.close.all=Fermer Tout ! ! action.window.frame=... ! ! action.help.about=A Propos --- 1,66 ---- ! # Actions ! action.file=Fichier ! action.file.mnemonic=70 ! ! action.edit=Edition ! action.edit.mnemonic=69 ! ! action.tools=Outils ! action.tools.mnemonic=78 ! ! action.options=Options ! action.options.mnemonic=79 ! ! action.help=Aide ! action.help.mnemonic=65 ! ! action.window=Fenêtres ! action.window.mnemonic=78 ! ! ! # Actions ! action.file.new=Nouveau ! action.file.new.mnemonic=78 ! action.file.new.accelerator=control N ! ! action.file.open=Ouvrir ! action.file.open.mnemonic=79 ! action.file.open.accelerator=control O ! ! action.file.save=Sauver ! action.file.save.mnemonic=83 ! action.file.save.accelerator=control S ! ! action.file.save.as=Sauver Sous... ! ! action.file.exit=Quitter ! action.file.exit.mnemonic=81 ! action.file.exit.accelerator=control Q ! ! action.file.history=... ! ! action.edit.cut=Cut ! ! action.edit.copy=Copy ! ! action.edit.paste=Paste ! ! action.edit.delete=Delete ! ! action.edit.delete.selected=Delete Selected ! ! action.edit.select.all=Select All ! ! action.edit.deselect.all=Deselect All ! ! action.window.cascade=Cascade ! ! action.window.tile=Pavé ! ! action.window.close=Fermer ! ! action.window.close.all=Fermer Tout ! ! action.window.frame=... ! ! action.help.about=A Propos |
From: Laurent E. <let...@us...> - 2002-05-16 19:38:02
|
Update of /cvsroot/ejtools/libraries/adwt/src/etc In directory usw-pr-cvs1:/tmp/cvs-serv29461/adwt/src/etc Modified Files: default.mf Log Message: Nothing Index: default.mf =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/etc/default.mf,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** default.mf 18 Apr 2002 21:10:30 -0000 1.1 --- default.mf 16 May 2002 19:36:11 -0000 1.2 *************** *** 1,6 **** ! Specification-Title: @module.name@ @version.major@.@version.minor@.@version.revision@-@version.tag@ ! Specification-Version: @version.major@.@version.minor@.@version.revision@-@version.tag@ ! Specification-Vendor: EJTools Project ! Implementation-Title: @module.name@ @version.major@.@version.minor@.@version.revision@-@version.tag@ ! Implementation-Version: @version.major@.@version.minor@.@version.revision@-@version.tag@ ! Implementation-Vendor: EJTools Project --- 1,6 ---- ! Specification-Title: @module.name@ @version.major@.@version.minor@.@version.revision@-@version.tag@ ! Specification-Version: @version.major@.@version.minor@.@version.revision@-@version.tag@ ! Specification-Vendor: EJTools Project ! Implementation-Title: @module.name@ @version.major@.@version.minor@.@version.revision@-@version.tag@ ! Implementation-Version: @version.major@.@version.minor@.@version.revision@-@version.tag@ ! Implementation-Vendor: EJTools Project |
Update of /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window In directory usw-pr-cvs1:/tmp/cvs-serv29461/adwt/src/main/net/sourceforge/ejtools/awt/action/window Modified Files: CascadeAction.java CloseAction.java CloseAllAction.java InternalFrameAction.java TileAction.java Log Message: Nothing Index: CascadeAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window/CascadeAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CascadeAction.java 5 May 2002 20:09:56 -0000 1.3 --- CascadeAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,21 **** * Regular "Cascade windows" Action that provides : * <ul> ! * <li>- a "Windows" menu if it doesn't exist ! * <li>- a "Cascade windows" menu item * </ul> * * @author letiemble --- 15,22 ---- * Regular "Cascade windows" Action that provides : * <ul> ! * <li> - a "Windows" menu if it doesn't exist ! * <li> - a "Cascade windows" menu item * </ul> + * * * @author letiemble Index: CloseAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window/CloseAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CloseAction.java 5 May 2002 20:09:56 -0000 1.3 --- CloseAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,21 **** * Regular "Close active window" Action that provides : * <ul> ! * <li>- a "Windows" menu if it doesn't exist ! * <li>- a "Close active window" menu item * </ul> * * @author letiemble --- 15,22 ---- * Regular "Close active window" Action that provides : * <ul> ! * <li> - a "Windows" menu if it doesn't exist ! * <li> - a "Close active window" menu item * </ul> + * * * @author letiemble Index: CloseAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window/CloseAllAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CloseAllAction.java 5 May 2002 20:09:56 -0000 1.3 --- CloseAllAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 16,22 **** * Regular "Close all windows" Action that provides : * <ul> ! * <li>- a "Windows" menu if it doesn't exist ! * <li>- a "Close all windows" menu item * </ul> * * @author letiemble --- 16,23 ---- * Regular "Close all windows" Action that provides : * <ul> ! * <li> - a "Windows" menu if it doesn't exist ! * <li> - a "Close all windows" menu item * </ul> + * * * @author letiemble Index: InternalFrameAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window/InternalFrameAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** InternalFrameAction.java 5 May 2002 20:09:56 -0000 1.3 --- InternalFrameAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 18,24 **** * Regular spacer for the title of a window that provides : * <ul> ! * <li>- a "Windows" menu if it doesn't exist ! * <li>- a "N/A" menu item replaced by the title of the window * </ul> * * @author letiemble --- 18,25 ---- * Regular spacer for the title of a window that provides : * <ul> ! * <li> - a "Windows" menu if it doesn't exist ! * <li> - a "N/A" menu item replaced by the title of the window * </ul> + * * * @author letiemble Index: TileAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window/TileAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TileAction.java 5 May 2002 20:09:56 -0000 1.3 --- TileAction.java 16 May 2002 19:36:12 -0000 1.4 *************** *** 15,21 **** * Regular "Tile windows" Action that provides : * <ul> ! * <li>- a "Windows" menu if it doesn't exist ! * <li>- a "Tile windows" menu item * </ul> * * @author letiemble --- 15,22 ---- * Regular "Tile windows" Action that provides : * <ul> ! * <li> - a "Windows" menu if it doesn't exist ! * <li> - a "Tile windows" menu item * </ul> + * * * @author letiemble |
From: Laurent E. <let...@us...> - 2002-05-16 19:37:03
|
Update of /cvsroot/ejtools/libraries/common In directory usw-pr-cvs1:/tmp/cvs-serv30280/common Modified Files: module.properties Log Message: Modify package Index: module.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/common/module.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** module.properties 12 May 2002 16:30:36 -0000 1.3 --- module.properties 16 May 2002 19:36:59 -0000 1.4 *************** *** 12,16 **** module.display.name=Common Library module.archive.name=ejtools.common ! module.package=net.sourceforge.ejtools.* module.javadoc.title=EJTools - Common Library --- 12,16 ---- module.display.name=Common Library module.archive.name=ejtools.common ! module.package=net.sourceforge.ejtools module.javadoc.title=EJTools - Common Library |
From: Laurent E. <let...@us...> - 2002-05-16 07:16:28
|
Update of /cvsroot/ejtools/applications/deployment/src/main/net/sourceforge/ejtools/deploy In directory usw-pr-cvs1:/tmp/cvs-serv18802/applications/deployment/src/main/net/sourceforge/ejtools/deploy Modified Files: DeploymentBrowser.java Main.java Log Message: Build ok under Unix Index: DeploymentBrowser.java =================================================================== RCS file: /cvsroot/ejtools/applications/deployment/src/main/net/sourceforge/ejtools/deploy/DeploymentBrowser.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DeploymentBrowser.java 30 Apr 2002 21:10:08 -0000 1.4 --- DeploymentBrowser.java 16 May 2002 07:16:25 -0000 1.5 *************** *** 30,34 **** import net.sourceforge.ejtools.awt.services.StatusBarServiceProvider; import net.sourceforge.ejtools.awt.services.ToolBarServiceProvider; - import net.sourceforge.ejtools.deploy.model.*; import net.sourceforge.ejtools.deploy.factories.*; import org.apache.log4j.Category; --- 30,33 ---- Index: Main.java =================================================================== RCS file: /cvsroot/ejtools/applications/deployment/src/main/net/sourceforge/ejtools/deploy/Main.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Main.java 28 Apr 2002 10:21:49 -0000 1.2 --- Main.java 16 May 2002 07:16:25 -0000 1.3 *************** *** 15,19 **** import java.security.PrivilegedExceptionAction; import java.util.LinkedList; - import net.sourceforge.ejtools.deploy.model.*; /** --- 15,18 ---- |
From: Laurent E. <let...@us...> - 2002-05-16 07:16:15
|
Update of /cvsroot/ejtools/build In directory usw-pr-cvs1:/tmp/cvs-serv18747/build Modified Files: build.sh build_application.xml switch.properties Log Message: Build ok under Unix Index: build.sh =================================================================== RCS file: /cvsroot/ejtools/build/build.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.sh 15 May 2002 07:30:29 -0000 1.4 --- build.sh 16 May 2002 07:16:11 -0000 1.5 *************** *** 1,35 **** ! #!/bin/sh ! ! # **************************************** ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at gnu.org. ! # ! # $Revision$ ! # **************************************** ! ! # **************************************** ! # Convenience bat file to build with ! # **************************************** ! ! THIRDPARTY=./thirdparty ! CP=. ! ! CP=$CP:$THIRDPARTY/apache/ant/ant.jar ! CP=$CP:$THIRDPARTY/apache/ant/optional.jar.jar ! CP=$CP:$THIRDPARTY/apache/crimson/crimson.jar ! CP=$CP:$THIRDPARTY/apache/log4j/log4j.jar ! ! CP=$CP:$THIRDPARTY/sun/jaxp/jaxp.jar ! CP=$CP:$THIRDPARTY/sun/jaxp/xml.jar ! CP=$CP:$THIRDPARTY/sun/tools/tools.jar ! ! CP=$CP:$THIRDPARTY/dreambean/codegen/ ! CP=$CP:$THIRDPARTY/dreambean/codegen/codegen.jar ! CP=$CP:$THIRDPARTY/dreambean/xmlbeans/ ! CP=$CP:$THIRDPARTY/dreambean/xmlbeans/xmlbeans.jar ! ! CP=$CP:$THIRDPARTY/sourceforge/xdoclet/xdoclet.jar ! ! java -classpath "$CP" org.apache.tools.ant.Main $1 $2 $3 $4 $5 --- 1,35 ---- ! #!/bin/sh ! ! # **************************************** ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at gnu.org. ! # ! # $Revision$ ! # **************************************** ! ! # **************************************** ! # Convenience bat file to build with ! # **************************************** ! ! THIRDPARTY=../thirdparty ! CP=. ! ! CP=$CP:$THIRDPARTY/apache/ant/ant.jar ! CP=$CP:$THIRDPARTY/apache/ant/optional.jar.jar ! CP=$CP:$THIRDPARTY/apache/crimson/crimson.jar ! CP=$CP:$THIRDPARTY/apache/log4j/log4j.jar ! ! CP=$CP:$THIRDPARTY/sun/jaxp/jaxp.jar ! CP=$CP:$THIRDPARTY/sun/jaxp/xml.jar ! CP=$CP:$THIRDPARTY/sun/tools/tools.jar ! ! CP=$CP:$THIRDPARTY/dreambean/codegen/ ! CP=$CP:$THIRDPARTY/dreambean/codegen/codegen.jar ! CP=$CP:$THIRDPARTY/dreambean/xmlbeans/ ! CP=$CP:$THIRDPARTY/dreambean/xmlbeans/xmlbeans.jar ! ! CP=$CP:$THIRDPARTY/sourceforge/xdoclet/xdoclet.jar ! ! java -classpath "$CP" org.apache.tools.ant.Main $1 $2 $3 $4 $5 Index: build_application.xml =================================================================== RCS file: /cvsroot/ejtools/build/build_application.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** build_application.xml 15 May 2002 17:48:18 -0000 1.9 --- build_application.xml 16 May 2002 07:16:12 -0000 1.10 *************** *** 55,59 **** --- 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"/> Index: switch.properties =================================================================== RCS file: /cvsroot/ejtools/build/switch.properties,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** switch.properties 15 May 2002 20:42:36 -0000 1.7 --- switch.properties 16 May 2002 07:16:12 -0000 1.8 *************** *** 19,22 **** --- 19,24 ---- 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 *************** *** 33,36 **** --- 35,40 ---- 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 *************** *** 47,51 **** dist.application.jndi.browser=true dist.application.management=true ! dist.webapp.jmx.browser=true #dist.webapp.jndi.browser=true dist.library.adwt=true --- 51,55 ---- dist.application.jndi.browser=true dist.application.management=true ! #dist.webapp.jmx.browser=true #dist.webapp.jndi.browser=true dist.library.adwt=true *************** *** 94,97 **** #package.application.jndi.browser=true #package.application.management=true ! package.webapp.jmx.browser=true #package.webapp.jndi.browser=true --- 98,101 ---- #package.application.jndi.browser=true #package.application.management=true ! #package.webapp.jmx.browser=true #package.webapp.jndi.browser=true |
From: Laurent E. <let...@us...> - 2002-05-15 20:58:38
|
Update of /cvsroot/ejtools/applications/jmx.browser In directory usw-pr-cvs1:/tmp/cvs-serv11220/jmx.browser Modified Files: lib.ext.properties lib.properties module.properties webapp.properties Log Message: Correct CR/LF Index: lib.ext.properties =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/lib.ext.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lib.ext.properties 30 Apr 2002 21:14:29 -0000 1.2 --- lib.ext.properties 15 May 2002 20:58:35 -0000 1.3 *************** *** 1,7 **** ! # ! # Librairies to be put into the lib/ext directory ! # ! # $Revision$ ! # ! ${jboss.client.root}/*.jar ! ${jboss.jmx.root}/*.jar --- 1,7 ---- ! # ! # Librairies to be put into the lib/ext directory ! # ! # $Revision$ ! # ! ${jboss.client.root}/*.jar ! ${jboss.jmx.root}/*.jar Index: lib.properties =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/lib.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lib.properties 30 Apr 2002 21:14:29 -0000 1.2 --- lib.properties 15 May 2002 20:58:35 -0000 1.3 *************** *** 1,17 **** ! # ! # Librairies to be put into the lib directory ! # ! # $Revision$ ! # ! ${apache.log4j.root}/*.jar ! ${dreambean.awt.root}/*.jar ! ${ejtools.adwt.root}/*.jar ! ${ejtools.common.root}/*.jar ! ${ejtools.icons.root}/*.jar ! ${jboss.client.root}/*.jar ! ${jboss.jmx.root}/*.jar ! ${sun.j2ee.root}/*.jar ! ${sun.jaxp.root}/*.jar ! #${sun.jmx.root}/*.jar ! ${sun.jndi.root}/*.jar ! ${sun.swing.root}/*.jar --- 1,17 ---- ! # ! # Librairies to be put into the lib directory ! # ! # $Revision$ ! # ! ${apache.log4j.root}/*.jar ! ${dreambean.awt.root}/*.jar ! ${ejtools.adwt.root}/*.jar ! ${ejtools.common.root}/*.jar ! ${ejtools.icons.root}/*.jar ! ${jboss.client.root}/*.jar ! ${jboss.jmx.root}/*.jar ! ${sun.j2ee.root}/*.jar ! ${sun.jaxp.root}/*.jar ! #${sun.jmx.root}/*.jar ! ${sun.jndi.root}/*.jar ! ${sun.swing.root}/*.jar Index: module.properties =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/module.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** module.properties 30 Apr 2002 21:14:29 -0000 1.2 --- module.properties 15 May 2002 20:58:35 -0000 1.3 *************** *** 1,17 **** ! # ! # Module Properties ! # ! # $Revision$ ! # ! version.major=1 ! version.minor=0 ! version.revision=0 ! version.tag=alpha ! ! module.name=jmx.browser ! module.display.name=JMX Browser ! module.archive.name=ejtools.jmx.browser ! module.package=net.sourceforge.ejtools.jmxbrowser.* ! module.starter=net/sourceforge/ejtools/jmxbrowser/Main ! ! module.javadoc.title=EJTools - JMX Browser --- 1,17 ---- ! # ! # Module Properties ! # ! # $Revision$ ! # ! version.major=1 ! version.minor=0 ! version.revision=0 ! version.tag=alpha ! ! module.name=jmx.browser ! module.display.name=JMX Browser ! module.archive.name=ejtools.jmx.browser ! module.package=net.sourceforge.ejtools.jmxbrowser ! module.starter=net/sourceforge/ejtools/jmxbrowser/Main ! ! module.javadoc.title=EJTools - JMX Browser Index: webapp.properties =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/webapp.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** webapp.properties 30 Apr 2002 21:14:29 -0000 1.3 --- webapp.properties 15 May 2002 20:58:35 -0000 1.4 *************** *** 1,9 **** ! # ! # Librairies to be put into the WEB-INF/lib directory ! # ! # $Revision$ ! # ! ${apache.log4j.root}/*.jar ! ${apache.struts.root}/*.jar ! ${apache.taglibs.root}/*.jar ! ${ejtools.common.root}/*.jar --- 1,9 ---- ! # ! # Librairies to be put into the WEB-INF/lib directory ! # ! # $Revision$ ! # ! ${apache.log4j.root}/*.jar ! ${apache.struts.root}/*.jar ! ${apache.taglibs.root}/*.jar ! ${ejtools.common.root}/*.jar |
From: Laurent E. <let...@us...> - 2002-05-15 20:58:12
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/resources/net/sourceforge/ejtools/jmxbrowser/model In directory usw-pr-cvs1:/tmp/cvs-serv11073/jmx.browser/src/resources/net/sourceforge/ejtools/jmxbrowser/model Added Files: DomainBeanInfo.properties ResourceBeanInfo.properties ServerBeanInfo.properties Log Message: Add some translations --- NEW FILE: DomainBeanInfo.properties --- bean.displayname=JMX Domain property.name.displayname=Name --- NEW FILE: ResourceBeanInfo.properties --- bean.displayname=JMX Resource property.name.displayname=Name property.className.displayname=Class property.domain.displayname=Domain property.description.displayname=Description --- NEW FILE: ServerBeanInfo.properties --- bean.displayname=JMX Server property.factory.displayname=Class Factory property.packages.displayname=Packages property.url.displayname=URL property.context.displayname=Hostname method.connect.displayname=Connect |
From: Laurent E. <let...@us...> - 2002-05-15 20:58:12
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/resources In directory usw-pr-cvs1:/tmp/cvs-serv11073/jmx.browser/src/resources Modified Files: ApplicationResources.properties Added Files: MBeanAttributeInfoAccess.properties MBeanAttributeInfoAccess_fr_FR.properties Log Message: Add some translations --- NEW FILE: MBeanAttributeInfoAccess.properties --- access.ro=Read Only access.rw=Read/Write access.wo=Write Only --- NEW FILE: MBeanAttributeInfoAccess_fr_FR.properties --- access.ro=Lecture Seule access.rw=Lecture/Ecriture access.wo=Ecriture Seule Index: ApplicationResources.properties =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/resources/ApplicationResources.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ApplicationResources.properties 24 Apr 2002 20:00:47 -0000 1.1 --- ApplicationResources.properties 15 May 2002 20:58:09 -0000 1.2 *************** *** 1,24 **** ! action.next=Next ! action.previous=Previous ! action.back=Back ! ! button.search=Search ! button.reset=Reset ! ! errors.footer=</ul> ! errors.header=Messages :<ul> ! ! error.factory.required=<li>Factory is required</li> ! error.packages.required=<li>Packages is required</li> ! error.url.required=<li>URL is required</li> ! error.mejb.required=<li>JNDI Name is required</li> ! error.cannot.connect=<li>Cannot connect to the server</li> ! ! title.index=MIB Starter Application ! title.connect.mejb=MIB Login Search ! ! prompt.factory=Factory : ! prompt.packages=Packages : ! prompt.url=URL : ! prompt.mejb=JNDI Name : ! --- 1,24 ---- ! action.next=Next ! action.previous=Previous ! action.back=Back ! ! button.search=Search ! button.reset=Reset ! ! errors.footer=</ul> ! errors.header=Messages :<ul> ! ! error.factory.required=<li>Factory is required</li> ! error.packages.required=<li>Packages is required</li> ! error.url.required=<li>URL is required</li> ! error.mejb.required=<li>JNDI Name is required</li> ! error.cannot.connect=<li>Cannot connect to the server</li> ! ! title.index=MIB Starter Application ! title.connect.mejb=MIB Login Search ! ! prompt.factory=Factory : ! prompt.packages=Packages : ! prompt.url=URL : ! prompt.mejb=JNDI Name : ! |
From: Laurent E. <let...@us...> - 2002-05-15 20:58:07
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/resources/net/sourceforge/ejtools/jmxbrowser/model In directory usw-pr-cvs1:/tmp/cvs-serv11003/applications/jmx.browser/src/resources/net/sourceforge/ejtools/jmxbrowser/model Log Message: Directory /cvsroot/ejtools/applications/jmx.browser/src/resources/net/sourceforge/ejtools/jmxbrowser/model added to the repository |
From: Laurent E. <let...@us...> - 2002-05-15 20:58:07
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/resources/net/sourceforge/ejtools/jmxbrowser In directory usw-pr-cvs1:/tmp/cvs-serv11003/applications/jmx.browser/src/resources/net/sourceforge/ejtools/jmxbrowser Log Message: Directory /cvsroot/ejtools/applications/jmx.browser/src/resources/net/sourceforge/ejtools/jmxbrowser added to the repository |
From: Laurent E. <let...@us...> - 2002-05-15 20:58:07
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/resources/net/sourceforge/ejtools In directory usw-pr-cvs1:/tmp/cvs-serv11003/applications/jmx.browser/src/resources/net/sourceforge/ejtools Log Message: Directory /cvsroot/ejtools/applications/jmx.browser/src/resources/net/sourceforge/ejtools added to the repository |
From: Laurent E. <let...@us...> - 2002-05-15 20:58:07
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/resources/net/sourceforge In directory usw-pr-cvs1:/tmp/cvs-serv11003/applications/jmx.browser/src/resources/net/sourceforge Log Message: Directory /cvsroot/ejtools/applications/jmx.browser/src/resources/net/sourceforge added to the repository |
From: Laurent E. <let...@us...> - 2002-05-15 20:58:07
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/resources/net In directory usw-pr-cvs1:/tmp/cvs-serv11003/applications/jmx.browser/src/resources/net Log Message: Directory /cvsroot/ejtools/applications/jmx.browser/src/resources/net added to the repository |