[jboss-cvs] JBossAS SVN: r61413 - trunk/server/src/resources/dtd.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Mar 18 16:41:54 EDT 2007


Author: dimitris at jboss.org
Date: 2007-03-18 16:41:54 -0400 (Sun, 18 Mar 2007)
New Revision: 61413

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

Modified: trunk/server/src/resources/dtd/jboss-app_4_2.dtd
===================================================================
--- trunk/server/src/resources/dtd/jboss-app_4_2.dtd	2007-03-18 20:40:45 UTC (rev 61412)
+++ trunk/server/src/resources/dtd/jboss-app_4_2.dtd	2007-03-18 20:41:54 UTC (rev 61413)
@@ -1,6 +1,6 @@
 <?xml version='1.0' encoding='UTF-8' ?>
 
-<!-- The JBoss 4.x specific elements for ears.
+<!-- The JBoss 4.2.x specific elements for ears.
 $Id: jboss-app_4_0.dtd 56293 2006-08-26 12:42:15Z vicky.kak at jboss.com $
 
 DOCTYPE jboss-app
@@ -11,7 +11,7 @@
 <!-- The jboss-app element is the root element.
 -->
 <!ELEMENT jboss-app (module-order?,security-domain?, unauthenticated-principal?,
- loader-repository?, jmx-name?, module*, security-role*)>
+ loader-repository?, jmx-name?, library-directory?, module*, security-role*)>
 
 <!--
  The value of the module-order could be implicit or strict
@@ -89,9 +89,24 @@
 -->
 <!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 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.
+
+All files in this directory (but not subdirectories) with a .jar extension must be made available
+to all components packaged in the EAR file, including application clients.
+
+   Used in: jboss-app
+-->
+<!ELEMENT library-directory (#PCDATA)>
+
 <!-- 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>
 
@@ -113,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