Home | History | Annotate | Download | only in cgi

Lines Matching defs:cgi

12 /* static.cgi
28 CGI *cgi;
33 /* CGI works by passing information from the server to the CGI program via
40 /* The ClearSilver cgi toolkit accesses the CGI environment through a
42 * fake the CGI environment, such as FastCGI, mod_python, PyApache, or even
44 * cgiwrap_init_std just sets up for the default CGI environment using the
48 /* cgi_init creates a CGI struct, and parses the CGI environment variables.
50 err = cgi_init(&cgi, NULL);
53 /* cgi_neo_error renders a NEOERR as an error CGI result */
54 cgi_neo_error(cgi, err);
60 /* CGI.PathTranslated is a CGI env var which maps the URL with the
62 cs_file = hdf_get_value(cgi->hdf, "CGI.PathTranslated", NULL);
66 cgi_error(cgi, "No PATH_TRANSLATED var");
77 err = hdf_set_value(cgi->hdf, "hdf.loadpaths.0", cs_file);
82 cgi_neo_error(cgi, err);
88 err = hdf_read_file(cgi->hdf, "common.hdf");
91 cgi_neo_error(cgi, err);
100 err = hdf_read_file (cgi->hdf, hdf_file);
103 cgi_neo_error(cgi, err);
113 err = hdf_read_file (cgi->hdf, hdf_file);
116 cgi_neo_error(cgi, err);
122 * file that was passed to us, or its specificed by CGI.StaticContent
124 cs_file = hdf_get_value (cgi->hdf, "CGI.StaticContent", cs_file);
125 err = cgi_display (cgi, cs_file);
128 cgi_neo_error(cgi, err);