~ubuntu-branches/ubuntu/precise/libstruts1.2-java/precise-updates

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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<project name="Struts Web Applications" default="compile" basedir=".">


<!--
        This is a build file that creates all of the web applications included
        in a Struts distribution, using the generic "build-webapp.xml" script
        for the details
-->


<!-- ========== Prerequisite Properties =================================== -->


<!--
        These properties MUST be set on the "ant" command line, the "antrc"
        properties file in your home directory, or from settings in a superior
        build.xml script.

        build.home                    Base directory into which we are building
                                      the Struts components.

        compile.classpath             If specified, contains a set of JAR files
                                      and/or directories to be added to the
                                      compilation classpath.

        servlet.jar                   The pathname of the servlet API classes
                                      that you wish to compile against.

        struts.libs                   The directory containing struts.jar and
                                      the associated TLD files.

        webapp.libs                   If specified, must be the pathname of a
                                      directory from which all available
                                      "*.jar" files are copied to the web
                                      application's WEB-INF/lib directory.
-->

<property name="build.home"           value="${basedir}/target"/>
<property name="servlet.jar"          value="../jakarta-servletapi/lib/servlet.jar"/>
<property name="struts.libs"          value="${build.home}/library"/>



<!-- ========== Initialization Properties ================================= -->


<!--
        These property values may optionally be overridden with property
        settings from an "ant" command line, the "antrc" properties file
        in your home directory, or from settings in a superior build.xml
        script.
-->


<!-- Should Java compilations set the debug compiler option? -->
<property name="compile.debug"         value="true" />

<!-- Should Java compilations set the deprecation compiler option? -->
<property name="compile.deprecation"   value="false" />

<!-- Should Java compilations set the optimize compiler option? -->
<property name="compile.optimize"      value="true" />

<!-- The base directory for distribution targets -->
<property name="dist.home"             value="${basedir}/dist" />

<!-- The directory into which Struts JAR and TLD files have been created -->
<property name="struts.home"           value="${build.home}/library" />

<!-- Directory where core struts library configurations files are stored -->
<property name="conf.share.dir" value="${basedir}/conf/share"/>

<!-- Doc directory -->
<property name="doc.dir" value="doc"/>


<!-- ========== Executable Targets ======================================== -->


<!--
        The "static.generic" target causes the "static" target of each
        individual web application to be executed.
-->
<target name="static.generic">
  <ant  antfile="build-webapp.xml"    target="static">
    <property name="webapp.name"      value="blank"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="static">
    <property name="webapp.name"      value="documentation"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="static">
    <property name="webapp.name"      value="example"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="static">
    <property name="webapp.name"      value="examples"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="static">
    <property name="webapp.name"      value="tiles-documentation"/>
  </ant>
    <!--ant  antfile="build-webapp.xml"    target="static">
      <property name="webapp.name"      value="test"/>
    </ant-->
</target>


<!--
        The "static" target causes non-generic static activity required
        for specific tag libraries to be executed.
-->
<target name="static" depends="static.generic"
        description="Copy static resources for individual web applications">
    <!-- Copy DTDs for Struts constructs -->
    <copy  todir="${build.home}/documentation/dtds">
      <fileset dir="${conf.share.dir}" includes="**/*.dtd"/>
    </copy>
    <!-- Copy required image for the Struts example application -->
    <copy tofile="${build.home}/example/struts-power.gif"
            file="${doc.dir}/images/struts-power.gif"/>
    <!-- Copy validator-rules.xml for the Struts example application -->
    <copy tofile="${build.home}/example/WEB-INF/validator-rules.xml"
            file="${basedir}/conf/share/validator-rules.xml"/>
    <!-- Copy validator-rules.xml for the Struts blank application -->
    <copy tofile="${build.home}/blank/WEB-INF/validator-rules.xml"
            file="${basedir}/conf/share/validator-rules.xml"/>
    <!-- Copy validator-rules.xml for the Struts examples application -->
    <copy tofile="${build.home}/examples/WEB-INF/validator-rules.xml"
            file="${basedir}/conf/share/validator-rules.xml"/>
     <!-- Copy required image for the Struts examples exercise module -->
    <copy tofile="${build.home}/examples/exercise/struts-power.gif"
            file="${doc.dir}/images/struts-power.gif"/>
     <!-- Copy required image for the Struts examples validator module -->
    <copy tofile="${build.home}/examples/validator/struts-power.gif"
            file="${doc.dir}/images/struts-power.gif"/>
    <copy todir="${build.home}/blank/WEB-INF/classes"
            file="${basedir}/web/blank/WEB-INF/src/java/MessageResources.properties"/>
