You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by hu...@apache.org on 2007/01/15 04:50:07 UTC

svn commit: r496221 [2/3] - in /struts/struts2/trunk: apps/showcase/src/main/java/org/apache/struts2/showcase/filedownload/ apps/showcase/src/main/resources/ apps/showcase/src/main/webapp/ apps/showcase/src/main/webapp/WEB-INF/decorators/ apps/showcase...

Modified: struts/struts2/trunk/core/src/main/resources/META-INF/struts-tags.tld
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/META-INF/struts-tags.tld?view=diff&rev=496221&r1=496220&r2=496221
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/META-INF/struts-tags.tld (original)
+++ struts/struts2/trunk/core/src/main/resources/META-INF/struts-tags.tld Sun Jan 14 19:50:06 2007
@@ -12,52 +12,64 @@
                     to ensure that input is correct and output is localized.
                     The Struts Tags can be used with JSP FreeMarker or Velocity."]]></description>
   <tag>
-    <name>action</name>
-    <tag-class>org.apache.struts2.views.jsp.ActionTag</tag-class>
+    <name>generator</name>
+    <tag-class>org.apache.struts2.views.jsp.iterator.IteratorGeneratorTag</tag-class>
     <body-content>JSP</body-content>
-    <description><![CDATA[Execute an action from within a view]]></description>
+    <description><![CDATA[Generate an iterator for a iterable source.]]></description>
     <attribute>
-      <name>executeResult</name>
+      <name>converter</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Whether the result of this action (probably a view) should be executed/rendered]]></description>
+      <description><![CDATA[The converter to convert the String entry parsed from <i>val</i> into an object]]></description>
     </attribute>
     <attribute>
-      <name>flush</name>
+      <name>count</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Whether the writer should be flush upon end of action component tag, default to true]]></description>
+      <description><![CDATA[The max number entries to be in the iterator]]></description>
     </attribute>
     <attribute>
       <name>id</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
+      <description><![CDATA[The id to store the resultant iterator into page context, if such id is supplied]]></description>
     </attribute>
     <attribute>
-      <name>ignoreContextParams</name>
-      <required>false</required>
+      <name>separator</name>
+      <required>true</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Whether the request parameters are to be included when the action is invoked]]></description>
+      <description><![CDATA[The separator to be used in separating the <i>val</i> into entries of the iterator]]></description>
     </attribute>
     <attribute>
-      <name>name</name>
+      <name>val</name>
       <required>true</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Name of the action to be executed (without the extension suffix eg. .action)]]></description>
+      <description><![CDATA[The source to be parsed into an iterator]]></description>
     </attribute>
+  </tag>
+  <tag>
+    <name>push</name>
+    <tag-class>org.apache.struts2.views.jsp.PushTag</tag-class>
+    <body-content>JSP</body-content>
+    <description><![CDATA[Push value on stack for simplified usage.]]></description>
     <attribute>
-      <name>namespace</name>
+      <name>id</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Namespace for action to call]]></description>
+      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
+    </attribute>
+    <attribute>
+      <name>value</name>
+      <required>true</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Value to push on stack]]></description>
     </attribute>
   </tag>
   <tag>
-    <name>actionerror</name>
-    <tag-class>org.apache.struts2.views.jsp.ui.ActionErrorTag</tag-class>
-    <body-content>empty</body-content>
-    <description><![CDATA[Render action errors if they exists]]></description>
+    <name>doubleselect</name>
+    <tag-class>org.apache.struts2.views.jsp.ui.DoubleSelectTag</tag-class>
+    <body-content>JSP</body-content>
+    <description><![CDATA[Renders two HTML select elements with second one changing displayed values depending on selected entry of first one.]]></description>
     <attribute>
       <name>accesskey</name>
       <required>false</required>
@@ -83,208 +95,202 @@
       <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>id</name>
+      <name>doubleAccesskey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
+      <description><![CDATA[Set the html accesskey attribute.]]></description>
     </attribute>
     <attribute>
-      <name>key</name>
+      <name>doubleCssClass</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
+      <description><![CDATA[The css class for the second list]]></description>
     </attribute>
     <attribute>
-      <name>label</name>
+      <name>doubleCssStyle</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Label expression used for rendering a element specific label]]></description>
+      <description><![CDATA[The css style for the second list]]></description>
     </attribute>
     <attribute>
-      <name>labelposition</name>
+      <name>doubleDisabled</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Define label position of form element (top/left)]]></description>
+      <description><![CDATA[Decides if a disable attribute should be added to the second list]]></description>
     </attribute>
     <attribute>
-      <name>name</name>
+      <name>doubleEmptyOption</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The name to set for element]]></description>
+      <description><![CDATA[Decides if the second list will add an empty option]]></description>
     </attribute>
     <attribute>
-      <name>onblur</name>
+      <name>doubleHeaderKey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[ Set the html onblur attribute on rendered html element]]></description>
+      <description><![CDATA[The header key for the second list]]></description>
     </attribute>
     <attribute>
-      <name>onchange</name>
+      <name>doubleHeaderValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onchange attribute on rendered html element]]></description>
+      <description><![CDATA[The header value for the second list]]></description>
     </attribute>
     <attribute>
-      <name>onclick</name>
+      <name>doubleId</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onclick attribute on rendered html element]]></description>
+      <description><![CDATA[The id of the second list]]></description>
     </attribute>
     <attribute>
-      <name>ondblclick</name>
-      <required>false</required>
+      <name>doubleList</name>
+      <required>true</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html ondblclick attribute on rendered html element]]></description>
+      <description><![CDATA[The second iterable source to populate from.]]></description>
     </attribute>
     <attribute>
-      <name>onfocus</name>
+      <name>doubleListKey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onfocus attribute on rendered html element]]></description>
+      <description><![CDATA[The key expression to use for second list]]></description>
     </attribute>
     <attribute>
-      <name>onkeydown</name>
+      <name>doubleListValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onkeydown attribute on rendered html element]]></description>
+      <description><![CDATA[The value expression to use for second list]]></description>
     </attribute>
     <attribute>
-      <name>onkeypress</name>
+      <name>doubleMultiple</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onkeypress attribute on rendered html element]]></description>
+      <description><![CDATA[ Decides if multiple attribute should be set on the second list]]></description>
     </attribute>
     <attribute>
-      <name>onkeyup</name>
-      <required>false</required>
+      <name>doubleName</name>
+      <required>true</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onkeyup attribute on rendered html element]]></description>
+      <description><![CDATA[The name for complete component]]></description>
     </attribute>
     <attribute>
