[CONF] Confluence Changes in the last 24 hours
This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache Airavata (https://cwiki.apache.org/confluence/display/AIRAVATA) Pages - index edited by smarru (09:38 PM) https://cwiki.apache.org/confluence/display/AIRAVATA/index Apache Camel (https://cwiki.apache.org/confluence/display/CAMEL) Pages - Languages edited by raulvk (06:57 PM) https://cwiki.apache.org/confluence/display/CAMEL/Languages Predicate edited by raulvk (06:32 PM) https://cwiki.apache.org/confluence/display/CAMEL/Predicate Guava EventBus edited by hekonsek (04:27 PM) https://cwiki.apache.org/confluence/display/CAMEL/Guava+EventBus Camel 2.11.0 Release edited by hekonsek (03:58 PM) https://cwiki.apache.org/confluence/display/CAMEL/Camel+2.11.0+Release BacklogTracer edited by davsclaus (01:36 PM) https://cwiki.apache.org/confluence/display/CAMEL/BacklogTracer User Guide edited by davsclaus (11:36 AM) https://cwiki.apache.org/confluence/display/CAMEL/User+Guide Why can't I use + sign in my password created by davsclaus (11:34 AM) https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=30759372 How do I configure password options on Camel endpoints without the value being encoded created by davsclaus (11:33 AM) https://cwiki.apache.org/confluence/display/CAMEL/How+do+I+configure+password+options+on+Camel+endpoints+without+the+value+being+encoded How do I configure endpoints edited by davsclaus (11:17 AM) https://cwiki.apache.org/confluence/display/CAMEL/How+do+I+configure+endpoints Components edited by davsclaus (11:07 AM) https://cwiki.apache.org/confluence/display/CAMEL/Components URIs edited by davsclaus (11:00 AM) https://cwiki.apache.org/confluence/display/CAMEL/URIs Apache Cloudstack (https://cwiki.apache.org/confluence/display/CLOUDSTACK) Pages - Apache CloudStack Weekly News - 25 March 2012 edited by animeshc (09:11 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Apache+CloudStack+Weekly+News+-+25+March+2012 Backup Service Using Storage Object Store Plugin Framework created by minc (08:58 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Backup+Service+Using+Storage+Object+Store+Plugin+Framework Case Studies edited by karenv (08:03 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Case+Studies Password Encryption - Make SHA1 Salted as default authenticator and encoder created by parth (03:17 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Password+Encryption+-+Make+SHA1+Salted+as+default+authenticator+and+encoder QuickCloud created by chiradeep (02:24 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/QuickCloud Apache CloudStack Weekly News - 1 April 2013 created by jzb (03:57 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Apache+CloudStack+Weekly+News+-+1+April+2013 Test Plan created by parth (03:24 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Test+Plan nTier Apps 2.0 Requirements edited by manans (12:25 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/nTier+Apps+2.0+Requirements Automated Test Results for ASF 4.1 Builds created by sudhap (10:49 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Automated+Test+Results+for+ASF+4.1+Builds FS for Granular Global Configuration Parameters edited by harikrishna.patn...@citrix.com (09:43 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/FS+for+Granular+Global+Configuration+Parameters Apache CloudStack Project Bylaws edited by chip.child...@gmail.com (09:35 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Apache+CloudStack+Project+Bylaws AWS-Style Regions Functional Spec edited by kis...@cloud.com (09:25 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/AWS-Style+Regions+Functional+Spec Multiple Ip ranges FS edited by bharat.kumar (07:36 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Multiple+Ip+ranges+FS configurable setting to use linked clones or full clones on VMware edited by prashantkm (06:53 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/configurable+setting+to+use+linked+clones+or+full+clones+on+VMware Change Account Membership - VM edited by likitha.she...@citrix.com (04:03 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Change+Account+Membership+-+VM How to build on master branch edited by tsp (01:10 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/How+to+build+on+master+branch Egress firewall rules feature support for external device Juniper SRX edited by jayapal (12:52 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Egress+firewall+rules+feature+support+
svn commit: r1460983 - /struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/ActionContext.java
Author: lukaszlenart Date: Tue Mar 26 06:14:18 2013 New Revision: 1460983 URL: http://svn.apache.org/r1460983 Log: WW-2537 Cleans up code and adds usage of generics Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/ActionContext.java Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/ActionContext.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/ActionContext.java?rev=1460983&r1=1460982&r2=1460983&view=diff == --- struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/ActionContext.java (original) +++ struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/ActionContext.java Tue Mar 26 06:14:18 2013 @@ -40,14 +40,8 @@ import java.util.Map; * @author Bill Lynch (docs) */ public class ActionContext implements Serializable { -static ThreadLocal actionContext = new ThreadLocal(); -/** - * Constant that indicates the action is running under a "development mode". - * This mode provides more feedback that is useful for developers but probably - * too verbose/error prone for production. - */ -//public static final String DEV_MODE = "__devMode"; +static ThreadLocal actionContext = new ThreadLocal(); /** * Constant for the name of the action being executed. @@ -100,8 +94,7 @@ public class ActionContext implements Se */ public static final String CONTAINER = "com.opensymphony.xwork2.ActionContext.container"; -Map context; - +private Map context; /** * Creates a new ActionContext initialized with another context. @@ -164,16 +157,7 @@ public class ActionContext implements Se * @return the ActionContext for the current thread, is never null. */ public static ActionContext getContext() { -return (ActionContext) actionContext.get(); - -// Don't do lazy context creation, as it requires container; the creation of which may -// precede the context creation -//if (context == null) { -//ValueStack vs = ValueStackFactory.getFactory().createValueStack(); -//context = new ActionContext(vs.getContext()); -//setContext(context); -//} - +return actionContext.get(); } /**