File: struts-doc-config.xml

package info (click to toggle)
libstruts1.2-java 1.2.9-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 47,516 kB
  • ctags: 29,430
  • sloc: xml: 90,344; java: 71,078; jsp: 31,692; makefile: 10; sh: 2
file content (45 lines) | stat: -rw-r--r-- 1,775 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE struts-config PUBLIC
          "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
          "http://struts.apache.org/dtds/struts-config_1_2.dtd">
<!--
     This is the Struts configuration file for the example application,
     using the proposed new syntax.

     NOTE:  You would only flesh out the details in the "form-bean"
     declarations if you had a generator tool that used them to create
     the corresponding Java classes for you.  Otherwise, you would
     need only the "form-bean" element itself, with the corresponding
     "name" and "type" attributes.
-->


<struts-config>

  <!-- =======================================================  -->
  <!-- Tiles Documentation module								-->
  <!-- =======================================================  -->

  
			   
  <action-mappings/>

  
  <!-- ========== Tiles plug-in setting settings =================== -->
  <!-- Here we specified the tiles plug-in.
       This plug-in register appropriate Request Processor -->
  <!--  <controller processorClass="org.apache.struts.tiles.TilesRequestProcessor"  />  -->

  <!-- ========== Associated Messages Ressource settings =================== -->
  <!-- Not used by tiles or this website, but needed due to a bug in actual Struts version -->
  <message-resources parameter="org.apache.struts.webapp.tiles.dev1-1.ApplicationResources" null="false" />

  
  <plug-in className="org.apache.struts.tiles.TilesPlugin" >
    <set-property property="definitions-config" 
                        value="/WEB-INF/tiles-defs.xml, /WEB-INF/tiles-doc-defs.xml" />
    <set-property property="moduleAware" value="true" />
  </plug-in>

</struts-config>