-      <name>onmousedown</name>
+      <name>doubleOnblur</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onmousedown attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onblur attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onmousemove</name>
+      <name>doubleOnchange</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onmousemove attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onchange attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onmouseout</name>
+      <name>doubleOnclick</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onmouseout attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onclick attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onmouseover</name>
+      <name>doubleOndblclick</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onmouseover attribute on rendered html element]]></description>
+      <description><![CDATA[Set the ondbclick attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onmouseup</name>
+      <name>doubleOnfocus</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onmouseup attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onfocus attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onselect</name>
+      <name>doubleOnkeydown</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onselect attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onkeydown attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>required</name>
+      <name>doubleOnkeypress</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[If set to true, the rendered element will indicate that input is required]]></description>
+      <description><![CDATA[Set the onkeypress attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>requiredposition</name>
+      <name>doubleOnkeyup</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Define required position of required form element (left|right)]]></description>
+      <description><![CDATA[Set the onkeyup attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>tabindex</name>
+      <name>doubleOnmousedown</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html tabindex attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onmousedown attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>template</name>
+      <name>doubleOnmousemove</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The template (other than default) to use for rendering the element]]></description>
+      <description><![CDATA[Set the onmousemove attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>templateDir</name>
+      <name>doubleOnmouseout</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The template directory.]]></description>
+      <description><![CDATA[Set the onmouseout attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>theme</name>
+      <name>doubleOnmouseover</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The theme (other than default) to use for rendering the element]]></description>
+      <description><![CDATA[Set the onmouseover attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>title</name>
+      <name>doubleOnmouseup</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html title attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onmouseup attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>tooltip</name>
+      <name>doubleOnselect</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the tooltip of this particular component]]></description>
+      <description><![CDATA[Set the onselect attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>tooltipConfig</name>
+      <name>doubleSize</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the tooltip configuration]]></description>
+      <description><![CDATA[Set the size attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>value</name>
+      <name>doubleValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Preset the value of input element.]]></description>
+      <description><![CDATA[The value expression for complete component]]></description>
     </attribute>
-  </tag>
-  <tag>
-    <name>actionmessage</name>
-    <tag-class>org.apache.struts2.views.jsp.ui.ActionMessageTag</tag-class>
-    <body-content>empty</body-content>
-    <description><![CDATA[Render action messages if they exists]]></description>
     <attribute>
-      <name>accesskey</name>
+      <name>emptyOption</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html accesskey attribute on rendered html element]]></description>
+      <description><![CDATA[Decides of an empty option is to be inserted in the second list]]></description>
     </attribute>
     <attribute>
-      <name>cssClass</name>
+      <name>formName</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The css class to use for element]]></description>
+      <description><![CDATA[The form name this component resides in and populates to]]></description>
     </attribute>
     <attribute>
-      <name>cssStyle</name>
+      <name>headerKey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The css style definitions for element ro use]]></description>
+      <description><![CDATA[Set the header key of the second list. Must not be empty! '-1' and '' is correct, '' is bad.]]></description>
     </attribute>
     <attribute>
-      <name>disabled</name>
+      <name>headerValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
+      <description><![CDATA[ Set the header value of the second list]]></description>
     </attribute>
     <attribute>
       <name>id</name>
@@ -311,6 +317,30 @@
       <description><![CDATA[Define label position of form element (top/left)]]></description>
     </attribute>
     <attribute>
+      <name>list</name>
+      <required>true</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Iterable source to populate from. If the list is a Map (key, value), the Map key will become the option 'value' parameter and the Map value will become the option body.]]></description>
+    </attribute>
+    <attribute>
+      <name>listKey</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[ Property of list objects to get field value from]]></description>
+    </attribute>
+    <attribute>
+      <name>listValue</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Property of list objects to get field content from]]></description>
+    </attribute>
+    <attribute>
+      <name>multiple</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Creates a multiple select. The tag will pre-select multiple values if the values are passed as an Array (of appropriate types) via the value attribute.]]></description>
+    </attribute>
+    <attribute>
       <name>name</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -413,6 +443,12 @@
       <description><![CDATA[Define required position of required form element (left|right)]]></description>
     </attribute>
     <attribute>
+      <name>size</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Size of the element box (# of elements to show)]]></description>
+    </attribute>
+    <attribute>
       <name>tabindex</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -462,10 +498,10 @@
     </attribute>
   </tag>
   <tag>
-    <name>a</name>
-    <tag-class>org.apache.struts2.views.jsp.ui.AnchorTag</tag-class>
+    <name>debug</name>
+    <tag-class>org.apache.struts2.views.jsp.ui.DebugTag</tag-class>
     <body-content>JSP</body-content>
-    <description><![CDATA[Render a HTML href element that when clicked can optionally call a URL via remote XMLHttpRequest and updates its targets]]></description>
+    <description><![CDATA[Prints debugging information]]></description>
     <attribute>
       <name>accesskey</name>
       <required>false</required>
@@ -491,112 +527,46 @@
       <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>errorText</name>
+      <name>id</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The text to display to the user if the is an error fetching the content]]></description>
+      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
     </attribute>
     <attribute>
-      <name>executeScripts</name>
+      <name>key</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Javascript code in the fetched content will be executed]]></description>
+      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
     </attribute>
     <attribute>
-      <name>formFilter</name>
+      <name>label</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Function name used to filter the fields of the form.]]></description>
+      <description><![CDATA[Label expression used for rendering a element specific label]]></description>
     </attribute>
     <attribute>
-      <name>formId</name>
+      <name>labelposition</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Form id whose fields will be serialized and passed as parameters]]></description>
+      <description><![CDATA[Define label position of form element (top/left)]]></description>
     </attribute>
     <attribute>
-      <name>handler</name>
+      <name>name</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Javascript function name that will make the request]]></description>
+      <description><![CDATA[The name to set for element]]></description>
     </attribute>
     <attribute>
