~ubuntu-branches/ubuntu/jaunty/nginx/jaunty-updates

« back to all changes in this revision

Viewing changes to src/http/modules/ngx_http_ssi_filter_module.h

  • Committer: Bazaar Package Importer
  • Author(s): Jose Parrella
  • Date: 2007-12-08 11:27:54 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071208112754-23ohg2b1zshkdayw
Tags: 0.5.33-1
* New stable upstream release (Closes: #451173)
* nginx now provides httpd, httpd-cgi virtual packages
  (Closes: #439468, #452025)
* sites-enabled/default link is now provided only on fresh 
  installations (Closes: #432961)
* Updated code for online upgrading of nginx (Closes: #445246)
* Reviewed maintainer scripts for correct behaviour on updates
  (Closes: #452787, #435965)
* Removed debian/nginx.links and debian/preinst.
* Changing Maintainer address to bureado@debian.org.
* Welcoming Fabio Tranchitella <kobold@debian.org> as an nginx 
  uploader for Debian. Thanks for your patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#include <ngx_http.h>
14
14
 
15
15
 
16
 
#define NGX_HTTP_SSI_MAX_PARAMS     16
17
 
 
18
 
#define NGX_HTTP_SSI_COMMAND_LEN    32
19
 
#define NGX_HTTP_SSI_PARAM_LEN      32
20
 
#define NGX_HTTP_SSI_PARAMS_N       4
21
 
 
22
 
 
23
 
#define NGX_HTTP_SSI_COND_IF        1
24
 
#define NGX_HTTP_SSI_COND_ELSE      2
 
16
#define NGX_HTTP_SSI_MAX_PARAMS       16
 
17
 
 
18
#define NGX_HTTP_SSI_COMMAND_LEN      32
 
19
#define NGX_HTTP_SSI_PARAM_LEN        32
 
20
#define NGX_HTTP_SSI_PARAMS_N         4
 
21
 
 
22
 
 
23
#define NGX_HTTP_SSI_COND_IF          1
 
24
#define NGX_HTTP_SSI_COND_ELSE        2
 
25
 
 
26
 
 
27
#define NGX_HTTP_SSI_NO_ENCODING      0
 
28
#define NGX_HTTP_SSI_URL_ENCODING     1
 
29
#define NGX_HTTP_SSI_ENTITY_ENCODING  2
25
30
 
26
31
 
27
32
typedef struct {
60
65
    ngx_array_t              *blocks;
61
66
 
62
67
    unsigned                  conditional:2;
 
68
    unsigned                  encoding:2;
63
69
    unsigned                  block:1;
64
70
    unsigned                  output:1;
65
71
    unsigned                  output_chosen:1;