jerenkrantz 01/10/26 12:35:02
Modified: include apr_uri.h
Log:
Clean up the documentation (case, etc.)
Document that OMITQUERY also omits the #fragment. Whether this is
by design or not, this is the behavior of the code, so be consistent
with the code.
Revision Changes Path
1.9 +4 -4 apr-util/include/apr_uri.h
Index: apr_uri.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_uri.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- apr_uri.h 2001/09/16 21:46:11 1.8
+++ apr_uri.h 2001/10/26 19:35:02 1.9
@@ -167,13 +167,13 @@
* @param uptr All of the parts of the uri
* @param flags How to unparse the uri. One of:
* <PRE>
- * APR_URI_UNP_OMITSITEPART suppress "scheme://[EMAIL
PROTECTED]:port"
+ * APR_URI_UNP_OMITSITEPART Suppress "scheme://[EMAIL
PROTECTED]:port"
* APR_URI_UNP_OMITUSER Just omit user
* APR_URI_UNP_OMITPASSWORD Just omit password
- * APR_URI_UNP_OMITUSERINFO omit "user:password@" part
- * APR_URI_UNP_REVEALPASSWORD Show plain text password (default:
show XXXXXXXX)
+ * APR_URI_UNP_OMITUSERINFO Omit "user:password@" part
+ * APR_URI_UNP_REVEALPASSWORD Show plain text password (default:
show XXXXXXXX)
* APR_URI_UNP_OMITPATHINFO Show "scheme://[EMAIL PROTECTED]:port"
only
- * APR_URI_UNP_OMITQUERY Omit the "?queryarg" from the path
+ * APR_URI_UNP_OMITQUERY Omit "?queryarg" or "#fragment"
* </PRE>
* @return The uri as a string
*/