[mod-xhtml-neg-cvs] mod_xhtml_neg-2.0 Doxyfile,1.1,1.2 mod_xhtml_neg.c,1.10,1.11
Brought to you by:
run2000
From: <ru...@us...> - 2004-03-25 10:31:46
|
Update of /cvsroot/mod-xhtml-neg/mod_xhtml_neg-2.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28783 Modified Files: Doxyfile mod_xhtml_neg.c Log Message: More comment fixes. Index: Doxyfile =================================================================== RCS file: /cvsroot/mod-xhtml-neg/mod_xhtml_neg-2.0/Doxyfile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Doxyfile 24 Mar 2004 10:34:06 -0000 1.1 --- Doxyfile 25 Mar 2004 10:20:54 -0000 1.2 *************** *** 24,28 **** # if some version control system is used. ! PROJECT_NUMBER = 0.91 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) --- 24,28 ---- # if some version control system is used. ! PROJECT_NUMBER = 0.92 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) *************** *** 48,52 **** # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES ! EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class --- 48,52 ---- # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES ! EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class Index: mod_xhtml_neg.c =================================================================== RCS file: /cvsroot/mod-xhtml-neg/mod_xhtml_neg-2.0/mod_xhtml_neg.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** mod_xhtml_neg.c 25 Mar 2004 10:04:31 -0000 1.10 --- mod_xhtml_neg.c 25 Mar 2004 10:20:54 -0000 1.11 *************** *** 92,96 **** * @c XhtmlNegTypes A file extension followed by one or more matching * content-type strings \n ! * @c XhtmlNegStarsIgnore The number of stars in an Accept header which should * be ignored if we match them \n * @c XhtmlNegCache Should negotiated HTTP 1.0 requests be cacheable? --- 92,96 ---- * @c XhtmlNegTypes A file extension followed by one or more matching * content-type strings \n ! * @c XhtmlNegStarsIgnore The number of stars in an Accept token which should * be ignored if we match them \n * @c XhtmlNegCache Should negotiated HTTP 1.0 requests be cacheable? *************** *** 183,187 **** * A per-directory configuration state for this module. Here we record the * file extension to content-type mappings, whether the module should be ! * active for this directory, and the types of wildcard Accept headers that * we should ignore. */ --- 183,187 ---- * A per-directory configuration state for this module. Here we record the * file extension to content-type mappings, whether the module should be ! * active for this directory, and the types of wildcard Accept tokens that * we should ignore. */ *************** *** 204,208 **** char *charset; /**< for content-type only */ char *profile; /**< The XHTML profile, as per RFC 3236 */ ! int stars; /**< How many stars in this accept name? */ char *hashcode; /**< The hashcode to be appended to Etags */ } accept_rec; --- 204,208 ---- char *charset; /**< for content-type only */ char *profile; /**< The XHTML profile, as per RFC 3236 */ ! int stars; /**< How many stars in this accept token? */ char *hashcode; /**< The hashcode to be appended to Etags */ } accept_rec; *************** *** 215,219 **** typedef struct { char *extension; /**< Filename extension */ ! apr_array_header_t *content_types; /**< Array of content accept headers */ } extension_rec; --- 215,219 ---- typedef struct { char *extension; /**< Filename extension */ ! apr_array_header_t *content_types; /**< Array of content accept tokens */ } extension_rec; *************** *** 504,508 **** /** ! * Count the number of stars in an Accept content header. This helps determine * priority in case of a tie in q-value priorities. */ --- 504,508 ---- /** ! * Count the number of stars in an Accept content token. This helps determine * priority in case of a tie in q-value priorities. */ *************** *** 834,838 **** iso8859_found = 0; ! /* Scan all the accept_recs items for a name of "ISO-8859-1" (case * insensitive). If there are no matching records, construct one with * a q value of "1", as per section 14.2 of the HTTP 1.1 spec (RFC 2616). --- 834,838 ---- iso8859_found = 0; ! /* Scan all the accept_recs tokens for a name of "ISO-8859-1" (case * insensitive). If there are no matching records, construct one with * a q value of "1", as per section 14.2 of the HTTP 1.1 spec (RFC 2616). *************** *** 897,901 **** /** ! * Determine a given content_type record matches the criteria of the given * content_accept record. Returns a quality value for the given variables. * --- 897,901 ---- /** ! * Determine if a given content_type record matches the criteria of the given * content_accept record. Returns a quality value for the given variables. * *************** *** 906,910 **** * * Once we match based on names, check whether a charset is present in the ! * content_acceptrecord. If so, need to match charsets exactly. Otherwise, * no further check is needed, and we can return true immediately. * --- 906,910 ---- * * Once we match based on names, check whether a charset is present in the ! * content_accept record. If so, need to match charsets exactly. Otherwise, * no further check is needed, and we can return true immediately. * *************** *** 961,965 **** /* Accept profile is specified in the request. */ if( ! mod_xhtml_strempty( content_profile )) { ! /* Accept header specifies a profile, but server does not. * Have to reject. (RFC 3236 doesn't specify a default.) * --- 961,965 ---- /* Accept profile is specified in the request. */ if( ! mod_xhtml_strempty( content_profile )) { ! /* Accept token specifies a profile, but server does not. * Have to reject. (RFC 3236 doesn't specify a default.) * *************** *** 1009,1013 **** if( mod_xhtml_strempty( content_accept->charset )) { ! /* Accept header says we accept anything. Have to check for * Accept-Charset also. */ --- 1009,1013 ---- if( mod_xhtml_strempty( content_accept->charset )) { ! /* Accept token says we accept anything. Have to check for * Accept-Charset also. */ |