[CONF] Confluence Changes in the last 24 hours

2008-06-22 Thread confluence
-
This is a daily summary of all recent changes in Confluence.

-
Updated Spaces:
-

Apache Directory Server v1.5 (DIRxSRVx11) 
http://cwiki.apache.org/confluence/display/DIRxSRVx11
|
|-Pages Added or Edited in This Space
 |-- ApacheDS Caching Subsystem was created by ersiner (01:49 PM).
 |   
http://cwiki.apache.org/confluence/display/DIRxSRVx11/ApacheDS+Caching+Subsystem

Apache Struts 2 Documentation (WW) http://cwiki.apache.org/confluence/display/WW
|
|-Pages Added or Edited in This Space
 |-- Parameters Interceptor was last edited by musachy (06:44 AM).
 |   http://cwiki.apache.org/confluence/display/WW/Parameters+Interceptor

Apache Cayenne (CAY) http://cwiki.apache.org/confluence/display/CAY
|
|-Pages Added or Edited in This Space
 |-- Summer of Code 2008 was last edited by nirvdrum (11:40 AM).
 |   http://cwiki.apache.org/confluence/display/CAY/Summer+of+Code+2008

UIMA (UIMA) http://cwiki.apache.org/confluence/display/UIMA
|
|-Pages Added or Edited in This Space
 |-- UIMA applications was last edited by starred (04:01 AM).
 |   http://cwiki.apache.org/confluence/display/UIMA/UIMA+applications

Apache Struts 2 Wiki (S2WIKI) http://cwiki.apache.org/confluence/display/S2WIKI
|
|-Pages Added or Edited in This Space
 |-- 2.1 to 2.5 Roadmap was last edited by musachy (07:21 AM).
 |   http://cwiki.apache.org/confluence/display/S2WIKI/2.1+to+2.5+Roadmap
 |-- Better filter strategy was created by mrdon (06:03 AM).
 |   http://cwiki.apache.org/confluence/display/S2WIKI/Better+filter+strategy


-
CONFLUENCE INFORMATION
This message is automatically generated by Confluence

Unsubscribe or edit your notifications preferences
   http://cwiki.apache.org/confluence/users/viewnotifications.action

If you think it was sent incorrectly contact one of the administrators
   http://cwiki.apache.org/confluence/administrators.action

If you want more information on Confluence, or have a bug to report see
   http://www.atlassian.com/software/confluence




svn commit: r670371 [4/4] - in /struts/struts2/trunk/plugins/dojo/src: main/resources/org/apache/struts2/static/dojo/ main/resources/org/apache/struts2/static/dojo/struts/widget/ profile/

2008-06-22 Thread musachy
Modified: struts/struts2/trunk/plugins/dojo/src/profile/struts.profile.js
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/dojo/src/profile/struts.profile.js?rev=670371&r1=670370&r2=670371&view=diff
==
--- struts/struts2/trunk/plugins/dojo/src/profile/struts.profile.js (original)
+++ struts/struts2/trunk/plugins/dojo/src/profile/struts.profile.js Sun Jun 22 
08:28:01 2008
@@ -30,7 +30,7 @@
 ];
 
 dependencies.prefixes = [
-   ["struts", 
"../struts/2_1/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts"]
+   ["struts", 
"../struts/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts"]
 ];
 
 load("getDependencyList.js");




svn commit: r670371 [1/4] - in /struts/struts2/trunk/plugins/dojo/src: main/resources/org/apache/struts2/static/dojo/ main/resources/org/apache/struts2/static/dojo/struts/widget/ profile/

2008-06-22 Thread musachy
Author: musachy
Date: Sun Jun 22 08:28:01 2008
New Revision: 670371

URL: http://svn.apache.org/viewvc?rev=670371&view=rev
Log:
WW-2601 Tabindex not working on autocompleter
also fixed tabindex for datepicker 

Modified:

struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/ComboBox.js

struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/StrutsDatePicker.js

struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/StrutsTimePicker.js

struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts_dojo.js

struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts_dojo.js.uncompressed.js
struts/struts2/trunk/plugins/dojo/src/profile/struts.profile.js

Modified: 
struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/ComboBox.js
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/ComboBox.js?rev=670371&r1=670370&r2=670371&view=diff
==
--- 
struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/ComboBox.js
 (original)
