Return-Path: X-Original-To: apmail-aries-commits-archive@www.apache.org Delivered-To: apmail-aries-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 137D31037C for ; Wed, 2 Oct 2013 15:28:57 +0000 (UTC) Received: (qmail 63299 invoked by uid 500); 2 Oct 2013 15:28:56 -0000 Delivered-To: apmail-aries-commits-archive@aries.apache.org Received: (qmail 63199 invoked by uid 500); 2 Oct 2013 15:28:52 -0000 Mailing-List: contact commits-help@aries.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@aries.apache.org Delivered-To: mailing list commits@aries.apache.org Received: (qmail 63186 invoked by uid 99); 2 Oct 2013 15:28:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Oct 2013 15:28:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Oct 2013 15:28:49 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 4C9FF23888A6; Wed, 2 Oct 2013 15:28:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1528520 - in /aries/trunk/blueprint/blueprint-core/src/main: java/org/apache/aries/blueprint/ext/impl/ExtNamespaceHandler.java resources/OSGI-INF/blueprint/blueprint-ext.xml resources/org/apache/aries/blueprint/ext/impl/xml.xsd Date: Wed, 02 Oct 2013 15:28:29 -0000 To: commits@aries.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131002152829.4C9FF23888A6@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Wed Oct 2 15:28:28 2013 New Revision: 1528520 URL: http://svn.apache.org/r1528520 Log: [ARIES-1118] Add the xml namespace as a "core" namespace for BP to handle Added: aries/trunk/blueprint/blueprint-core/src/main/resources/org/apache/aries/blueprint/ext/impl/xml.xsd (with props) Modified: aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/ext/impl/ExtNamespaceHandler.java aries/trunk/blueprint/blueprint-core/src/main/resources/OSGI-INF/blueprint/blueprint-ext.xml Modified: aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/ext/impl/ExtNamespaceHandler.java URL: http://svn.apache.org/viewvc/aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/ext/impl/ExtNamespaceHandler.java?rev=1528520&r1=1528519&r2=1528520&view=diff ============================================================================== --- aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/ext/impl/ExtNamespaceHandler.java (original) +++ aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/ext/impl/ExtNamespaceHandler.java Wed Oct 2 15:28:28 2013 @@ -126,9 +126,10 @@ public class ExtNamespaceHandler impleme return getClass().getResource("blueprint-ext-1.2.xsd"); } else if (BLUEPRINT_EXT_NAMESPACE_V1_3.equals(namespace)) { return getClass().getResource("blueprint-ext-1.3.xsd"); - } else { - return null; + } else if ("http://www.w3.org/XML/1998/namespace".equals(namespace)) { + return getClass().getResource("xml.xsd"); } + return null; } public Set getManagedClasses() { Modified: aries/trunk/blueprint/blueprint-core/src/main/resources/OSGI-INF/blueprint/blueprint-ext.xml URL: http://svn.apache.org/viewvc/aries/trunk/blueprint/blueprint-core/src/main/resources/OSGI-INF/blueprint/blueprint-ext.xml?rev=1528520&r1=1528519&r2=1528520&view=diff ============================================================================== --- aries/trunk/blueprint/blueprint-core/src/main/resources/OSGI-INF/blueprint/blueprint-ext.xml (original) +++ aries/trunk/blueprint/blueprint-core/src/main/resources/OSGI-INF/blueprint/blueprint-ext.xml Wed Oct 2 15:28:28 2013 @@ -42,4 +42,11 @@ + + + + + + + Added: aries/trunk/blueprint/blueprint-core/src/main/resources/org/apache/aries/blueprint/ext/impl/xml.xsd URL: http://svn.apache.org/viewvc/aries/trunk/blueprint/blueprint-core/src/main/resources/org/apache/aries/blueprint/ext/impl/xml.xsd?rev=1528520&view=auto ============================================================================== Binary file - no diff available. Propchange: aries/trunk/blueprint/blueprint-core/src/main/resources/org/apache/aries/blueprint/ext/impl/xml.xsd ------------------------------------------------------------------------------ svn:mime-type = application/xml