[mod-xhtml-neg-cvs] mod_xhtml_neg-2.0 mod_xhtml_neg.c,1.7,1.8
Brought to you by:
run2000
From: <ru...@us...> - 2004-03-24 11:17:30
|
Update of /cvsroot/mod-xhtml-neg/mod_xhtml_neg-2.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31035 Modified Files: mod_xhtml_neg.c Log Message: Minor updates at the file and main page level. Index: mod_xhtml_neg.c =================================================================== RCS file: /cvsroot/mod-xhtml-neg/mod_xhtml_neg-2.0/mod_xhtml_neg.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mod_xhtml_neg.c 24 Mar 2004 10:34:06 -0000 1.7 --- mod_xhtml_neg.c 24 Mar 2004 11:06:40 -0000 1.8 *************** *** 77,80 **** --- 77,81 ---- * @author Nicholas Cull <ru...@us...> * @date 1 March 2004 + * @version 0.91 * * @history *************** *** 85,88 **** --- 86,94 ---- * 0.9 ETag handled correctly for different content types. \n * + * @todo + * Pick up the AddDefaultCharset directive from the Apache core and use that + * where appropriate instead of defaulting to ISO-8859-1. If this is not set, + * then we fallback on existing methods. + * * @directive * @c XhtmlNegActive Is this module enabled? Defaults to no. \n *************** *** 98,102 **** /** * @file ! * The main source file for the mod_xhtml_neg module. */ --- 104,109 ---- /** * @file ! * The main source file for the mod_xhtml_neg module. This file implements ! * the module for Apache 2.0.x servers. */ *************** *** 211,216 **** } extension_rec; - /* String utility functions start here. */ - /* * Utility functions for strings, since we can't rely on these functions being --- 218,221 ---- *************** *** 633,637 **** } ! /* Following code modified from mod_negotiate.c */ /** --- 638,642 ---- } ! /* Following code modified from mod_negotiate.c */ /** *************** *** 731,735 **** * basic structure of a list of items of the format: * ! * name; q=N; charset=TEXT; profile="URL" * * Since this header is very similar in structure to the Accept-Charset --- 736,740 ---- * basic structure of a list of items of the format: * ! * name; q=N; charset=TEXT; profile="URI" * * Since this header is very similar in structure to the Accept-Charset |