[mod-xhtml-neg-cvs] mod_xhtml_neg Doxyfile,1.1,1.2 mod_xhtml_neg.c,1.25,1.26
Brought to you by:
run2000
From: <ru...@us...> - 2004-03-25 10:31:24
|
Update of /cvsroot/mod-xhtml-neg/mod_xhtml_neg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28748 Modified Files: Doxyfile mod_xhtml_neg.c Log Message: More comment fixes. Index: Doxyfile =================================================================== RCS file: /cvsroot/mod-xhtml-neg/mod_xhtml_neg/Doxyfile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Doxyfile 24 Mar 2004 10:33:40 -0000 1.1 --- Doxyfile 25 Mar 2004 10:20:37 -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/mod_xhtml_neg.c,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** mod_xhtml_neg.c 25 Mar 2004 10:03:44 -0000 1.25 --- mod_xhtml_neg.c 25 Mar 2004 10:20:37 -0000 1.26 *************** *** 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? *************** *** 179,183 **** * 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. */ --- 179,183 ---- * 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. */ *************** *** 200,204 **** 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; --- 200,204 ---- 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; *************** *** 211,215 **** typedef struct { char *extension; /**< Filename extension */ ! array_header *content_types; /**< Array of content accept headers */ } extension_rec; --- 211,215 ---- typedef struct { char *extension; /**< Filename extension */ ! array_header *content_types; /**< Array of content accept tokens */ } extension_rec; *************** *** 502,506 **** /** ! * Count the number of stars in an Accept content header. This helps determine * priority in case of a tie in q-value priorities. */ --- 502,506 ---- /** ! * Count the number of stars in an Accept content token. This helps determine * priority in case of a tie in q-value priorities. */ *************** *** 830,834 **** 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). --- 830,834 ---- 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). *************** *** 893,897 **** /** ! * Determine a given content_type record matches the criteria of the given * content_accept record. Returns a quality value for the given variables. * --- 893,897 ---- /** ! * Determine if a given content_type record matches the criteria of the given * content_accept record. Returns a quality value for the given variables. * *************** *** 902,906 **** * * 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. * --- 902,906 ---- * * 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. * *************** *** 957,961 **** /* 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.) * --- 957,961 ---- /* 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.) * *************** *** 1005,1009 **** if( mod_xhtml_strempty( content_accept->charset )) { ! /* Accept header says we accept anything. Have to check for * Accept-Charset also. */ --- 1005,1009 ---- if( mod_xhtml_strempty( content_accept->charset )) { ! /* Accept token says we accept anything. Have to check for * Accept-Charset also. */ |