Make RFC links in the docs more consistent

This commit is contained in:
Daniel Thayer 2013-10-22 12:08:19 -05:00
parent f5d6931f00
commit bb14a44c2f
4 changed files with 16 additions and 18 deletions

View file

@ -42,11 +42,11 @@ function skip_http_entity_data%(c: connection, is_orig: bool%): any
##
## .. note::
##
## Unescaping reserved characters may cause loss of information. RFC 2396:
## A URI is always in an "escaped" form, since escaping or unescaping a
## completed URI might change its semantics. Normally, the only time
## escape encodings can safely be made is when the URI is being created
## from its component parts.
## Unescaping reserved characters may cause loss of information.
## :rfc:`2396`: A URI is always in an "escaped" form, since escaping or
## unescaping a completed URI might change its semantics. Normally, the
## only time escape encodings can safely be made is when the URI is
## being created from its component parts.
function unescape_URI%(URI: string%): string
%{
const u_char* line = URI->Bytes();