]> git.saurik.com Git - wxWidgets.git/commitdiff
Update wxURI for RFC 3986
authorRyan Norton <wxprojects@comcast.net>
Sun, 3 Apr 2005 03:48:08 +0000 (03:48 +0000)
committerRyan Norton <wxprojects@comcast.net>
Sun, 3 Apr 2005 03:48:08 +0000 (03:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33297 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/uri.tex
include/wx/uri.h
src/common/uri.cpp

index 3fcdb0567418bbf24941a051dd80942301afea03..04c3d0cd3a0c51969778f591f2399e19c1442d7a 100644 (file)
@@ -15,8 +15,7 @@ wxURI is used to extract information from
 a URI (Uniform Resource Identifier).
 
 For information about URIs, see 
-\urlref{RFC 2396}{http://www.ietf.org/rfc/rfc2396.txt} or 
-\urlref{RFC 2396.bis (Updated draft of RFC 2396)}{http://www.gbiv.com/protocols/uri/rev-2002/rfc2396bis.html}.
+\urlref{RFC 3986}{http://www.ietf.org/rfc/rfc3986.txt}.
 
 In short, a URL \em{is} a URI.  In other
 words, URL is a subset of a URI - all 
index b81159a3af9c2c8c3de2f9642f29c605cd7583c8..c433a15ab9c234354822b0f67189f79fe41684dc 100644 (file)
@@ -49,9 +49,7 @@ enum wxURIFlags
 
 // Generic class for parsing URIs.
 //
-// Originally based off of RFC 2396 - then
-// extended to meet the newer RFC 2396.bis
-// specifications.
+// See RFC 3986
 class WXDLLIMPEXP_BASE wxURI : public wxObject
 {
 public:
index d7e42961a9addc859c82ed5348d4eeecd544f0dd..7fdac5d033810b46b7b6990c6c1d7afe8e4f09ed 100644 (file)
@@ -375,7 +375,7 @@ bool wxURI::IsReference() const
 // Master URI parsing method.  Just calls the individual parsing methods
 //
 // URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
-// URI-reference = URI / relative-URITestCase
+// URI-reference = URI / relative
 // ---------------------------------------------------------------------------
 
 const wxChar* wxURI::Parse(const wxChar* uri)