aboutsummaryrefslogtreecommitdiff
path: root/t/test-site/src/common/fillFeed.xsl
blob: d19bf2b439acf8c8d218c0a13760721ef7378ec8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<x:stylesheet xmlns:x="http://www.w3.org/1999/XSL/Transform"
              xmlns:wc="http://webcoso.thenautilus.net/"
              version="1.0">
 
 <x:param name="language" select="'en'"/>
 <x:param name="path"/>
 <x:param name="filename"/>
 
 <x:output method="xml" encoding="utf-8"/>
 
 <x:template match="*">
  <x:copy>
   <x:apply-templates select="@*|*|text()"/>
  </x:copy>
 </x:template>
 
 <x:template match="@*">
  <x:copy/>
 </x:template>
 
 <x:template match="PH">
  <url><x:value-of select="."/></url>
  <title><x:apply-templates select="wc:title-for($language,$filename,.)"/></title>
 </x:template>
 
 
</x:stylesheet>