]> Wikimedia Canada | Git repositories - eccc_to_commons.git/blob - eccc_fixer.xslt
Rewrite almanach merge logic
[eccc_to_commons.git] / eccc_fixer.xslt
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!-- eccc_fixer.xslt - Fix XML historical data as provided by
4 Environment and Climate Change Canada
5 Copyright (C) 2019-2020 Pierre Choffet
6
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 -->
20
21 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
23 <xsl:output method="xml" encoding="utf-8" />
24
25 <!-- Idempotence -->
26 <xsl:template match="node()|@*">
27 <xsl:copy>
28 <xsl:apply-templates select="node()|@*" />
29 </xsl:copy>
30 </xsl:template>
31
32 <xsl:template match="/climatedata">
33 <climatedata>
34 <xsl:attribute name="xsi:schemaLocation">http://climate.weather.gc.ca/climate_data/bulkxml/bulkschema.xsd</xsl:attribute>
35 <xsl:apply-templates />
36 </climatedata>
37 </xsl:template>
38 </xsl:stylesheet>