diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-01-03 14:24:42 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-01-03 14:29:10 +0100 |
commit | 923e722379debe262043f892bcfa6719b4319a27 (patch) | |
tree | 3fd406a812335e8e1372c78da64e717954799ab0 /xsl | |
parent | a805cf0fd1fba12375cf9dc6aabd1720990777b0 (diff) | |
download | mutti-web-923e722379debe262043f892bcfa6719b4319a27.tar.gz mutti-web-923e722379debe262043f892bcfa6719b4319a27.tar.bz2 mutti-web-923e722379debe262043f892bcfa6719b4319a27.zip |
Remove googlemaps.xsl
Not used for now, maybe reverted later.
Diffstat (limited to 'xsl')
-rw-r--r-- | xsl/common.xsl | 1 | ||||
-rw-r--r-- | xsl/googlemaps.xsl | 87 |
2 files changed, 0 insertions, 88 deletions
diff --git a/xsl/common.xsl b/xsl/common.xsl index df348eb..be3b856 100644 --- a/xsl/common.xsl +++ b/xsl/common.xsl @@ -7,7 +7,6 @@ xmlns:html="http://www.w3.org/1999/xhtml"> <xsl:include href="navi.xsl" /> - <xsl:include href="googlemaps.xsl" /> <xsl:include href="link.xsl" /> <xsl:strip-space elements="*"/> diff --git a/xsl/googlemaps.xsl b/xsl/googlemaps.xsl deleted file mode 100644 index 3c84f11..0000000 --- a/xsl/googlemaps.xsl +++ /dev/null @@ -1,87 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0" - xmlns="http://www.w3.org/1999/xhtml" - xmlns:s="https://beratung-franzke.de/web-tpl" - xmlns:str="http://exslt.org/strings" - extension-element-prefixes="str"> - - <xsl:template match="s:googlemap" mode="html"> - <xsl:call-template name="googlemap"> - <xsl:with-param name="location" select="@location" /> - <xsl:with-param name="width"> - <xsl:choose> - <xsl:when test="@width"> - <xsl:value-of select="@width" /> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="'640'" /> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - <xsl:with-param name="height"> - <xsl:choose> - <xsl:when test="@height"> - <xsl:value-of select="@height" /> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="'480'" /> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - <xsl:with-param name="lang"> - <xsl:choose> - <xsl:when test="@lang"> - <xsl:value-of select="@lang" /> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="'de'" /> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - </xsl:call-template> - </xsl:template> - - <xsl:template name="googlemap"> - <xsl:param name="location" /> - <xsl:param name="width" select="'640'" /> - <xsl:param name="height" select="'480'" /> - <xsl:param name="lang" select="'de'" /> - - <xsl:variable name="base_uri" select="concat('http://maps.google.de/maps?f=q&hl=', $lang)" /> - <xsl:variable name="map_base_uri" select="concat($base_uri, '&source=s_q&output=embed&q=')" /> - <xsl:variable name="link_base_uri" select="concat($base_uri, '&source=embed&output=embed&q=')" /> - - <xsl:variable name="map_uri"> - <xsl:choose> - <xsl:when test="function-available('str:encode-uri')"> - <xsl:value-of select="str:encode-uri(concat($map_base_uri, $location), false())" />--> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="concat($map_base_uri, $location)" /> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:element name="iframe"> - <xsl:attribute name="src"> - <xsl:value-of select="$map_uri" /> - </xsl:attribute> - <xsl:attribute name="width"><xsl:value-of select="$width" /></xsl:attribute> - <xsl:attribute name="height"><xsl:value-of select="$height" /></xsl:attribute> - <xsl:attribute name="frameborder">0</xsl:attribute> - <xsl:attribute name="marginheight">0</xsl:attribute> - <xsl:attribute name="marginwidth">0</xsl:attribute> - <xsl:attribute name="scrolling">no</xsl:attribute> - </xsl:element> - - <!-- - <br /> - <small> - <a href="{concat($link_base_uri, $location)}" style="color:#0000FF; text-align:left"> - Größere Kartenansicht - </a> - </small> - --> - </xsl:template> -</xsl:stylesheet> |