From seam-commits at lists.jboss.org Sun Feb 2 14:37:54 2014 From: seam-commits at lists.jboss.org (seam-commits at lists.jboss.org) Date: Sun, 2 Feb 2014 14:37:54 -0500 Subject: [seam-commits] Seam SVN: r15658 - branches/enterprise/WFK-2_1/bom. Message-ID: <201402021937.s12Jbssg021060@svn01.web.mwc.hst.phx2.redhat.com> Author: manaRH Date: 2014-02-02 14:37:53 -0500 (Sun, 02 Feb 2014) New Revision: 15658 Modified: branches/enterprise/WFK-2_1/bom/pom.xml Log: updated infinispan to 5.2.7.Final-redhat-2 Modified: branches/enterprise/WFK-2_1/bom/pom.xml =================================================================== --- branches/enterprise/WFK-2_1/bom/pom.xml 2014-01-30 22:19:08 UTC (rev 15657) +++ branches/enterprise/WFK-2_1/bom/pom.xml 2014-02-02 19:37:53 UTC (rev 15658) @@ -47,7 +47,7 @@ 4.4.2.Final-redhat-wfk-1 4.3.1.Final-redhat-1 - 5.2.7.Final-redhat-1 + 5.2.7.Final-redhat-2 1.1.0.Final-redhat-2 3.2.12.Final-redhat-1 From seam-commits at lists.jboss.org Thu Feb 6 08:01:42 2014 From: seam-commits at lists.jboss.org (seam-commits at lists.jboss.org) Date: Thu, 6 Feb 2014 08:01:42 -0500 Subject: [seam-commits] Seam SVN: r15659 - in branches/enterprise/JBPAPP_5_0: src/remoting/org/jboss/seam/remoting and 1 other directories. Message-ID: <201402061301.s16D1grt018682@svn01.web.mwc.hst.phx2.redhat.com> Author: manaRH Date: 2014-02-06 08:01:42 -0500 (Thu, 06 Feb 2014) New Revision: 15659 Removed: branches/enterprise/JBPAPP_5_0/ui/src/main/java/org/jboss/seam/ui/resource/ Modified: branches/enterprise/JBPAPP_5_0/src/main/org/jboss/seam/util/XML.java branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/ExecutionHandler.java branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/InterfaceGenerator.java branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/PollHandler.java branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/SubscriptionHandler.java Log: https://issues.jboss.org/browse/JBPAPP-10954 back ported the fix Modified: branches/enterprise/JBPAPP_5_0/src/main/org/jboss/seam/util/XML.java =================================================================== --- branches/enterprise/JBPAPP_5_0/src/main/org/jboss/seam/util/XML.java 2014-02-02 19:37:53 UTC (rev 15658) +++ branches/enterprise/JBPAPP_5_0/src/main/org/jboss/seam/util/XML.java 2014-02-06 13:01:42 UTC (rev 15659) @@ -65,4 +65,17 @@ } } + + /** + * Get safe SaxReader with doctype feature disabled + * @see http://xerces.apache.org/xerces2-j/features.html#disallow-doctype-decl + * @return + * @throws Exception + */ + public static SAXReader getSafeSaxReader() throws Exception + { + SAXReader xmlReader = new SAXReader(); + xmlReader.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true); + return xmlReader; + } } Modified: branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/ExecutionHandler.java =================================================================== --- branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/ExecutionHandler.java 2014-02-02 19:37:53 UTC (rev 15658) +++ branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/ExecutionHandler.java 2014-02-06 13:01:42 UTC (rev 15659) @@ -21,6 +21,7 @@ import org.jboss.seam.log.Logging; import org.jboss.seam.remoting.wrapper.Wrapper; import org.jboss.seam.servlet.ContextualHttpServletRequest; +import org.jboss.seam.util.XML; /** * Unmarshals the calls from an HttpServletRequest, executes them in order and @@ -67,7 +68,7 @@ log.debug("Processing remote request: " + requestData); // Parse the incoming request as XML - SAXReader xmlReader = new SAXReader(); + SAXReader xmlReader = XML.getSafeSaxReader(); Document doc = xmlReader.read( new StringReader(requestData) ); final Element env = doc.getRootElement(); final RequestContext ctx = unmarshalContext(env); Modified: branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/InterfaceGenerator.java =================================================================== --- branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/InterfaceGenerator.java 2014-02-02 19:37:53 UTC (rev 15658) +++ branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/InterfaceGenerator.java 2014-02-06 13:01:42 UTC (rev 15659) @@ -88,16 +88,8 @@ Component component = Component.forName(componentName); if (component == null) { - try - { - Class c = Reflections.classForName(componentName); - appendClassSource(response.getOutputStream(), c, types); - } - catch (ClassNotFoundException ex) - { - log.error(String.format("Component not found: [%s]", componentName)); - throw new ServletException("Invalid request - component not found."); - } + log.error(String.format("Component not found: [%s]", componentName)); + throw new ServletException("Invalid request - component not found."); } else { Modified: branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/PollHandler.java =================================================================== --- branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/PollHandler.java 2014-02-02 19:37:53 UTC (rev 15658) +++ branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/PollHandler.java 2014-02-06 13:01:42 UTC (rev 15659) @@ -21,6 +21,7 @@ import org.jboss.seam.remoting.messaging.PollRequest; import org.jboss.seam.remoting.wrapper.Wrapper; import org.jboss.seam.servlet.ContextualHttpServletRequest; +import org.jboss.seam.util.XML; /** * Handles JMS Message poll requests. @@ -56,7 +57,7 @@ response.setContentType("text/xml"); // Parse the incoming request as XML - SAXReader xmlReader = new SAXReader(); + SAXReader xmlReader = XML.getSafeSaxReader(); Document doc = xmlReader.read(request.getInputStream()); Element env = doc.getRootElement(); Modified: branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/SubscriptionHandler.java =================================================================== --- branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/SubscriptionHandler.java 2014-02-02 19:37:53 UTC (rev 15658) +++ branches/enterprise/JBPAPP_5_0/src/remoting/org/jboss/seam/remoting/SubscriptionHandler.java 2014-02-06 13:01:42 UTC (rev 15659) @@ -17,6 +17,7 @@ import org.jboss.seam.remoting.messaging.RemoteSubscriber; import org.jboss.seam.remoting.messaging.SubscriptionRegistry; import org.jboss.seam.remoting.messaging.SubscriptionRequest; +import org.jboss.seam.util.XML; import org.jboss.seam.web.ServletContexts; /** @@ -40,7 +41,7 @@ response.setContentType("text/xml"); // Parse the incoming request as XML - SAXReader xmlReader = new SAXReader(); + SAXReader xmlReader = XML.getSafeSaxReader(); Document doc = xmlReader.read(request.getInputStream()); Element env = doc.getRootElement(); From seam-commits at lists.jboss.org Thu Feb 6 11:45:38 2014 From: seam-commits at lists.jboss.org (seam-commits at lists.jboss.org) Date: Thu, 6 Feb 2014 11:45:38 -0500 Subject: [seam-commits] Seam SVN: r15660 - branches/enterprise/JBPAPP_5_0/build. Message-ID: <201402061645.s16GjcKI028842@svn01.web.mwc.hst.phx2.redhat.com> Author: manaRH Date: 2014-02-06 11:45:37 -0500 (Thu, 06 Feb 2014) New Revision: 15660 Modified: branches/enterprise/JBPAPP_5_0/build/default.build.properties Log: updated version to 2.2.7.EAP5 Modified: branches/enterprise/JBPAPP_5_0/build/default.build.properties =================================================================== --- branches/enterprise/JBPAPP_5_0/build/default.build.properties 2014-02-06 13:01:42 UTC (rev 15659) +++ branches/enterprise/JBPAPP_5_0/build/default.build.properties 2014-02-06 16:45:37 UTC (rev 15660) @@ -7,7 +7,7 @@ # ------------ major.version 2 minor.version .2 -patchlevel .6 +patchlevel .7 qualifier .EAP5 # # Other program locations From seam-commits at lists.jboss.org Thu Feb 6 11:47:02 2014 From: seam-commits at lists.jboss.org (seam-commits at lists.jboss.org) Date: Thu, 6 Feb 2014 11:47:02 -0500 Subject: [seam-commits] Seam SVN: r15661 - branches/enterprise/JBPAPP_5_0/build. Message-ID: <201402061647.s16Gl2vl028864@svn01.web.mwc.hst.phx2.redhat.com> Author: manaRH Date: 2014-02-06 11:47:01 -0500 (Thu, 06 Feb 2014) New Revision: 15661 Modified: branches/enterprise/JBPAPP_5_0/build/settings.xml Log: added pluginRepository to be able build seam-ui with RF CDK maven plugin Modified: branches/enterprise/JBPAPP_5_0/build/settings.xml =================================================================== --- branches/enterprise/JBPAPP_5_0/build/settings.xml 2014-02-06 16:45:37 UTC (rev 15660) +++ branches/enterprise/JBPAPP_5_0/build/settings.xml 2014-02-06 16:47:01 UTC (rev 15661) @@ -31,6 +31,22 @@ + + + jboss-repolib-repository + JBoss Repolib Maven Repository + http://download.devel.redhat.com/brewroot/repos/jb-eap-5-rhel-6-build/latest/maven/ + default + + true + never + + + true + never + + + jboss-mead-repository From seam-commits at lists.jboss.org Thu Feb 6 11:53:19 2014 From: seam-commits at lists.jboss.org (seam-commits at lists.jboss.org) Date: Thu, 6 Feb 2014 11:53:19 -0500 Subject: [seam-commits] Seam SVN: r15662 - branches/enterprise/JBPAPP_5_0/build. Message-ID: <201402061653.s16GrJvC029378@svn01.web.mwc.hst.phx2.redhat.com> Author: manaRH Date: 2014-02-06 11:53:18 -0500 (Thu, 06 Feb 2014) New Revision: 15662 Modified: branches/enterprise/JBPAPP_5_0/build/root.pom.xml Log: https://issues.jboss.org/browse/JBPAPP-10960 upgraded RICHFACES in seam Modified: branches/enterprise/JBPAPP_5_0/build/root.pom.xml =================================================================== --- branches/enterprise/JBPAPP_5_0/build/root.pom.xml 2014-02-06 16:47:01 UTC (rev 15661) +++ branches/enterprise/JBPAPP_5_0/build/root.pom.xml 2014-02-06 16:53:18 UTC (rev 15662) @@ -11,7 +11,7 @@ - 3.3.1.SP3 + 3.3.1.SP4 5.1.0.BRMS-jdk7 5.9 1.2.1.GA_CP02 From seam-commits at lists.jboss.org Thu Feb 6 12:13:33 2014 From: seam-commits at lists.jboss.org (seam-commits at lists.jboss.org) Date: Thu, 6 Feb 2014 12:13:33 -0500 Subject: [seam-commits] Seam SVN: r15663 - branches/enterprise/WFK-2_1/bom. Message-ID: <201402061713.s16HDXQw005473@svn01.web.mwc.hst.phx2.redhat.com> Author: manaRH Date: 2014-02-06 12:13:33 -0500 (Thu, 06 Feb 2014) New Revision: 15663 Modified: branches/enterprise/WFK-2_1/bom/pom.xml Log: https://issues.jboss.org/browse/WFK2-421 upgrade of javassist Modified: branches/enterprise/WFK-2_1/bom/pom.xml =================================================================== --- branches/enterprise/WFK-2_1/bom/pom.xml 2014-02-06 16:53:18 UTC (rev 15662) +++ branches/enterprise/WFK-2_1/bom/pom.xml 2014-02-06 17:13:33 UTC (rev 15663) @@ -69,7 +69,7 @@ 2.6 1.2 2.6.10 - 3.15.0-GA-redhat-2 + 3.18.1-GA-redhat-1 1.0 1.4.5-redhat-1 2.1 From seam-commits at lists.jboss.org Thu Feb 6 13:14:48 2014 From: seam-commits at lists.jboss.org (seam-commits at lists.jboss.org) Date: Thu, 6 Feb 2014 13:14:48 -0500 Subject: [seam-commits] Seam SVN: r15664 - branches/enterprise/JBPAPP_5_0/build. Message-ID: <201402061814.s16IEmTW018144@svn01.web.mwc.hst.phx2.redhat.com> Author: manaRH Date: 2014-02-06 13:14:48 -0500 (Thu, 06 Feb 2014) New Revision: 15664 Modified: branches/enterprise/JBPAPP_5_0/build/ci.settings.xml Log: fixing the CI build settings.xml too Modified: branches/enterprise/JBPAPP_5_0/build/ci.settings.xml =================================================================== --- branches/enterprise/JBPAPP_5_0/build/ci.settings.xml 2014-02-06 17:13:33 UTC (rev 15663) +++ branches/enterprise/JBPAPP_5_0/build/ci.settings.xml 2014-02-06 18:14:48 UTC (rev 15664) @@ -29,6 +29,22 @@ + + + jboss-repolib-repository + JBoss Repolib Maven Repository + http://download.devel.redhat.com/brewroot/repos/jb-eap-5-rhel-6-build/latest/maven/ + default + + true + never + + + true + never + + + From seam-commits at lists.jboss.org Fri Feb 7 08:19:00 2014 From: seam-commits at lists.jboss.org (seam-commits at lists.jboss.org) Date: Fri, 7 Feb 2014 08:19:00 -0500 Subject: [seam-commits] Seam SVN: r15665 - branches. Message-ID: <201402071319.s17DJ0i2031721@svn01.web.mwc.hst.phx2.redhat.com> Author: manaRH Date: 2014-02-07 08:18:59 -0500 (Fri, 07 Feb 2014) New Revision: 15665 Removed: branches/dhinojosa/ Log: From noreply at github.com Mon Feb 17 06:45:36 2014 From: noreply at github.com (GitHub) Date: Mon, 17 Feb 2014 03:45:36 -0800 Subject: [seam-commits] [seam2/jboss-seam] f13bf3: https://issues.jboss.org/browse/JBSEAM-5134 fixed ... Message-ID: <5301f66066c7d_37e7e01d34937f0@hookshot-fe10-pe1-prd.aws.github.net.mail> Branch: refs/heads/Seam_2_3 Home: https://github.com/seam2/jboss-seam Commit: f13bf3bdeed739a2f83ce4731118b853c6d04a93 https://github.com/seam2/jboss-seam/commit/f13bf3bdeed739a2f83ce4731118b853c6d04a93 Author: Marek Novotn? Date: 2014-02-17 (Mon, 17 Feb 2014) Changed paths: M seam-reference-guide/src/docbook/en-US/Controls.xml Log Message: ----------- https://issues.jboss.org/browse/JBSEAM-5134 fixed docs From noreply at github.com Wed Feb 26 07:36:21 2014 From: noreply at github.com (GitHub) Date: Wed, 26 Feb 2014 04:36:21 -0800 Subject: [seam-commits] [seam2/jboss-seam] 29534f: JBSEAM-5135 and version updates for ftests Message-ID: <530ddfc558d46_48de1217d3839349@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/Seam_2_3 Home: https://github.com/seam2/jboss-seam Commit: 29534ff6131e1b61cb7e82916d4e3f72b0ede800 https://github.com/seam2/jboss-seam/commit/29534ff6131e1b61cb7e82916d4e3f72b0ede800 Author: Tomas Remes Date: 2014-02-26 (Wed, 26 Feb 2014) Changed paths: M bom/pom.xml M jboss-seam-wicket/src/main/java/org/jboss/seam/wicket/ioc/MetaModelUtils.java M jboss-seam/src/main/java/org/jboss/seam/Component.java R jboss-seam/src/main/java/org/jboss/seam/util/ProxyFactory.java Log Message: ----------- JBSEAM-5135 and version updates for ftests