minor cleanup (doc typos fixed, removed tabs)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32696 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -56,7 +56,7 @@ However, you should check HasXXX before
|
|||||||
calling a get method, which determines whether or not the component referred
|
calling a get method, which determines whether or not the component referred
|
||||||
to by the method is defined according to RFC 2396.
|
to by the method is defined according to RFC 2396.
|
||||||
|
|
||||||
Consider an undefined component equivilent to a
|
Consider an undefined component equivalent to a
|
||||||
NULL C string.\\
|
NULL C string.\\
|
||||||
\\
|
\\
|
||||||
\helpref{HasScheme}{wxurihasscheme}\\
|
\helpref{HasScheme}{wxurihasscheme}\\
|
||||||
@@ -119,7 +119,7 @@ Note that it is preferred to call this over Unescape(BuildURI()) since
|
|||||||
|
|
||||||
\membersection{wxURI::Create}\label{wxuricreate}
|
\membersection{wxURI::Create}\label{wxuricreate}
|
||||||
|
|
||||||
\func{const wxChar*}{Create}{\param{const wxChar* }{uri}}
|
\func{const wxChar*}{Create}{\param{const wxString&}{uri}}
|
||||||
|
|
||||||
Creates this URI from the string \arg{uri}.
|
Creates this URI from the string \arg{uri}.
|
||||||
|
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: uri.h
|
// Name: uri.h
|
||||||
// Purpose: wxURI - Class for parsing URIs
|
// Purpose: wxURI - Class for parsing URIs
|
||||||
// Author: Ryan Norton
|
// Author: Ryan Norton
|
||||||
// Modified By:
|
// Modified By:
|
||||||
// Created: 07/01/2004
|
// Created: 07/01/2004
|
||||||
// RCS-ID: $Id$
|
// RCS-ID: $Id$
|
||||||
// Licence: wxWindows
|
// Licence: wxWindows
|
||||||
@@ -22,10 +22,10 @@
|
|||||||
// Host Type that the server component can be
|
// Host Type that the server component can be
|
||||||
enum wxURIHostType
|
enum wxURIHostType
|
||||||
{
|
{
|
||||||
wxURI_REGNAME, // Host is a normal register name (www.mysite.com etc.)
|
wxURI_REGNAME, // Host is a normal register name (www.mysite.com etc.)
|
||||||
wxURI_IPV4ADDRESS, // Host is a version 4 ip address (192.168.1.100)
|
wxURI_IPV4ADDRESS, // Host is a version 4 ip address (192.168.1.100)
|
||||||
wxURI_IPV6ADDRESS, // Host is a version 6 ip address [aa:aa:aa:aa::aa:aa]:5050
|
wxURI_IPV6ADDRESS, // Host is a version 6 ip address [aa:aa:aa:aa::aa:aa]:5050
|
||||||
wxURI_IPVFUTURE // Host is a future ip address (wxURI is unsure what kind)
|
wxURI_IPVFUTURE // Host is a future ip address (wxURI is unsure what kind)
|
||||||
};
|
};
|
||||||
|
|
||||||
// Component Flags
|
// Component Flags
|
||||||
@@ -70,7 +70,7 @@ public:
|
|||||||
bool HasPath() const { return (m_fields & wxURI_PATH) == wxURI_PATH; }
|
bool HasPath() const { return (m_fields & wxURI_PATH) == wxURI_PATH; }
|
||||||
bool HasQuery() const { return (m_fields & wxURI_QUERY) == wxURI_QUERY; }
|
bool HasQuery() const { return (m_fields & wxURI_QUERY) == wxURI_QUERY; }
|
||||||
bool HasFragment() const { return (m_fields & wxURI_FRAGMENT) == wxURI_FRAGMENT; }
|
bool HasFragment() const { return (m_fields & wxURI_FRAGMENT) == wxURI_FRAGMENT; }
|
||||||
|
|
||||||
const wxString& GetScheme() const { return m_scheme; }
|
const wxString& GetScheme() const { return m_scheme; }
|
||||||
const wxString& GetPath() const { return m_path; }
|
const wxString& GetPath() const { return m_path; }
|
||||||
const wxString& GetQuery() const { return m_query; }
|
const wxString& GetQuery() const { return m_query; }
|
||||||
@@ -83,7 +83,7 @@ public:
|
|||||||
//Note that the following two get functions are explicitly depreciated by RFC 2396
|
//Note that the following two get functions are explicitly depreciated by RFC 2396
|
||||||
wxString GetUser() const;
|
wxString GetUser() const;
|
||||||
wxString GetPassword() const;
|
wxString GetPassword() const;
|
||||||
|
|
||||||
wxString BuildURI() const;
|
wxString BuildURI() const;
|
||||||
wxString BuildUnescapedURI() const;
|
wxString BuildUnescapedURI() const;
|
||||||
|
|
||||||
@@ -95,7 +95,7 @@ public:
|
|||||||
bool operator == (const wxURI& uri) const;
|
bool operator == (const wxURI& uri) const;
|
||||||
|
|
||||||
static wxString Unescape (const wxString& szEscapedURI);
|
static wxString Unescape (const wxString& szEscapedURI);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
wxURI& Assign(const wxURI& uri);
|
wxURI& Assign(const wxURI& uri);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user