tiles-config_1_1.dtd
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:12k
源码类别:

Java编程

开发平台:

Java

  1. <!--
  2.      DTD for the Tile Definition File, Version 1.1
  3.      To support validation of your configuration file, include the following
  4.      DOCTYPE element at the beginning (after the "xml" declaration):
  5.      <!DOCTYPE tiles-definitions PUBLIC
  6.        "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
  7.        "http://struts.apache.org/dtds/tiles-config_1_1.dtd">
  8.      $Id: tiles-config_1_1.dtd 51703 2004-09-01 10:41:11Z niallp $
  9. -->
  10. <!-- ========== Defined Types ============================================= -->
  11. <!-- A "Boolean" is the string representation of a boolean (true or false)
  12.      variable.
  13. -->
  14. <!ENTITY % Boolean "(true|false)">
  15. <!-- A "ContentType" is the content type of an attribute passed to a tile
  16.      component.
  17. -->
  18. <!ENTITY % ContentType "(string|page|template|definition)">
  19. <!-- A "ClassName" is the fully qualified name of a Java class that is
  20.      instantiated to provide the functionality of the enclosing element.
  21. -->
  22. <!ENTITY % ClassName "CDATA">
  23. <!-- A "RequestPath" is an module-relative URI path, beginning with a
  24.      slash, that identifies a mapped resource (such as a JSP page or a servlet)
  25.      within this web application.
  26. -->
  27. <!ENTITY % RequestPath "CDATA">
  28. <!-- A "DefinitionName" is the unique identifier of a definition. This identifier
  29.      is a logical name used to reference the definition.
  30. -->
  31. <!ENTITY % DefinitionName "CDATA">
  32. <!-- A "BeanName" is the identifier of a JavaBean, such as a form bean,
  33.      and also serves as the name of the corresponding scripting variable
  34.      and the name of the JSP attribute under which the bean is accessed.
  35.      Therefore, it must conform to the rules for a Java identifier.
  36. -->
  37. <!ENTITY % BeanName "CDATA">
  38. <!-- A "PropName" is the name of a JavaBeans property, and must begin with
  39.      a lower case letter and contain only characters that are legal in a
  40.      Java identifier.
  41. -->
  42. <!ENTITY % PropName "CDATA">
  43. <!-- A "Location" is a relative path, delimited by "/" characters, that
  44.      defines the location of a resource relative to the location of the
  45.      configuration file itself.
  46. -->
  47. <!ENTITY % Location "#PCDATA">
  48. <!-- ========== Top Level Elements ======================================== -->
  49.   <!-- deprecated: use tiles-definitions instead.-->
  50. <!ELEMENT component-definitions (definition+)>
  51. <!-- The "tiles-definitions" element is the root of the configuration file
  52.      hierarchy, and contains nested elements for all of the other
  53.      configuration settings.
  54. -->
  55. <!ELEMENT tiles-definitions (definition+)>
  56. <!-- The "definition" element describes a definition that can be inserted in a jsp
  57.      page. This definition is identified by its logical name. A definition allows
  58.      to define all the attributes that can be set in <insert> tag from a jsp page.
  59.      controllerClass The fully qualified Java class name of the controller
  60.                      subclass to call immediately before the tiles is inserted.
  61.                      Only one of controllerClass or controllerUrl should be
  62.                      specified.
  63.      controllerUrl   The context-relative path to the resource used as controller
  64.                      called immediately before the tiles is inserted.
  65.                      Only one of controllerClass or controllerUrl should be
  66.                      specified.
  67.      extends         Name of a definition that is used as ancestor of this definition.
  68.                      All attributes from the ancestor are available to the new
  69.                      definition. Any attribute inherited from the ancestor can
  70.                      be overloaded by providing a new value.
  71.      name            The unique identifier for this definition.
  72.      page            Same as path.
  73.      path            The context-relative path to the resource used as tiles to
  74.                      insert. This tiles will be inserted and a tiles context
  75.                      containing appropriate attributes will be available.
  76.      role            Security role name that is allowed access to this definition
  77.                      object. The definition is inserted only if the role name is
  78.                      allowed.
  79.      template        Same as path. For compatibility with the template tag library.
  80. -->
  81. <!ELEMENT definition (icon?, display-name?, description?, put*, putList*)>
  82. <!ATTLIST definition       id               ID               #IMPLIED>
  83. <!ATTLIST definition       controllerClass  %ClassName;      #IMPLIED>
  84. <!ATTLIST definition       controllerUrl    %RequestPath;    #IMPLIED>
  85. <!ATTLIST definition       extends          %DefinitionName; #IMPLIED>
  86. <!ATTLIST definition       name             %DefinitionName; #REQUIRED>
  87. <!ATTLIST definition       page             %RequestPath;    #IMPLIED>
  88. <!ATTLIST definition       path             %RequestPath;    #IMPLIED>
  89. <!ATTLIST definition       role             CDATA            #IMPLIED>
  90. <!ATTLIST definition       template         %RequestPath;    #IMPLIED>
  91. <!-- The "put" element describes an attribute of a definition. It allows to
  92.      specify the tiles attribute name and its value. The tiles value can be
  93.      specified as an xml attribute, or in the body of the <put> tag.
  94.      content         Same as value. For compatibility with the template tag library.
  95.      direct          Same as type="string". For compatibility with the template
  96.                      tag library.
  97.      name            The unique identifier for this put.
  98.      type            The type of the value. Can be: string, page, template or definition.
  99.                      By default, no type is associated to a value. If a type is
  100.                      associated, it will be used as a hint to process the value
  101.                      when the attribute will be used in the inserted tiles.
  102.      value           The value associated to this tiles attribute. The value should
  103.                      be specified with this tag attribute, or in the body of the tag.
  104. -->
  105. <!ELEMENT put (#PCDATA)>
  106. <!ATTLIST put              id               ID              #IMPLIED>
  107. <!ATTLIST put              content          CDATA           #IMPLIED>
  108. <!ATTLIST put              direct           %Boolean;       #IMPLIED>
  109. <!ATTLIST put              name             CDATA           #REQUIRED>
  110. <!ATTLIST put              type             %ContentType;   #IMPLIED>
  111. <!ATTLIST put              value            CDATA           #IMPLIED>
  112. <!-- The "putList" element describes a list attribute of a definition. It allows to
  113.      specify an attribute that is a java List containing any kind of values. In
  114.      the config file, the list elements are specified by nested <add>, <item> or
  115.      <putList>.
  116.      name            The unique identifier for this put list.
  117. -->
  118. <!ELEMENT putList ( (add* | item* | bean* | putList*)+) >
  119. <!ATTLIST putList          id               ID              #IMPLIED>
  120. <!ATTLIST putList          name             CDATA           #REQUIRED>
  121. <!-- ========== Subordinate Elements ====================================== -->
  122. <!-- The "add" element describes an element of a list. It is similar to the
  123.      <put> element.
  124.      content         Same as value. For compatibility with the template tag library.
  125.      direct          Same as type="string". For compatibility with the template
  126.                      tag library.
  127.      type            The type of the value. Can be: string, page, template or definition.
  128.                      By default, no type is associated to a value. If a type is
  129.                      associated, it will be used as a hint to process the value
  130.                      when the attribute will be used in the inserted tiles.
  131.      value           The value associated to this tiles attribute. The value should
  132.                      be specified with this tag attribute, or in the body of the tag.
  133. -->
  134. <!ELEMENT add (#PCDATA)>
  135. <!ATTLIST add              id               ID              #IMPLIED>
  136. <!ATTLIST add              content          CDATA           #IMPLIED>
  137. <!ATTLIST add              direct           %Boolean;       #IMPLIED>
  138. <!ATTLIST add              type             %ContentType;   #IMPLIED>
  139. <!ATTLIST add              value            CDATA           #IMPLIED>
  140. <!-- The "bean" element describes an element of a list. It create a bean of the
  141.      specified java classtype. This bean is initialized with appropriate nested
  142.      <set-property>.
  143.      classtype       The fully qualified classname for this bean.
  144. -->
  145. <!ELEMENT bean (set-property*)>
  146. <!ATTLIST bean             id               ID              #IMPLIED>
  147. <!ATTLIST bean             classtype        %ClassName;     #REQUIRED>
  148. <!-- The "set-property" element specifies the method name and initial value of
  149.      a bean property. When the object representing
  150.      the surrounding element is instantiated, the accessor for the indicated
  151.      property is called and passed the indicated value.
  152.      property        Name of the JavaBeans property whose setter method
  153.                      will be called.
  154.      value           String representation of the value to which this
  155.                      property will be set, after suitable type conversion
  156. -->
  157. <!ELEMENT set-property   EMPTY>
  158. <!ATTLIST set-property   id             ID              #IMPLIED>
  159. <!ATTLIST set-property   property       %PropName;      #REQUIRED>
  160. <!ATTLIST set-property   value          CDATA           #REQUIRED>
  161. <!-- The "item" element describes an element of a list. It create a bean added as
  162.      element to the list. Each bean can contain different properties: value, link,
  163.      icon, tooltip. These properties are to be interpreted by the jsp page using
  164.      them.
  165.      By default the bean is of type
  166.      "org.apache.struts.tiles.beans.SimpleMenuItem". This bean is useful to
  167.      create a list of beans used as menu items.
  168.      classtype       The fully qualified classtype for this bean.
  169.                      If specified, the classtype must be a subclass of the interface
  170.                      "org.apache.struts.tiles.beans.MenuItem".
  171.      icon            The bean 'icon' property.
  172.      link            The bean 'link' property.
  173.      tooltip         The bean 'tooltip' property.
  174.      value           The bean 'value' property.
  175. -->
  176. <!ELEMENT item (#PCDATA)>
  177. <!ATTLIST item             id               ID              #IMPLIED>
  178. <!ATTLIST item             classtype        %ClassName;     #IMPLIED>
  179. <!ATTLIST item             icon             CDATA           #IMPLIED>
  180. <!ATTLIST item             link             CDATA           #REQUIRED>
  181. <!ATTLIST item             tooltip          CDATA           #IMPLIED>
  182. <!ATTLIST item             value            CDATA           #REQUIRED>
  183. <!-- ========== Info Elements ====================================== -->
  184. <!-- The "description" element contains descriptive (paragraph length) text
  185.      about the surrounding element, suitable for use in GUI tools.
  186. -->
  187. <!ELEMENT description    (#PCDATA)>
  188. <!ATTLIST description    id             ID              #IMPLIED>
  189. <!-- The "display-name" element contains a short (one line) description of
  190.      the surrounding element, suitable for use in GUI tools.
  191. -->
  192. <!ELEMENT display-name (#PCDATA)>
  193. <!ATTLIST display-name   id             ID              #IMPLIED>
  194. <!-- The "icon" element contains a small-icon and large-icon element which
  195.      specify the location, relative to the Struts configuration file, for small
  196.      and large images used to represent the surrounding element in GUI tools.
  197. -->
  198. <!ELEMENT icon           (small-icon?, large-icon?)>
  199. <!ATTLIST icon           id             ID              #IMPLIED>
  200. <!-- The "large-icon" element specifies the location, relative to the Struts
  201.      configuration file, of a resource containing a large (32x32 pixel)
  202.      icon image.
  203. -->
  204. <!ELEMENT large-icon     (%Location;)>
  205. <!ATTLIST large-icon     id             ID              #IMPLIED>
  206. <!-- The "small-icon" element specifies the location, relative to the Struts
  207.      configuration file, of a resource containing a small (16x16 pixel)
  208.      icon image.
  209. -->
  210. <!ELEMENT small-icon     (%Location;)>
  211. <!ATTLIST small-icon     id             ID              #IMPLIED>