forked from moodleou/moodle-mod_ouwiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.xsl
54 lines (51 loc) · 1.98 KB
/
feed.xsl
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:atom="http://www.w3.org/2005/Atom">
<xsl:output method="html"/>
<xsl:template match="/atom:feed">
<html>
<head>
<title>Atom feed: <xsl:value-of select="atom:title"/></title>
</head>
<body>
<h1>Atom feed: <xsl:value-of select="atom:title"/></h1>
<p>
This is an Atom feed. If you use a news reader program or
website, you can add the Internet address of this page in order
to be updated when new information is posted to this feed.
</p>
<p>
Your course doesn't require you to use this page but, if you are
interested, you can find out more about Atom from public websites such as
<a href="http://atomenabled.org/">Atom Enabled</a>.
</p>
<p>
Click your browser's Back button to return to the website.
</p>
</body>
</html>
</xsl:template>
<xsl:template match="/rss">
<html>
<head>
<title>RSS feed: <xsl:value-of select="channel/title"/></title>
</head>
<body>
<h1>RSS feed: <xsl:value-of select="channel/title"/></h1>
<p>
This is an RSS feed. If you use a news reader program or
website, you can add the Internet address of this page in order
to be updated when new information is posted to this feed.
</p>
<p>
Your course doesn't require you to use this page but, if you are
interested, you can find out more about RSS from public sources
such as
<a href="http://en.wikipedia.org/wiki/RSS_%28file_format%29">this Wikipedia entry</a>.
</p>
<p>
Click your browser's Back button to return to the website.
</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>