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 147 148 149 150 151 152 153 154 155 156 157 158 159
|
<?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:output method="html" />
<xsl:template match="/">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>PostGIS Cheat Sheet</title>
<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_functions_left {
width:100%;
float: left;
}
#content_functions_right {
width: 100%;
float: right;
}
#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>
float: left;
}
.example {
border: 1px solid #000;
margin: 4px;
width: 100%;
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: #FF9900;
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: 8pt;font-family:"courier new";float:left}
.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" /> 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> <sup>g3.11</sup> <sup>g3.12</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='reference']" />
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
|