-      <name>href</name>
+      <name>onblur</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The URL to call to obtain the content. Note: If used with ajax context, the value must be set as an url tag value.]]></description>
+      <description><![CDATA[ Set the html onblur attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>id</name>
+      <name>onchange</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
-    </attribute>
-    <attribute>
-      <name>indicator</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Id of element that will be shown while making request]]></description>
-    </attribute>
-    <attribute>
-      <name>key</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
-    </attribute>
-    <attribute>
-      <name>label</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Label expression used for rendering a element specific label]]></description>
-    </attribute>
-    <attribute>
-      <name>labelposition</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Define label position of form element (top/left)]]></description>
-    </attribute>
-    <attribute>
-      <name>listenTopics</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Topic that will trigger the remote call]]></description>
-    </attribute>
-    <attribute>
-      <name>loadingText</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Text to be shown while content is being fetched]]></description>
-    </attribute>
-    <attribute>
-      <name>name</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The name to set for element]]></description>
-    </attribute>
-    <attribute>
-      <name>notifyTopics</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Topics that will published when the remote call completes]]></description>
-    </attribute>
-    <attribute>
-      <name>onLoadJS</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Deprecated. Use 'notifyTopics'. Javascript code execute after reload]]></description>
-    </attribute>
-    <attribute>
-      <name>onblur</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[ Set the html onblur attribute on rendered html element]]></description>
-    </attribute>
-    <attribute>
-      <name>onchange</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onchange attribute on rendered html element]]></description>
+      <description><![CDATA[Set the html onchange attribute on rendered html element]]></description>
     </attribute>
     <attribute>
       <name>onclick</name>
@@ -671,18 +641,6 @@
       <description><![CDATA[Set the html onselect attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>openTemplate</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set template to use for opening the rendered html.]]></description>
-    </attribute>
-    <attribute>
-      <name>preInvokeJS</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Deprecated. Use 'notifyTopics'. Javascript code execute before reload]]></description>
-    </attribute>
-    <attribute>
       <name>required</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -695,24 +653,12 @@
       <description><![CDATA[Define required position of required form element (left|right)]]></description>
     </attribute>
     <attribute>
-      <name>showErrorTransportText</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set whether errors will be shown or not]]></description>
-    </attribute>
-    <attribute>
       <name>tabindex</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
       <description><![CDATA[Set the html tabindex attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>targets</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Comma delimited list of ids of the elements whose content will be updated]]></description>
-    </attribute>
-    <attribute>
       <name>template</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -756,22 +702,10 @@
     </attribute>
   </tag>
   <tag>
-    <name>append</name>
-    <tag-class>org.apache.struts2.views.jsp.iterator.AppendIteratorTag</tag-class>
-    <body-content>JSP</body-content>
-    <description><![CDATA[Append the values of a list of iterators to one iterator]]></description>
-    <attribute>
-      <name>id</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The id of which if supplied will have the resultant appended iterator stored under in the stack's context]]></description>
-    </attribute>
-  </tag>
-  <tag>
-    <name>autocompleter</name>
-    <tag-class>org.apache.struts2.views.jsp.ui.AutocompleterTag</tag-class>
+    <name>optiontransferselect</name>
+    <tag-class>org.apache.struts2.views.jsp.ui.OptionTransferSelectTag</tag-class>
     <body-content>JSP</body-content>
-    <description><![CDATA[Renders a combobox with autocomplete and AJAX capabilities]]></description>
+    <description><![CDATA[Renders an input form]]></description>
     <attribute>
       <name>accesskey</name>
       <required>false</required>
@@ -779,353 +713,299 @@
       <description><![CDATA[Set the html accesskey attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>autoComplete</name>
+      <name>addAllToLeftLabel</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Whether autocompleter should make suggestion on the textbox]]></description>
+      <description><![CDATA[Set Add To Left button label]]></description>
     </attribute>
     <attribute>
-      <name>cssClass</name>
+      <name>addAllToRightLabel</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The css class to use for element]]></description>
+      <description><![CDATA[Set Add All To Right button label]]></description>
     </attribute>
     <attribute>
-      <name>cssStyle</name>
+      <name>addToLeftLabel</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The css style definitions for element ro use]]></description>
+      <description><![CDATA[Set Add To Left button label]]></description>
     </attribute>
     <attribute>
-      <name>delay</name>
+      <name>addToRightLabel</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Delay before making the search]]></description>
+      <description><![CDATA[Set Add To Right button label]]></description>
     </attribute>
     <attribute>
-      <name>disabled</name>
+      <name>allowAddAllToLeft</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Enable or disable autocompleter]]></description>
+      <description><![CDATA[Enable Add All To Left button]]></description>
     </attribute>
     <attribute>
-      <name>dropdownHeight</name>
+      <name>allowAddAllToRight</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Dropdown's height in pixels]]></description>
+      <description><![CDATA[Enable Add All To Right button]]></description>
     </attribute>
     <attribute>
-      <name>dropdownWidth</name>
+      <name>allowAddToLeft</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Dropdown's width]]></description>
+      <description><![CDATA[Enable Add To Left button]]></description>
     </attribute>
     <attribute>
-      <name>emptyOption</name>
+      <name>allowAddToRight</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Decide if an empty option is to be inserted. Default false.]]></description>
+      <description><![CDATA[Enable Add To Right button]]></description>
     </attribute>
     <attribute>
-      <name>forceValidOption</name>
+      <name>allowSelectAll</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Force selection to be one of the options]]></description>
+      <description><![CDATA[Enable Select All button]]></description>
     </attribute>
     <attribute>
-      <name>formFilter</name>
+      <name>allowUpDownOnLeft</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Function name used to filter the fields of the form]]></description>
+      <description><![CDATA[Enable up / down on the left side]]></description>
     </attribute>
     <attribute>
-      <name>formId</name>
+      <name>allowUpDownOnRight</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Form id whose fields will be serialized and passed as parameters]]></description>
+      <description><![CDATA[Enable up / down on the right side]]></description>
     </attribute>
     <attribute>
-      <name>headerKey</name>
+      <name>buttonCssClass</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the header key for the header option.]]></description>
+      <description><![CDATA[Set buttons css class]]></description>
     </attribute>
     <attribute>
-      <name>headerValue</name>
+      <name>buttonCssStyle</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the header value for the header option.]]></description>
+      <description><![CDATA[Set button css style]]></description>
     </attribute>
     <attribute>
-      <name>href</name>
+      <name>cssClass</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The URL used to load the options]]></description>
+      <description><![CDATA[The css class to use for element]]></description>
     </attribute>
     <attribute>
-      <name>id</name>
+      <name>cssStyle</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
+      <description><![CDATA[The css style definitions for element ro use]]></description>
     </attribute>
     <attribute>
-      <name>indicator</name>
+      <name>disabled</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Id of element that will be shown while request is made]]></description>
+      <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>key</name>
+      <name>doubleAccesskey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
+      <description><![CDATA[Set the html accesskey attribute.]]></description>
     </attribute>
     <attribute>
-      <name>label</name>
+      <name>doubleCssClass</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Label expression used for rendering a element specific label]]></description>
+      <description><![CDATA[The css class for the second list]]></description>
     </attribute>
     <attribute>
