Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / extras / source / misc_config / wizard / web / layouts / source.xml.xsl
blob9a2af015075d1ffd3751ac07aa4838089f9f7bb5
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 -->
19 <!-- =================================
21 This templates creates a source.xml file which is identical to the source xml tree
22 used for the transformation. This is may be useful for deveopement/debuging
23 of layouts.
25 ==================================== -->
27 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
28 xmlns:redirect="http://xml.apache.org/xalan/redirect"
29 extension-element-prefixes="redirect">
31 <xsl:output method="xml"/>
34 <xsl:template match="/">
35 <xsl:apply-templates mode="copy"/>
36 </xsl:template>
38 <xsl:template match="@*|node()" mode="copy">
39 <xsl:copy>
40 <xsl:apply-templates select="@*|node()" mode="copy"/>
41 </xsl:copy>
42 </xsl:template>
44 </xsl:stylesheet>