[CONF] Confluence Changes in the last 24 hours
This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache Camel (https://cwiki.apache.org/confluence/display/CAMEL) Pages - Timer edited by muellerc (02:44 PM) https://cwiki.apache.org/confluence/display/CAMEL/Timer Apache Click (https://cwiki.apache.org/confluence/display/CLICK) Pages - Index edited by gilbertoca (09:23 AM) https://cwiki.apache.org/confluence/display/CLICK/Index Apache Cloudstack (https://cwiki.apache.org/confluence/display/CLOUDSTACK) Pages - SnapShot test cases edited by shweta.agar...@citrix.com (11:57 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/SnapShot+test+cases VM Life cycle testcases edited by shweta.agar...@citrix.com (11:55 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/VM+Life+cycle+testcases CloudStack 4.0 Release edited by prachidamle (07:34 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudStack+4.0+Release EC2 - Functional Spec for Tags Support and some fidelity work created by prachidamle (07:17 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/EC2+-+Functional+Spec+for+Tags+Support+and+some+fidelity+work EC2 API support in CloudStack created by prachidamle (07:11 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/EC2+API+support+in+CloudStack ASF CS 4.0 QA edited by abhinavr (02:08 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/ASF+CS+4.0+QA ASF CS 4.0 Test Execution edited by abhinavr (02:07 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/ASF+CS+4.0+Test+Execution Generic UI created by abhinavr (02:06 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Generic+UI Accounts and Domains edited by abhinavr (01:58 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Accounts+and+Domains Projects edited by abhinavr (01:56 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Projects Dashboard created by abhinavr (01:48 PM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Dashboard Static NAT and Source NAT created by sadhu (09:43 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Static+NAT+and+Source+NAT SRX created by sadhu (09:28 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/SRX VPN created by sadhu (07:56 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/VPN Volumes created by shweta.agar...@citrix.com (08:11 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Volumes Template and ISO created by shweta.agar...@citrix.com (08:02 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Template+and+ISO Guest Network Test Execution edited by sailajam (08:00 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Guest+Network+Test+Execution Global config Params created by sowmyak (07:55 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Global+config+Params Local Data Volume edited by sowmyak (05:34 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Local+Data+Volume Storage Migration edited by sowmyak (05:28 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Storage+Migration Primary and Secondary Storage NFS created by sowmyak (03:44 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Primary+and+Secondary+Storage+NFS 201 - Plugins created by topcloud (05:05 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/201+-+Plugins OVS Tunnel Manager for CloudStack edited by tsp (01:55 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/OVS+Tunnel+Manager+for+CloudStack Design edited by tsp (01:52 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Design Index edited by tsp (01:46 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/Index DIY DevCloud Setup edited by bhaisaab (01:03 AM) https://cwiki.apache.org/confluence/display/CLOUDSTACK/DIY+DevCloud+Setup Apache CXF (https://cwiki.apache.org/confluence/display/CXF) Pages - Index edited by dkulp (12:08 PM) https://cwiki.apache.org/confluence/display/CXF/Index Apache Flex (https://cwiki.apache.org/confluence/display/FLEX) Pages - Mustella Overview edited by peterent (03:00 PM) https://cwiki.apache.org/confluence/display/FLEX/Mustella+Overview Comments https://cwiki.apache.org/confluence/display/FLEX/User+Groups+supporting+Apache+Flex+%2851+and+counting%29 (1) Apache Flume (https://cwiki.apache.org/confluence/display/FLUME) Pages - Status Report - September 2012 edited by arvind
svn commit: r1383793 - /struts/struts2/trunk/apps/showcase/src/main/java/org/apache/struts2/showcase/model/Skill.java
Author: lukaszlenart Date: Wed Sep 12 06:17:24 2012 New Revision: 1383793 URL: http://svn.apache.org/viewvc?rev=1383793&view=rev Log: Sanitise input variables Modified: struts/struts2/trunk/apps/showcase/src/main/java/org/apache/struts2/showcase/model/Skill.java Modified: struts/struts2/trunk/apps/showcase/src/main/java/org/apache/struts2/showcase/model/Skill.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/showcase/src/main/java/org/apache/struts2/showcase/model/Skill.java?rev=1383793&r1=1383792&r2=1383793&view=diff == --- struts/struts2/trunk/apps/showcase/src/main/java/org/apache/struts2/showcase/model/Skill.java (original) +++ struts/struts2/trunk/apps/showcase/src/main/java/org/apache/struts2/showcase/model/Skill.java Wed Sep 12 06:17:24 2012 @@ -20,6 +20,8 @@ */ package org.apache.struts2.showcase.model; +import org.apache.commons.lang3.StringEscapeUtils; + import java.io.Serializable; /** @@ -47,7 +49,7 @@ public class Skill implements IdEntity { } public void setName(String name) { -this.name = name; +this.name = StringEscapeUtils.escapeEcmaScript(StringEscapeUtils.escapeHtml4(name)); } public String getDescription() { @@ -55,7 +57,7 @@ public class Skill implements IdEntity { } public void setDescription(String description) { -this.description = description; +this.description = StringEscapeUtils.escapeEcmaScript(StringEscapeUtils.escapeHtml4(description)); } public Serializable getId() {