| 154 | #define BY_PATH &c_by_path |
| 155 | |
| 156 | static APR_INLINE int response_is_html(request_rec *r) |
| 157 | { |
| 158 | char *ctype = ap_field_noparam(r->pool, r->content_type); |
| 159 | |
| 160 | return !ap_cstr_casecmp(ctype, "text/html") |
| 161 | || !ap_cstr_casecmp(ctype, "application/xhtml+xml"); |
| 162 | } |
| 163 | |
| 164 | /* |
| 165 | * This routine puts the standard HTML header at the top of the index page. |
no test coverage detected