-      <name>labelposition</name>
+      <name>doubleCssStyle</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Define label position of form element (top/left)]]></description>
+      <description><![CDATA[The css style for the second list]]></description>
     </attribute>
     <attribute>
-      <name>list</name>
+      <name>doubleDisabled</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Iteratable source to populate from.]]></description>
+      <description><![CDATA[Decides if a disable attribute should be added to the second list]]></description>
     </attribute>
     <attribute>
-      <name>listKey</name>
+      <name>doubleEmptyOption</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the key used to retrive the option key.]]></description>
+      <description><![CDATA[Decides if the second list will add an empty option]]></description>
     </attribute>
     <attribute>
-      <name>listValue</name>
+      <name>doubleHeaderKey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the value used to retrive the option value.]]></description>
+      <description><![CDATA[The header key for the second list]]></description>
     </attribute>
     <attribute>
-      <name>listenTopics</name>
+      <name>doubleHeaderValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Topic that will trigger a reload]]></description>
+      <description><![CDATA[The header value for the second list]]></description>
     </attribute>
     <attribute>
-      <name>loadMinimumCount</name>
+      <name>doubleId</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Minimum number of characters that will force the content to be loaded]]></description>
+      <description><![CDATA[The id of the second list]]></description>
     </attribute>
     <attribute>
-      <name>loadOnTextChange</name>
-      <required>false</required>
+      <name>doubleList</name>
+      <required>true</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Options will be reloaded everytime a character is typed on the textbox]]></description>
+      <description><![CDATA[The second iterable source to populate from.]]></description>
     </attribute>
     <attribute>
-      <name>maxLength</name>
+      <name>doubleListKey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Deprecated. Use maxlength instead.]]></description>
+      <description><![CDATA[The key expression to use for second list]]></description>
     </attribute>
     <attribute>
-      <name>maxlength</name>
+      <name>doubleListValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[HTML maxlength attribute]]></description>
+      <description><![CDATA[The value expression to use for second list]]></description>
     </attribute>
     <attribute>
-      <name>name</name>
+      <name>doubleMultiple</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The name to set for element]]></description>
+      <description><![CDATA[ Decides if multiple attribute should be set on the second list]]></description>
     </attribute>
     <attribute>
-      <name>notifyTopics</name>
-      <required>false</required>
+      <name>doubleName</name>
+      <required>true</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Topics that will be published when content is reloaded]]></description>
+      <description><![CDATA[The name for complete component]]></description>
     </attribute>
     <attribute>
-      <name>onblur</name>
+      <name>doubleOnblur</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[ Set the html onblur attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onblur attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onchange</name>
+      <name>doubleOnchange</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onchange attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onchange attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onclick</name>
+      <name>doubleOnclick</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onclick attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onclick attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>ondblclick</name>
+      <name>doubleOndblclick</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html ondblclick attribute on rendered html element]]></description>
+      <description><![CDATA[Set the ondbclick attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onfocus</name>
+      <name>doubleOnfocus</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onfocus attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onfocus attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onkeydown</name>
+      <name>doubleOnkeydown</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onkeydown attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onkeydown attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onkeypress</name>
+      <name>doubleOnkeypress</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onkeypress attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onkeypress attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>onkeyup</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onkeyup attribute on rendered html element]]></description>
-    </attribute>
-    <attribute>
-      <name>onmousedown</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onmousedown attribute on rendered html element]]></description>
-    </attribute>
-    <attribute>
-      <name>onmousemove</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onmousemove attribute on rendered html element]]></description>
-    </attribute>
-    <attribute>
-      <name>onmouseout</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onmouseout attribute on rendered html element]]></description>
-    </attribute>
-    <attribute>
-      <name>onmouseover</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onmouseover attribute on rendered html element]]></description>
-    </attribute>
-    <attribute>
-      <name>onmouseup</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onmouseup attribute on rendered html element]]></description>
-    </attribute>
-    <attribute>
-      <name>onselect</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html onselect attribute on rendered html element]]></description>
-    </attribute>
-    <attribute>
-      <name>readonly</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Whether the input is readonly]]></description>
-    </attribute>
-    <attribute>
-      <name>required</name>
+      <name>doubleOnkeyup</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[If set to true, the rendered element will indicate that input is required]]></description>
+      <description><![CDATA[Set the onkeyup attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>requiredposition</name>
+      <name>doubleOnmousedown</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Define required position of required form element (left|right)]]></description>
+      <description><![CDATA[Set the onmousedown attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>searchType</name>
+      <name>doubleOnmousemove</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[how the search must be performed, options are: 'startstring', 'startword' and 'substring']]></description>
+      <description><![CDATA[Set the onmousemove attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>showDownArrow</name>
+      <name>doubleOnmouseout</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Show or hide the down arrow button]]></description>
+      <description><![CDATA[Set the onmouseout attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>size</name>
+      <name>doubleOnmouseover</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[HTML size attribute]]></description>
+      <description><![CDATA[Set the onmouseover attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>tabindex</name>
+      <name>doubleOnmouseup</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html tabindex attribute on rendered html element]]></description>
+      <description><![CDATA[Set the onmouseup attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>template</name>
+      <name>doubleOnselect</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The template (other than default) to use for rendering the element]]></description>
+      <description><![CDATA[Set the onselect attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>templateDir</name>
+      <name>doubleSize</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The template directory.]]></description>
+      <description><![CDATA[Set the size attribute of the second list]]></description>
     </attribute>
     <attribute>
-      <name>theme</name>
+      <name>doubleValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The theme (other than default) to use for rendering the element]]></description>
+      <description><![CDATA[The value expression for complete component]]></description>
     </attribute>
     <attribute>
-      <name>title</name>
+      <name>emptyOption</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html title attribute on rendered html element]]></description>
+      <description><![CDATA[Decides of an empty option is to be inserted in the second list]]></description>
     </attribute>
     <attribute>
-      <name>tooltip</name>
+      <name>formName</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the tooltip of this particular component]]></description>
+      <description><![CDATA[The form name this component resides in and populates to]]></description>
     </attribute>
     <attribute>
-      <name>tooltipConfig</name>
+      <name>headerKey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the tooltip configuration]]></description>
+      <description><![CDATA[Set the header key of the second list. Must not be empty! '-1' and '' is correct, '' is bad.]]></description>
     </attribute>
     <attribute>
-      <name>value</name>
+      <name>headerValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Preset the value of input element.]]></description>
+      <description><![CDATA[ Set the header value of the second list]]></description>
     </attribute>
