~ubuntu-branches/ubuntu/lucid/libstruts1.2-java/lucid

« back to all changes in this revision

Viewing changes to doc/userGuide/release-notes-1.2.7.xml

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-04-24 12:14:23 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060424121423-naev53qigqgks0sa
Tags: 1.2.9-1
New upstream  release Fixes  three security  problems: CVE-2006-1546,
CVE-2006-1547,  CVE-2006-1548  (closes:  #360551),  thanks  to  Moritz
Muehlenhoff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<document url="release-notes.html">
 
3
  <properties>
 
4
    <title>Struts Release Notes (since 1.2.4)</title>
 
5
  </properties>
 
6
 <body>
 
7
 <chapter name="6.1 Release Notes - Version 1.2.7" href="release_notes">
 
8
      <section name="Introduction" href="Introduction">
 
9
          <p>
 
10
              This section contains release notes for changes that have taken
 
11
              place since
 
12
              <a href="release-notes-1.2.4.html">Version 1.2.4</a>.
 
13
              To keep up-to-date on all changes to Struts, subscribe to the
 
14
              dev@ list.
 
15
          </p>
 
16
          <p>
 
17
              <b>Notes on upgrading</b> are maintained in the
 
18
              <a href="http://wiki.apache.org/struts/StrutsUpgrade">Wiki Upgrade pages</a>.
 
19
              The wiki is a community maintained resource - please feel free to add your
 
20
              input so that everyone can benefit from the collective experience.
 
21
          </p>
 
22
          <p>
 
23
             For the version requirements of each library, see the 
 
24
             <a href="installation.html">Installation chapter</a>.
 
25
          </p>
 
26
 
 
27
      </section>
 
28
 
 
29
      <section name="Highlights of Changes" href="Highlight">
 
30
          <p>
 
31
              The purpose of this section is to highlight the new features since the
 
32
              Version 1.2.4 release. For detailed information concerning changes 
 
33
              see the <a href="#Detail">Detailed Changes</a> section.
 
34
          </p>
 
35
          <h3>Dependencies</h3>
 
36
          <p>
 
37
              Struts has changed its dependencies on the following software components:
 
38
          </p>
 
39
              <ul>
 
40
                   <li>Commons BeanUtils dependency changed to Version 1.7.0</li>
 
41
                   <li>Commons Digester dependency changed to Version 1.6</li>
 
42
                   <li>Commons Validator dependency changed to Version 1.1.4</li>
 
43
                   <li>Dependency on Commons Collections has been removed</li>
 
44
                   <li>Dependency on Commons Lang has been removed</li>
 
45
              </ul>
 
46
 
 
47
          <h3>Core Struts</h3>
 
48
          <h4>Saving Messages in the Session</h4>
 
49
          <p>
 
50
              A new method to store <i>errors</i> in the Session [<code>saveErrors(HttpSession, ActionMessages)</code>]
 
51
              has been added to <i>Action</i> along with the automatic removal of these errors once they have been
 
52
              accessed. This is equivalent to the facility for <i>messages</i> that was included in the Version 1.2.4
 
53
              release.
 
54
          </p>
 
55
 
 
56
          <h4>Re-directing ActionForward</h4>
 
57
          <p>
 
58
              <i>ActionRedirect</i> is a subclass of ActionForward which is designed for use in redirecting requests, 
 
59
                            with support for adding parameters at runtime. See the <i>javadoc</i> for more details.
 
60
          </p>
 
61
 
 
62
          <h4>Download Action</h4>
 
63
          <p>
 
64
              <i>DownloadAction</i> is an abstract action that provides the nuts and bolts for downloading 
 
65
              files. See the <i>javadocs</i> and <a href="http://wiki.apache.org/struts/StrutsFileDownload">Wiki</a>
 
66
              for further information.
 
67
          </p>
 
68
 
 
69
          <h4>Dispatch Helper</h4>
 
70
          <p>
 
71
              <i>ActionDispatcher</i> is a helper class for providing <i>DispatchAction</i> type behaviour
 
72
              without having to inherit from <i>DispatchAction</i>. See the <i>javadoc</i> for more details.
 
73
          </p>
 
74
 
 
75
          <h4><i>Lazy</i> Validator Form</h4>
 
76
          <p>
 
77
              A <i>DynaBean</i> flavour ActionForm which doesn't need its properties to be
 
78
              defined and provides <i>Lazy List</i> and <i>Lazy Map</i> behaviours.
 
79
          </p>
 
80
          <h4> Config Files in jars</h4>
 
81
          <p>
 
82
              Config files (i.e. Struts config, Validator config and Tiles config files) can now be stored in jars.
 
83
              Struts checks the servlet context, as before but if not found Struts now tries the classloader to try
 
84
              and get them.
 
85
          </p>
 
86
          <h3>Tag Library Changes</h3>
 
87
          <h4>Highlighting Errors</h4>
 
88
          <p>
 
89
              Struts can now automatically highlight error fields using the new <i>errorKey</i>,
 
90
              <i>errorStyle</i>, <i>errorStyleClass</i> and <i>errorStyleId</i> attributes on the HTML
 
91
              Input Tags. See the <a href="struts-html.html">User Guide</a> for details of these attributes.
 
92
          </p>
 
93
          <h4>Readonly / Disabled Forms</h4>
 
94
          <p>
 
95
              It is now possible to either <i>disable</i> or make <i>read only</i> all fields for a form
 
96
              using the new <i>readonly</i> and <i>disabled</i> attributes on the &lt;html:form&gt; tag.
 
97
              <b>N.B.</b>The <i>readonly</i> attribute only affects  &lt;html:text&gt;, &lt;html:textarea&gt;
 
98
              and &lt;html:password&gt; as per the HTML 4 specification.
 
99
              See the <a href="struts-html.html#form">User Guide</a> for details of these attributes.
 
100
          </p>
 
101
 
 
102
          <h4>HTML Tag Refactoring</h4>
 
103
          <p>
 
104
              Many of the <i>HTML</i> tags have been refactored to make them easier to extend.
 
105
          </p>
 
106
             <ul><li>A <b>prepareOtherAttributes()</b> method was added - called just before the closing
 
107
                     tag element, it provides a place to render additional attributes.</li>
 
108
                 <li>The <i>name</i> attribute rendering is now in a <b>prepareName()</b> method to make it
 
109
                     easier to provide custom behaviour.</li>
 
110
                 <li>The <i>value</i> attribute rendering is now in a <b>prepareValue()</b> method to make it
 
111
                     easier to provide custom behaviour.</li>
 
112
                 <li>When rendering an attribute, these tags now use the <i>getter</i> for the property rather than the
 
113
                     actual property - that means that if you wanted, for example to override the TextTag's <i>styleClass</i>
 
114
                     then one option is to override the getStyleClass() method.</li>
 
115
                 <li>Rendering of attributes now uses a simple <b>prepareAttribute()</b> method to generate the 
 
116
                     <i>name="attribute"</i> format, making most attribute rendering a one line statement.</li>
 
117
             </ul>
 
118
          <h4>Bundle Attribute</h4>
 
119
          <p>
 
120
              The <i>bundle</i> attribute has been added to the following <i>HTML</i> tags:
 
121
              ButtonTag, CancelTag, CheckboxTag, FileTag, FrameTag, HiddenTag, LinkTag, MultiboxTag,
 
122
              PasswordTag, RadioTag, ResetTag, SelectTag, SubmitTag, TextTag, TextareaTag.
 
123
              See the <a href="struts-html.html">User Guide</a> for details of the bundle attribute
 
124
              for these tags.
 
125
          </p>
 
126
          <h4>ErrorTag</h4>
 
127
          <p>
 
128
              Now has <b>header</b>, <b>footer</b>, <b>prefix</b>, <b>suffix</b> attributes.
 
129
              See the <a href="struts-html.html#errors">User Guide</a> for details of these attributes.
 
130
          </p>
 
131
 
 
132
          <h3>Validator</h3>
 
133
          <h4>Resource Bundle Support</h4>
 
134
          <p>
 
135
              The <i>bundle</i> attribute for the &lt;msg&gt; and &lt;arg&gt; elements in the Validator
 
136
              configuration file (e.g. <i>validation.xml</i>) are now supported along with the <i>resource</i>
 
137
              attribute on the &lt;msg&gt; element.
 
138
          </p>
 
139
          <p>
 
140
              New pages have been added to the <i>struts-examples</i> webapp showing the new 
 
141
              <i>Resource Bundle Support</i> and a page for <i>validwhen</i> examples.
 
142
          </p>
 
143
 
 
144
          <h3>Subversion</h3>
 
145
          <p>
 
146
              Struts has migrated it's source repository from CVS to Subversion, following which the
 
147
              repository has been refactored into subprojects. The subproject re-factoring does not
 
148
              however affect the 1.2.x series which is released from the
 
149
              <a href="http://svn.apache.org/viewcvs.cgi/struts/core/branches/STRUTS_1_2_BRANCH/">STRUTS_1_2</a> branch.
 
150
          </p>
 
151
          <h3>People</h3>
 
152
          <p>
 
153
              On the <a href="../volunteers.html">people</a> front, in addition to <i>Martin Cooper</i>  being 
 
154
              appointed the <a href="../announce.html#a20050331">new PMC chair</a>, one new committer, 
 
155
              <i>Hubert Rabago</i>, accepted an invitation to join us, and we welcome back <i>David Geary</i> 
 
156
              from emeritus to active status.
 
157
          </p>
 
158
          
 
159
      </section>
 
160
 
 
161
      <section name="Detailed Changes" href="Detail">
 
162
          <p>
 
163
              This section contains the details of changes since version 1.2.4 with links to
 
164
              bugzilla tickets and Subversion Revision details. It is split into the following
 
165
              sub-sections.
 
166
          </p>
 
167
          <ul>
 
168
              <li><a href="#STRUTS_1_2_7">Version 1.2.7 Changes</a></li>
 
169
              <li><a href="#STRUTS_1_2_6">Version 1.2.6 Changes</a></li>
 
170
              <li><a href="#STRUTS_1_2_5">Version 1.2.5 Changes</a></li>
 
171
          </ul>
 
172
  
 
173
      <h3 id="STRUTS_1_2_7">Version 1.2.7</h3>
 
174
 
 
175
          <p>
 
176
              After <a href="http://svn.apache.org/viewcvs.cgi/struts/core/tags/STRUTS_1_2_6/">Version 1.2.6 was tagged</a>
 
177
              the <a href="http://svn.apache.org/viewcvs.cgi/struts/core/branches/STRUTS_1_2_BRANCH/">1.2 Branch</a>
 
178
              was created and work started on the next version (<i>1.3.x series</i>). Work has continued on
 
179
              both versions and <i>Revision</i> numbers shown in brackets are where a change has been ported
 
180
              from the current development version into the <i>1.2 Branch</i>.
 
181
          </p>
 
182
 
 
183
         <table>
 
184
             <thead><tr>
 
185
                 <th>Modification</th><th>Revision</th><th>Bugzilla</th><th>Description</th>
 
186
             </tr></thead>
 
187
             <tr>
 
188
                 <td align="center">2005-05-05</td>
 
189
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=168223&amp;view=rev">168223</a></td>
 
190
                 <td align="center"><i>n/a</i></td>
 
191
                 <td>Fix 1.2.x Build - remove duplicate "el" directory from "contrib".</td>
 
192
             </tr>
 
193
             <tr>
 
194
                 <td align="center">2005-05-05</td>
 
195
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=168218&amp;view=rev">168218</a></td>
 
196
                 <td align="center"><i>n/a</i></td>
 
197
                 <td>Fix 1.2.x build to include struts-chain in the "contrib" directory (from sandbox STRUTS_1_2_BRANCH).</td>
 
198
             </tr>
 
199
             <tr>
 
200
                 <td align="center">2005-05-03</td>
 
201
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=168011&amp;view=rev">168011</a>
 
202
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=168012&amp;view=rev">168012</a>)</td>
 
203
                 <td align="center"><i>n/a</i></td>
 
204
                 <td>Prevent NullPointerException when toString() is called before dynaClass is initialized.</td>
 
205
             </tr>
 
206
             <tr>
 
207
                 <td align="center">2005-04-29</td>
 
208
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=165304&amp;view=rev">165304</a>
 
209
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=165305&amp;view=rev">165305</a>)</td>
 
210
                 <td align="center"><i>n/a</i></td>
 
211
                 <td>Retrieve FormTag stored in Request scope, rather than the TagSupport's findAncestorWithClass() .</td>
 
212
             </tr>
 
213
             <tr>
 
214
                 <td align="center">2005-04-29</td>
 
215
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=165186&amp;view=rev">165186</a>
 
216
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=165208&amp;view=rev">165208</a>)</td>
 
217
                 <td align="center"><i>n/a</i></td>
 
218
                 <td>Fixing value escape so that both backslashes and quotes are escaped correctly.</td>
 
219
             </tr>
 
220
             <tr>
 
221
                 <td align="center">2005-04-28</td>
 
222
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=165158&amp;view=rev">165158</a>
 
223
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=165160&amp;view=rev">165160</a>)</td>
 
224
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=20034">20034</a></td>
 
225
                 <td>Additional fix to "Invalid cache in InsertTag" for a problem on Orion.</td>
 
226
             </tr>
 
227
             <tr>
 
228
                 <td align="center">2005-04-28</td>
 
229
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=165097&amp;view=rev">165097</a></td>
 
230
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=33989">33989</a></td>
 
231
                 <td>Fix cactus tests to work with Cactus 1.7.</td>
 
232
             </tr>
 
233
             <tr>
 
234
                 <td align="center">2005-04-27</td>
 
235
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=164922&amp;view=rev">164922</a>
 
236
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164927&amp;view=rev">164927</a>)</td>
 
237
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=23127">23127</a></td>
 
238
                 <td>Page attribute of img and image tags doesn't use pagePattern setting.</td>
 
239
             </tr>
 
240
             <tr>
 
241
                 <td align="center">2005-04-26</td>
 
242
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=164814&amp;view=rev">164814</a>
 
243
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164831&amp;view=rev">164831</a>)</td>
 
244
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=34624">34624</a></td>
 
245
                 <td>BeanValidatorForm's getValidationKey method should call mapping.getAttribute().</td>
 
246
             </tr>
 
247
             <tr>
 
248
                 <td align="center">2005-04-26</td>
 
249
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=164745&amp;view=rev">164745</a>
 
250
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164746&amp;view=rev">164746</a>)</td>
 
251
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31270">31270</a></td>
 
252
                 <td>Add ActionDispatcher to provide dispatch behavior to classes that do not extend DispatchAction.</td>
 
253
             </tr>
 
254
             <tr>
 
255
                 <td align="center">2005-04-26</td>
 
256
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=164729&amp;view=rev">164729</a>
 
257
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164862&amp;view=rev">164862</a>)</td>
 
258
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=19901">19901</a></td>
 
259
                 <td>Add a check for null page value and throwing more informative exception.</td>
 
260
             </tr>
 
261
             <tr>
 
262
                 <td align="center">2005-04-26</td>
 
263
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=164723&amp;view=rev">164723</a>
 
264
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164860&amp;view=rev">164860</a>)</td>
 
265
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=16653">16653</a></td>
 
266
                 <td>Add a check for missing Validator Resources and throw a more useful error message.</td>
 
267
             </tr>
 
268
             <tr>
 
269
                 <td align="center">2005-04-26</td>
 
270
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=164718&amp;view=rev">164718</a>
 
271
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164858&amp;view=rev">164858</a>)</td>
 
272
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31658">31658</a></td>
 
273
                 <td>LogonAction does not check errors in appropriate place.</td>
 
274
             </tr>
 
275
             <tr>
 
276
                 <td align="center">2005-04-25</td>
 
277
                 <td align="center"><a href="http://svn.apache.org/viewcvs?rev=164734&amp;view=rev">164734</a>
 
278
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164703&amp;view=rev">164703</a>)</td>
 
279
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=34314">34314</a></td>
 
280
                 <td>Add TilesRequestProcessor handling for NoSuchDefinitionException.</td>
 
281
             </tr>
 
282
             <tr>
 
283
                 <td align="center">2005-04-25</td>
 
284
                 <td align="center">
 
285
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164684&amp;view=rev">164684</a>)</td>
 
286
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=33132">33132</a></td>
 
287
                 <td>Implement Servlet 2.3/2.4 methods using reflection in MultipartRequestWrapper.</td>
 
288
             </tr>
 
289
             <tr>
 
290
                 <td align="center">2005-04-25</td>
 
291
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=164591&amp;view=rev">164591</a>
 
292
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164590&amp;view=rev">164590</a>)</td>
 
293
                 <td align="center"><i>n/a</i></td>
 
294
                 <td>Synchronize the <i>Nested</i> tag attributes for changes made in 
 
295
                     <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=17708">Bug #17708</a> and
 
296
                     <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=21603">Bug #21603</a>.
 
297
               </td>
 
298
             </tr>
 
299
             <tr>
 
300
                 <td align="center">2005-04-23</td>
 
301
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=164343&amp;view=rev">164343</a>
 
302
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164340&amp;view=rev">164340</a>)</td>
 
303
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=33122">33122</a></td>
 
304
                 <td>Resolve &lt;html:link&gt; ClassCastException when a non String paramId value already exists in the params map.</td>
 
305
             </tr>
 
306
             <tr>
 
307
                 <td align="center">2005-04-21</td>
 
308
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=162109&amp;view=rev">162109</a>
 
309
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164337&amp;view=rev">164337</a>)</td>
 
310
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=33918 ">33918 </a></td>
 
311
                 <td>Allow saving errors to the session in the same way that messages are.</td>
 
312
             </tr>
 
313
             <tr>
 
314
                 <td align="center">2005-04-21</td>
 
315
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=162094&amp;view=rev">162094</a>
 
316
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=164334&amp;view=rev">164334</a>)</td>
 
317
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=33238">33238</a></td>
 
318
                 <td>Change JavascriptValidatorTag to escape double quotes in variable values.</td>
 
319
             </tr>
 
320
             <tr>
 
321
                 <td align="center">2005-04-12</td>
 
322
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=161093&amp;view=rev">161093</a>
 
323
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=164336&amp;view=rev">164336</a>)</td>
 
324
                 <td align="center"><i>n/a</i></td>
 
325
                 <td>Change DigestingPlugIn to give an explicit message when configSource/configPath yields a null URL.</td>
 
326
             </tr>
 
327
             <tr>
 
328
                 <td align="center">2005-04-06</td>
 
329
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=160261&amp;view=rev">160261</a>
 
330
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=160262&amp;view=rev">160262</a>)</td>
 
331
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=21603">21603</a></td>
 
332
                 <td>Automatic readonly/disabled settings using new &lt;html:form&gt; tag attributes.</td>
 
333
             </tr>
 
334
             <tr>
 
335
                 <td align="center">2005-04-06</td>
 
336
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=160255&amp;view=rev">160255</a>
 
337
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=160256&amp;view=rev">160256</a>)</td>
 
338
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=32778">32778</a></td>
 
339
                 <td>Resolve HTML Link Tag not working with JSTL Loop Tag.</td>
 
340
             </tr>
 
341
             <tr>
 
342
                 <td align="center">2005-03-31</td>
 
343
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=159608&amp;view=rev">159608</a>
 
344
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=159609&amp;view=rev">159609</a>)</td>
 
345
                 <td align="center"><i>n/a</i></td>
 
346
                 <td>Improve ValidWhen Exception Handling - exceptions are now logged and
 
347
                     validation fails returning an error message with details of the error.</td>
 
348
             </tr>
 
349
             <tr>
 
350
                 <td align="center">2005-03-31</td>
 
351
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=159583&amp;view=rev">159583</a>
 
352
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=159606&amp;view=rev">159606</a>)</td>
 
353
                 <td align="center"><i>n/a</i></td>
 
354
                 <td>A validwhen examples page and validation resource/bundles example pages (Server Side 
 
355
                     and JavaScript) have been added to the struts-examples webapp.</td>
 
356
             </tr>
 
357
             <tr>
 
358
                 <td align="center">2005-03-29</td>
 
359
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=159342&amp;view=rev">159342</a></td>
 
360
                 <td align="center"><i>n/a</i></td>
 
361
                 <td>Commons Validator dependency changed to version 1.1.4.</td>
 
362
             </tr>
 
363
             <tr>
 
364
                 <td align="center">2005-03-28</td>
 
365
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=159292&amp;view=rev">159292</a></td>
 
366
                 <td align="center"><i>n/a</i></td>
 
367
                 <td>Add "bundle" attribute to El version of JavascriptValidatorTag.</td>
 
368
             </tr>
 
369
             <tr>
 
370
                 <td align="center">2005-03-28</td>
 
371
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=159269&amp;view=rev">159269</a> &amp;
 
372
                    <a href="http://svn.apache.org/viewcvs.cgi?rev=159268&amp;view=rev">159268</a> 
 
373
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=159291&amp;view=rev">159291</a>)</td>
 
374
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=21760">21760</a> 
 
375
                                    <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=18169">18169</a></td>
 
376
                 <td>Resolve #21760 Support for non-default resource bundles in validation. 
 
377
                     Resolve #18169 Resource attribute of msg tag in the validation.xml doesn't work.</td>
 
378
             </tr>
 
379
             <tr>
 
380
                 <td align="center">2005-03-22</td>
 
381
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=158622&amp;view=rev">158622</a>
 
382
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=158617&amp;view=rev">158617</a>)</td>
 
383
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=34120">34120</a></td>
 
384
                 <td>Fix invalid XML in the struts-doc-config.xml file in the Tiles Documentation webapp.</td>
 
385
             </tr>
 
386
             <tr>
 
387
                 <td align="center">2005-03-20</td>
 
388
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=158267&amp;view=rev">158267</a>
 
389
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=158730&amp;view=rev">158730</a>)</td>
 
390
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=27089">27089</a></td>
 
391
                 <td>Add doubleRange validator to the validator-rules.xml</td>
 
392
             </tr>
 
393
             <tr>
 
394
                 <td align="center">2005-03-19</td>
 
395
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=158216&amp;view=rev">158216</a>
 
396
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=158727&amp;view=rev">158727</a>)</td>
 
397
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=34027">34027</a></td>
 
398
                 <td>Name attribute is no longer rendered in the &lt;html:form&gt; tag if the rendering mode is XHTML.</td>
 
399
             </tr>
 
400
             <tr>
 
401
                 <td align="center">2005-03-14</td>
 
402
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=157398&amp;view=rev">157398</a>
 
403
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=157399&amp;view=rev">157399</a>)</td>
 
404
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=33876">33876</a></td>
 
405
                 <td>JavaDoc corrections.</td>
 
406
             </tr>
 
407
             <tr>
 
408
                 <td align="center">2005-03-14</td>
 
409
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=157395&amp;view=rev">157395</a>
 
410
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=157397&amp;view=rev">157397</a>)</td>
 
411
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=33998 ">33998</a></td>
 
412
                 <td>Fix @link() tags</td>
 
413
             </tr>
 
414
             <tr>
 
415
                 <td align="center">2005-02-15</td>
 
416
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=153901&amp;view=rev">153901</a>
 
417
                     (<a href="http://svn.apache.org/viewcvs.cgi?rev=164747&amp;view=rev">164747</a>)</td>
 
418
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=866">866</a></td>
 
419
                 <td>Add ActionRedirect class to allow adding request parameters to redirecting forwards.</td>
 
420
             </tr>
 
421
             <tr>
 
422
                 <td align="center">2005-02-09</td>
 
423
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=153065&amp;view=rev">153065</a>
 
424
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=158605&amp;view=rev">158605</a>)</td>
 
425
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=14042">14042</a></td>
 
426
                 <td>Resolve memory leaks with JBoss 3.x +(Tomcat/Jetty).</td>
 
427
             </tr>
 
428
             <tr>
 
429
                 <td align="center">2005-01-06</td>
 
430
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=124417&amp;view=rev">124417</a>
 
431
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=124418&amp;view=rev">124418</a>)</td>
 
432
                 <td align="center"><i>n/a</i></td>
 
433
                 <td>Change DownloadAction to use supplied buffer size. </td>
 
434
             </tr>
 
435
             <tr>
 
436
                 <td align="center">2004-12-28</td>
 
437
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=123473&amp;view=rev">123473</a></td>
 
438
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=32490">32490</a></td>
 
439
                 <td>Sync up the EL tags with their non-EL counterparts. This adds the 'bundle'
 
440
                     attribute to many tags, and also the 'error*' attributes, and 'header', 'footer',
 
441
                     'prefix' and 'suffix' for the Errors tag.</td>
 
442
             </tr>
 
443
             <tr>
 
444
                 <td align="center">2004-12-27</td>
 
445
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=123447&amp;view=rev">123447</a>, 
 
446
                     <a href="http://svn.apache.org/viewcvs.cgi?rev=123444&amp;view=rev">123444</a> &amp;
 
447
                     <a href="http://svn.apache.org/viewcvs.cgi?rev=123442&amp;view=rev">123442</a> 
 
448
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=123587&amp;view=rev">123587</a>)</td>
 
449
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=32504">32504</a>
 
450
                                    <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=32016">32016</a></td>
 
451
                 <td>Change ModuleException to ensure all constructors invoke super. 
 
452
                     Resolve #32504 - document the means used to format values in the &lt;bean:write&gt; tag. 
 
453
                     Resolve #32016 - wrap the hidden token field in a &lt;div&gt; element for HTML 4.01 Strict compliance.</td>
 
454
             </tr>
 
455
             <tr>
 
456
                 <td align="center">2004-12-12</td>
 
457
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=111630&amp;view=rev">111630</a>
 
458
                    (<a href="http://svn.apache.org/viewcvs.cgi?rev=159674&amp;view=rev">159674</a>)</td>
 
459
                 <td align="center"><i>n/a</i></td>
 
460
                 <td>Remove use of "enum" as its a keyword in Java 5.</td>
 
461
             </tr>
 
462
             <tr>
 
463
                 <td align="center">2004-11-20</td>
 
464
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=106043&amp;view=rev">106043</a></td>
 
465
                 <td align="center"><i>n/a</i></td>
 
466
                 <td><b><a href="http://svn.apache.org/viewcvs.cgi/struts/core/branches/STRUTS_1_2_BRANCH/">1.2.x Branch</a> created</b></td>
 
467
             </tr>
 
468
         </table>
 
469
 
 
470
     <h3 id="STRUTS_1_2_6">Version 1.2.6</h3>
 
471
 
 
472
         <table>
 
473
             <thead><tr>
 
474
                 <th>Modification</th><th>Revision</th><th>Bugzilla</th><th>Description</th>
 
475
             </tr></thead>
 
476
             <tr>
 
477
                 <td align="center">2004-11-20</td>
 
478
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=106041&amp;view=rev">106041</a></td>
 
479
                 <td align="center"><i>n/a</i></td>
 
480
                 <td><a href="http://svn.apache.org/viewcvs.cgi/struts/core/tags/STRUTS_1_2_6/">Version 1.2.6</a> tagged</td>
 
481
             </tr>
 
482
             <tr>
 
483
                 <td align="center">2004-11-20</td>
 
484
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=105966&amp;view=rev">105966</a></td>
 
485
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31642">31642</a></td>
 
486
                 <td>Resolve &lt;bean:include&gt; always include Session id (if any) even for external Urls (href attribute)</td>
 
487
             </tr>
 
488
             <tr>
 
489
                 <td align="center">2004-11-20</td>
 
490
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=105965&amp;view=rev">105965</a></td>
 
491
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=32283">32283</a></td>
 
492
                 <td>Two slashes created by TagUtils.getActionMappingURL for webapps in root context</td>
 
493
             </tr>
 
494
             <tr>
 
495
                 <td align="center">2004-11-20</td>
 
496
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=105963&amp;view=rev">105963</a></td>
 
497
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=32265">32265</a></td>
 
498
                 <td>Add a warning to reset FormFile</td>
 
499
             </tr>
 
500
             <tr>
 
501
                 <td align="center">2004-11-20</td>
 
502
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=105907&amp;view=rev">105907</a></td>
 
503
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=32323">32323</a></td>
 
504
                 <td>Shale mailreader example should define the servlet version as 2.4</td>
 
505
             </tr>
 
506
             <tr>
 
507
                 <td align="center">2004-11-19</td>
 
508
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=105888&amp;view=rev">105888</a></td>
 
509
                 <td align="center"><i>n/a</i></td>
 
510
                 <td>Changes to update maven build after SVN layout re-org.</td>
 
511
             </tr>
 
512
             <tr>
 
513
                 <td align="center">2004-11-19</td>
 
514
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=105881&amp;view=rev">105881</a></td>
 
515
                 <td align="center"><i>n/a</i></td>
 
516
                 <td>Remove redundant definitions of maven.repo.central and maven.repo.central.directory</td>
 
517
             </tr>
 
518
             <tr>
 
519
                 <td align="center">2004-11-19</td>
 
520
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=105785&amp;view=rev">105785</a></td>
 
521
                 <td align="center"><i>n/a</i></td>
 
522
                 <td>Added ability to load struts, validator, and tiles config files from classloader if not 
 
523
                     found in the servlet context.</td>
 
524
             </tr>
 
525
             <tr>
 
526
                 <td align="center">2004-11-19</td>
 
527
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=105787&amp;view=rev">105787</a></td>
 
528
                 <td align="center"><i>n/a</i></td>
 
529
                 <td>Better handling of servlet initialization errors to mark the servlet as unavailable and
 
530
                     notify the developer of the probable cause.</td>
 
531
             </tr>
 
532
             <tr>
 
533
                 <td align="center">2004-11-18</td>
 
534
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=76271&amp;view=rev">76271</a></td>
 
535
                 <td align="center"><i>n/a</i></td>
 
536
                 <td>Add missing base class for Shale test cases.</td>
 
537
             </tr>
 
538
             <tr>
 
539
                 <td align="center">2004-11-17</td>
 
540
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=76098&amp;view=rev">76098</a></td>
 
541
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=32134">32134</a></td>
 
542
                 <td>Must use contextRelative to forward to Actions in Default module.</td>
 
543
             </tr>
 
544
             <tr>
 
545
                 <td align="center">2004-11-13</td>
 
546
                 <td colspan="2" align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=57587&amp;view=rev">57587</a> - 
 
547
                     <a href="http://svn.apache.org/viewcvs.cgi?rev=65927&amp;view=rev">65927</a><br />(not consecutive)</td>
 
548
                 <td>Subversion repository rearranged into separate core, el, faces and sandbox subprojects.</td>
 
549
             </tr>
 
550
             <tr>
 
551
                 <td align="center">2004-11-09</td>
 
552
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=57108&amp;view=rev">57108</a></td>
 
553
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31983">31983</a></td>
 
554
                 <td>Validator validwhen documentation typo.</td>
 
555
             </tr>
 
556
             <tr>
 
557
                 <td align="center">2004-11-09</td>
 
558
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=57099&amp;view=rev">57099</a></td>
 
559
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=32123">32123</a></td>
 
560
                 <td>DigestingPlugIn can't load a digester rule file.</td>
 
561
             </tr>
 
562
             <tr>
 
563
                 <td align="center">2004-11-06</td>
 
564
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=56770&amp;view=rev">56770</a></td>
 
565
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=32047">32047</a></td>
 
566
                 <td>"Created" boolean in FacesRequestProcessor.doForward() not being set</td>
 
567
             </tr>
 
568
             <tr>
 
569
                 <td align="center">2004-11-05</td>
 
570
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=56678&amp;view=rev">56678</a></td>
 
571
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=23924">23924</a></td>
 
572
                 <td>Improve TagUtils.filter() performance.</td>
 
573
             </tr>
 
574
             <tr>
 
575
                 <td align="center">2004-11-03</td>
 
576
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=56532&amp;view=rev">56532</a></td>
 
577
                 <td align="center"><i>n/a</i></td>
 
578
                 <td>Add LazyValidatorForm</td>
 
579
             </tr>
 
580
             <tr>
 
581
                 <td align="center">2004-10-30</td>
 
582
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=56018&amp;view=rev">56018</a>, 
 
583
                                    <a href="http://svn.apache.org/viewcvs.cgi?rev=56513&amp;view=rev">56513</a>, 
 
584
                                    <a href="http://svn.apache.org/viewcvs.cgi?rev=56520&amp;view=rev">56520</a></td>
 
585
                 <td align="center"><i>n/a</i></td>
 
586
                 <td>Change BeanUtils dependency to 1.7.0, Digester dependency to 1.6 and remove Collections Dependency</td>
 
587
             </tr>
 
588
             <tr>
 
589
                 <td align="center">2004-10-30</td>
 
590
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=56011&amp;view=rev">56011</a></td>
 
591
                 <td align="center"><i>n/a</i></td>
 
592
                 <td>Add "actions/DownloadAction.java", an abstract action that provides the nuts and bolts 
 
593
                     for downloading files.</td>
 
594
             </tr>
 
595
             <tr>
 
596
                 <td align="center">2004-10-29</td>
 
597
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=55980&amp;view=rev">55980</a></td>
 
598
                 <td align="center"><i>n/a</i></td>
 
599
                 <td>Document that if a link to a forward is used to switch modules, the path must point to an action.</td>
 
600
             </tr>
 
601
             <tr>
 
602
                 <td align="center">2004-10-26</td>
 
603
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=55577&amp;view=rev">55577</a></td>
 
604
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31399">31399</a></td>
 
605
                 <td>Message resources file in Struts Blank is misplaced. 
 
606
                     [<a href="http://svn.apache.org/viewcvs.cgi?rev=55584&amp;view=rev">55584</a>] Update README
 
607
                     with new layout.</td>
 
608
             </tr>
 
609
             <tr>
 
610
                 <td align="center">2004-10-26</td>
 
611
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=55576&amp;view=rev">55576</a></td>
 
612
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31348">31348</a></td>
 
613
                 <td>Using a tiles definition as errorPage causes infinite looping</td>
 
614
             </tr>
 
615
             <tr>
 
616
                 <td align="center">2004-10-24</td>
 
617
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=55416&amp;view=rev">55416</a></td>
 
618
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31761">31761</a></td>
 
619
                 <td>NullPointerException in ActionServlet</td>
 
620
             </tr>
 
621
             <tr>
 
622
                 <td align="center">2004-10-22</td>
 
623
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=55318&amp;view=rev">55318</a></td>
 
624
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31850">31850</a></td>
 
625
                 <td>Implement Serializable on ActionServletWrapper</td>
 
626
             </tr>
 
627
             <tr>
 
628
                 <td align="center">2004-10-20</td>
 
629
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=55110&amp;view=rev">55110</a></td>
 
630
                 <td align="center"><i>n/a</i></td>
 
631
                 <td>Add documentation to base chain-config.xml to help Tiles users.</td>
 
632
             </tr>
 
633
             <tr>
 
634
                 <td align="center">2004-10-18</td>
 
635
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=55025&amp;view=rev">55025</a></td>
 
636
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31755">31755</a></td>
 
637
                 <td>Document the default value for "scope" on an &lt;action&gt; element in the DTD for a
 
638
                     struts-config.xml file (along with all the other documentation).</td>
 
639
             </tr>
 
640
         </table>
 
641
 
 
642
     <h3 id="STRUTS_1_2_5">Version 1.2.5</h3>
 
643
 
 
644
         <table>
 
645
             <thead><tr>
 
646
                 <th>Modification</th><th>Revision</th><th>Bugzilla</th><th>Description</th>
 
647
             </tr></thead>
 
648
             <tr>
 
649
                 <td align="center">2004-10-17</td>
 
650
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=54947&amp;view=rev">54947</a></td>
 
651
                 <td align="center"><i>n/a</i></td>
 
652
                 <td><a href="http://svn.apache.org/viewcvs.cgi/struts/core/tags/STRUTS_1_2_5/">Version 1.2.5</a> tagged</td>
 
653
             </tr>
 
654
             <tr>
 
655
                 <td align="center">2004-10-16</td>
 
656
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=54936&amp;view=rev">54936</a></td>
 
657
                 <td align="center"><i>n/a</i></td>
 
658
                 <td>Update several Javadoc parameter names to resolve Javadoc generation warnings</td>
 
659
             </tr>
 
660
             <tr>
 
661
                 <td align="center">2004-10-16</td>
 
662
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=54892&amp;view=rev">54892</a></td>
 
663
                 <td align="center"><i>n/a</i></td>
 
664
                 <td>Remove dependency on commons-lang.</td>
 
665
             </tr>
 
666
             <tr>
 
667
                 <td align="center">2004-10-16</td>
 
668
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=54889&amp;view=rev">54889</a></td>
 
669
                 <td align="center"><i>n/a</i></td>
 
670
                 <td>Update roadmap for 1.2.4 / 1.2.5 releases.</td>
 
671
             </tr>
 
672
             <tr>
 
673
                 <td align="center">2004-10-09</td>
 
674
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=54187&amp;view=rev">54187</a></td>
 
675
                 <td align="center"><i>n/a</i></td>
 
676
                 <td>Move Struts-Faces from "contrib" to the trunk.</td>
 
677
             </tr>
 
678
             <tr>
 
679
                 <td align="center">2004-10-03</td>
 
680
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=51829&amp;view=rev">51829</a></td>
 
681
                 <td align="center"><i>n/a</i></td>
 
682
                 <td>Add header,footer,prefix,suffix attributes to ErrorsTag.</td>
 
683
             </tr>
 
684
             <tr>
 
685
                 <td align="center">2004-10-03</td>
 
686
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=51825&amp;view=rev">51825</a></td>
 
687
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31481">31481</a></td>
 
688
                 <td>Have Tiles ControllerSupport execute() call perform() for backward compatibility.
 
689
                     To be removed after version 1.2.</td>
 
690
             </tr>
 
691
             <tr>
 
692
                 <td align="center">2004-10-03</td>
 
693
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=51824&amp;view=rev">51824</a></td>
 
694
                 <td align="center"><i>n/a</i></td>
 
695
                 <td>Add validwhen test to compare two Strings containing numbers.</td>
 
696
             </tr>
 
697
             <tr>
 
698
                 <td align="center">2004-10-03</td>
 
699
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=51823&amp;view=rev">51823</a></td>
 
700
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31514">31514</a></td>
 
701
                 <td>validwhen validator should do numeric compare when both items convertable to Integer.</td>
 
702
             </tr>
 
703
             <tr>
 
704
                 <td align="center">2004-10-01</td>
 
705
                 <td align="center"><a href="http://svn.apache.org/viewcvs.cgi?rev=51759&amp;view=rev">51759</a></td>
 
706
                 <td align="center"><i>n/a</i></td>
 
707
                 <td><b>Move repository to Subversion.</b></td>
 
708
             </tr>
 
709
             <tr>
 
710
                 <td align="center">2004-09-23</td>
 
711
                 <td align="center"><i>cvs</i></td>
 
712
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=17708">17708</a></td>
 
713
                 <td>Better i18n and alternate bundle support for html tags. Add missing "bundle" attribute
 
714
                     to tld for html tags. Tags affected are ButtonTag, CancelTag, CheckboxTag, FileTag,
 
715
                     FrameTag, HiddenTag, LinkTag, MultiboxTag, PasswordTag, RadioTag, ResetTag, SelectTag,
 
716
                     SubmitTag,TextTag, TextareaTag. Also added a test for the bundle attribute for each of
 
717
                     the above tags.</td>
 
718
             </tr>
 
719
             <tr>
 
720
                 <td align="center">2004-09-23</td>
 
721
                 <td align="center"><i>cvs</i></td>
 
722
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31212">31212</a>
 
723
                                    <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=20417">20417</a></td>
 
724
                 <td>Add missing nested tag attributes.
 
725
                     Resolve #31212 "nested:link module attribute not specified in tld".
 
726
                     Resolve #20417 "Attribute idName not declared for NestedRadioTag".</td>
 
727
             </tr>
 
728
             <tr>
 
729
                 <td align="center">2004-09-23</td>
 
730
                 <td align="center"><i>cvs</i></td>
 
731
                 <td align="center"><a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=31374">31374</a></td>
 
732
                 <td>Forward path in Validator struts-config.xml in struts-examples incorrect</td>
 
733
             </tr>
 
734
             <tr>
 
735
                 <td align="center">2004-09-23</td>
 
736
                 <td align="center"><i>cvs</i></td>
 
737
                 <td align="center"><i>n/a</i></td>
 
738
                 <td>Refactor some of the HTML tags make extending them easier. 
 
739
                     <ul><li>added prepareOtherAttributes() method</li>
 
740
                         <li>added prepareName() method</li>
 
741
                         <li>use getters rather than instance variables</li>
 
742
                         <li>refactored SubmitTag - ButtonTag, CancelTag and ResetTag now inherit from SubmitTag.</li>
 
743
                     </ul></td>
 
744
             </tr>
 
745
         </table>
 
746
      </section>
 
747
 
 
748
     <section>
 
749
       <p class="right">Next:
 
750
       <a href="installation.html">Installation</a></p>
 
751
     </section>
 
752
 </chapter>
 
753
</body>
 
754
</document>