[mod-xhtml-neg-cvs] mod_xhtml_neg mod_xhtml_neg.c,1.27,1.28
Brought to you by:
run2000
From: <ru...@us...> - 2004-03-26 11:08:43
|
Update of /cvsroot/mod-xhtml-neg/mod_xhtml_neg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28956 Modified Files: mod_xhtml_neg.c Log Message: More minor fixes to Doxygen info. Index: mod_xhtml_neg.c =================================================================== RCS file: /cvsroot/mod-xhtml-neg/mod_xhtml_neg/mod_xhtml_neg.c,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** mod_xhtml_neg.c 26 Mar 2004 10:31:25 -0000 1.27 --- mod_xhtml_neg.c 26 Mar 2004 10:57:46 -0000 1.28 *************** *** 1255,1259 **** * new tokens: "Accept" and "Accept-Charset". * ! * @param r the current HTTP request */ --- 1255,1259 ---- * new tokens: "Accept" and "Accept-Charset". * ! * @param r the current HTTP request to which we merge Vary tokens */ *************** *** 1436,1450 **** * * @param dir_config the configuration information for this directory ! * @param arg a yes/no flag indicating whether the module should be active * @return NULL to indicate that processing was successful */ static const char *set_xhtml_active(cmd_parms *cmd, ! xhtml_dir_config *dir_config, int arg) { /* If we're here at all it's because someone explicitly * set the active flag */ ! if ( arg ) { dir_config->active = active_on; } else { --- 1436,1450 ---- * * @param dir_config the configuration information for this directory ! * @param active a yes/no flag indicating whether the module should be active * @return NULL to indicate that processing was successful */ static const char *set_xhtml_active(cmd_parms *cmd, ! xhtml_dir_config *dir_config, int active) { /* If we're here at all it's because someone explicitly * set the active flag */ ! if ( active ) { dir_config->active = active_on; } else { *************** *** 1485,1489 **** * @param dir_config the configuration information for this directory * @param ext the file extension we're configuring ! * @param contenttype the content type to be added for this file extension * @return NULL to indicate that processing was successful */ --- 1485,1489 ---- * @param dir_config the configuration information for this directory * @param ext the file extension we're configuring ! * @param type the content type to be added for this file extension * @return NULL to indicate that processing was successful */ *************** *** 1491,1495 **** static const char *add_xhtml_type(cmd_parms *cmd, xhtml_dir_config *dir_config, ! char *ext, char *contenttype) { extension_rec *rec; --- 1491,1495 ---- static const char *add_xhtml_type(cmd_parms *cmd, xhtml_dir_config *dir_config, ! char *ext, char *type) { extension_rec *rec; *************** *** 1502,1506 **** */ ! ap_str_tolower(contenttype); rec = find_extension( dir_config->extensions, ext ); --- 1502,1506 ---- */ ! ap_str_tolower(type); rec = find_extension( dir_config->extensions, ext ); *************** *** 1513,1517 **** new = (accept_rec *) ap_push_array( rec->content_types ); ! get_entry( cmd->pool, new, contenttype ); make_etag_hashcode( cmd->pool, new ); --- 1513,1517 ---- new = (accept_rec *) ap_push_array( rec->content_types ); ! get_entry( cmd->pool, new, type ); make_etag_hashcode( cmd->pool, new ); |