summaryrefslogtreecommitdiff
path: root/example/common.xsl
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2019-02-20 12:33:50 +0300
committerdefanor <defanor@uberspace.net>2019-02-20 12:33:50 +0300
commit3fcb323b049f076e0dfd2527de981a173e260086 (patch)
treed318252b6491023a22b35d2cdb0b128b10e6984c /example/common.xsl
parent58f967265b8f4637de0bf285e99bf7a3051e1961 (diff)
Allow requests without queries
Apply a stylesheet to <pgx:no_query /> in that case. This is slightly out of the project scope, but handy in some cases (helps to avoid dummy queries or additional software), and done with a single line change.
Diffstat (limited to 'example/common.xsl')
-rw-r--r--example/common.xsl4
1 files changed, 4 insertions, 0 deletions
diff --git a/example/common.xsl b/example/common.xsl
index 15838ba..c832552 100644
--- a/example/common.xsl
+++ b/example/common.xsl
@@ -41,4 +41,8 @@
<dd><xsl:copy-of select="text()" /></dd>
</xsl:template>
+ <xsl:template match="pgx:no_query">
+ <p>No query is provided.</p>
+ </xsl:template>
+
</xsl:stylesheet>