+++ 
struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/ComboBox.js
 Sun Jun 22 08:28:01 2008
@@ -279,6 +279,8 @@
   //load options when page loads
   preload : true,
 
+  tabIndex: "",
+
   //from Dojo's  ComboBox
   showResultList: function() {
   // Our dear friend IE doesnt take max-height so we need to calculate that on 
our own every time
@@ -418,6 +420,11 @@
 this.comboBoxSelectionValue.value = this.initialKey;
 this.textInputNode.value = this.initialValue;
 
+//tabindex
+if(!dojo.string.isBlank(this.tabIndex)) {
+  this.textInputNode.tabIndex = this.tabIndex;
+}
+
 //hide arrow?
 if(!this.visibleDownArrow) {
   dojo.html.hide(this.downArrowNode);

Modified: 
struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/StrutsDatePicker.js
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/StrutsDatePicker.js?rev=670371&r1=670370&r2=670371&view=diff
==
--- 
struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/StrutsDatePicker.js
 (original)
+++ 
struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/StrutsDatePicker.js
 Sun Jun 22 08:28:01 2008
@@ -29,26 +29,32 @@
 
   valueNotifyTopics : "",
   valueNotifyTopicsArray : null,
-  
+  tabIndex : "",
+
   postCreate: function() {
 struts.widget.StrutsDatePicker.superclass.postCreate.apply(this, 
arguments);
-
+
 //set cssClass
 if(this.extraArgs["class"]) {
   dojo.html.setClass(this.inputNode, this.extraArgs["class"]);
-}  
-
+}
+
 //set cssStyle
 if(this.extraArgs.style) {
   dojo.html.setStyleText(this.inputNode, this.extraArgs.style);
-}  
-
+}
+
 //value topics
 if(!dojo.string.isBlank(this.valueNotifyTopics)) {
   this.valueNotifyTopicsArray = this.valueNotifyTopics.split(",");
 }
+
+//tabindex
+if(!dojo.string.isBlank(this.tabIndex)) {
+  this.inputNode.tabIndex = this.tabIndex;
+}
   },
-  
+
   _syncValueNode:function () {
 var date = this.datePicker.value;
 var value = "";
@@ -69,7 +75,7 @@
 }
 this.valueNode.value = value;
   },