</target>


<!--
        The "compile.generic" target causes the "compile" target of each
        individual web application to be executed.
-->
<target name="compile.generic">
  <ant  antfile="build-webapp.xml"    target="compile">
    <property name="webapp.name"      value="blank"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="compile">
    <property name="webapp.name"      value="documentation"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="compile">
    <property name="webapp.name"      value="example"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="compile">
    <property name="webapp.name"      value="examples"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="compile">
    <property name="webapp.name"      value="tiles-documentation"/>
  </ant>
    <!--ant  antfile="build-webapp.xml"    target="compile">
      <property name="webapp.name"      value="test"/>
    </ant-->
</target>


<!--
        The "compile" target causes non-generic compile activity required
        for specific tag libraries to be executed.
-->
<target name="compile" depends="compile.generic,compile.docs, validate.docs"
        description="Compile individual web applications">

    <!-- Create the Tiles documentation -->
    <style   basedir="${doc.dir}/tiles"
             destdir="${build.home}/tiles-documentation"
           extension=".html" style="${doc.dir}/stylesheets/struts.xsl"
            includes="*.xml"
            excludes="project.xml">
      <param name="relative-path" expression="."/>
      <param name="project-path" expression="../tiles/project.xml"/>
    </style>            

    <!-- Copy the tiles documentation files -->
    <copy      todir="${build.home}/tiles-documentation">
      <fileset   dir="${doc.dir}">
        <include name="*.css"/>
        <include name="images/*.gif"/>
        <include name="images/*.jpg"/>
      </fileset>
    </copy>

    <!-- Validate tiles docs -->
    <xmlvalidate warn="yes" failonerror="yes" lenient="no">
       <fileset dir="${build.home}/tiles-documentation" includes="**/*.html"/>

      <!-- Reference local DTDS to avoid network lookup -->
      <dtd publicId="-//W3C//DTD XHTML 1.0 Strict//EN"
       location="${doc.dir}/dtds/xhtml1-strict.dtd"/>
      <dtd publicId="-//W3C//DTD XHTML 1.0 Transitional//EN"
       location="${doc.dir}/dtds/xhtml1-transitional.dtd"/>

   </xmlvalidate>
    
</target>


<!--
        The "compile.docs" target transforms the documentation using XSLT
-->
<target name="compile.docs" 
        description="Perform XSLT transformations">
    <!-- Create the taglib documentation -->
    <style   basedir="${doc.dir}" destdir="${build.home}/documentation"
           extension=".html" style="${doc.dir}/stylesheets/struts.xsl"
            includes="*.xml"
            excludes="project.xml"
            reloadstylesheet="true">
      <param name="relative-path" expression="."/>
    </style>            
    <!-- Create the FAQs -->
    <style   basedir="${doc.dir}/faqs"
             destdir="${build.home}/documentation/faqs"
           extension=".html" style="${doc.dir}/stylesheets/struts.xsl"
            includes="*.xml"
            excludes="project.xml"
            reloadstylesheet="true">
      <param name="project-path" expression="../faqs/project.xml"/>
    </style>            
    <!-- Create the proposals -->
    <style   basedir="${doc.dir}/proposals"
             destdir="${build.home}/documentation/proposals"
           extension=".html" style="${doc.dir}/stylesheets/struts.xsl"
            includes="*.xml"
            excludes="project.xml"
            reloadstylesheet="true">
      <param name="project-path" expression="../proposals/project.xml"/>
    </style>            
    <!-- Create the user guide -->
    <style   basedir="${doc.dir}/userGuide"
             destdir="${build.home}/documentation/userGuide"
           extension=".html" style="${doc.dir}/stylesheets/struts.xsl"
            includes="*.xml"
            excludes="project.xml"
            reloadstylesheet="true">
      <param name="project-path" expression="../userGuide/project.xml"/>
    </style>  

    <!-- Copy the basic documentation files -->
    <copy      todir="${build.home}/documentation">
      <fileset   dir="${doc.dir}">
        <include name="**/*.cgi"/>
        <include name="**/*.css"/>
        <include name="**/*.gif"/>
        <include name="**/*.html"/>
        <include name="**/*.jpg"/>
        <include name="**/*.js"/>
      </fileset>
    </copy>
    <!-- Copy the basic user guide files -->
    <copy      todir="${build.home}/documentation/userGuide">
      <fileset   dir="${doc.dir}/userGuide">
        <include name="**/*.css"/>
        <include name="**/*.gif"/>
        <include name="**/*.html"/>
        <include name="**/*.jpg"/>
        <include name="**/*.js"/>
      </fileset>
    </copy>
    <!-- Copy the proposal files -->
    <copy      todir="${build.home}/documentation/proposals">
      <fileset   dir="${doc.dir}/proposals">
        <include name="**/*.css"/>
        <include name="**/*.gif"/>
        <include name="**/*.html"/>
        <include name="**/*.jpg"/>
        <include name="**/*.js"/>
      </fileset>
    </copy>
    <!-- Copy the FAQ files -->
    <copy      todir="${build.home}/documentation/faqs">
      <fileset   dir="${doc.dir}/faqs">
        <include name="**/*.zip"/>
      </fileset>
    </copy>

