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 138 139 140 141 142 143 144 145 146
|
<?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='"RT_reference"' />
<xsl:output method="html" />
<xsl:template match="/">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>PostGIS Raster Cheatsheet</title>
<!-- TODO: share a parametrizable stylecheet -->
<style type="text/css">
table { page-break-inside:avoid; page-break-after:auto }
tr { page-break-inside:avoid; page-break-after:avoid }
thead { display:table-header-group }
tfoot { display:table-footer-group }
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;
color: #4a124a;font-size: 7.5pt;
}
#content_functions {
width:100%;
float: left
}
#content_examples {
float: left;
width: 100%;
page-break-before: auto
}
.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>
float: left;
}
.example {
border: 1px solid #000;
margin: 4px;
width: 50%;
float:left;
}
.example b {font-size: 7.5pt}
.example th {
border: 1px solid #000;
color: #000;
background-color: #ddd;
font-size: 8.0pt;
}
.section th {
border: 1px solid #000;
color: #fff;
background-color: #4a124a;
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_args {font-size: 8pt;font-family:courier}
.evenrow {
background-color: #eee;
}
.oddrow {
background-color: #fff;
}
h1 {
margin: 0px;
padding: 0px;
font-size: 14pt;
}
code {font-size: 8pt}
</style>
</head>
<body><h1 style='text-align:center'>PostGIS <xsl:value-of select="$postgis_version" /> Raster 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]" />
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
|