summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/webpresence/webpresence_html_images.xsl
blob: 04041efbd2dbfa317450f3b8f909d74ca1d81a6a (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
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
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

	<!--
		HTML 4.01 Transitional - protocol text replaced with icons

		NOTE: You will have to create a dir 'images' at the
		upload location containing the files named below.
	-->

	<!--
		Import the HTML XSL sheet, and replace the <protocol>
		handling with our own template.
	-->

	<xsl:import href="webpresence_html.xsl"/>

	<!--
		You can change the image directory with this variable.
	-->

	<xsl:variable name="images">images</xsl:variable>

	<xsl:template match="protocol">
		<xsl:choose>
			<xsl:when test=".='MSNProtocol'">
				<img src="{$images}/msn_protocol.png" alt="MSN" title="MSN"/>
			</xsl:when>
			<xsl:when test=".='ICQProtocol'">
				<img src="{$images}/icq_protocol.png" alt="ICQ" title="ICQ"/>
			</xsl:when>
			<xsl:when test=".='JabberProtocol'">
				<img src="{$images}/jabber_protocol.png" alt="Jabber" title="Jabber"/>
			</xsl:when>
			<xsl:when test=".='YahooProtocol'">
				<img src="{$images}/yahoo_protocol.png" alt="Yahoo" title="Yahoo"/>
			</xsl:when>
			<xsl:when test=".='AIMProtocol'">
				<img src="{$images}/aim_protocol.png" alt="AIM" title="AIM"/>
			</xsl:when>
			<xsl:when test=".='IRCProtocol'">
				<img src="{$images}/irc_protocol.png" alt="IRC" title="IRC"/>
			</xsl:when>
			<xsl:when test=".='SMSProtocol'">
				<img src="{$images}/sms_protocol.png" alt="SMS" title="SMS"/>
			</xsl:when>
			<xsl:when test=".='GaduProtocol'">
				<img src="{$images}/gadu_protocol.png" alt="Gadu-Gadu" title="Gadu-Gadu"/>
			</xsl:when>
			<xsl:when test=".='WPProtocol'">
				<img src="{$images}/winpopup_protocol.png" alt="WinPopup" title="WinPopup"/>
			</xsl:when>
		</xsl:choose>
	</xsl:template>

</xsl:stylesheet>