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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp " "> ]>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:db="http://docbook.org/ns/docbook"
exclude-result-prefixes="db"
>
<!-- ********************************************************************
********************************************************************
Copyright 2011, Regina Obe
License: BSD-3-Clause
Purpose: This is an xsl transform that generates PostgreSQL COMMENT ON FUNCTION ddl
statements from postgis xml doc reference
******************************************************************** -->
<xsl:include href="common_utils.xsl" />
<xsl:include href="common_cheatsheet.xsl" />
<xsl:variable name="chapter_id" select='"Extras"' />
<xsl:output method="html" />
<!-- TODO: share this -->
<xsl:template match="/">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>PostGIS Tiger Geocoder Cheatsheet</title>
<!-- TODO: share a parametrizable stylesheet -->
<style type="text/css">
body {
font-family: Arial, sans-serif;
font-size: 8.5pt;
}
@media print { a , a:hover, a:focus, a:active{text-decoration: none;color:black} }
@media screen { a , a:hover, a:focus, a:active{text-decoration: underline} }
.comment {font-size:x-small;color:green;font-family:"courier new"}
.notes {font-size:x-small;color:#dd1111;font-weight:500;font-family:verdana}
.example_heading {
border-bottom: 1px solid #000;
margin: 10px 15px 10px 85px;
background-color: #3e332a;
color: #fff;
}
#content_functions {
float: left;
width:100%;
}
#content_examples {
float: left;
width: 100%;
}
.section {
border: 1px solid #000;
margin: 4px;
<xsl:choose><xsl:when test="$output_purpose = 'false'">width: 100%</xsl:when><xsl:otherwise>width: 100%;</xsl:otherwise></xsl:choose>
}
.section th {
border: 1px solid #000;
color: #fff;
background-color: #3b332a;
font-size: 9.5pt;
}
.section td {
font-family: Arial, sans-serif;
font-size: 8.5pt;
vertical-align: top;
border: 0;
}
.func {font-weight: 600}
.func {font-weight: 600}
.func_args {font-size: 7.5pt;font-family:courier;}
.func_args ol {margin: 2px}
.func_args ol li {margin: 5px}
.evenrow {
background-color: #eee;
}
.oddrow {
background-color: #fff;
}
h1 {
margin: 0px;
padding: 0px;
font-size: 14pt;
}
</style>
</head>
<body>
<h1 style='text-align:center'>PostGIS <xsl:value-of select="$postgis_version" /> Tiger Geocoder Cheatsheet</h1>
<span class='notes'>
<!-- TODO: make text equally distributed horizontally ? -->
<xsl:value-of select="$cheatsheets_config/para[@role='new_in_release']" />
<sup>1</sup>
<xsl:value-of select="$cheatsheets_config/para[@role='enhanced_in_release']" />
<sup>2</sup>
<!--
<xsl:value-of select="$cheatsheets_config/para[@role='aggregate']" />
<sup>agg</sup>
<xsl:value-of select="$cheatsheets_config/para[@role='window_function']" />
<sup>W</sup>
<xsl:value-of select="$cheatsheets_config/para[@role='requires_geos_3.9_or_higher']" />
<sup>g3.9</sup>
<xsl:value-of select="$cheatsheets_config/para[@role='z_support']" />
<sup>3d</sup>
SQL-MM<sup>mm</sup>
<xsl:value-of select="$cheatsheets_config/para[@role='geography_support']" />
<sup>G</sup>
-->
</span>
<div id="content_functions">
<xsl:apply-templates select="/db:book/db:chapter[@xml:id=$chapter_id]" />
<!-- examples go here | TODO: move this logic to the chapter template ?-->
<xsl:for-each select="/db:book/db:chapter[@xml:id=$chapter_id]/db:section[count(//db:refentry//db:refsection//db:programlisting) > 0]">
<xsl:call-template name="examples_list" />
</xsl:for-each>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
|