-  </tag>
-  <tag>
-    <name>bean</name>
-    <tag-class>org.apache.struts2.views.jsp.BeanTag</tag-class>
-    <body-content>JSP</body-content>
-    <description><![CDATA[Instantiate a JavaBean and place it in the context]]></description>
     <attribute>
       <name>id</name>
       <required>false</required>
@@ -1133,70 +1013,64 @@
       <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
     </attribute>
     <attribute>
-      <name>name</name>
-      <required>true</required>
+      <name>key</name>
+      <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The class name of the bean to be instantiated (must respect JavaBean specification)]]></description>
+      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
     </attribute>
-  </tag>
-  <tag>
-    <name>checkbox</name>
-    <tag-class>org.apache.struts2.views.jsp.ui.CheckboxTag</tag-class>
-    <body-content>JSP</body-content>
-    <description><![CDATA[Render a checkbox input field]]></description>
     <attribute>
-      <name>accesskey</name>
+      <name>label</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html accesskey attribute on rendered html element]]></description>
+      <description><![CDATA[Label expression used for rendering a element specific label]]></description>
     </attribute>
     <attribute>
-      <name>cssClass</name>
+      <name>labelposition</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The css class to use for element]]></description>
+      <description><![CDATA[Define label position of form element (top/left)]]></description>
     </attribute>
     <attribute>
-      <name>cssStyle</name>
+      <name>leftDownLabel</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The css style definitions for element ro use]]></description>
+      <description><![CDATA[Down label for the left side.]]></description>
     </attribute>
     <attribute>
-      <name>disabled</name>
+      <name>leftTitle</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
+      <description><![CDATA[Set Left title]]></description>
     </attribute>
     <attribute>
-      <name>fieldValue</name>
+      <name>leftUpLabel</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The actual HTML value attribute of the checkbox.]]></description>
+      <description><![CDATA[Up label for the left side]]></description>
     </attribute>
     <attribute>
-      <name>id</name>
-      <required>false</required>
+      <name>list</name>
+      <required>true</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
+      <description><![CDATA[Iterable source to populate from. If the list is a Map (key, value), the Map key will become the option 'value' parameter and the Map value will become the option body.]]></description>
     </attribute>
     <attribute>
-      <name>key</name>
+      <name>listKey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
+      <description><![CDATA[ Property of list objects to get field value from]]></description>
     </attribute>
     <attribute>
-      <name>label</name>
+      <name>listValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Label expression used for rendering a element specific label]]></description>
+      <description><![CDATA[Property of list objects to get field content from]]></description>
     </attribute>
     <attribute>
-      <name>labelposition</name>
+      <name>multiple</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Define label position of form element (top/left)]]></description>
+      <description><![CDATA[Creates a multiple select. The tag will pre-select multiple values if the values are passed as an Array (of appropriate types) via the value attribute.]]></description>
     </attribute>
     <attribute>
       <name>name</name>
@@ -1301,6 +1175,36 @@
       <description><![CDATA[Define required position of required form element (left|right)]]></description>
     </attribute>
     <attribute>
+      <name>rightDownLabel</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Down label for the left side.]]></description>
+    </attribute>
+    <attribute>
+      <name>rightTitle</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Set Right title]]></description>
+    </attribute>
+    <attribute>
+      <name>rightUpLabel</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Up label for the right side.]]></description>
+    </attribute>
+    <attribute>
+      <name>selectAllLabel</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Set Select All button label]]></description>
+    </attribute>
+    <attribute>
+      <name>size</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Size of the element box (# of elements to show)]]></description>
+    </attribute>
+    <attribute>
       <name>tabindex</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -1350,78 +1254,174 @@
     </attribute>
   </tag>
   <tag>
-    <name>checkboxlist</name>
-    <tag-class>org.apache.struts2.views.jsp.ui.CheckboxListTag</tag-class>
+    <name>bean</name>
+    <tag-class>org.apache.struts2.views.jsp.BeanTag</tag-class>
     <body-content>JSP</body-content>
-    <description><![CDATA[Render a list of checkboxes]]></description>
+    <description><![CDATA[Instantiate a JavaBean and place it in the context]]></description>
     <attribute>
-      <name>accesskey</name>
+      <name>id</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html accesskey attribute on rendered html element]]></description>
+      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
     </attribute>
     <attribute>
-      <name>cssClass</name>
-      <required>false</required>
+      <name>name</name>
+      <required>true</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The css class to use for element]]></description>
+      <description><![CDATA[The class name of the bean to be instantiated (must respect JavaBean specification)]]></description>
     </attribute>
+  </tag>
+  <tag>
+    <name>text</name>
+    <tag-class>org.apache.struts2.views.jsp.TextTag</tag-class>
+    <body-content>JSP</body-content>
+    <description><![CDATA[Render a I18n text message]]></description>
     <attribute>
-      <name>cssStyle</name>
+      <name>id</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The css style definitions for element ro use]]></description>
+      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
     </attribute>
     <attribute>
-      <name>disabled</name>
-      <required>false</required>
+      <name>name</name>
+      <required>true</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
+      <description><![CDATA[ Name of resource property to fetch]]></description>
     </attribute>
+  </tag>
+  <tag>
+    <name>inputtransferselect</name>
+    <tag-class>org.apache.struts2.views.jsp.ui.InputTransferSelectTag</tag-class>
+    <body-content>JSP</body-content>
+    <description><![CDATA[Renders an input form]]></description>
     <attribute>
-      <name>id</name>
+      <name>accesskey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
+      <description><![CDATA[Set the html accesskey attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>key</name>
+      <name>addLabel</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
+      <description><![CDATA[the label used for the add button]]></description>
     </attribute>
     <attribute>
-      <name>label</name>
+      <name>allowRemoveAll</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Label expression used for rendering a element specific label]]></description>
+      <description><![CDATA[Determine whether the remove all button will display]]></description>
     </attribute>
     <attribute>
-      <name>labelposition</name>
+      <name>allowUpDown</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Define label position of form element (top/left)]]></description>
+      <description><![CDATA[Determine whether items in the list can be reordered]]></description>
     </attribute>
     <attribute>
-      <name>list</name>
-      <required>true</required>
+      <name>buttonCssClass</name>
+      <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Iterable source to populate from. If the list is a Map (key, value), the Map key will become the option 'value' parameter and the Map value will become the option body.]]></description>
+      <description><![CDATA[the css class used for rendering buttons]]></description>
     </attribute>
     <attribute>
