|
Revision 514
(checked in by lawouach, 3 years ago)
|
doc updates
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 |
<section xmlns:db="http://docbook.org/docbook-ng" xmlns:xi="http://www.w3.org/2001/XInclude" |
|---|
| 3 |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xml:id="filtersexplained"> |
|---|
| 4 |
<title>Filters explained</title> |
|---|
| 5 |
<para> Filters provide a powerful mechanism for extending CherryPy. The aim is to provide code |
|---|
| 6 |
called at the HTTP request level itself. More specifically it means that you can write code that |
|---|
| 7 |
will be called: </para> |
|---|
| 8 |
<itemizedlist> |
|---|
| 9 |
<listitem> before a request is processed </listitem> |
|---|
| 10 |
<listitem> after a request has been processed </listitem> |
|---|
| 11 |
<listitem> before a response is sent to the client </listitem> |
|---|
| 12 |
<listitem> after a response is sent to the client </listitem> |
|---|
| 13 |
</itemizedlist> |
|---|
| 14 |
<xi:include href="builtinfilters.xml"/> |
|---|
| 15 |
<xi:include href="writingfilters.xml"/> |
|---|
| 16 |
</section> |
|---|