</target>


<!--
        The "validate.docs" target validates the generated XHTML 
        documentation against the DTDs
-->
<target name="validate.docs" description="Validate generated XHTML documents">
    <xmlvalidate warn="yes" failonerror="yes" lenient="no">
       <fileset dir="${build.home}/documentation">
        <include name="**/*.html"/>
        <exclude name="download.html"/>
        <exclude name="api/**"/>
      </fileset>
       
      <!-- Reference local DTDS to avoid network lookup -->
      <dtd publicId="-//W3C//DTD XHTML 1.0 Strict//EN"
       location="${doc.dir}/dtds/xhtml1-strict.dtd"/>
      <dtd publicId="-//W3C//DTD XHTML 1.0 Transitional//EN"
       location="${doc.dir}/dtds/xhtml1-transitional.dtd"/>

   </xmlvalidate>
</target>


<!--
        The "dist.generic" target causes the "dist" target of each
        individual web application to be executed.
-->
<target name="dist.generic">
  <ant  antfile="build-webapp.xml"    target="dist">
    <property name="webapp.name"      value="blank"/>
    <property name="webapp.war"       value="struts-blank.war"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="dist">
    <property name="webapp.name"      value="documentation"/>
    <property name="webapp.war"       value="struts-documentation.war"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="dist">
    <property name="webapp.name"      value="example"/>
    <property name="webapp.war"       value="struts-mailreader.war"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="dist">
    <property name="webapp.name"      value="examples"/>
    <property name="webapp.war"       value="struts-examples.war"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="dist">
    <property name="webapp.name"      value="tiles-documentation"/>
    <property name="webapp.war"       value="tiles-documentation.war"/>
  </ant>
    <!--ant  antfile="build-webapp.xml"    target="dist">
      <property name="webapp.name"      value="test"/>
      <property name="webapp.war"       value="struts-test.war"/>
    </ant-->
</target>


<!--
        The "dist" target causes non-generic dist activity required
        for specific tag libraries to be executed.
-->
<target name="dist" depends="dist.generic"
        description="Create distribution output of web applications">
        
    <!-- Compile Tiles dist -->
<!--
    <ant  antFile="build.xml"  dir="contrib/tiles"  target="dist.for.struts">
      <property name="struts.home"      value="${struts.home}"/>
      <property name="struts.libs"      value="${struts.libs}"/>
      <property name="build.home"       value="${build.home}/tiles"/>
      <property name="dist.home"        value="${dist.home}"/>
      <property name="app.name"         value="tiles"/>
      <property name="project.name"     value="Tiles"/>
    </ant>
-->

</target>


<!--
        The "clean.generic" target causes the "clean" target of each
        individual web application to be executed.
-->
<target name="clean.generic">
  <ant  antfile="build-webapp.xml"    target="clean">
    <property name="webapp.name"      value="blank"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="clean">
    <property name="webapp.name"      value="documentation"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="clean">
    <property name="webapp.name"      value="example"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="clean">
    <property name="webapp.name"      value="examples"/>
  </ant>
  <ant  antfile="build-webapp.xml"    target="clean">
    <property name="webapp.name"      value="tiles-documentation"/>
  </ant>
    <!--ant  antfile="build-webapp.xml"    target="clean">
      <property name="webapp.name"      value="test"/>
    </ant-->
</target>


<!--
        The "clean" target causes non-generic clean activity required
        for specific tag libraries to be executed.
-->
<target name="clean" depends="clean.generic"
        description="Clean output for individual web applications">
</target>


</project>