-      <name>listKey</name>
+      <name>buttonCssStyle</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[ Property of list objects to get field value from]]></description>
+      <description><![CDATA[the css style used for rendering buttons]]></description>
     </attribute>
     <attribute>
-      <name>listValue</name>
+      <name>cssClass</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Property of list objects to get field content from]]></description>
+      <description><![CDATA[The css class to use for element]]></description>
     </attribute>
     <attribute>
-      <name>name</name>
+      <name>cssStyle</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[The css style definitions for element ro use]]></description>
+    </attribute>
+    <attribute>
+      <name>disabled</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
+    </attribute>
+    <attribute>
+      <name>downLabel</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[the label used for the down button]]></description>
+    </attribute>
+    <attribute>
+      <name>headerKey</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[the header key of the select box]]></description>
+    </attribute>
+    <attribute>
+      <name>headerValue</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[the header value of the select box]]></description>
+    </attribute>
+    <attribute>
+      <name>id</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
+    </attribute>
+    <attribute>
+      <name>key</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
+    </attribute>
+    <attribute>
+      <name>label</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Label expression used for rendering a element specific label]]></description>
+    </attribute>
+    <attribute>
+      <name>labelposition</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Define label position of form element (top/left)]]></description>
+    </attribute>
+    <attribute>
+      <name>leftTitle</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[the left hand title]]></description>
+    </attribute>
+    <attribute>
+      <name>list</name>
+      <required>true</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Iterable source to populate from. If the list is a Map (key, value), the Map key will become the option 'value' parameter and the Map value will become the option body.]]></description>
+    </attribute>
+    <attribute>
+      <name>listKey</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[ Property of list objects to get field value from]]></description>
+    </attribute>
+    <attribute>
+      <name>listValue</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Property of list objects to get field content from]]></description>
+    </attribute>
+    <attribute>
+      <name>multiple</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Determine whether or not multiple entries are shown]]></description>
+    </attribute>
+    <attribute>
+      <name>name</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
       <description><![CDATA[The name to set for element]]></description>
@@ -1511,6 +1511,18 @@
       <description><![CDATA[Set the html onselect attribute on rendered html element]]></description>
     </attribute>
     <attribute>
+      <name>removeAllLabel</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[the label used for the remove all button]]></description>
+    </attribute>
+    <attribute>
+      <name>removeLabel</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[the label used for the remove button]]></description>
+    </attribute>
+    <attribute>
       <name>required</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -1523,6 +1535,18 @@
       <description><![CDATA[Define required position of required form element (left|right)]]></description>
     </attribute>
     <attribute>
+      <name>rightTitle</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[the right hand title]]></description>
+    </attribute>
+    <attribute>
+      <name>size</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[the size of the select box]]></description>
+    </attribute>
+    <attribute>
       <name>tabindex</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -1565,6 +1589,12 @@
       <description><![CDATA[Set the tooltip configuration]]></description>
     </attribute>
     <attribute>
+      <name>upLabel</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[the label used for the up button]]></description>
+    </attribute>
+    <attribute>
       <name>value</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -1572,10 +1602,10 @@
     </attribute>
   </tag>
   <tag>
-    <name>combobox</name>
-    <tag-class>org.apache.struts2.views.jsp.ui.ComboBoxTag</tag-class>
+    <name>label</name>
+    <tag-class>org.apache.struts2.views.jsp.ui.LabelTag</tag-class>
     <body-content>JSP</body-content>
-    <description><![CDATA[Widget that fills a text box from a select]]></description>
+    <description><![CDATA[Render a label that displays read-only information]]></description>
     <attribute>
       <name>accesskey</name>
       <required>false</required>
@@ -1601,22 +1631,10 @@
       <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>emptyOption</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Decide if an empty option is to be inserted. Default false.]]></description>
-    </attribute>
-    <attribute>
-      <name>headerKey</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the header key for the header option.]]></description>
-    </attribute>
-    <attribute>
-      <name>headerValue</name>
+      <name>for</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the header value for the header option.]]></description>
+      <description><![CDATA[ HTML for attribute]]></description>
     </attribute>
     <attribute>
       <name>id</name>
@@ -1643,36 +1661,6 @@
       <description><![CDATA[Define label position of form element (top/left)]]></description>
     </attribute>
     <attribute>
-      <name>list</name>
-      <required>true</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Iteratable source to populate from. If this is missing, the select widget is simply not displayed.]]></description>
-    </attribute>
-    <attribute>
-      <name>listKey</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the key used to retrive the option key.]]></description>
-    </attribute>
-    <attribute>
-      <name>listValue</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the value used to retrive the option value.]]></description>
-    </attribute>
-    <attribute>
-      <name>maxLength</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Deprecated. Use maxlength instead.]]></description>
-    </attribute>
-    <attribute>
-      <name>maxlength</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[HTML maxlength attribute]]></description>
-    </attribute>
-    <attribute>
       <name>name</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -1763,12 +1751,6 @@
       <description><![CDATA[Set the html onselect attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>readonly</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Whether the input is readonly]]></description>
-    </attribute>
-    <attribute>
       <name>required</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -1781,12 +1763,6 @@
       <description><![CDATA[Define required position of required form element (left|right)]]></description>
     </attribute>
     <attribute>
-      <name>size</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[HTML size attribute]]></description>
-    </attribute>
-    <attribute>
       <name>tabindex</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -1836,40 +1812,10 @@
     </attribute>
   </tag>
   <tag>
-    <name>date</name>
-    <tag-class>org.apache.struts2.views.jsp.DateTag</tag-class>
-    <body-content>empty</body-content>
-    <description><![CDATA[Render a formatted date.]]></description>
-    <attribute>
-      <name>format</name>
-      <required>false</required>
-      <rtexprvalue>false</rtexprvalue>
-      <description><![CDATA[Date or DateTime format pattern]]></description>
-    </attribute>
-    <attribute>
-      <name>id</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
-    </attribute>
-    <attribute>
-      <name>name</name>
-      <required>true</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The date value to format]]></description>
-    </attribute>
-    <attribute>
-      <name>nice</name>
-      <required>false</required>
-      <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Whether to print out the date nicely]]></description>
-    </attribute>
-  </tag>
-  <tag>
-    <name>datetimepicker</name>
-    <tag-class>org.apache.struts2.views.jsp.ui.DateTimePickerTag</tag-class>
+    <name>autocompleter</name>
+    <tag-class>org.apache.struts2.views.jsp.ui.AutocompleterTag</tag-class>
     <body-content>JSP</body-content>
