[jboss-cvs] JBossAS SVN: r61412 - branches/Branch_4_2/server/src/resources/dtd.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Mar 18 16:40:46 EDT 2007


Author: dimitris at jboss.org
Date: 2007-03-18 16:40:45 -0400 (Sun, 18 Mar 2007)
New Revision: 61412

Modified:
   branches/Branch_4_2/server/src/resources/dtd/jboss-app_4_2.dtd
Log:
remove weird control characters

Modified: branches/Branch_4_2/server/src/resources/dtd/jboss-app_4_2.dtd
===================================================================
--- branches/Branch_4_2/server/src/resources/dtd/jboss-app_4_2.dtd	2007-03-18 16:08:33 UTC (rev 61411)
+++ branches/Branch_4_2/server/src/resources/dtd/jboss-app_4_2.dtd	2007-03-18 20:40:45 UTC (rev 61412)
@@ -90,8 +90,8 @@
 <!ELEMENT jmx-name (#PCDATA)>
 
 <!-- An .ear file may contain a directory that contains libraries packaged in JAR files.
-The library-directory element of the .ear file’s deployment descriptor contains the name
-of this directory. If a library-directory element isn’t specified,
+The library-directory element of the .ear files deployment descriptor contains the name
+of this directory. If a library-directory element is not specified,
 the directory named lib is used.
 
 An empty library-directory element may be used to specify that there is no library directory.
@@ -105,7 +105,8 @@
 
 <!-- The module element is used to specify a jboss specific module archive.
 -->
-<!ELEMENT module (service | har)>
+<!ELEMENT module (service | har | web)>
+
 <!-- Allow the module to have a unique id -->
 <!ATTLIST module id ID #IMPLIED>
 
@@ -127,7 +128,35 @@
 -->
 <!ELEMENT har (#PCDATA)>
 
+<!-- The web element specifies a war
+
+Example:
+   <module>
+      <web>
+         <web-uri>myapp.war</web-uri>
+         <context-root>/myapp</context-root>
+      </web>
+   </module>
+-->
+<!ELEMENT web (web-uri, context-root)>
+
 <!--
+The web-uri element specifies the URI of a web application file,
+relative to the top level of the application package.
+
+Used in: web
+-->
+<!ELEMENT web-uri (#PCDATA)>
+
+<!-- The context-root element specifies the context root of a web
+application. This is normally specified at the ear level using the standard
+J2EE application.xml descriptor, but it may be given here for standalone wars.
+This should not override the application.xml level specification.
+Used in: web
+-->
+<!ELEMENT context-root (#PCDATA)>
+
+<!--
   The security-role element contains the definition of a security role.
   The definition consists of an the security role name and principal name element(s).
 




More information about the jboss-cvs-commits mailing list