-  
+
   _updateText : function() {
 struts.widget.StrutsDatePicker.superclass._updateText.apply(this, 
arguments);
 if(this.valueNotifyTopicsArray != null) {

Modified: 
struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/StrutsTimePicker.js
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/StrutsTimePicker.js?rev=670371&r1=670370&r2=670371&view=diff
==
--- 
struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/StrutsTimePicker.js
 (original)
+++ 
struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts/widget/StrutsTimePicker.js
 Sun Jun 22 08:28:01 2008
@@ -33,29 +33,36 @@
 
   inputName: "",
   name: "",
-  
+
   valueNotifyTopics : "",
   valueNotifyTopicsArray : null,
-  
+
+  tabIndex : "",
+
   postCreate: function() {
 struts.widget.StrutsTimePicker.superclass.postCreate.apply(this, 
arguments);
-  
+
 //set cssClass
 if(this.extraArgs["class"]) {
   dojo.html.setClass(this.inputNode, t

svn commit: r670383 - in /struts/struts2/branches/STRUTS_2_0_X: ./ apps/ apps/blank/ apps/mailreader/ apps/portlet/ apps/showcase/ assembly/ backport/ core/ plugins/ plugins/codebehind/ plugins/config

2008-06-22 Thread rgielen
Author: rgielen
Date: Sun Jun 22 09:55:23 2008
New Revision: 670383

URL: http://svn.apache.org/viewvc?rev=670383&view=rev
Log:
WW-2693:
Preparing security fix release 2.0.11.2

Modified:
struts/struts2/branches/STRUTS_2_0_X/apps/blank/pom.xml
struts/struts2/branches/STRUTS_2_0_X/apps/mailreader/pom.xml
struts/struts2/branches/STRUTS_2_0_X/apps/pom.xml
struts/struts2/branches/STRUTS_2_0_X/apps/portlet/pom.xml
struts/struts2/branches/STRUTS_2_0_X/apps/showcase/pom.xml
struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml
struts/struts2/branches/STRUTS_2_0_X/backport/translate.bat
struts/struts2/branches/STRUTS_2_0_X/backport/translate.sh
struts/struts2/branches/STRUTS_2_0_X/core/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/codebehind/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/config-browser/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/jasperreports/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/jfreechart/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/jsf/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/pell-multipart/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/plexus/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/sitegraph/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/sitemesh/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/spring/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/struts1/pom.xml
struts/struts2/branches/STRUTS_2_0_X/plugins/tiles/pom.xml
struts/struts2/branches/STRUTS_2_0_X/pom.xml
struts/struts2/branches/STRUTS_2_0_X/src/site/xdoc/index.xml

Modified: struts/struts2/branches/STRUTS_2_0_X/apps/blank/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/apps/blank/pom.xml?rev=670383&r1=670382&r2=670383&view=diff
==
--- struts/struts2/branches/STRUTS_2_0_X/apps/blank/pom.xml (original)
+++ struts/struts2/branches/STRUTS_2_0_X/apps/blank/pom.xml Sun Jun 22 09:55:23 
2008
@@ -4,7 +4,7 @@
 
 org.apache.struts
 struts2-apps
-2.0.12-SNAPSHOT
+2.0.11.2
 
 org.apache.struts
 struts2-blank

Modified: struts/struts2/branches/STRUTS_2_0_X/apps/mailreader/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/apps/mailreader/pom.xml?rev=670383&r1=670382&r2=670383&view=diff
==
--- struts/struts2/branches/STRUTS_2_0_X/apps/mailreader/pom.xml (original)
+++ struts/struts2/branches/STRUTS_2_0_X/apps/mailreader/pom.xml Sun Jun 22 
09:55:23 2008
@@ -4,7 +4,7 @@
 
   org.apache.struts
   struts2-apps
-  2.0.12-SNAPSHOT
+  2.0.11.2
 
 org.apache.struts
 struts2-mailreader

Modified: struts/struts2/branches/STRUTS_2_0_X/apps/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/apps/pom.xml?rev=670383&r1=670382&r2=670383&view=diff
==
--- struts/struts2/branches/STRUTS_2_0_X/apps/pom.xml (original)
+++ struts/struts2/branches/STRUTS_2_0_X/apps/pom.xml Sun Jun 22 09:55:23 2008
@@ -3,7 +3,7 @@
 
 org.apache.struts
 struts2-parent
-2.0.12-SNAPSHOT
+2.0.11.2
 
 org.apache.struts
 struts2-apps

Modified: struts/struts2/branches/STRUTS_2_0_X/apps/portlet/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/apps/portlet/pom.xml?rev=670383&r1=670382&r2=670383&view=diff
==
--- struts/struts2/branches/STRUTS_2_0_X/apps/portlet/pom.xml (original)
+++ struts/struts2/branches/STRUTS_2_0_X/apps/portlet/pom.xml Sun Jun 22 
09:55:23 2008
@@ -4,7 +4,7 @@
 
   org.apache.struts
   struts2-apps
-  2.0.12-SNAPSHOT
+  2.0.11.2
 
 org.apache.struts
 struts2-portlet

Modified: struts/struts2/branches/STRUTS_2_0_X/apps/showcase/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/apps/showcase/pom.xml?rev=670383&r1=670382&r2=670383&view=diff
==
--- struts/struts2/branches/STRUTS_2_0_X/apps/showcase/pom.xml (original)
+++ struts/struts2/branches/STRUTS_2_0_X/apps/showcase/pom.xml Sun Jun 22 
09:55:23 2008
@@ -4,7 +4,7 @@
 
 org.apache.struts
 struts2-apps
-2.0.12-SNAPSHOT
+2.0.11.2
 
 org.apache.struts
 struts2-showcase

Modified: struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/assembly/pom.xml?rev=670383&r1=670382&r2=670383&view=diff
==
--- struts/struts2/branches

svn commit: r670386 - /struts/struts2/tags/STRUTS_2_0_11_2/

2008-06-22 Thread rgielen
Author: rgielen
Date: Sun Jun 22 10:10:35 2008
New Revision: 670386

URL: http://svn.apache.org/viewvc?rev=670386&view=rev
Log:
Tagging 2.0.11.2 security fix release

Added:
struts/struts2/tags/STRUTS_2_0_11_2/
  - copied from r670383, struts/struts2/branches/STRUTS_2_0_X/