-    <description><![CDATA[Render datetimepicker]]></description>
+    <description><![CDATA[Renders a combobox with autocomplete and AJAX capabilities]]></description>
     <attribute>
       <name>accesskey</name>
       <required>false</required>
@@ -1877,10 +1823,10 @@
       <description><![CDATA[Set the html accesskey attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>adjustWeeks</name>
+      <name>autoComplete</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[If true, weekly size of calendar changes to acomodate the month if false, 42 day format is used]]></description>
+      <description><![CDATA[Whether autocompleter should make suggestion on the textbox]]></description>
     </attribute>
     <attribute>
       <name>cssClass</name>
@@ -1895,64 +1841,94 @@
       <description><![CDATA[The css style definitions for element ro use]]></description>
     </attribute>
     <attribute>
-      <name>dayWidth</name>
+      <name>delay</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[How to render the names of the days in the header(narrow, abbr or wide)]]></description>
+      <description><![CDATA[Delay before making the search]]></description>
     </attribute>
     <attribute>
       <name>disabled</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
+      <description><![CDATA[Enable or disable autocompleter]]></description>
     </attribute>
     <attribute>
-      <name>displayFormat</name>
+      <name>dropdownHeight</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[A pattern used for the visual display of the formatted date, e.g. dd/MM/yyyy]]></description>
+      <description><![CDATA[Dropdown's height in pixels]]></description>
     </attribute>
     <attribute>
-      <name>displayWeeks</name>
+      <name>dropdownWidth</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Total weeks to display]]></description>
+      <description><![CDATA[Dropdown's width]]></description>
     </attribute>
     <attribute>
-      <name>endDate</name>
+      <name>emptyOption</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Last available date in the calendar set]]></description>
+      <description><![CDATA[Decide if an empty option is to be inserted. Default false.]]></description>
     </attribute>
     <attribute>
-      <name>formatLength</name>
+      <name>forceValidOption</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Type of formatting used for visual display. Possible values are long, short, medium or full]]></description>
+      <description><![CDATA[Force selection to be one of the options]]></description>
     </attribute>
     <attribute>
-      <name>iconPath</name>
+      <name>formFilter</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[ Path to icon used for the dropdown]]></description>
+      <description><![CDATA[Function name used to filter the fields of the form]]></description>
     </attribute>
     <attribute>
-      <name>id</name>
+      <name>formId</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
+      <description><![CDATA[Form id whose fields will be serialized and passed as parameters]]></description>
     </attribute>
     <attribute>
-      <name>key</name>
+      <name>headerKey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
+      <description><![CDATA[Set the header key for the header option.]]></description>
     </attribute>
     <attribute>
-      <name>label</name>
+      <name>headerValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Label expression used for rendering a element specific label]]></description>
+      <description><![CDATA[Set the header value for the header option.]]></description>
+    </attribute>
+    <attribute>
+      <name>href</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[The URL used to load the options]]></description>
+    </attribute>
+    <attribute>
+      <name>id</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
+    </attribute>
+    <attribute>
+      <name>indicator</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Id of element that will be shown while request is made]]></description>
+    </attribute>
+    <attribute>
+      <name>key</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
+    </attribute>
+    <attribute>
+      <name>label</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Label expression used for rendering a element specific label]]></description>
     </attribute>
     <attribute>
       <name>labelposition</name>
@@ -1961,10 +1937,52 @@
       <description><![CDATA[Define label position of form element (top/left)]]></description>
     </attribute>
     <attribute>
-      <name>language</name>
+      <name>list</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Language to display this widget in]]></description>
+      <description><![CDATA[Iteratable source to populate from.]]></description>
+    </attribute>
+    <attribute>
+      <name>listKey</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Set the key used to retrive the option key.]]></description>
+    </attribute>
+    <attribute>
+      <name>listValue</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Set the value used to retrive the option value.]]></description>
+    </attribute>
+    <attribute>
+      <name>listenTopics</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Topic that will trigger a reload]]></description>
+    </attribute>
+    <attribute>
+      <name>loadMinimumCount</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Minimum number of characters that will force the content to be loaded]]></description>
+    </attribute>
+    <attribute>
+      <name>loadOnTextChange</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Options will be reloaded everytime a character is typed on the textbox]]></description>
+    </attribute>
+    <attribute>
+      <name>maxLength</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Deprecated. Use maxlength instead.]]></description>
+    </attribute>
+    <attribute>
+      <name>maxlength</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[HTML maxlength attribute]]></description>
     </attribute>
     <attribute>
       <name>name</name>
@@ -1973,6 +1991,12 @@
       <description><![CDATA[The name to set for element]]></description>
     </attribute>
     <attribute>
+      <name>notifyTopics</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Topics that will be published when content is reloaded]]></description>
+    </attribute>
+    <attribute>
       <name>onblur</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -2057,6 +2081,12 @@
       <description><![CDATA[Set the html onselect attribute on rendered html element]]></description>
     </attribute>
     <attribute>
+      <name>readonly</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[Whether the input is readonly]]></description>
+    </attribute>
+    <attribute>
       <name>required</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
@@ -2069,16 +2099,22 @@
       <description><![CDATA[Define required position of required form element (left|right)]]></description>
     </attribute>
     <attribute>
-      <name>startDate</name>
+      <name>searchType</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[First available date in the calendar set]]></description>
+      <description><![CDATA[how the search must be performed, options are: 'startstring', 'startword' and 'substring']]></description>
     </attribute>
     <attribute>
-      <name>staticDisplay</name>
+      <name>showDownArrow</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Disable all incremental controls, must pick a date in the current display]]></description>
+      <description><![CDATA[Show or hide the down arrow button]]></description>
+    </attribute>
+    <attribute>
+      <name>size</name>
+      <required>false</required>
+      <rtexprvalue>true</rtexprvalue>
+      <description><![CDATA[HTML size attribute]]></description>
     </attribute>
     <attribute>
       <name>tabindex</name>
@@ -2111,53 +2147,59 @@
       <description><![CDATA[Set the html title attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>toggleDuration</name>
+      <name>tooltip</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Duration of toggle in milliseconds]]></description>
+      <description><![CDATA[Set the tooltip of this particular component]]></description>
     </attribute>
     <attribute>
-      <name>toggleType</name>
+      <name>tooltipConfig</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[oggle type of the dropdown. Possible values are plain,wipe,explode,fade]]></description>
+      <description><![CDATA[Set the tooltip configuration]]></description>
     </attribute>
     <attribute>
