Searched defs:charset (Results 1 - 8 of 8) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_data.c | 50 * data:[<mime-type>;][charset=<charset>;]base64,<payload> 55 * charset: The optional character set corresponding to the mime type. 75 char *charset = NULL; local 93 charset = strchr(type, ' '); 94 if (charset) { 95 *charset++ = 0; 96 end = strchr(charset, ' '); 104 type ? type : "", charset ? charset [all...] |
H A D | mod_xml2enc.c | 180 if (ctype && (p = ap_strcasestr(ctype, "charset=") , p != NULL)) { 185 "Got charset %s from HTTP headers", ctx->encoding) ; 197 "Got charset from XML rules.") ; 222 "Got charset %s from HTML META", ctx->encoding) ; 249 /* Unsupported charset. Can we get (iconv) support through apr_xlate? */ 266 "No usable charset information; using configuration default"); 272 r->content_type = apr_pstrcat(r->pool, ctype, ";charset=utf-8", 550 seek_charset = ap_pregcomp(pool, "charset=([A-Za-z0-9_-]+)", 554 const char* charset, const char* alias) 559 else if (xmlAddEncodingAlias(charset, alia 553 set_alias(cmd_parms* cmd, void* CFG, const char* charset, const char* alias) argument 565 set_default(cmd_parms* cmd, void* CFG, const char* charset) argument [all...] |
/httpd/server/ |
H A D | apreq_param.c | 72 apreq_charset_t charset; local 91 charset = apreq_charset_divine(v->data, v->dlen); 96 charset = APREQ_CHARSET_ASCII; 108 if (charset == APREQ_CHARSET_ASCII) 109 charset = APREQ_CHARSET_UTF8; 114 if (charset != APREQ_CHARSET_CP1252) 115 charset = APREQ_CHARSET_LATIN1; 118 charset = APREQ_CHARSET_CP1252; 121 apreq_param_charset_set(p, charset);
|
H A D | apreq_parser_urlencoded.c | 61 apreq_charset_t charset; local 124 charset = apreq_charset_divine(v->data, vlen); 135 if (charset == APREQ_CHARSET_ASCII) 136 charset = APREQ_CHARSET_UTF8; 141 if (charset != APREQ_CHARSET_CP1252) 142 charset = APREQ_CHARSET_LATIN1; 145 charset = APREQ_CHARSET_CP1252; 154 apreq_param_charset_set(param, charset);
|
/httpd/modules/aaa/ |
H A D | mod_authnz_ldap.c | 117 static char *to_charset = NULL; /* UTF-8 identifier derived from the charset.conv file */ 122 char *charset; local 127 charset = (char*) apr_hash_get(charset_conversions, language, APR_HASH_KEY_STRING); 129 if (!charset) { 131 charset = (char*) apr_hash_get(charset_conversions, language, APR_HASH_KEY_STRING); 134 if (charset) { 135 charset = apr_pstrdup(p, charset); 138 return charset; 1868 "Invalid charset conversio 1894 char *charset = ap_getword_conf(p, &ll); local [all...] |
/httpd/modules/http/ |
H A D | mod_mime.c | 371 "a charset (e.g., iso-2022-jp), followed by one or more " 758 const char *fn, *fntmp, *type, *charset = NULL, *resource_name; local 854 charset = exinfo->charset_type; 956 if (charset && !strcmp(pp->attr, "charset")) { 961 "; charset=", 962 charset, 977 if (charset && !override) { 979 "; charset=", charset, [all...] |
/httpd/modules/generators/ |
H A D | mod_autoindex.c | 146 char *charset; member in struct:autoindex_config_struct 498 d_cfg->charset = apr_pstrdup(cmd->pool, &w[8]); 658 new->charset = add->charset ? add->charset : base->charset; 2023 char *charset; local 2034 if (autoindex_conf->charset) { 2035 charset = autoindex_conf->charset; [all...] |
/httpd/modules/mappers/ |
H A D | mod_negotiation.c | 179 char *charset; /* for content-type only */ member in struct:accept_rec 223 float charset_quality; /* ditto charset */ 314 var->content_charset = mime_info->charset; 414 result->charset = ""; 492 else if (!strcmp(parm, "charset")) { 493 result->charset = cp; 511 * name; q=N; charset=TEXT 513 * where charset is only valid in Accept. 1188 * language, charset, encoding, content type or handler,) 1848 /* For a given variant, find the 'q' value of the charset give 1856 const char *charset = variant->content_charset; local [all...] |
Completed in 1558 milliseconds