Return-Path: X-Original-To: apmail-sling-commits-archive@www.apache.org Delivered-To: apmail-sling-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 6DE6BCFA3 for ; Tue, 4 Jun 2013 10:44:15 +0000 (UTC) Received: (qmail 74671 invoked by uid 500); 4 Jun 2013 10:44:11 -0000 Delivered-To: apmail-sling-commits-archive@sling.apache.org Received: (qmail 74473 invoked by uid 500); 4 Jun 2013 10:44:05 -0000 Mailing-List: contact commits-help@sling.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@sling.apache.org Delivered-To: mailing list commits@sling.apache.org Received: (qmail 74462 invoked by uid 99); 4 Jun 2013 10:44:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jun 2013 10:44:03 +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; Tue, 04 Jun 2013 10:44:01 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 189B2238897A; Tue, 4 Jun 2013 10:43:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1489379 - in /sling/site/trunk/content/documentation: bundles.mdtext bundles/xml-support.mdtext Date: Tue, 04 Jun 2013 10:43:40 -0000 To: commits@sling.apache.org From: rombert@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130604104341.189B2238897A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rombert Date: Tue Jun 4 10:43:40 2013 New Revision: 1489379 URL: http://svn.apache.org/r1489379 Log: SLING-2893 - Add documentation and integration tests to verify XML parsing functionality Add a little documentation regarding XML support. Added: sling/site/trunk/content/documentation/bundles/xml-support.mdtext Modified: sling/site/trunk/content/documentation/bundles.mdtext Modified: sling/site/trunk/content/documentation/bundles.mdtext URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles.mdtext?rev=1489379&r1=1489378&r2=1489379&view=diff ============================================================================== --- sling/site/trunk/content/documentation/bundles.mdtext (original) +++ sling/site/trunk/content/documentation/bundles.mdtext Tue Jun 4 10:43:40 2013 @@ -31,3 +31,4 @@ Title: Bundles * [Scheduler Service (commons scheduler)]({{ refs.scheduler-service-commons-scheduler.path }}) * [Web Console Extensions (org.apache.sling.extensions.webconsolebranding, org.apache.sling.extensions.webconsolesecurityprovider)]({{ refs.web-console-extensions.path }}) * [Discovery API and its Implementations (discovery.api, discovery.impl)]({{ refs.discovery-api-and-impl.path }}) +* [XML Support]({{ refs.xml-support.xml }}) \ No newline at end of file Added: sling/site/trunk/content/documentation/bundles/xml-support.mdtext URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles/xml-support.mdtext?rev=1489379&view=auto ============================================================================== --- sling/site/trunk/content/documentation/bundles/xml-support.mdtext (added) +++ sling/site/trunk/content/documentation/bundles/xml-support.mdtext Tue Jun 4 10:43:40 2013 @@ -0,0 +1,8 @@ +Title: XML support +Excerpt: XML mechanisms supported by Sling + +Out of the box, Sling provides no special bundles for XML. However, Sling supports multiple mechanisms and libraries. The ones we have validated with integration tests are: + +# XPath ( see the [XPathServlet](http://svn.apache.org/repos/asf/sling/trunk/launchpad/test-services/src/main/java/org/apache/sling/launchpad/testservices/servlets/XpathServlet.java)) +# SAX ( see the [SaxServlet](http://svn.apache.org/repos/asf/sling/trunk/launchpad/test-services/src/main/java/org/apache/sling/launchpad/testservices/servlets/SaxServlet.java)) +# DOM ( see the [DomServlet](http://svn.apache.org/repos/asf/sling/trunk/launchpad/test-services/src/main/java/org/apache/sling/launchpad/testservices/servlets/DomServlet.java)) \ No newline at end of file