-      <name>tooltip</name>
+      <name>value</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the tooltip of this particular component]]></description>
+      <description><![CDATA[Preset the value of input element.]]></description>
     </attribute>
+  </tag>
+  <tag>
+    <name>property</name>
+    <tag-class>org.apache.struts2.views.jsp.PropertyTag</tag-class>
+    <body-content>empty</body-content>
+    <description><![CDATA[Print out expression which evaluates against the stack]]></description>
     <attribute>
-      <name>tooltipConfig</name>
+      <name>default</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the tooltip configuration]]></description>
+      <description><![CDATA[The default value to be used if <u>value</u> attribute is null]]></description>
     </attribute>
     <attribute>
-      <name>type</name>
+      <name>escape</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Defines the type of the picker on the dropdown. Possible values are 'date' for a DateTimePicker, and 'time' for a timePicker]]></description>
+      <description><![CDATA[ Whether to escape HTML]]></description>
     </attribute>
     <attribute>
-      <name>value</name>
+      <name>id</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Preset the value of input element.]]></description>
+      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
     </attribute>
     <attribute>
-      <name>weekStartsOn</name>
+      <name>value</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Adjusts the first day of the week 0==Sunday..6==Saturday]]></description>
+      <description><![CDATA[Value to be displayed]]></description>
     </attribute>
   </tag>
   <tag>
-    <name>debug</name>
-    <tag-class>org.apache.struts2.views.jsp.ui.DebugTag</tag-class>
+    <name>hidden</name>
+    <tag-class>org.apache.struts2.views.jsp.ui.HiddenTag</tag-class>
     <body-content>JSP</body-content>
-    <description><![CDATA[Prints debugging information]]></description>
+    <description><![CDATA[Render a hidden input field]]></description>
     <attribute>
       <name>accesskey</name>
       <required>false</required>
@@ -2358,153 +2400,189 @@
     </attribute>
   </tag>
   <tag>
-    <name>div</name>
-    <tag-class>org.apache.struts2.views.jsp.ui.DivTag</tag-class>
+    <name>optgroup</name>
+    <tag-class>org.apache.struts2.views.jsp.ui.OptGroupTag</tag-class>
     <body-content>JSP</body-content>
-    <description><![CDATA[Render HTML div providing content from remote call via AJAX]]></description>
+    <description><![CDATA[Renders a Select Tag's OptGroup Tag]]></description>
     <attribute>
-      <name>accesskey</name>
+      <name>disabled</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html accesskey attribute on rendered html element]]></description>
+      <description><![CDATA[Set the disable attribute.]]></description>
     </attribute>
     <attribute>
-      <name>afterLoading</name>
+      <name>id</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Deprecated. Use 'notifyTopics'. Javascript code execute after reload]]></description>
+      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
     </attribute>
     <attribute>
-      <name>autoStart</name>
+      <name>label</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Start timer automatically]]></description>
+      <description><![CDATA[Set the label attribute]]></description>
     </attribute>
     <attribute>
-      <name>cssClass</name>
+      <name>list</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The css class to use for element]]></description>
+      <description><![CDATA[Set the list attribute.]]></description>
     </attribute>
     <attribute>
-      <name>cssStyle</name>
+      <name>listKey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The css style definitions for element ro use]]></description>
+      <description><![CDATA[Set the listKey attribute.]]></description>
     </attribute>
     <attribute>
-      <name>delay</name>
+      <name>listValue</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[How long to wait before fetching the content (in milliseconds)]]></description>
+      <description><![CDATA[Set the listValue attribute.]]></description>
     </attribute>
+  </tag>
+  <tag>
+    <name>iterator</name>
+    <tag-class>org.apache.struts2.views.jsp.IteratorTag</tag-class>
+    <body-content>JSP</body-content>
+    <description><![CDATA[Iterate over a iterable value]]></description>
     <attribute>
-      <name>disabled</name>
+      <name>id</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
+      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
     </attribute>
     <attribute>
-      <name>errorText</name>
+      <name>status</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The text to display to the user if the is an error fetching the content]]></description>
+      <description><![CDATA[If specified, an instanceof IteratorStatus will be pushed into stack upon each iteration]]></description>
     </attribute>
     <attribute>
-      <name>executeScripts</name>
+      <name>value</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Javascript code in the fetched content will be executed]]></description>
+      <description><![CDATA[the iteratable source to iterate over, else an the object itself will be put into a newly created List]]></description>
     </attribute>
+  </tag>
+  <tag>
+    <name>datetimepicker</name>
+    <tag-class>org.apache.struts2.views.jsp.ui.DateTimePickerTag</tag-class>
+    <body-content>JSP</body-content>
+    <description><![CDATA[Render datetimepicker]]></description>
     <attribute>
-      <name>formFilter</name>
+      <name>accesskey</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Function name used to filter the fields of the form.]]></description>
+      <description><![CDATA[Set the html accesskey attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>formId</name>
+      <name>adjustWeeks</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Form id whose fields will be serialized and passed as parameters]]></description>
+      <description><![CDATA[If true, weekly size of calendar changes to acomodate the month if false, 42 day format is used]]></description>
     </attribute>
     <attribute>
-      <name>handler</name>
+      <name>cssClass</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Javascript function name that will make the request]]></description>
+      <description><![CDATA[The css class to use for element]]></description>
     </attribute>
     <attribute>
-      <name>href</name>
+      <name>cssStyle</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[The URL to call to obtain the content. Note: If used with ajax context, the value must be set as an url tag value.]]></description>
+      <description><![CDATA[The css style definitions for element ro use]]></description>
     </attribute>
     <attribute>
-      <name>id</name>
+      <name>dayWidth</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[id for referencing element. For UI and form tags it will be used as HTML id attribute]]></description>
+      <description><![CDATA[How to render the names of the days in the header(narrow, abbr or wide)]]></description>
     </attribute>
     <attribute>
-      <name>indicator</name>
+      <name>disabled</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Id of element that will be shown while making request]]></description>
+      <description><![CDATA[Set the html disabled attribute on rendered html element]]></description>
     </attribute>
     <attribute>
-      <name>key</name>
+      <name>displayFormat</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>
-      <description><![CDATA[Set the key (name, value, label) for this particular component]]></description>
+      <description><![CDATA[A pattern used for the visual display of the formatted date, e.g. dd/MM/yyyy]]></description>
     </attribute>
     <attribute>
-      <name>label</name>
+      <name>displayWeeks</name>
       <required>false</required>
       <rtexprvalue>true</rtexprvalue>

[... 3924 lines stripped ...]